@charset "UTF-8";
/* リセット */
@font-face {
  font-family: "MyFont";
  src: url(../font/Noto_Sans_JP/NotoSansJP-Black.otf);
  font-weight: 900;
}
@font-face {
  font-family: "MyFont";
  src: url(../font/Noto_Sans_JP/NotoSansJP-Bold.otf);
  font-weight: 500;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  color: #333333;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

li {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeSpeed;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
  background-color: #111;
  overflow-x: hidden;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: initial;
}

@media (prefers-reduced-motion: reduce) {
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.Left-in {
  transform: translateX(-10%);
  opacity: 0;
  transition: 0.8s ease;
}
.Left-in.on {
  transform: translateX(0%);
  opacity: 1;
}

.Right-in {
  transform: translateX(10%);
  opacity: 0;
  transition: 0.8s ease;
}
.Right-in.on {
  transform: translateX(0%);
  opacity: 1;
}

.Fade-in {
  transform: translateY(10%);
  opacity: 0;
  transition: 0.6s ease;
}
.Fade-in.d1 {
  transition-delay: 0.2s;
}
.Fade-in.d2 {
  transition-delay: 0.4s;
}
.Fade-in.on {
  transform: translateY(0%);
  opacity: 1;
}

header {
  position: fixed;
  z-index: 999;
  top: 0%;
  left: 0%;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  header {
    align-items: center;
  }
}
header div {
  width: 200px;
  height: auto;
  margin-left: 15px;
}
@media screen and (max-width: 767px) {
  header div {
    width: 160px;
  }
}
header div img {
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 5px;
  padding-right: 30px;
}
header a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin-left: auto;
  text-align: center;
  background-color: #ec7500;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.2em;
  transition: 0.2s ease;
  position: relative;
}
header a::after {
  content: "";
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
  border: #ec7500 2px solid;
  -webkit-animation-name: onmouse;
          animation-name: onmouse;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  transform-origin: center;
}
@-webkit-keyframes onmouse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}
@keyframes onmouse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}
header a:hover {
  opacity: 0.8;
}
header a:hover::after {
  display: block;
}
@media screen and (max-width: 767px) {
  header a {
    width: 40px;
    height: 40px;
  }
}
header a i {
  font-size: 35px;
}
@media screen and (max-width: 767px) {
  header a i {
    font-size: 22.78px;
  }
}

