@charset "UTF-8";
/* A Modern CSS Reset */
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-style: solid;
  box-sizing: border-box;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  text-decoration-skip-ink: auto;
}

img {
  width: 100%;
  display: block;
}

input,
button,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 0;
  background: transparent;
  font: inherit;
  outline: none;
}

textarea {
  resize: none;
}

input[type=checkbox] {
  appearance: checkbox;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  display: inline-block;
  width: initial;
  height: initial;
  margin: initial;
  padding: initial;
  vertical-align: middle;
  border: 1px solid #000;
  border-radius: 10px;
  background: transparent;
}

input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

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

body {
  color: #404040;
}

main {
  background-color: #f8f7f6;
}

.white-bg {
  background-color: #fff;
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.28vw;
  }
}
@media (min-width: 1250px) {
  html {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  a {
    transition: 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
}

.header {
  height: 5rem;
  width: 100%;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .header {
    height: 6.25rem;
  }
}

.header__inner {
  height: inherit;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .header__inner {
    display: flex;
    justify-content: space-between;
  }
}

.header-logo {
  width: 9.375rem;
  height: 100%;
  z-index: 10;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header-logo {
    width: 18.75rem;
  }
}

.header-logo a {
  display: block;
  height: inherit;
  width: inherit;
}

.header-logo img {
  height: 100%;
  object-fit: cover;
}

.header__nav {
  height: 3.75rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .header__nav {
    height: 6.25rem;
  }
}

.sp__nav-items {
  padding: 0 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}

.sp__nav-item {
  width: 90%;
  font-size: 1rem;
  line-height: 1.7333333333;
  font-weight: 600;
}

.sp__nav-item:nth-child(n+2) {
  margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
  .pc__nav-items {
    display: flex !important;
    height: inherit;
    align-items: center;
    margin-right: 3rem;
  }
}

.pc__nav-item {
  font-size: 1.125rem;
  line-height: 1.7222222222;
  position: relative;
  z-index: 10;
}

.pc__nav-item:nth-child(n+2) {
  margin-left: 1.875rem;
}

@media screen and (min-width: 768px) {
  .pc__nav-item-text:hover {
    opacity: 1;
  }
}

.header__nav .pc__nav-item-text:hover {
  color: #00ccff;
}

.pc__nav-item-text::before {
  content: "";
  position: absolute;
  height: 0.0625rem;
  width: 100%;
  background-color: #00ccff;
  top: 1.875rem;
  transform: scale(0, 1);
  transition: 0.5s;
}

@media screen and (min-width: 768px) {
  .pc__nav-item-text:hover::before {
    transform: scale(1, 1);
  }
}

.pc__nav-item2 {
  font-size: 1.125rem;
  line-height: 1.7222222222;
  position: relative;
}

.pc__nav-item2:nth-child(n+2) {
  margin-left: 1.875rem;
}

#fixed-header {
  background-color: #fff;
  position: fixed;
  top: -5rem;
  width: 100%;
  height: 5rem;
  transition: 0.5s; /* アニメーションタイミング */
  z-index: 100;
}
@media screen and (min-width: 768px) {
  #fixed-header {
    top: -6.25rem;
    height: 6.25rem;
  }
}

#fixed-header.is-show {
  top: 0;
}

.footer {
  background-color: #00ccff;
}

.footer__inner {
  padding: 5rem 1.5625rem 3.125rem;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding: 5.625rem 1.875rem 3.125rem;
  }
}

.footer__contact-wrapper {
  background-color: #fff;
  border-radius: 0.625rem;
  padding: 1.5rem;
  height: 9.5625rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .footer__contact-wrapper {
    padding: 3rem;
    width: 36.25rem;
    height: auto;
    margin: 0 auto;
  }
}

.footer__contact-wrapper:hover {
  transition: all 0.3s ease;
  opacity: 1;
}

.footer__contact-wrapper::after {
  content: "";
  display: inline-block;
  width: 0.8125rem;
  height: 0.8125rem;
  border-top: 3px solid #00ccff;
  border-right: 3px solid #00ccff;
  transform: rotate(45deg);
  transition: transform 0.3s ease, margin-left 0.3s ease;
  margin-right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .footer__contact-wrapper::after {
    width: 1.125rem;
    height: 1.125rem;
    border-top: 4px solid #00ccff;
    border-right: 4px solid #00ccff;
  }
}

