@charset "utf-8";

:root {
  /* font-family */
  --font-family-ja: "Noto Sans JP", sans-serif;
  --font-family-en: "Roboto", sans-serif;
  /* 色 */
  --color-white: #FFFFFF;
  --color-blue: rgb(0,81,182);
  --color-blue2: rgba(0,81,182,.1);
  --color-black: #3B4043;
  --color-black2: rgba(0,0,0, .4);
}
* {
  margin: 0;
  padding: 0;
  border: 0;
}
html {
  width: 100%;
  height: -webkit-fill-available;
  font-size: 62.5%;
  font-size: clamp(.375rem, .208rem + .35vw, .625rem);
  font-family: var(--font-family-ja);

  text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  position: relative;
  margin: 0 auto;
  padding: 0;
  overflow-x: hidden;
  background-color: var(--color-white);
  color: var(--color-black);
  font-weight: 700;
  word-wrap: break-word;
  vertical-align: baseline;

  overflow-wrap: break-word;
  font-feature-settings: "palt" 1;
}
h1,
h2,
h3,
h4,
p,
dt,
dd,
a {
  transform: rotate(.03deg);
}
span {
  display: inline-block;
}
img {
  display: block;
  flex-shrink: 0;
  transform: translate3d(0, 0, 0);
  min-width: 0;
  max-width: 100%;
  height: auto;
  min-height: 0;
  border: none;

  object-fit: cover;
}
a,
a:hover,
a:visited {
  text-decoration: none;
  outline: none;
  cursor: pointer;
}
a img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: top;
}
.sp {
  display: none;
}
/* animation */
.animate__delay-0_25s {
  animation-delay: .25s;
}
.animate__delay-0_5s {
  animation-delay: .5s;
}
.animate__delay-0_75s {
  animation-delay: .75s;
}
.animate__delay-1_5s {
  animation-delay: 1.5s;
}
@media (max-width: 768px) {
  .sp {
    display: block;
  }
}


/* bases */
main {
  background-color: var(--color-white);
}
section {
  padding: 65px 0;
}
.limit-wrap {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
h2 {
  color: var(--color-blue);
}
p {
  color: var(--color-black);
  font-size: 18px;
}
.roboto {
  font-family: var(--font-family-en);
}
.contact {
  display: flex;
  justify-content: center;
}
.btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-radius: 8px;
  text-align: center;
}
.btn-wh {
  border: 2px solid var(--color-blue);
  background-color: var(--color-white);
  color: var(--color-blue);
}
.btn-wh:hover {
  border-radius: 8px;
  background-color: var(--color-blue);
  color: var(--color-white);
  transition: .5s;
}
.btn-bl {
  border: 2px solid var(--color-blue);
  background-color: var(--color-blue);
  color: var(--color-white);
}
.btn-bl:hover {
  background-color: var(--color-white);
  color: var(--color-blue);
  transition: .5s;
}
.btn-bl.arrow::after {
  display: block;
  position: absolute;
  right: 15px;
  width: 45px;
  content: url("../images/arrow_r_1.svg");
}
.btn-bl.arrow:hover::after {
  right: 10px;
  content: url("../images/arrow_r_2.svg");
  transition: .5s;
}
.btn-wh.arrow::after {
  display: block;
  position: absolute;
  right: 15px;
  width: 45px;
  content: url("../images/arrow_r_2.svg");
}
.btn-wh.arrow:hover::after {
  right: 10px;
  content: url("../images/arrow_r_1.svg");
  transition: .5s;
}
.content-wrap__u {
  clip-path: polygon(0 13vh, 100% 0, 100% calc(100% - 13vh), 0 100%);
  z-index: -1;
  padding: 13vh 0;
  background: var(--color-blue2);
}
.content-wrap__d {
  clip-path: polygon(0 0, 100% 13vh, 100% 100%, 0 calc(100% - 13vh));
  position: relative;
  padding: 13vh 0;
  background-color: var(--color-blue2);
}
.animationTrigger {
  opacity: 0;
}


/* header */
header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 70px;
  background-color: var(--color-blue);
}
.header-contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-contents .contact li:first-child a {
  width: 160px;
  height: 45px;
  margin-right: 30px;
  font-weight: 500;
  font-size: 20px;
}
.header-contents .contact li:last-child a {
  width: 260px;
  height: 45px;
  font-weight: 500;
  font-size: 20px;
}
.header-contents .btn-wh:hover {
  border-color: var(--color-white);
}
@media (max-width: 768px) {
  .logo {
    width: 100px;
  }
  .header-contents .contact li:first-child {
    display: none;
  }
  .header-contents .contact li:last-child a {
    width: auto;
    padding: 0 15px;
    font-size: 16px;
  }
}