#Hero {
  width: 100%;
  height: 100vh;
  position: relative;
}
#Hero .main_imgBox {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}
#Hero .main_imgBox::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  background-image: radial-gradient(rgba(0, 0, 0, 0.2) 30%, transparent 31%), radial-gradient(rgba(0, 0, 0, 0.2) 30%, transparent 31%);
  background-size: 3px 3px;
  background-position: 0 0, 2px 2px;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0%;
  top: 0%;
  z-index: 13;
}
#Hero .main_imgBox .main_img {
  z-index: 10;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: anime 36s 0s infinite;
  animation: anime 36s 0s infinite;
}
#Hero .main_imgBox .main_img:nth-of-type(2) {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}
#Hero .main_imgBox .main_img:nth-of-type(3) {
  -webkit-animation-delay: 12s;
  animation-delay: 12s;
}
#Hero .main_imgBox .main_img:nth-of-type(4) {
  -webkit-animation-delay: 18s;
  animation-delay: 18s;
}
#Hero .main_imgBox .main_img:nth-of-type(5) {
  -webkit-animation-delay: 24s;
  animation-delay: 24s;
}
#Hero .main_imgBox .main_img:nth-of-type(6) {
  -webkit-animation-delay: 30s;
  animation-delay: 30s;
}
@-webkit-keyframes anime {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  17% {
    opacity: 1;
  }
  25% {
    opacity: 0;
    transform: scale(1.1);
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes anime {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  17% {
    opacity: 1;
  }
  25% {
    opacity: 0;
    transform: scale(1.1);
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
#Hero .scrolldown1 {
  position: absolute;
  right: 5%;
  bottom: 5%;
  height: 200px;
}
@media screen and (max-width: 767px) {
  #Hero .scrolldown1 {
    right: 50%;
    bottom: -10%;
  }
}
#Hero .scrolldown1 span {
  position: absolute;
  left: -15px;
  top: -15px;
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}
#Hero .scrolldown1::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 200px;
  background: #eee;
  -webkit-animation: pathmove 1s ease-in-out infinite;
          animation: pathmove 1s ease-in-out infinite;
  opacity: 0;
}
@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 150px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 200px;
    opacity: 0;
  }
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 150px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 200px;
    opacity: 0;
  }
}
#Hero #Video {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#Hero #Video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#Hero #Video::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  background-image: radial-gradient(rgba(0, 0, 0, 0.4) 30%, transparent 31%), radial-gradient(rgba(0, 0, 0, 0.4) 30%, transparent 31%);
  background-size: 3px 3px;
  background-position: 0 0, 2px 2px;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0%;
  top: 0%;
  z-index: 13;
}
#Hero .Hero_title {
  position: absolute;
  z-index: 900;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  text-align: left;
  white-space: nowrap;
  padding-left: 5%;
}
@media screen and (max-width: 767px) {
  #Hero .Hero_title {
    text-align: center;
    padding-left: 0%;
  }
}
#Hero .Hero_title h1 {
  font-size: 6vw;
  font-weight: 900;
  line-height: 2em;
  text-shadow: 3px 4px 0 rgba(0, 0, 0, 0.1);
  color: #fff;
}
#Hero .Hero_title h1 span {
  display: inline-block;
  transition: transform 1.2s cubic-bezier(0.65, 0.02, 0.23, 1);
  transform: translate(20%, 100%);
  position: relative;
  z-index: 1;
  letter-spacing: -0.03em;
  text-shadow: 3px 4px 0 rgba(0, 0, 0, 0.1);
}
#Hero .Hero_title h1 span:before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(-40%);
  transition: transform 0.6s cubic-bezier(0.65, 0.02, 0.23, 1);
}
#Hero .Hero_title h1 span.row {
  overflow: hidden;
  line-height: 1.2em;
  display: block;
  transform: none;
}
#Hero .Hero_title h1 span.row:before {
  display: none;
}
#Hero .Hero_title h1 .animate {
  transform: translate(0, 0);
}
#Hero .Hero_title h1 .animate:before {
  transform: translateY(100%);
}
@media screen and (max-width: 1025px) {
  #Hero .Hero_title h1 {
    font-size: 43px;
  }
}
@media screen and (max-width: 767px) {
  #Hero .Hero_title h1 {
    font-size: 43px;
  }
}
#Hero .Hero_title p {
  font-size: 22.78px;
  text-shadow: 3px 4px 0 rgba(0, 0, 0, 0.1);
  font-weight: 900;
  color: #fff;
  padding-left: 1rem;
  margin-top: 1vw;
  letter-spacing: 0.1em;
}
#Hero .Hero_title p span {
  display: inline-block;
  transition: transform 1.2s cubic-bezier(0.65, 0.02, 0.23, 1);
  transition-delay: 0.2s;
  transform: translate(20%, 100%);
  position: relative;
  z-index: 1;
  letter-spacing: -0.03em;
  text-shadow: 3px 4px 0 rgba(0, 0, 0, 0.1);
}
#Hero .Hero_title p span:before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(-40%);
  transition: transform 0.6s cubic-bezier(0.65, 0.02, 0.23, 1);
}
#Hero .Hero_title p span.row {
  overflow: hidden;
  line-height: 1.5em;
  letter-spacing: 0.08em;
  display: block;
  transform: none;
}
#Hero .Hero_title p span.row:before {
  display: none;
}
#Hero .Hero_title p .animate {
  transform: translate(0, 0);
}
#Hero .Hero_title p .animate:before {
  transform: translateY(100%);
}
@media screen and (max-width: 1025px) {
  #Hero .Hero_title p {
    font-size: 22.78px;
  }
}
@media screen and (max-width: 767px) {
  #Hero .Hero_title p {
    font-size: 18.15px;
    display: none;
    text-align: left;
    max-width: 80%;
    white-space: wrap;
  }
}
#Hero .Hero_title div {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  row-gap: 2em;
  width: 100%;
  max-width: 860px;
  -moz-column-gap: 3em;
       column-gap: 3em;
  margin-top: 3em;
}
@media screen and (max-width: 1025px) {
  #Hero .Hero_title div {
    justify-content: space-around;
  }
}
@media screen and (max-width: 767px) {
  #Hero .Hero_title div {
    margin: auto;
    margin-top: 3em;
  }
}
#Hero .Hero_title div a {
  font-size: 22.78px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ec7500;
  width: 40%;
  min-width: 320px;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
  font-weight: 900;
  color: #dddddd;
  letter-spacing: 0.1em;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  #Hero .Hero_title div a {
    font-size: 18.15px;
    padding-top: 0.4em;
    padding-bottom: 0.4em;
  }
}
#Hero .Hero_title div a:hover {
  background-color: #fff;
  color: #333333;
  border: #f7f071 1px solid;
}
#Hero .Hero_title div a span {
  font-size: small;
}