.footer__contact-wrapper:hover::after {
  transform: translate(8px) rotate(45deg);
}
@media screen and (min-width: 768px) {
  .footer__contact-wrapper:hover::after {
    transform: translate(10px) rotate(45deg);
  }
}

.footer__contact-title {
  font-size: 1.75rem;
  color: #00ccff;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 768px) {
  .footer__contact-title {
    font-size: 2.125rem;
  }
}

.footer__contact-text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #00ccff;
}
@media screen and (min-width: 768px) {
  .footer__contact-text {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.footer__nav-wrapper {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .footer__nav-wrapper {
    margin-top: 5rem;
  }
}

.footer-title-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 1.25rem;
}

.footer__nav {
  margin-top: 3rem;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    margin-top: initial;
  }
}

.sp__footer-nav-items .sp__nav-item {
  font-weight: 500;
}

.sp__footer-nav-items .sp__nav-item:nth-child(n+2) {
  margin-top: 1.5rem;
}

.sp__nav-item a {
  letter-spacing: 3px;
}

.footer__copy {
  margin-top: 2.5rem;
  font-size: 0.625rem;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 768px) {
  .footer__copy {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .footer__nav-flex {
    margin: 0 auto;
    max-width: 80rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.inner {
  width: 100%;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1250px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

#g-nav {
  display: none;
}
@media screen and (min-width: 768px) {
  #g-nav {
    display: block;
  }
}

#g-nav.panelactive {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  display: block;
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
}

/*ナビゲーションの縦スクロール*/
#g-nav-list {
  display: none; /*はじめは表示なし*/
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 5;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 768px) {
  #g-nav-list {
    display: block;
    position: static;
  }
}

#g-nav.panelactive #g-nav-list {
  display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
  opacity: 0; /*はじめは透過0*/
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  #g-nav ul {
    opacity: initial;
    visibility: visible;
  }
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
  opacity: 1;
  visibility: visible;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: 0.1s; /*0.1 秒遅らせて出現*/
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: absolute;
  top: 1.0625rem;
  right: 0.625rem;
  z-index: 50; /*ボタンを最前面に*/
  cursor: pointer;
  width: 3.125rem;
  height: 3.125rem;
}
@media screen and (min-width: 768px) {
  .openbtn1 {
    display: none;
  }
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0.875rem;
  height: 0.125rem;
  border-radius: 0.125rem;
  background-color: #404040;
  width: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .openbtn1 span {
    display: none;
  }
}

.openbtn1 span:nth-of-type(1) {
  top: 0.9375rem;
}

.openbtn1 span:nth-of-type(2) {
  top: 1.4375rem;
}

.openbtn1 span:nth-of-type(3) {
  top: 1.9375rem;
}

.openbtn1.active span:nth-of-type(1) {
  top: 1.125rem;
  left: 1.125rem;
  transform: translateY(6px) rotate(-45deg);
  width: 1.6875rem;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 1.875rem;
  left: 1.125rem;
  transform: translateY(-6px) rotate(45deg);
  width: 1.6875rem;
}

.section__title {
  margin-top: 4.375rem;
  margin-bottom: 2.8125rem;
  padding: 0 1.5625rem;
}
@media screen and (min-width: 768px) {
  .section__title {
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }
}

.section__title h2 {
  font-size: 1.75rem;
  line-height: 1.4285714286;
  font-weight: 600;
  color: #00ccff;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 768px) {
  .section__title h2 {
    font-size: 3.75rem;
    line-height: 1;
  }
}

.more__btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .more__btn {
    font-size: 1rem;
  }
}

.more__btn::after {
  content: "";
  display: inline-block;
  width: 0.4375rem;
  height: 0.4375rem;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
  transition: transform 0.3s ease, margin-left 0.3s ease;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .more__btn::after {
    width: 0.625rem;
    height: 0.625rem;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
  }
}