/* top */
#top {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 780px;
  padding-top: 70px;
}
.hero-img-wrap {
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 calc(100% - 140px));
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-image: url("../images/top_pc.webp");
  background-position: center top;
  background-size: cover;
}
.hero-images {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
#top h2 {
  position: absolute;
  top: 120px;
  left: 0;
  color: var(--color-white);
  font-size: 70px;
  line-height: 1.357;
  letter-spacing: .02em;
  text-align: left;
  text-shadow: 5px 5px 5px var(--color-black2);
}
#top h2 > span.text-r {
  font-weight: 500;
}
#top h2 > span.align-r {
  display: block;
  text-align: right;
}
.request {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: absolute;
  bottom: 114px;
  left: 24px;
  width: 86.25%;
}
.request li:nth-child(1) {
  margin-right: 50px;
  margin-bottom: 76px;
}
.request li:nth-child(2) {
  margin-right: 50px;
  margin-bottom: 38px;
}
.movie-link-wrap {
  position: relative;
}
.movie-link {
  position: absolute;
  top: -100px;
  right: 0;
  z-index: 100;
  transform: translate(0,50%);
}
.animete_fuwafuwa {
  transition: 1s ease-in-out;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
}
@keyframes fuwafuwa {
  0% {
    transform: translate(-5px, -5px);
  }
  100% {
    transform: translate(5px, 5px);
  }
}
.animete_yurayura {
  display: inline-block;
  animation: yurayura 2s linear infinite alternate;
}
@keyframes yurayura {
  0% {
    transform: rotate(-3deg);
  }
  100% {
    transform: rotate(3deg);
  }
}

@media (max-width: 768px) {
  #top {
    height: 100svh;
  }
  #top h2 {
    top: 38px;
    left: 10px;
    font-size: 34px;
    line-height: 1.28;
  }
  .hero-img-wrap {
    clip-path: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-image: url("../images/top_sp.webp");
    background-position: center bottom;
    background-size: cover;
  }
  .request {
    flex-direction: column;
    align-items: flex-start;
    bottom: 60px;
  }
  .request li:nth-child(1) {
    margin-right: auto;
    margin-bottom: 17px;
  }
  .request li:nth-child(2) {
    margin-right: auto;
    margin-bottom: 17px;
    margin-left: 24px;
  }
  .movie-link {
    top: -100px;
    right: 10px;
    width: 22vw;
  }
}
/* main-contents */
#main-contents {
  margin-top: -140px;
}
#title {
  padding-bottom: 60px;
}
h1 {
  color: var(--color-blue);
  font-size: 68px;
  letter-spacing: .05em;
}
h1 > span:first-child {
  color: var(--color-black);
  font-size: 40px;
  line-height: 1.5;
}
.point {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}
.point li {
  position: relative;
  height: 62px;
  margin-right: 5px;
}
.point li:first-child {
  width: 322px;
}
.point li:nth-child(2) {
  width: 227px;
}
.point li:nth-child(3) {
  width: 292px;
}
.point li:nth-child(4) {
  width: 292px;
}
.point-cont-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.point-cont-wrap h2 {
  color: var(--color-blue);
  font-size: 32px;
  line-height: 1.25;
}
.point_01 {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: matrix(1,0,0,1,0,0);
  width: 100%;
  height: 100%;
  overflow: visible;

  fill: none;
  stroke: var(--color-blue);
  stroke-miterlimit: 10;
  stroke-width: 2px;
}
/* cases */
#cases {
  padding-top: 60px;
}
div[class*="case__"] {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 100px;
}
.case__1,
.case__3 {
  flex-direction: row-reverse;
}

.case__2 {
  flex-direction: row;
}
div[class*="case__"]:nth-child(3) {
  margin-top: -13vh;
}
.case-img {
  width: 50%;
  box-shadow: 8px 8px 0 var(--color-blue);
  background-color: #FFFFFF;
}
.case-txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  padding-left: 52px;
}
.case-txt > h2 {
  font-size: 42px;
  line-height: 1.476;
}
.case-txt > p {
  margin-top: 1.8333em;
  margin-right: 3.333em;
  font-weight: 500;
  line-height: 1.888;
}
#cases .content-wrap__u {
  margin-top: -26vh;
  padding-top: 26vh;
  padding-bottom: 13vh;
}
#main-contents .contact {
  display: block;
  padding-top: 30px;
  text-align: center;
}
#main-contents .contact > p {
  margin-bottom: 27px;
  font-size: 28px;
  line-height: 1.4286;
}
#main-contents .btn {
  width: 100%;
  max-width: 390px;
  height: 90px;
  margin: auto;
  font-size: 28px;
}
/* other-situations */
#other-situations h3 {
  margin: 25px 40px auto;
  margin: auto;
  border: 2px solid var(--color-blue);
  background-color: var(--color-white);
  color: var(--color-blue);
  font-size: 42px;
  line-height: 1.905;
  letter-spacing: .05em;
  text-align: center;
}
#situations {
  margin: 60px 0;
  text-align: center;
}
.slick-slide {
  height: auto!important;

          backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
          transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}