#About {
  width: 100%;
  max-width: 1350px;
  margin: auto;
  padding-top: 10%;
  padding-bottom: 10%;
  padding-left: 5%;
  padding-right: 5%;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  #About {
    width: 100%;
  }
}
#About .About_right {
  width: 80%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  #About .About_right {
    width: 100%;
  }
}
#About .About_right img {
  width: 100%;
}
#About .About_left {
  min-width: 720px;
  background-color: #fff;
  display: inline-block;
  padding-top: 5%;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 5%;
  margin-top: -20%;
  z-index: 10;
  position: relative;
}
@media screen and (max-width: 767px) {
  #About .About_left {
    min-width: 0px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    padding-top: 10%;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 10%;
  }
}
#About .About_left h2 {
  font-size: 35px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1025px) {
  #About .About_left h2 {
    font-size: 28.33px;
  }
}
@media screen and (max-width: 767px) {
  #About .About_left h2 {
    font-size: 5vw;
    letter-spacing: 0em;
  }
}
#About .About_left p {
  margin-top: 6%;
  font-size: 18.15px;
  line-height: 2em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1025px) {
  #About .About_left p {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  #About .About_left p {
    width: 100%;
    margin-top: 15%;
    letter-spacing: 0em;
  }
  #About .About_left p br {
    display: none;
  }
}
#About .About_decoration {
  color: #666666;
  opacity: 0.1;
  font-weight: 900;
  font-size: 8vw;
  margin-top: -5%;
  z-index: 15;
  position: relative;
  text-align: right;
}
@media screen and (max-width: 767px) {
  #About .About_decoration {
    font-size: 10vw;
  }
}

#Service {
  padding-top: 10%;
  width: 100%;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  #Service {
    padding-bottom: 10%;
  }
}
#Service h3 {
  text-align: center;
  font-size: 35px;
  letter-spacing: 0.1em;
  font-weight: 900;
  position: relative;
}
@media screen and (max-width: 1025px) {
  #Service h3 {
    font-size: 28.33px;
  }
}
@media screen and (max-width: 767px) {
  #Service h3 {
    font-size: 22.78px;
  }
}
#Service h3::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background-color: #333333;
}
#Service h3::before {
  content: "Service";
  position: absolute;
  bottom: -120%;
  left: 50%;
  transform: translateX(-50%);
  color: #666666;
  opacity: 0.05;
  font-weight: 900;
  font-size: 8vw;
}
@media screen and (max-width: 767px) {
  #Service h3::before {
    bottom: -65%;
    font-size: 16vw;
  }
}
#Service .Service_list {
  display: flex;
  justify-content: center;
  width: 90%;
  margin: auto;
  max-width: 1350px;
  gap: 3%;
  transform: translateY(20%);
}
@media screen and (max-width: 767px) {
  #Service .Service_list {
    flex-direction: column;
    transform: translateY(0%);
  }
}
#Service .Service_list .Service_list_child {
  width: 30%;
  text-align: center;
  background-color: #666666;
  position: relative;
  padding-top: 10%;
  padding-left: 4%;
  padding-right: 4%;
  padding-bottom: 10%;
}
@media screen and (max-width: 767px) {
  #Service .Service_list .Service_list_child {
    width: 100%;
    margin-top: 20%;
  }
}
#Service .Service_list .Service_list_child::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 95%;
  height: 95%;
  border: #f7f071 1px solid;
  opacity: 0.7;
}
#Service .Service_list h4 {
  font-size: 28.33px;
  color: #fff;
}
@media screen and (max-width: 1025px) {
  #Service .Service_list h4 {
    font-size: 18.15px;
  }
}
@media screen and (max-width: 1025px) {
  #Service .Service_list h4 {
    font-size: 22.78px;
  }
}
#Service .Service_list img {
  width: 60%;
  margin: auto;
  margin-top: 25%;
}