.more__btn:hover::after {
  transform: translate(5px) rotate(45deg);
}

.contact-btn__wrapper {
  margin: 1.5625rem auto 0;
  width: 15rem;
  height: 3.125rem;
  border: 1px solid #00ccff;
  background-color: #fff;
  color: #00ccff;
  border-radius: 0.625rem;
  font-weight: 500;
  font-size: 0.75rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .contact-btn__wrapper {
    font-size: 0.9375rem;
    width: 16.6875rem;
    height: 3.375rem;
  }
}

.contact-btn__wrapper p {
  height: 100%;
  width: 100%;
}

.contact-btn__wrapper::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 0.4375rem;
  height: 0.4375rem;
  border-top: 2px solid #00ccff;
  border-right: 2px solid #00ccff;
  transform: rotate(45deg);
  transition: transform 0.3s ease, margin-left 0.3s ease;
  margin-left: 10.625rem;
}
@media screen and (min-width: 768px) {
  .contact-btn__wrapper::after {
    width: 0.5625rem;
    height: 0.5625rem;
  }
}

.contact-btn__wrapper:hover {
  background-color: #00ccff;
  color: #fff;
  border: 1px solid #fff;
}

.contact-btn__wrapper:hover::after {
  transform: translate(8px) rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

input[type=submit] {
  color: #00ccff;
  height: 100%;
  width: 100%;
}

.contact-btn__wrapper:hover input[type=submit] {
  color: #fff;
}

.contact__btn {
  margin-top: 1.5625rem;
  padding: 0.75rem 3rem;
  width: 15rem;
  height: 3.125rem;
  border: 1px solid #00ccff;
  background-color: #fff;
  color: #00ccff;
  border-radius: 0.625rem;
  font-weight: 500;
  font-size: 0.75rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .contact__btn {
    font-size: 0.9375rem;
    width: 16.6875rem;
    height: 3.375rem;
  }
}

.contact__btn:hover {
  background-color: #00ccff;
  color: #fff;
  border: 1px solid #fff;
}

.contact__btn::after {
  content: "";
  display: inline-block;
  width: 0.4375rem;
  height: 0.4375rem;
  border-top: 2px solid #00ccff;
  border-right: 2px solid #00ccff;
  transform: rotate(45deg);
  transition: transform 0.3s ease, margin-left 0.3s ease;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .contact__btn::after {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.contact__btn:hover::after {
  transform: translate(8px) rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.works__btn::after {
  content: "";
  display: none !important;
}

.works__btn::before {
  content: "";
  display: inline-block;
  width: 0.4375rem;
  height: 0.4375rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-135deg);
  transition: transform 0.3s ease, margin-left 0.3s ease;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .works__btn::before {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.works__btn:hover::before {
  transform: translate(-8px) rotate(-135deg);
  border-top: 2px solid #00ccff;
  border-right: 2px solid #00ccff;
}

/*デフォルトのスタイルを無効化する*/
input[type=submit] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

span.wpcf7-spinner {
  display: none;
}

.leftCurtainbg {
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleX(0);
  background-color: #00ccff;
  animation-name: curtainAnime;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes curtainAnime {
  0% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  51% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.fadeout {
  animation: fadeOut 2s;
  animation-fill-mode: both;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#container {
  opacity: 0; /*はじめは透過0に*/
}

/*bodyにpageOnクラスがついたら出現*/
body.pageOn #container {
  animation-name: PageAnimeOn;
  animation-duration: 2s;
  animation-delay: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeOn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.box {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.box:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #00ccff;
  transition: 0.8s ease;
}

.isPlay:before {
  transform: translate3d(100%, 0, 0);
}

.box-white {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.box-white:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: 0.8s ease;
  z-index: 99;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(150px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
}

.page__fv {
  height: 50vh;
  width: 100%;
}

.page__fv-img {
  height: 100%;
  width: 100%;
}

.page__fv-img img {
  height: 100%;
  object-fit: cover;
}

.page-fv__title {
  padding: 0 1.5625rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.page-fv-title {
  font-size: 2.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .page-fv-title {
    font-size: 4.5rem;
  }
}

.page-fv-text {
  font-size: 1.125rem;
  font-family: sans-serif;
}
@media screen and (min-width: 768px) {
  .page-fv-text {
    font-size: 1.75rem;
  }
}

.back-section {
  padding-bottom: 1.25rem;
}

.back__wrapper {
  padding: 0.3125rem 0.9375rem;
  font-family: "Montserrat", sans-serif;
  display: flex;
  gap: 0.3125rem;
  font-size: 0.75rem;
  height: 1.8125rem;
}
@media screen and (min-width: 768px) {
  .back__wrapper {
    height: 2.4375rem;
    padding: 0.625rem 1.5625rem;
    max-width: 68.75rem;
    margin: 0 auto;
  }
}

.mini-arrow {
  margin-left: 0.3125rem;
  display: block;
  margin-top: 0.375rem;
  width: 0.4375rem;
  height: 0.4375rem;
  border-top: 0.125rem solid #00ccff;
  border-right: 0.125rem solid #00ccff;
  transform: rotate(45deg);
}

.back-text {
  margin-left: 0.5rem;
  color: #00ccff;
}

.black-arrow {
  border-top: 0.125rem solid #404040;
  border-right: 0.125rem solid #404040;
  margin-right: 0.3125rem;
}

.post-category {
  display: inline-block;
  font-size: 0.75rem;
  font-family: "Montserrat", sans-serif;
  background-color: #00ccff;
  padding: 0.1875rem 0.75rem;
  border-radius: 5rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .post-category {
    font-size: 1rem;
  }
}

.post-time {
  display: inline-block;
  font-size: 0.75rem;
  font-family: "Montserrat", sans-serif;
  margin-left: 0.625rem;
  color: #aaa;
}
@media screen and (min-width: 768px) {
  .post-time {
    font-size: 0.875rem;
  }
}

.post-title {
  margin-top: 1.5625rem;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .post-title {
    font-size: 1.75rem;
  }
}

.post-content__inner {
  margin-top: 3.125rem;
}

.post-content {
  padding: 1.5rem 1.5rem 3.125rem;
  box-shadow: 40px 50px 30px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .post-content {
    padding: 5.625rem;
  }
}

.top__fv {
  margin-top: -5rem;
  height: 75vh;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top__fv {
    height: 100vh;
    margin-top: -6.25rem;
  }
}

.top__fv-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fv-title__wrapper {
  position: absolute;
  z-index: 2;
  color: #fff;
  padding: 1.25rem 1.5625rem;
}
@media screen and (min-width: 768px) {
  .fv-title__wrapper {
    padding: 2.5rem 3.125rem;
  }
}

.fv-sub-title {
  font-size: 1.375rem;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .fv-sub-title {
    font-size: 2.5rem;
  }
}

.fv-title {
  font-size: 1.875rem;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .fv-title {
    font-size: 3.4375rem;
  }
}

.swiper {
  width: 100%;
  height: 75vh;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .swiper {
    height: 100vh;
  }
}

.swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.top_service .inner {
  padding: 0;
}

@media screen and (min-width: 768px) {
  .service__items {
    display: flex;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 768px) {
  .service__item {
    width: 38.75rem;
    height: 25rem;
  }
}

.service__item a {
  transition: all 0.3s;
  display: block;
  height: 100%;
}

.service__item img {
  height: 100%;
  object-fit: cover;
}

.service__item a:hover {
  border: 5px solid #00ccff;
}

.top__about {
  margin-bottom: 5rem;
}

.about__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .about__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.about__text-box {
  width: 88%;
  margin: 3.125rem auto;
}
@media screen and (min-width: 768px) {
  .about__text-box {
    margin: initial;
    width: 58%;
  }
}

.about-text {
  font-size: 0.875rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .about-text {
    font-size: 1.5rem;
  }
}

.about__img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about__img {
    width: 40%;
  }
}

.top__contact {
  background-color: #00ccff;
  color: #fff;
}

.contact__inner {
  padding: 3rem 1.5625rem;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    display: flex;
    justify-content: space-between;
    padding: 5.9375rem;
  }
}

.contact-title {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .contact-title {
    font-size: 2rem;
  }
}

.contact-text {
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .contact-text {
    margin-top: 1.5625rem;
  }
}

.news__inner {
  padding: 0 1.5625rem;
  margin-bottom: 5.625rem;
}

.news-card__wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.news-card-box {
  width: 100%;
  max-width: 22.5rem;
  height: 20rem;
  border-radius: 10px;
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
}

.news-card-box:hover {
  transform: translateY(10px) translateX(10px);
  transition: all 0.5s;
  box-shadow: initial;
}

.news-card-list {
  display: block;
  max-width: 22.5rem;
  height: 20rem;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 10px;
}

.news-card__img {
  width: 100%;
  height: 11.25rem;
  object-fit: cover;
  border-radius: 10px;
}

.news-card__img img {
  height: 100%;
  object-fit: cover;
}

.news-title {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  letter-spacing: 1.5px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .news-title {
    font-size: 1rem;
  }
}

.news-text {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #aaa;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1.5px;
}
@media screen and (min-width: 768px) {
  .news-text {
    font-size: 0.875rem;
  }
}

.about-page__content {
  background-color: #fff;
  padding: 3rem 0;
}
@media screen and (min-width: 768px) {
  .about-page__content {
    padding: 5.9375rem 0;
  }
}

.about-page__content-inner {
  padding: 0 1.5625rem;
}
@media screen and (min-width: 768px) {
  .about-page__content-inner {
    max-width: 50rem;
    margin: 0 auto;
  }
}

.about-page__title {
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .about-page__title {
    font-size: 4rem;
    line-height: 1.2;
    text-align: center;
  }
}

.about-page__sub-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.5rem;
  letter-spacing: 0.9px;
}
@media screen and (min-width: 768px) {
  .about-page__sub-title {
    font-size: 1.75rem;
  }
}

.about-page__text {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  letter-spacing: 0.6px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .about-page__text {
    font-size: 1.25rem;
    margin-top: 3rem;
  }
}

.service-page__content {
  padding: 3rem 0;
}
@media screen and (min-width: 768px) {
  .service-page__content {
    padding: 5.9375rem 0;
  }
}

.service-page__content-inner {
  padding: 0 1.5625rem;
}
@media screen and (min-width: 768px) {
  .service-page__content-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 3rem;
  }
}

.service-page__lists {
  box-shadow: 40px 50px 30px rgba(0, 0, 0, 0.1);
  padding: 3rem 1.5rem;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .service-page__lists {
    padding: 5.9375rem;
  }
}

.service-page__lists:nth-child(n+2) {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .service-page__lists:nth-child(n+2) {
    margin-top: 5.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .service-list__content1 {
    display: flex;
    align-items: center;
  }
}

.reverse {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .reverse {
    margin-top: 5.9375rem;
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .reverse .service-list__content-text-wrapper {
    margin-left: 0;
    margin-right: 3rem;
  }
}

.service-page-list-title {
  color: #00ccff;
  font-weight: 600;
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .service-page-list-title {
    font-size: 3rem;
  }
}

.service-list__img {
  margin-top: 1.5625rem;
  height: 12.5rem;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .service-list__img {
    height: 26.25rem;
    width: 60%;
  }
}

.service-list__img img {
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.service-list__content-text-wrapper {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .service-list__content-text-wrapper {
    margin-left: 3rem;
    width: calc(40% - 48px);
  }
}

.service-list__content-text-wrapper h3 {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .service-list__content-text-wrapper h3 {
    font-size: 1.5rem;
  }
}

.service-content-text {
  margin-top: 1.5625rem;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .service-content-text {
    font-size: 1.0625rem;
  }
}

.service-page__contact-btn {
  margin: 3rem auto 0;
  padding: 0.75rem 3rem;
  width: 16.25rem;
  height: 3.125rem;
  border: 1px solid #fff;
  background-color: #00ccff;
  color: #fff;
  border-radius: 0.625rem;
  font-weight: 500;
  font-size: 0.75rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .service-page__contact-btn {
    font-size: 0.9375rem;
    width: 18.75rem;
    height: 3.375rem;
    margin-top: 5.9375rem;
  }
}

.service-page__contact-btn:hover {
  background-color: #fff;
  color: #00ccff;
  border: 1px solid #00ccff;
}

.service-page__contact-btn::after {
  content: "";
  display: inline-block;
  width: 0.4375rem;
  height: 0.4375rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.3s ease, margin-left 0.3s ease;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .service-page__contact-btn::after {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.service-page__contact-btn:hover::after {
  transform: translate(8px) rotate(45deg);
  border-top: 2px solid #00ccff;
  border-right: 2px solid #00ccff;
}

.company-page__content {
  padding: 3.125rem 0;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .company-page__content {
    padding: 5.9375rem 0;
  }
}

.company-page__inner {
  padding: 0 1.5625rem;
}
@media screen and (min-width: 768px) {
  .company-page__inner {
    margin: 0 auto;
    padding: 0 3.125rem;
  }
}

@media screen and (min-width: 768px) {
  .company-page-flex {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
  }
}

.company-page__img {
  width: 100%;
  height: 15rem;
}
@media screen and (min-width: 768px) {
  .company-page__img {
    width: 50%;
    height: 32.5rem;
  }
}

.company-page__img img {
  height: 100%;
  object-fit: cover;
  border-radius: 0.625rem;
}

.company__info {
  font-size: 0.875rem;
  padding: 0 1.5625rem;
}
@media screen and (min-width: 768px) {
  .company__info {
    width: 50%;
    font-size: 1rem;
  }
}

.company-page-sub-title {
  font-size: 1.125rem;
  margin-top: 5.9375rem;
}
@media screen and (min-width: 768px) {
  .company-page-sub-title {
    font-size: 3rem;
  }
}

.company-info__lists {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5625rem;
}

.company__info-title {
  width: 25%;
}

.company__info-text {
  width: 65%;
}

.company-page__iframe {
  margin-top: 3.125rem;
  width: 100%;
  height: 18.75rem;
}
@media screen and (min-width: 768px) {
  .company-page__iframe {
    height: 25rem;
    width: 50%;
    display: flex;
    justify-content: flex-end;
    margin: 3.125rem 0 0 auto;
  }
}

.company-page__iframe iframe {
  width: 100%;
  height: 100%;
  border: 1px solid #404040;
  border-radius: 0.625rem;
}

.works-page__content {
  padding: 3.125rem 0;
}
@media screen and (min-width: 768px) {
  .works-page__content {
    padding: 5.9375rem 0;
  }
}

.works-page__inner {
  padding: 0 1.5625rem;
}
@media screen and (min-width: 768px) {
  .works-page__inner {
    margin: 0 auto;
    padding: 0 3.125rem;
    max-width: 78rem;
  }
}

.works-title {
  font-size: 1.5rem;
  text-align: center;
}

.works-categorys {
  margin-top: 1.5625rem;
  display: flex;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: bold;
  gap: 0.5rem;
}

.works-categorys__item {
  position: relative;
}

@media screen and (min-width: 768px) {
  .works-categorys__item a:hover {
    opacity: 1;
    color: #00ccff;
  }
}

.works-categorys__item a::before {
  content: "";
  position: absolute;
  height: 0.0625rem;
  width: 100%;
  background-color: #00ccff;
  top: 1.5625rem;
  transform: scale(0, 1);
  transition: 0.5s;
}

@media screen and (min-width: 768px) {
  .works-categorys__item a:hover::before {
    transform: scale(1, 1);
  }
}

.works__items {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .works__items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5625rem;
  }
}

.works__item {
  background-color: #fff;
  border-radius: 0.625rem;
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
}
@media screen and (min-width: 768px) {
  .works__item {
    width: 22.8125rem;
    height: 22.5rem;
  }
}

.works__item:hover {
  transform: translateY(10px) translateX(10px);
  transition: all 0.5s;
  box-shadow: initial;
}

.works__item:nth-child(n+2) {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .works__item:nth-child(n+2) {
    margin-top: initial;
  }
}

.works__item a {
  padding: 1.5625rem;
  width: 100%;
  height: 100%;
  display: block;
}

.works-item__img {
  width: 100%;
  height: 11.25rem;
  border-radius: 0.625rem;
}
.works-item__img img {
  height: 100%;
  object-fit: cover;
  border-radius: 0.625rem;
}

.works-item-category {
  display: inline-block;
  padding: 0.1875rem 0.75rem;
  color: #fff;
  background-color: #00ccff;
  border-radius: 5rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
}

.works-item-title {
  margin-top: 0.625rem;
  font-size: 0.875rem;
}

.works-item-date {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.7px;
  font-family: "Montserrat", sans-serif;
  display: block;
}

.contact-page__content {
  padding: 3.125rem 0;
}
@media screen and (min-width: 768px) {
  .contact-page__content {
    padding: 5.9375rem 0;
  }
}

.contact-page-content__inner {
  padding: 0 1.5625rem;
}
@media screen and (min-width: 768px) {
  .contact-page-content__inner {
    padding: 0 3.125rem;
  }
}

.form__wrapper {
  border-radius: 0.625rem;
  background-color: #fff;
  width: 100%;
  box-shadow: 40px 50px 30px rgba(0, 0, 0, 0.1);
  padding: 3rem 1.5625rem;
}
@media screen and (min-width: 768px) {
  .form__wrapper {
    max-width: 73.75rem;
    margin: 0 auto;
    padding: 6rem;
  }
}

.form-info-main {
  font-size: 0.9375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .form-info-main {
    font-size: 1.625rem;
    font-weight: 600;
  }
}

.form-info-sub {
  margin-top: 1.5625rem;
  font-size: 0.6875rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .form-info-sub {
    font-size: 0.875rem;
    text-align: center;
  }
}

.form-content__wrapper {
  margin-top: 3.125rem;
}

.form-item {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .form-item {
    width: 40rem;
    font-size: 1rem;
    margin: 0 auto;
  }
}

.form-item:nth-child(n+2) {
  margin-top: 1.5625rem;
}

.from-title::after {
  content: "*";
  display: inline-block;
  color: red;
}

.from-input-wrapper {
  margin-top: 0.625rem;
  height: 3.125rem;
  padding: 0.75rem;
  background: #f8f7f6;
  border-bottom: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
  border-radius: 10px;
  border-right: 1px solid #cccccc;
  border-top: 1px solid #cccccc;
}

.form-textarea-wrapper {
  height: 10rem;
}

.from-input-wrapper input::placeholder,
.from-input-wrapper textarea::placeholder {
  opacity: 0.3;
  font-family: "Montserrat", sans-serif;
}

.form-textarea-wrapper p {
  height: 100%;
}

.form-textarea-wrapper textarea {
  width: 100%;
  height: 100%;
}

.form-agree__item {
  margin-top: 3.125rem;
  font-size: 0.8125rem;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .form-agree__item {
    text-align: center;
  }
}

.form-contact__btn {
  margin: 1.5625rem auto 0;
  width: 11.5625rem;
  padding: 0.75rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .form-contact__btn {
    width: 13.125rem;
  }
}

.wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.9375rem;
}

.contact-thanks__page {
  padding: 3.125rem 0;
}
@media screen and (min-width: 768px) {
  .contact-thanks__page {
    padding: 5.9375rem 0;
  }
}

.contact-thanks__inner {
  padding: 0 1.5625rem;
}
@media screen and (min-width: 768px) {
  .contact-thanks__inner {
    margin: 0 auto;
    padding: 0 3.125rem;
  }
}

.contact-thanks__content {
  border-radius: 0.625rem;
  background-color: #fff;
  width: 100%;
  box-shadow: 40px 50px 30px rgba(0, 0, 0, 0.1);
  padding: 1.5625rem 1.5625rem 3rem;
}
@media screen and (min-width: 768px) {
  .contact-thanks__content {
    text-align: center;
    max-width: 73.75rem;
    margin: 0 auto;
    padding: 6rem;
  }
}

.contact-thanks-title {
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .contact-thanks-title {
    font-size: 1.75rem;
  }
}

.contact-thanks-text {
  margin-top: 1.5625rem;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .contact-thanks-text {
    margin-top: 3.125rem;
    font-size: 1rem;
  }
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