.slick-slider__01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.situations-item {
  position: relative;
  max-width: 370px;

  aspect-ratio: 37/29;
}
.situations-item > div {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 5px 0;
}
.situations-item__bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--color-black);
  font-size: 28px;

  mix-blend-mode: multiply;
}
.situations-item p {
  color: var(--color-white);
  font-weight: 500;
  font-size: 28px;
  text-align: center;
}
@media (max-width: 1200px) {
  #main-contents {
    margin-top: 0;
  }
  .point-cont-wrap h2 {
    font-size: 20px;
  }
  .situations-item {
    max-width: 100%;
  }
  .situations-item > div {
    height: 37px;
  }
  .slick-arrow {
    width: 50px;
  }
  .prev-arrow {
    margin-right: 10px;
  }
  .next-arrow {
    margin-left: 10px;
  }
}
@media (max-width: 768px) {
  #main-contents {
    padding-top: 50px;
    padding-bottom: 0;
  }
  h1 {
    font-size: 38px;
  }
  h1 > span:first-child {
    font-size: 22px;
  }
  .point {
    flex-direction: column;
  }
  .point li:first-child,
  .point li:nth-child(2),
  .point li:nth-child(3),
  .point li:nth-child(4) {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    padding: 8px;
  }
  .point-cont-wrap h2 {
    font-size: 18px;
  }
  #cases {
    padding-top: 0;
  }
  .case-txt > h2 {
    font-size: 26px;
    line-height: 1.476;
    text-align: center;
  }
  div[class*="case__"],
  .case__2 {
    flex-direction: column;
  }
  .case-txt,
  .case-img {
    width: 100%;
    padding-left: 0;
  }
  .case-img img {
    width: 100%;
    height: auto;
  }
  .case-txt > p {
    margin-top: 1.8333em;
    margin-right: 0;
    margin-bottom: 1.8883em;
    text-align: justify;
  }
  #main-contents .contact > p {
    font-size: 24px;
  }
  #other-situations h3 {
    font-size: 26px;
    line-height: 1.5;
  }
  .situations-item p {
    font-size: 18px;
  }
  .slick-arrow {
    width: 20px;
  }
  #main-contents .btn {
    font-weight: 500;
    font-size: 20px;
    letter-spacing: .1em;
  }
}


/* movie */
#movie::before {
  display: block;
  margin-top: -80px;
  padding-top: 80px;
  content: "";
}
.youtube {
  width: 90%;
  max-width: 800px;
  height: auto;
  margin: auto;

  aspect-ratio: 16/9;
}
.youtube > iframe {
  width: 100%;
  height: 100%;
}


/* users-voices */
#users-voices .limit-wrap {
  display: flex;
  align-items: flex-end;
}
.voice-img-wrap {
  width: 50%;
}
.voice-img-wrap img {
  margin: auto;
}
.voice-txt-wrap {
  width: 50%;
}
.voice-h3-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 60px;
  margin-bottom: 47px;
}
.voice-h3-wrap .point_01 {
  fill: var(--color-white);
}
.voice-txt-wrap h3 {
  color: var(--color-blue);
  font-size: 30px;
  line-height: 1.25;
  letter-spacing: .05em;
}
.voices > li {
  margin-bottom: 20px;
  margin-left: 1.2em;
  font-size: 24px;
  line-height: 1.666;
  text-indent: -1.2em;
}
.voices > li::before {
  display: inline;
  width: 1.5em;
  color: #408FD7;
  content: "\25B6  ";
}
.voices > li > span {
  display: inline;
  color: #408FD7;
  font-weight: 500;
}
.voices > li:nth-of-type(even):before,
.voices > li:nth-of-type(even) > span {
  display: inline;
  color: #EB5452;
}
@media (max-width: 768px) {
  .users-voices-content {
    position: relative;
  }
  .voice-img-wrap {
    opacity: .5;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
  }
  .voice-txt-wrap {
    width: 100%;
  }
  .voices > li {
    font-size: 18px;
  }
}

/* link */
#link {
  padding-top: 40px;
  padding-bottom: 165px;
  text-align: center;
}
#link h3 {
  margin-bottom: 26px;
  font-size: 28px;
  line-height: 1.4285;
}
#link .contact a {
  width: 340px;
  height: 90px;
  font-size: 28px;
  line-height: 1.785;
}
#link .contact li:first-child {
  margin-right: 80px;
}
@media (max-width: 768px) {
  #link .contact {
    flex-direction: column;
  }
  #link .contact a {
    width: 100%;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: .1em;
  }
  #link .contact li:first-child {
    margin-right: 0;
  }
  .btn-wh.arrow::after,
  .btn-bl.arrow::after {
    right: 10px;
    width: 30px;
  }
}


/* footer */
footer {
  padding: 1em 0;
  font-weight: 500;
}
.th-logo {
  width: 60%;
  max-width: 300px;
  margin: 0 auto 20px;
}
.copy-right {
  font-size: 12px;
  line-height: 1.333;
  text-align: center;
}