#Question {
  padding-top: 10%;
  padding-bottom: 10%;
  width: 100%;
  background-color: #fff;
}
#Question h3 {
  text-align: center;
  font-size: 35px;
  font-weight: 900;
  position: relative;
}
@media screen and (max-width: 1025px) {
  #Question h3 {
    font-size: 28.33px;
  }
}
@media screen and (max-width: 767px) {
  #Question h3 {
    font-size: 22.78px;
  }
}
#Question h3::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background-color: #fff;
}
#Question h3::before {
  content: "Question";
  position: absolute;
  bottom: -120%;
  left: 50%;
  transform: translateX(-50%);
  color: #666666;
  opacity: 0.05;
  font-weight: 900;
  font-size: 8vw;
}
@media screen and (max-width: 767px) {
  #Question h3::before {
    bottom: -65%;
    font-size: 16vw;
  }
}
#Question ul {
  width: 90%;
  max-width: 1350px;
  margin: auto;
  margin-top: 5%;
}
@media screen and (max-width: 767px) {
  #Question ul {
    padding-left: 0%;
  }
}
#Question ul li {
  width: 100%;
  display: flex;
  background-color: #dddddd;
  margin-top: 2.5em;
  border-radius: 10px;
  padding-top: 1em;
  padding-left: 5em;
  padding-right: 5em;
  padding-bottom: 1em;
}
@media screen and (max-width: 767px) {
  #Question ul li {
    align-items: center;
    padding-top: 1em;
    padding-left: 1em;
    padding-right: 1em;
    padding-bottom: 1em;
  }
}
#Question ul li p {
  font-size: 22.78px;
  font-weight: 900;
  margin-left: 3em;
  letter-spacing: 0em;
}
@media screen and (max-width: 1025px) {
  #Question ul li p {
    font-size: 18.15px;
  }
}
@media screen and (max-width: 767px) {
  #Question ul li p {
    font-size: 16px;
  }
}

#Contact {
  width: 100%;
  text-align: center;
  padding-bottom: 5%;
  padding-top: 5%;
  background-color: #666666;
  background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(0.25, #6e6e6e), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, #6e6e6e), color-stop(0.75, #6e6e6e), color-stop(0.75, transparent), to(transparent));
  background-size: 30px 30px;
}
@media screen and (max-width: 767px) {
  #Contact {
    padding-left: 1em;
    padding-right: 1em;
    padding-bottom: 15%;
  }
}
#Contact .Contact_catch {
  color: #fff;
  font-size: 43px;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 3.5em;
}
@media screen and (max-width: 1025px) {
  #Contact .Contact_catch {
    font-size: 28.33px;
    line-height: 4.5em;
  }
}
@media screen and (max-width: 767px) {
  #Contact .Contact_catch {
    font-size: 18.15px;
    line-height: 2.5em;
    letter-spacing: 0em;
  }
}
#Contact .Contact_catch span {
  font-size: 64.12px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #Contact .Contact_catch span {
    font-size: 22.78px;
    line-height: 2.5em;
  }
}
#Contact .Contact_catch span::after {
  content: "";
  position: absolute;
  bottom: -5%;
  left: 0%;
  width: 100%;
  height: 0.2em;
  background-color: rgba(210, 210, 0, 0.8);
}
#Contact .Contact_attention {
  color: #fff;
  font-size: 18.15px;
  margin-top: 3%;
  letter-spacing: 0.1em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  #Contact .Contact_attention {
    font-size: 16px;
    margin-top: 10%;
  }
}
#Contact div {
  display: flex;
  justify-content: center;
  width: 80%;
  align-items: center;
  margin: auto;
  margin-top: 4%;
  gap: 10%;
}
@media screen and (max-width: 1025px) {
  #Contact div {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  #Contact div {
    width: 100%;
    margin-top: 15%;
  }
}
#Contact div p {
  font-size: 35px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #f7f071;
  text-align: left;
}
@media screen and (max-width: 767px) {
  #Contact div p {
    font-size: 22.78px;
    background-color: transparent;
    color: #f7f071;
  }
}
#Contact div p span {
  display: block;
  color: #fff;
  font-size: 18.15px;
  letter-spacing: 0.05em;
  padding-left: 17%;
}
#Contact div a {
  background-color: #f7f071;
  color: #333333;
  font-weight: 900;
  font-size: 28.33px;
  transition: 0.4s ease;
  position: relative;
  padding-top: 0.5em;
  padding-left: 2em;
  padding-right: 2em;
  padding-bottom: 0.5em;
  transition: 0.2s;
}
#Contact div a:hover {
  background-color: #fff;
  border: #f7f071 1px solid;
}
@media screen and (max-width: 1025px) {
  #Contact div a {
    margin-top: 10%;
  }
}
@media screen and (max-width: 767px) {
  #Contact div a {
    font-size: 22.78px;
  }
}

#Links {
  background-color: #444;
  padding-top: 2%;
  padding-bottom: 2%;
  padding-right: 10%;
  padding-left: 10%;
}
@media screen and (max-width: 767px) {
  #Links {
    padding-top: 5%;
    padding-bottom: 5%;
    padding-right: 0%;
    padding-left: 2px;
  }
}
#Links h4 {
  text-align: center;
  margin-bottom: 3%;
  font-size: 28.33px;
  color: #f7f071;
}
#Links nav {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  #Links nav {
    display: block;
    padding-left: 20px;
  }
}
#Links nav div {
  text-align: center;
  width: 30%;
  min-width: 450px;
}
@media screen and (max-width: 767px) {
  #Links nav div {
    text-align: left;
    min-width: 100px;
  }
}
#Links nav div a {
  display: block;
  line-height: 3em;
  color: #dddddd;
  white-space: nowrap;
}
#Links nav div a:hover {
  color: #f7f071;
}

footer {
  background-color: #333333;
  text-align: center;
}
footer img {
  width: 390px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  footer img {
    width: 240px;
  }
}
footer div {
  background-color: #111;
  padding-left: 1em;
  color: #dddddd;
  font-size: 12px;
}

#thanks {
  background-color: #666666;
  min-height: calc(100vh - 60.88px);
  display: flex;
  justify-content: center;
  align-items: center;
}
#thanks div {
  width: 100%;
  margin: auto;
}
#thanks div img {
  width: 220px;
  margin: auto;
}
#thanks div p {
  color: #fff;
  text-align: center;
  margin-top: 1em;
}
#thanks div a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  background-color: #f7f071;
  color: #333333;
  transition: 0.2s;
  margin: auto;
  margin-top: 2em;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  font-weight: 900;
  font-size: 22.78px;
}
#thanks div a:hover {
  background-color: #ddd;
}

#ContactPage {
  padding-top: 102.81px;
  padding-bottom: 102.81px;
}
#ContactPage h1 {
  text-align: center;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  #ContactPage h1 {
    font-size: 22px;
  }
}

#Content_header {
  position: fixed;
  z-index: 999;
  top: 0%;
  left: 0%;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  #Content_header {
    align-items: center;
  }
}
#Content_header div {
  width: 200px;
  height: auto;
}
@media screen and (max-width: 767px) {
  #Content_header div {
    width: 160px;
  }
}
#Content_header div img {
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 5px;
  padding-right: 30px;
}

#Introductory {
  background-image: linear-gradient(112.5deg, rgb(214, 214, 214) 0%, rgb(214, 214, 214) 10%, rgb(195, 195, 195) 10%, rgb(195, 195, 195) 53%, rgb(176, 176, 176) 53%, rgb(176, 176, 176) 55%, rgb(157, 157, 157) 55%, rgb(157, 157, 157) 60%, rgb(137, 137, 137) 60%, rgb(137, 137, 137) 88%, rgb(118, 118, 118) 88%, rgb(118, 118, 118) 91%, rgb(99, 99, 99) 91%, rgb(99, 99, 99) 100%), linear-gradient(157.5deg, rgb(214, 214, 214) 0%, rgb(214, 214, 214) 10%, rgb(195, 195, 195) 10%, rgb(195, 195, 195) 53%, rgb(176, 176, 176) 53%, rgb(176, 176, 176) 55%, rgb(157, 157, 157) 55%, rgb(157, 157, 157) 60%, rgb(137, 137, 137) 60%, rgb(137, 137, 137) 88%, rgb(118, 118, 118) 88%, rgb(118, 118, 118) 91%, rgb(99, 99, 99) 91%, rgb(99, 99, 99) 100%), linear-gradient(135deg, rgb(214, 214, 214) 0%, rgb(214, 214, 214) 10%, rgb(195, 195, 195) 10%, rgb(195, 195, 195) 53%, rgb(176, 176, 176) 53%, rgb(176, 176, 176) 55%, rgb(157, 157, 157) 55%, rgb(157, 157, 157) 60%, rgb(137, 137, 137) 60%, rgb(137, 137, 137) 88%, rgb(118, 118, 118) 88%, rgb(118, 118, 118) 91%, rgb(99, 99, 99) 91%, rgb(99, 99, 99) 100%), linear-gradient(90deg, rgb(195, 195, 195), rgb(228, 228, 228));
  background-blend-mode: overlay, overlay, overlay, normal;
  padding-top: 5%;
  padding-bottom: 5%;
}
#Introductory .container {
  width: 90%;
  max-width: 1350px;
  margin: auto;
  padding-top: 10%;
}
@media screen and (max-width: 767px) {
  #Introductory .container {
    padding-top: 10%;
  }
}
#Introductory .container h2 {
  font-size: max(3vw, 43px);
  white-space: nowrap;
  font-family: Myfont;
  font-weight: 900;
}
@media screen and (max-width: 1025px) {
  #Introductory .container h2 {
    font-size: 35px;
    white-space: normal;
  }
}
@media screen and (max-width: 767px) {
  #Introductory .container h2 {
    font-size: 5.35vw;
    font-weight: 500;
  }
}
#Introductory .container h2 span {
  display: block;
}
#Introductory .container h2 span br {
  display: none;
}
@media screen and (max-width: 767px) {
  #Introductory .container h2 span br {
    display: block;
  }
}
#Introductory .container ul {
  padding-left: 0px;
  margin-top: 5em;
}
@media screen and (max-width: 767px) {
  #Introductory .container ul {
    margin-top: 2em;
  }
}
#Introductory .container ul li {
  font-size: 22.78px;
  font-weight: 900;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  #Introductory .container ul li {
    font-size: 3.9vw;
  }
}
#Introductory .container ul li img {
  width: 16px;
  display: inline;
  margin-right: 1em;
}
@media screen and (max-width: 767px) {
  #Introductory .container ul li img {
    font-size: 16px;
    margin-right: 0.5em;
  }
}
#Introductory .photo_slider {
  width: 100%;
  padding-left: 0%;
  text-align: center;
}
#Introductory .photo_slider li img {
  width: 90%;
}
#Introductory .logo_slider {
  width: 100%;
  padding-left: 0%;
  padding-right: 0%;
  text-align: center;
  margin-top: 2%;
}
#Introductory .logo_slider li img {
  width: 80%;
  height: 120px;
}
#Introductory .intro_title {
  width: 90%;
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5%;
}
#Introductory .intro_title img {
  width: 30%;
  max-width: 480px;
  margin-left: auto;
  opacity: 0.1;
}

#Service_s {
  padding-top: 10%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #Service_s {
    padding-top: 20%;
  }
}
#Service_s h2 {
  text-align: center;
  font-size: 43px;
  text-align: center;
  font-size: 35px;
  letter-spacing: 0.1em;
  position: relative;
  font-family: Myfont;
  font-weight: 900;
}
@media screen and (max-width: 1025px) {
  #Service_s h2 {
    font-size: 28.33px;
  }
}
@media screen and (max-width: 767px) {
  #Service_s h2 {
    font-size: 22.78px;
    font-weight: 500;
  }
}
#Service_s h2::before {
  content: "Service";
  position: absolute;
  bottom: -120%;
  left: 50%;
  transform: translateX(-50%);
  color: #666666;
  opacity: 0.05;
  font-weight: 900;
  font-size: 8vw;
}
@media screen and (max-width: 767px) {
  #Service_s h2::before {
    bottom: -65%;
    font-size: 16vw;
  }
}
#Service_s .dekiru {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5%;
}
@media screen and (max-width: 767px) {
  #Service_s .dekiru {
    flex-direction: column;
    width: 90%;
    margin-top: 10%;
    row-gap: 5em;
  }
}
#Service_s .dekiru div {
  width: 45%;
  text-align: left;
}
@media screen and (max-width: 767px) {
  #Service_s .dekiru div {
    width: 100%;
  }
}
#Service_s .dekiru div img {
  width: 100%;
}
#Service_s .dekiru div h3 {
  font-size: 28.33px;
}
@media screen and (max-width: 767px) {
  #Service_s .dekiru div h3 {
    font-size: 18.15px;
    line-height: 2.5em;
  }
}
#Service_s .dekiru div p {
  font-size: 18.15px;
  margin-top: 0.8em;
}
@media screen and (max-width: 767px) {
  #Service_s .dekiru div p {
    font-size: 16px;
  }
  #Service_s .dekiru div p br {
    display: none;
  }
}
#Service_s .dekiru div a {
  background-color: #ec7500;
  color: #ddd;
  line-height: 5em;
  font-size: 18.15px;
  font-weight: 900;
  transition: 0.2s;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 2em;
  padding-right: 2em;
}
#Service_s .dekiru div a:hover {
  background-color: #fff;
  color: #333333;
  border: #f7f071 1px solid;
}

#F_cta {
  width: 100%;
  margin-top: 10%;
  position: relative;
  z-index: 40;
  background-image: url(../img/slider/kaijou/otemach-omh-1.jpg);
  background-position: center;
  padding-top: 15%;
  padding-bottom: 15%;
}
#F_cta::after {
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  content: "";
  z-index: 50;
}
#F_cta .cta {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 150;
  width: 100%;
}
#F_cta .cta h3 {
  font-family: MyFont;
  font-size: 43px;
  font-weight: 900;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #F_cta .cta h3 {
    font-size: 28.33px;
  }
}
#F_cta .cta p {
  color: #fff;
  margin-top: 5em;
}
@media screen and (max-width: 767px) {
  #F_cta .cta p {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
#F_cta .cta p span {
  display: block;
  font-size: 22.78px;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  #F_cta .cta p span {
    font-size: 16px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: inline;
  }
}
#F_cta .cta div {
  margin-top: 5em;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 50%;
  min-width: 690px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  #F_cta .cta div {
    flex-direction: column;
    width: 100%;
    justify-content: center;
    text-align: center;
    row-gap: 5em;
    min-width: 0px;
  }
}
#F_cta .cta div a {
  background-color: #ec7500;
  width: 300px;
  color: #ddd;
  line-height: 2em;
  font-size: 18.15px;
  font-weight: 900;
  transition: 0.2s;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
#F_cta .cta div a:hover {
  background-color: #fff;
  color: #333333;
  border: #f7f071 1px solid;
}
#F_cta .cta nav {
  margin-top: 5em;
  text-align: center;
  font-size: 18.15px;
  color: #fff;
  font-weight: 900;
}
#F_cta .cta nav span {
  font-family: MyFont;
  font-size: 43px;
  display: block;
}
@media screen and (max-width: 767px) {
  #F_cta .cta nav span {
    font-size: 10vw;
  }
}

#Contact_page {
  background-color: #dddddd;
}/*# sourceMappingURL=style..css.map */