/* 共通 */

html {
  scroll-behavior: smooth;
  color: #333;
}

body {
  width: 100%;
  color: #333;
}

main {
  min-height: 100vh;
}

section {
  padding: 4rem 0;
}

a {
  text-decoration: none;
  color: #333;
  cursor: pointer;
}

.cont-t {
  text-align: center;
  padding: 2em 0;
}

@media screen and (max-width: 600px) {
  .cont-t {
    padding: 1em 0;
  }
}

.pages-g {
  background: #f9f9f9;
  width: 100%;
}
.pages-w {
  background: #fff;
}

.pages-g ul,
.pages-w ul {
  width: 80vw;
  margin: 0 auto;
  padding: 1em 0;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 1em;
}

.pages-g ul li,
.pages-w ul li {
  color: #666666;
  font-size: 14px;
}

.pages-g ul li a,
.pages-w ul li a {
  color: #666666;
}

@media screen and (max-width: 600px) {
  .pages-g ul,
  .pages-w ul {
    width: 90vw;
  }

  .pages-g ul li,
  .pages-w ul li {
    color: #666666;
    font-size: 10px;
  }
}

#page-top {
  display: block;
  width: 70px;
  height: 70px;
  background-color: #0068ad;
  border-radius: 50%;
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
}

#page-top div {
  color: #fff;
  display: grid;
  place-items: center;
}

#page-top div::after {
  content: "";
  width: 20px;
  height: 20px;
  border-top: 3px #fff solid;
  border-right: 3px #fff solid;
  transform: rotate(-45deg);
  position: absolute;
  top: 40%;
}

/*　上に上がる動き　*/

#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(200px);
  }
  to {
    opacity: 0.8;
    transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 0.8;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(200px);
  }
}

@media screen and (max-width: 600px) {
  #page-top {
    display: none;
  }
}

.tag-list {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 8px;
  padding-left: 5%;
}

.tag-list a {
  font-size: 10px;
}

/* 装飾関係 */

.sub-t-g {
  font-size: 12px;
  color: #333;
  font-weight: 800;
  margin-bottom: 10px;
  display: block;
}
.sub-t-w {
  font-size: 12px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 10px;
  display: block;
}
.sub-t-b {
  font-size: 12px;
  color: #0068ad;
  font-weight: 800;
  margin-bottom: 10px;
  display: block;
}

@media screen and (max-width: 600px) {
  .sub-t-g {
    font-size: 12px;
    color: #333;
    font-weight: 800;
    margin-bottom: 0;
    display: block;
  }

  .sub-t-w {
    font-size: 12px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 0;
    display: block;
  }

  .sub-t-b {
    font-size: 12px;
    color: #0068ad;
    font-weight: 800;
    margin-bottom: 0;
    display: block;
  }
}

/* ヘッダー */

header {
  width: 100%;
  height: 80px;
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 50;
}

.header-wrap {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo-btn {
  display: block;
  padding-left: 5%;
  transition: 0.3 all;
}
header .logo-btn:hover {
  opacity: 0.8;
}

.logo-area {
  display: flex;
  justify-content: left;
  align-items: center;
}

.logo-img {
  width: 60px;
}

.logo-area h1 p {
  display: block;
  font-size: clamp(18px, 2vw, 20px);
  margin-left: 10px;
  color: #333;
}

header nav {
  height: 80px;
}

header nav ul {
  display: flex;
  height: 100%;
}

header nav ul a {
  height: 100%;
  display: block;
  padding: 0 25px;
  color: #333;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.tel-logo,
.mail-logo {
  width: 25px;
}

header nav ul a:hover {
  color: #fff;
  background: #0068ad;
}

.tel-btn {
  background: #333;
  color: #fff;
  padding: 20px;
}

.tel-btn:hover {
  color: #fff;
  background: #333;
  opacity: 0.9;
}

.mail-btn {
  background: #0068ad;
  color: #fff;
}

.mail-btn:hover {
  color: #fff;
  opacity: 0.9;
}

#is-page {
  background: #f2f2f2;
}

/* モーダルメニューボタン */

.sp-menu-btn {
  width: 50px;
  height: 50px;
  display: none;
  position: relative;
  cursor: pointer;
  margin-right: 25px;
}

@media screen and (max-width: 600px) {
  .sp-menu-btn {
    margin-right: 10px;
  }
}

.sp-menu-btn:hover {
  background-color: #f9f9f9;
}

.btn-line2 {
  display: block;
  height: 1px;
  width: 30px;
  background-color: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.btn-line1 {
  display: block;
  height: 1px;
  width: 30px;
  background-color: #333;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.btn-line3 {
  display: block;
  height: 1px;
  width: 30px;
  background-color: #333;
  margin-bottom: 10px;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* モーダルメニュー */

.sp-menu-bg {
  background-color: #333;
  max-width: 500px;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  display: none;
}

.is-show {
  display: block;
}

.sp-menu-back-btn {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  padding-top: 25px;
  margin-right: 25px;
}

@media screen and (max-width: 600px) {
  .sp-menu-back-btn {
    margin-right: 10px;
  }
}

.sp-menu-back-btn span {
  height: 1px;
  width: 30px;
  background-color: #fff;
  transform: rotate(45deg);
}

.sp-menu-back-btn span::before {
  content: "";
  height: 1px;
  width: 30px;
  display: block;
  background-color: #fff;
  transform: rotate(270deg);
  z-index: 1;
}

.sp-menu-area {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
}

.sp-menu-area nav ul li {
  margin-bottom: 30px;
}
.sp-menu-area nav ul li a {
  color: #fff;
  font-size: 14px;
}

.sp-menu-area nav ul li a.tel-btn {
  color: #fff;
  margin-top: 50px;
  margin-left: 0;
  padding: 10px;
  border: 1px #fff solid;
  display: block;
}

.sp-menu-area nav ul li a.mail-btn {
  color: #fff;
  padding: 10px;
  border: 1px #fff solid;
  background: none;
  display: block;
}
.sp-menu-area nav ul li a.sns-icon-1 {
  background-image: url(../img/instagram-icon.svg);
  width: 30px;
  height: 30px;
  background-size: cover;
  display: block;
  margin-top: 50px;
}

/* .sp-menu-area nav ul li a.sns-icon-2 {
  background-image: url(img/FACEBOOKのアイコン素材\ 3.svg);
  width: 30px;
  height: 30px;
  background-size: cover;
  display: block;
} */

/* ファーストビュー */

section.fv {
  padding: 0;
  min-height: 100vh;
}

.fv-flex {
  display: flex;
  justify-content: left;
  width: 100%;
  height: 90vh;
}

.fv-cont-l {
  width: 40%;
  height: 100vh;
  padding-left: 5%;
  padding-right: 5%;
}

.fv h2 {
  text-align: left;
  margin-top: 50%;
  color: #333;
}

.fv h2 .fv-title {
  line-height: 1.5em;
  font-size: 32px;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.fv h2 .about-desc {
  font-size: 14px;
  margin-bottom: 50px;
  letter-spacing: 2px;
}

.fv-cont-l a {
  width: fit-content;
  display: block;
}

.fv a .about-btn {
  border: #333 1px solid;
  font-size: 14px;
  width: fit-content;
  padding: 10px 30px;
  letter-spacing: 2px;
  transition: all 0.3s;
  font-weight: 600;
}

.fv a:hover .about-btn {
  background: #0068ad;
  color: #fff;
  border: #0068ad 1px solid;
}

.fv-cont-l::after {
  content: "";
  display: block;
  width: 100%;
  height: 10vh;
  background-color: #f9f9f9;
  position: absolute;
  bottom: 0;
  left: 0;
}

.fv-cont-r {
  width: 60%;
  min-height: 100vh;
}

.fv-img {
  width: 100%;
  height: 100vh;
  background-image: url(../img/me.jpg);
  background-size: cover;
  background-position: 50% 20%;
}

@media screen and (max-width: 1200px) {
  header nav {
    display: none;
  }

  .sp-menu-btn {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  header {
    height: 50px;
    width: 100vw;
  }

  .logo-img {
    width: 40px;
  }

  section.fv {
    width: 100%;
  }

  .fv .fv-flex {
    display: block;
    position: relative;
  }
  .fv .fv-flex .fv-cont-l {
    width: 80%;
    background: #fff;
    position: absolute;
    top: 70%;
    left: 0;
  }

  .fv .fv-flex .fv-cont-l h2 {
    margin-top: 0;
  }

  .fv .fv-flex .fv-cont-l h2 .fv-title {
    display: block;
    letter-spacing: 1px;
    font-size: 18px;
    color: #333;
    margin: 20px 0;
  }

  .fv .fv-flex .fv-cont-l h2 .about-desc {
    display: block;
    letter-spacing: 1px;
    line-height: 1.8;
    font-size: 12px;
    color: #333;
    margin-bottom: 30px;
  }
  .fv .fv-flex .fv-cont-l h2 .about-btn {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    padding: 5px 20px;
  }

  .fv .fv-flex .fv-cont-r {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    z-index: -1;
  }

  .fv-cont-l::after {
    display: none;
  }
}

/* 事業内容 */

section.service {
  background-color: #f9f9f9;
  min-height: 100vh;
}

.service-wrap {
  position: relative;
  z-index: 1;
}

.service-wrap::before {
  content: "";
  display: block;
  width: 90vw;
  height: 300px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #0068ad;
  z-index: -1;
}

/* .service-t-wrap h2 {
  padding: 5vw;
} */

.service h2 p {
  color: #fff;
  font-size: 24px;
}

.card-area {
  display: grid;
  grid-template: 300px 300px / 1fr 1fr 1fr;
  gap: 10px;
  width: 60vw;
  margin: 0 auto;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  background-color: #fff;
  padding: 10px;
  box-shadow: 6px 10px 30px rgba(0, 0, 0, 0.06),
    0px 2px 4px rgba(0, 0, 0, 0.0196802);
}

.service-card .card-img-1 {
  width: 100%;
  height: 150px;
  background-image: url(../img/ten.jpg);
  background-size: cover;
}
.service-card .card-img-2 {
  width: 100%;
  height: 150px;
  background-image: url(../img/bord.jpg);
  background-size: cover;
}
.service-card .card-img-3 {
  width: 100%;
  height: 150px;
  background-image: url(../img/bord-gl.jpg);
  background-size: cover;
}
.service-card .card-img-4 {
  width: 100%;
  height: 150px;
  background-image: url(../img/kaitai.jpg);
  background-size: cover;
}
.service-card .card-img-5 {
  width: 100%;
  height: 150px;
  background-image: url(../img/net.jpg);
  background-size: cover;
  background-position: 0 100%;
}
.service-card .card-img-6 {
  width: 100%;
  height: 150px;
  background-image: url(../img/naisou.jpg);
  background-size: cover;
}

.service-card div::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  opacity: 0.3;
}

.card-title {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 15px 0;
}

.service-card p {
  font-size: 14px;
  text-align: left;
  padding: 0 20px 15px 20px;
}

@media screen and (max-width: 1200px) {
  .service {
    height: 1330px;
  }

  .service .service-wrap .card-area {
    grid-template: 1fr 1fr 1fr / 1fr 1fr;
  }
}

@media screen and (max-width: 600px) {
  .service {
    height: auto;
  }

  .service-wrap {
    height: 2000px;
  }

  .service .spacer-g-60 {
    display: none;
  }

  .service-wrap::before {
    width: 100%;
    height: 200px;
  }

  .cont-t .service-title {
    font-size: 20px;
  }

  .service .service-wrap .card-area {
    grid-template: 1fr 1fr 1fr 1fr 1fr 1fr / 1fr;
    top: 100px;
    width: 80vw;
  }
}

/* 選ばれる3つの理由 */

section.strengths {
  background-color: #f9f9f9;
  position: relative;
  z-index: 1;
  top: 0;
}

.strengths-bg {
  height: 2em;
}

.strengths::before {
  content: "";
  background-image: url(../img/bg1.jpg);
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: 50% 20%;
  display: block;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}
.strengths::after {
  content: "";
  display: block;
  width: 100%;
  height: 500px;
  background: #fff;
  opacity: 0.7;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}

.strengths-wrap {
  width: 90vw;
  background: #fff;
  padding: 0 5% 5% 15%;
  box-shadow: 6px 10px 30px rgba(0, 0, 0, 0.06),
    0px 2px 4px rgba(0, 0, 0, 0.0196802);
}

.strengths-title {
  text-align: center;
}

.contents-area {
  width: 100%;
}

.contents-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 4em;
}

.cont-l {
  width: 45%;
  position: relative;
  border-left: #0068ad 1px solid;
  position: relative;
}

.cont-l-wrap {
  position: absolute;
  top: -28px;
  padding-left: 2%;
}

.strength-p {
  color: #0068ad;
  font-weight: 600;
  display: block;
  font-size: 80px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
}

.strength-title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
}

.strength-desc {
  font-size: 14px;
}

.cont-r {
  width: 45%;
}

.cont-r img {
  object-fit: cover;
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .strengths-wrap {
    padding: 0 5% 5%;
  }

  .strengths-bg::before {
    height: 100%;
  }

  .strengths-wrap .cont-t p {
    font-size: 20px;
    color: #333;
  }

  .contents-area {
    width: 100%;
  }

  .contents-wrap {
    display: flex;
    flex-wrap: wrap;
    padding: 5%;
    margin-top: 2em;
  }

  .cont-l {
    width: 100%;
    order: 1;
  }

  .cont-l-wrap {
    position: static;
    padding-left: 2%;
  }

  .strength-p {
    font-size: 20px;
  }

  .strength-title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
  }

  .strength-desc {
    font-size: 14px;
  }

  .cont-r {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 600px) {
  .strengths-wrap {
    padding: 0 5% 5%;
  }

  .strengths-wrap .cont-t p {
    font-size: 20px;
    color: #333;
  }

  .contents-area {
    width: 100%;
  }

  .contents-wrap {
    display: flex;
    flex-wrap: wrap;
    padding: 5%;
    margin-top: 0;
  }

  .cont-l {
    width: 100%;
    order: 1;
  }

  .cont-l-wrap {
    position: static;
    padding-left: 2%;
  }

  .strength-p {
    font-size: 12px;
  }

  .strength-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .strength-desc {
    font-size: 12px;
  }

  .cont-r {
    width: 100%;
    margin-bottom: 20px;
  }
}

/* パートナー募集 */

.recruitment {
  width: 100%;
  height: 500px;
  background-image: url(../img/bg2.jpg);
  background-size: cover;
  position: relative;
}

.recruitment::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  background: #000;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.bg-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.rec-title {
  color: #fff;
  margin-bottom: 10px;
}

.rec-desc {
  font-size: 14px;
  color: #fff;
  margin-bottom: 50px;
}

.bg-img a .rec-btn {
  border: #fff 1px solid;
  font-size: 14px;
  width: fit-content;
  padding: 10px 30px;
  letter-spacing: 2px;
  transition: all 0.3s;
  color: #fff;
  margin: 0 auto;
  font-weight: 600;
}

.bg-img a:hover .rec-btn {
  background: #0068ad;
  color: #fff;
  border: #0068ad 1px solid;
}

@media screen and (max-width: 600px) {
  .recruitment {
    width: 100%;
    height: 300px;
    background-image: url(../img/bg2.jpg);
    background-size: cover;
    position: relative;
  }

  .bg-img {
    width: 90%;
  }

  .bg-img h2.cont-t {
    padding-top: 0;
  }

  .rec-title {
    margin-bottom: 0px;
    font-size: 20px;
  }

  .bg-img a .rec-btn {
    font-size: 12px;
  }
}

section.works {
  width: 100%;
  padding-top: 0;
}

/* スライダー */
.slider {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 100%;
  margin: 0 auto;
}

.slider-area {
  max-width: 80vw;
  width: 100%;
  margin: 5vw auto;
}

.slider-img {
  width: 100%;
  height: 300px;
}

.slider .slider-area li {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.slider img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: 100%;
  object-fit: cover;
}

.slick-dots {
  display: none !important;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
  margin: 0 10px;
}

.works a {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.works a .works-btn {
  border: #333 1px solid;
  font-size: 14px;
  width: fit-content;
  padding: 10px 30px;
  letter-spacing: 2px;
  transition: all 0.3s;
  color: #333;
  margin: 0 auto;
  font-weight: 600;
}

.works a:hover .works-btn {
  background: #0068ad;
  color: #fff;
  border: #0068ad 1px solid;
}
@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 600px) {
  section.works {
    width: 100%;
    padding: 5vw 0;
  }

  .works .cont-t {
    padding-top: 20px;
  }
  .works .cont-t p {
    font-size: 20px;
  }

  .works a .works-btn {
    font-size: 12px;
  }

  .works a {
    padding: 5vw 0;
  }
}

/* ブログ */

section.blog {
  width: 100%;
  background-color: #fff;
  padding-top: 0;
}

.blog-area {
  max-width: 80vw;
  width: 100%;
  margin: 0 auto;
  display: grid;
  gap: 2%;
  grid-template-columns: repeat(4, minmax(23%, 1fr));
}

.card-wrap {
  height: auto;
}

.blog-card {
  cursor: pointer;
  transition: 0.5s;
  border: 1px #f9f9f9 solid;
  background-color: #fff;
  box-shadow: 6px 10px 30px rgba(0, 0, 0, 0.06),
    0px 2px 4px rgba(0, 0, 0, 0.0196802);
  height: 100%;
  padding-bottom: 1em;
}
.blog-card:hover {
  opacity: 0.8;
}

.blog-card:hover img {
  opacity: 0.8;
  transform: scale(1.05, 1.05);
}

.blog-img {
  width: 100%;
  margin-bottom: 10px;
  overflow: hidden;
}
.blog-img img {
  transition: 0.5s;
  object-fit: cover;
}

.blog-date {
  font-size: 14px;
  color: #aaa;
  padding: 0 5%;
}
.blog-title {
  font-weight: 600;
  font-size: 20px;
  margin-top: 5px;
  padding: 0 5%;
}
.blog-desc {
  margin-top: 10px;
  font-size: 14px;
  padding: 0 5% 5% 5%;
}

#blog-btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.blog a .blog-btn {
  border: #333 1px solid;
  font-size: 14px;
  width: fit-content;
  padding: 10px 30px;
  letter-spacing: 2px;
  transition: all 0.3s;
  color: #333;
  margin: 4em auto 0;
  font-weight: 600;
}

.blog a:hover .blog-btn {
  background: #0068ad;
  color: #fff;
  border: #0068ad 1px solid;
}

@media screen and (max-width: 1200px) {
  section.blog {
    padding-bottom: 8vw;
  }

  .blog-area {
    grid-template-columns: repeat(2, minmax(40%, 1fr));
  }
}

@media screen and (max-width: 600px) {
  .blog .cont-t {
    margin-bottom: 0;
  }

  .blog-area {
    grid-template-columns: 1fr 1fr;
    max-width: 90vw;
  }

  .blog .cont-t p {
    font-size: 20px;
  }

  .blog-date {
    font-size: 10px;
  }
  .blog-title {
    font-size: 16px;
  }
  .blog-desc {
    font-size: 12px;
    margin-top: 5px;
  }

  .blog a .blog-btn {
    margin-top: 2em;
    font-size: 12px;
  }
}

/* フッター */

footer {
  width: 100%;
  position: relative;
  background: #333;
}

.footer-area {
  display: flex;
  justify-content: left;
  width: 100%;
}

.footer-area .cont-l {
  width: 50%;
  height: 400px;
  background-image: url(../img/bg1.jpg);
  background-size: cover;
  position: relative;
  border: none;
}

.footer-area .cont-l::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
  display: block;
}

.contact-area {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact-area h2 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 50px;
}

.contact-btn-area {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  flex-direction: column;
}

.contact-area a {
  display: block;
  width: fit-content;
}

.contact-area a .contact-btn {
  border: #fff 1px solid;
  width: 300px;
  padding: 20px 40px;
  transition: all 0.3s;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}

.f-tel-logo,
.f-mail-logo {
  width: 1.5em;
}

.contact-area a:hover .contact-btn {
  background: #0068ad;
  color: #fff;
  border: #0068ad 1px solid;
}

.contact-area a span {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  font-family: "roboto";
}

.footer-area .cont-r {
  width: 50%;
  height: 400px;
}

.footer-area .cont-r .map-area {
  width: 100%;
  height: 100%;
}

.footer-info {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 50px;
  padding: 50px;
  background: #333;
}

.footer-logo {
  width: 100px;
}
.footer-logo img {
  width: 100%;
}

.footer-items p {
  color: #fff;
}

.footer-items .footer-t {
  font-size: 14px;
  margin-bottom: 15px;
}
.footer-items .footer-desc {
  font-size: 12px;
  margin-bottom: 8px;
}

.footer-info-l {
  width: fit-content;
  padding-left: 100px;
}

.footer-info-l .footer-nav ul li a {
  color: #fff;
  font-size: 12px;
  margin-bottom: 8px;
}

small {
  color: #fff;
  font-size: 12px;
  text-align: center;
  margin: 0 auto;
  display: block;
  padding-bottom: 20px;
}
.footer-sns {
  display: flex;
  gap: 10px;
  padding-left: 100px;
}

.footer-sns .sns-icon {
  background-image: url(../img/instagram-icon.svg);
  background-size: cover;
  width: 25px;
  height: 25px;
}

@media screen and (max-width: 1200px) {
  .footer-area .cont-l {
    order: 0;
  }
}

@media screen and (max-width: 600px) {
  .footer-area {
    display: block;
  }

  .footer-area .cont-l {
    width: 100%;
    height: 300px;
    border: none;
  }
  .contact-area {
    width: 100%;
  }

  .contact-area h2 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 30px;
    width: 100%;
  }
  .contact-area a {
    margin: 0 auto;
  }

  .contact-area a .contact-btn {
    width: 200px;
  }

  .contact-btn-area {
    display: block;
  }

  .contact-area a span {
    font-size: 12px;
  }

  .footer-area .cont-r {
    width: 100%;
    height: 300px;
  }

  .footer-area .cont-r .map-area {
    width: 100%;
    height: 100%;
  }

  .footer-info {
    max-width: 80vw;
    width: 100%;
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 0;
  }

  .footer-logo {
    display: none;
  }

  .footer-items .footer-t {
    font-weight: 600;
  }
  .footer-items .footer-desc {
    margin-bottom: 5px;
  }

  .footer-info-l {
    display: none;
  }

  small {
    font-size: 10px;
  }
  .footer-sns {
    justify-content: center;
    padding-left: 0;
    margin: 30px 0;
  }

  .footer-sns .sns-icon {
    width: 20px;
    height: 20px;
  }
}

/* 会社概要 */

.top-v {
  background-image: url(../img/works1.jpg);
  background-size: cover;
  height: 220px;
  width: 100%;
  position: relative;
  z-index: -1;
  margin-top: 80px;
}

.top-title {
  font-size: 24px;
  font-weight: 600;
}

.title-area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.top-v::after {
  content: "";
  display: block;
  inset: 0;
  position: absolute;
  background: #000;
  opacity: 0.5;
  top: 0;
  left: 0;
  z-index: -2;
}

@media screen and (max-width: 600px) {
  .top-v {
    height: 200px;
    margin-top: 50px;
  }

  .top-title {
    font-size: 20px;
  }
}

.title-area .sub-t,
.top-title {
  color: #fff;
}

.company {
  padding: 0;
  background-color: #fff;
}

.company table {
  margin: 3vw auto;
  width: 60vw;
}

.company table tr {
  display: block;
  width: 100%;
  display: flex;
  position: relative;
}

.company table tr::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #f2f2f2;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.company table tr th {
  display: block;
  width: 40%;
  padding: 3vw 4vw;
  text-align: left;
  font-size: 14px;
}
.company table tr td {
  display: block;
  width: 60%;
  padding: 3vw;
  text-align: left;
  font-size: 14px;
}

.message-area {
  margin: 0 auto;
  text-align: center;
  position: relative;
  background-color: #f9f9f9;
  padding-bottom: 5vw;
  height: 100vh;
}

.deco-b::after {
  content: "";
  display: block;
  width: 20%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #0068ad;
}

.message-t {
  padding-top: 5vw;
}

.message-area span.sub-t {
  margin-top: 5vw;
}

.message-contents {
  display: flex;
  margin: 5vw auto;
  width: 80vw;
  position: relative;
}
.message-contents .cont-l {
  width: 50%;
  border: none;
}

.message-contents .cont-l img {
  object-fit: cover;
}

.message-contents .cont-r {
  background: #fff;
  padding: 2vw;
  z-index: 10;
  width: 60%;
  height: fit-content;
  position: absolute;
  top: 30%;
  right: 0;
}

.message-contents .cont-r {
  text-align: left;
  box-shadow: 6px 10px 30px rgba(0, 0, 0, 0.06),
    0px 2px 4px rgba(0, 0, 0, 0.0196802);
}

.message-contents .cont-r .m-title {
  font-size: 24px;
  margin-bottom: 30px;
}
.message-contents .cont-r .m-desc {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 4vw;
  overflow-wrap: anywhere;
}
.message-contents .cont-r .owner-name {
  font-size: 14px;
  text-align: right;
}

@media screen and (max-width: 1200px) {
  .message-area {
    height: auto;
  }

  .deco-b {
    display: none;
  }

  .message-title {
    font-size: 20px;
  }

  .message-t {
    font-size: 20px;
    padding: 5vw;
  }
  .message-contents {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .message-contents .cont-l {
    width: 100%;
    border: none;
  }

  .message-contents .cont-r {
    width: 100%;
    position: static;
    order: 1;
    background-color: #f9f9f9;
    margin-top: 10px;
  }

  .message-contents .cont-r .m-title {
    font-size: 22px;
    padding-top: 0;
  }

  .message-contents .cont-r .owner-name {
    margin-top: 30px;
  }
}

@media screen and (max-width: 600px) {
  .message-contents .cont-r {
    padding: 4vw;
    margin-top: 0;
  }

  .company table {
    margin: 0 auto;
    width: 90vw;
    padding: 1em 0;
  }
}

/* 施工事例 */

section.works {
  background-color: #f9f9f9;
  width: 100%;
}

.works-area {
  max-width: 80vw;
  width: 100%;
  margin: 0 auto;
  background-color: #f9f9f9;
}

.works-nav-area {
  padding: 3% 0;
  margin-bottom: 3%;
}

.works-nav-area nav ul.tab {
  display: flex;
  justify-content: center;
  gap: 3%;
}

.works-nav-area nav ul li a {
  width: fit-content;
  height: 100%;
  display: block;
  padding: 10px 20px;
  color: #333;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: grid;
  place-items: center;
  border: 1px #333 solid;
}

.works-nav-area nav ul li.active a {
  color: #fff;
  background-color: #333;
}

.works-contents-area {
  opacity: 0;
  display: none;
}

.works-contents-area.is-active {
  display: block;
  animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.works-card-w {
  background-color: #f9f9f9;
  margin-bottom: 10vw;
}

.works-text {
  border-bottom: #333 3px solid;
}

.works-title {
  padding-bottom: 1vw;
}

.works-tags {
  display: block;
  text-align: right;
  padding-top: 5px;
}

.works-tag {
  color: #aaa;
  margin-left: 1%;
  font-size: 14px;
}

.works-img-area {
  padding: 3% 0;
  width: 100%;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 1%;
  height: 25vw;
  overflow: hidden;
}

.works-img {
  width: 100%;
  height: 100%;
  box-shadow: 6px 10px 30px rgba(0, 0, 0, 0.06), 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.works-img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 800px) {
  .works-area {
    max-width: 90vw;
  }

  .works-img-area {
    gap: 5%;
    flex-direction: column;
    height: auto;
  }

  .works-img {
    height: 50vw;
    margin-bottom: 10px;
  }

  .works-card-w {
    margin-top: 15vw;
  }

  .works-tag {
    font-size: 12px;
  }
}

/* 施工の流れ */

section.flow {
  width: 100%;
  background-color: #f9f9f9;
  padding: 5vw 0;
}

.flow-area {
  max-width: 80vw;
  width: 100%;
  margin: 0 auto;
}

.flow-cards {
  width: 100%;
}

.flow-card {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  height: 400px;
  box-shadow: 6px 10px 30px rgba(0, 0, 0, 0.06),
    0px 2px 4px rgba(0, 0, 0, 0.0196802);
}

.flow-card:nth-child(2),
.flow-card:nth-child(4),
.flow-card:nth-child(6) {
  margin-left: 5%;
}

.flow-card .flow-cont-l {
  padding: 3vw;
  width: 50%;
  border-left: 10px #0068ad solid;
}

.flow-card .flow-cont-l span {
  font-size: 24px;
  font-weight: 900;
  font-family: "Roboto";
  color: #0068ad;
}

.flow-card .flow-cont-l .f-title {
  font-size: 24px;
  margin-bottom: 30px;
}

.flow-card .flow-cont-l .f-desc {
  font-size: 14px;
}

.flow-card .cont-r {
  width: 40%;
  /* height: 400px; */
  overflow: hidden;
}
.flow-card .cont-r img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 800px) {
  .flow-area {
    max-width: 90vw;
  }

  .flow-card {
    flex-direction: column;
    align-items: center;
    height: auto;
  }

  .flow-card .flow-cont-l {
    width: 90%;
    border: none;
    padding: 3vw 0;
  }
  .flow-card:nth-child(2),
  .flow-card:nth-child(4),
  .flow-card:nth-child(6) {
    margin-left: 0;
  }

  .flow-card .flow-cont-l .f-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .flow-card .flow-cont-l .f-desc {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .flow-card .cont-r {
    width: 90%;
    height: 200px;
    overflow: hidden;
  }
}

/* フォーム */

/*　フォーム全体　*/
#cf7-area {
  width: 100%;
  margin: 0 auto;
  max-width: 50vw;
  margin-top: 5vw;
}

.cf7-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0 0 1.75em;
}

.cf7-q {
  width: 30%;
  text-align: right;
  font-weight: 300;
}

.cf7-a {
  width: 60%;
}

.form-heading p {
  margin: 0;
}

/* 各項目共通 */
#cf7-area label {
  font-weight: bold;
}

#cf7-area input[type="text"],
#cf7-area input[type="email"],
#cf7-area input[type="tel"],
#cf7-area textarea {
  background: #f9f9f9;
  margin-left: 50px;
  border: 1px solid #aaa;
  padding: 5px;
  border-radius: 5px;
}

#cf7-area input[type="text"]:focus,
#cf7-area input[type="email"]:focus,
#cf7-area input[type="tel"]:focus,
#cf7-area textarea:focus {
  background: #fff;
  border: 2px solid #aaa;
  margin-left: 50px;
  border-radius: 5px;
  outline: 0;
}

#cf7-area input[type="checkbox"] {
  appearance: auto;
  margin-left: 50px;
}

#cf7-area .wpcf7-list-item {
  display: block;
}

#cf7-area textarea {
  height: 200px;
  padding: 0.625em 0.4375em;
}

.cf7-accept-check {
  text-align: center;
  margin: 50px auto;
}

.cf7-submit {
  width: 40%;
  margin: 0 auto;
  text-align: center;
}

#cf7-area input[type="submit"] {
  width: 100%;
  background: #0068ad;
  color: #ffffff;
  border-radius: 5px;
  font-size: 14px;
  padding: 10px 20px;
  border: 2px solid #0068ad;
  cursor: pointer;
  margin: 3vw auto;
}

#cf7-area input[type="submit"]:hover {
  background-color: #ffffff;
  border: 2px solid #0068ad;
  color: #0068ad;
}

.cf7-btn {
  width: 30%;
  min-width: 200px;
  margin: 0 auto;
  text-align: center;
}

#cf7-area .wpcf7-list-item {
  margin-bottom: 10px;
}

/*　必須ラベル　*/
.cf7-req {
  font-size: 14px;
  color: red;
  margin-left: 10px;
}

.wpcf7-not-valid-tip {
  margin-left: 50px;
}

@media screen and (max-width: 768px) {
  .cf7-item {
    display: block;
    text-align: left;
  }

  #cf7-area {
    max-width: 90vw;
  }

  #cf7-area label {
    display: block;
    margin-bottom: 10px;
    text-align: left;
    font-size: 14px;
  }

  .cf7-q {
    width: 100%;
    margin: 0;
  }

  .cf7-a {
    width: 100%;
  }

  #cf7-area input[type="text"],
  #cf7-area input[type="email"],
  #cf7-area input[type="tel"],
  #cf7-area textarea {
    margin-left: 0;
    width: 100%;
  }

  #cf7-area input[type="text"]:focus,
  #cf7-area input[type="email"]:focus,
  #cf7-area input[type="tel"]:focus,
  #cf7-area textarea:focus {
    margin-left: 0;
  }

  #cf7-area input[type="checkbox"] {
    margin-left: 0;
  }

  .cf7-submit {
    width: 90%;
  }
}

/* 記事 */

section.blog-contents {
  width: 100%;
  min-height: 100vh;
  background-color: #fff;
}

.blog-contents-area {
  width: 100%;
  max-width: 70vw;
  margin: 0 auto;
  padding: 5vw 0;
}

.blog-dates {
  padding-left: 3vw;
  color: #aaa;
  margin-bottom: 10px;
}

.blog-page-title {
  font-size: 24px;
  padding: 0 3vw 3vw 3vw;
}

.blog-content {
  font-size: 16px;
  letter-spacing: 1.8;
  line-height: 1.8;
  padding: 0 3vw;
}

@media screen and (max-width: 600px) {
  section.blog-contents {
    padding-top: 1rem;
  }

  .blog-contents-area {
    max-width: 90vw;
  }

  .blog-page-title {
    font-size: 20px;
    padding: 0 3vw 3vw 3vw;
  }

  .blog-content {
    font-size: 14px;
    letter-spacing: 1.8;
    line-height: 1.8;
    padding: 0 3vw;
  }
}

/* 記事一覧 */

section.archive {
  min-height: 100vh;
  width: 100%;
  padding: 5vw 0;
  background-color: #fff;
}

@media screen and (max-width: 600px) {
  section.archive {
    min-height: auto;
  }
}

/* アニメーション */

/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #333;
  z-index: 9999999;
  text-align: center;
  color: #fff;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg {
  display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg {
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleY(0);
  background-color: #333; /*伸びる背景色の設定*/
  animation-name: PageAnime;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes PageAnime {
  0% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
  50% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  50.001% {
    transform-origin: top;
  }
  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}

/*画面遷移の後現れるコンテンツ設定*/

#container {
  opacity: 0; /*はじめは透過0に*/
}

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

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* 問い合わせ完了ページ */

.thanks-area {
  margin: 0 auto;
  width: 80vw;
  padding: 5vw 0;
  text-align: center;
}

.thanks-title {
  font-size: 20px;
  margin-bottom: 2em;
}

.thanks-desc {
  font-size: 16px;
}

.thanks-area a {
  width: fit-content;
  display: block !important;
  margin: 3em auto;
}

.home-btn {
  border: #333 1px solid;
  font-size: 14px;
  width: fit-content;
  padding: 10px 30px;
  letter-spacing: 2px;
  transition: all 0.3s;
}

.thanks-area a:hover .home-btn {
  background: #0068ad;
  color: #fff;
  border: #0068ad 1px solid;
}

/* サークル */
.container {
  padding: 40px;
  position: absolute;
  left: -200px;
  top: 150px;
}

@media screen and (max-width: 800px) {
  .container {
    display: none;
  }
}
.block {
  width: 28vw;
  height: 28vw;
  margin: auto;
}
.circleText {
  overflow: visible;
  animation: rotation 18s linear infinite;
}
.circleText-circle {
  fill: none;
}
.circleText-text {
  fill: #f2f2f2;
  font-size: 24px;
  font-family: "Roboto";
  font-weight: 900;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ページネーション */

.pagination {
  display: flex;
  justify-content: center;
  padding-bottom: 5vw;
  margin-top: 2em;
}

.nav-links {
  display: flex;
}
.page-numbers {
  display: inline-block;
  margin-right: 10px;
  padding: 10px 20px;
  color: #666666;
  border-radius: 3px;
  background: #ffffff;
  border: 1px solid #666666;
}
.page-numbers.current {
  padding: 10px 20px;
  background: #0068ad;
  color: #ffffff;
}
.page-numbers.prev,
.page-numbers.next {
  background: transparent;
  box-shadow: none;
  border: none;
  color: #666666;
}
.page-numbers.dots {
  background: transparent;
  box-shadow: none;
  border: none;
  color: #666666;
}

/* レスポンシブデザインのためのメディアクエリ */
@media (max-width: 600px) {
  .page-numbers,
  .page-numbers.current {
    padding: 5px 10px; /* パディングを小さく */
  }

  .pagination {
    margin-top: 2em;
  }
}

/* ふわっとcss */

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

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeUpTrigger {
  opacity: 0;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* ----------------------------

お問い合わせ

------------------------------*/

.contact.under {
  background-image: none;
  padding: 0;
  @media screen and (max-width: 768px) {
    .inner1 {
      display: contents;
    }
  }
  .contents {
    .info {
      text-align: center;

      .top-text {
        font-size: clamp(1.25rem, -0.1936rem + 3.0075vw, 2.25rem);
      }

      .desc {
        font-size: 16px;
        color: #333;
      }

      .workday {
        font-size: 16px;
      }
      a {
        display: flex;
        gap: 10px;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
        transition: var(--trans);
        .img {
          width: 52px;
          translate: 0 5px;
          img {
            width: 100%;
          }
        }
        span {
          font-size: 58px;
          color: var(--color1);
          font-weight: 700;
        }
      }
      a:hover {
        opacity: 0.7;
      }
    }

    /* フォーム */
    .form-area {
      background-color: #fff;
      border-radius: 5px;
      padding: 80px 20px;
      margin-bottom: 160px;

      table {
        max-width: 700px;
        margin: 0 auto;
        margin-bottom: 40px;
        width: 100%;

        tr {
          padding: 20px 0;
          display: flex;
          align-items: start;
          flex-direction: column;
          width: fit-content;
          width: 100%;

          th {
            padding: 0px 10px;
            font-size: 16px;
            margin: 20px 0;
          }

          th.il::after {
            content: "必須";
            padding: 2px 10px;
            background-color: #383838;
            color: #fff;
            font-size: 12px;
            border-radius: 100px;
            margin-left: 20px;
            font-weight: 400;
          }
        }
        tr.notes {
          margin-top: 20px;
          padding: 5px 10px;
          background-color: #f6cdaa;
          width: fit-content;
          border-radius: 2px;
          th {
            margin: 0;
            font-size: 14px;
            color: #666666;
            font-weight: 500;
          }
        }
        td {
          width: 100%;
        }
        td.half {
          width: 50%;
        }
        td.flex-area {
          display: flex;
          justify-content: space-between;
          gap: 20px;
          width: 70%;
          @media screen and (max-width: 768px) {
            gap: 5px;
            width: 100%;
          }
          .wrapper {
            display: flex;
            gap: 10px;
            align-items: center;
            width: 100%;
            text-wrap: nowrap;
          }
        }
        p {
          font-size: 14px;
          margin-bottom: 20px;
        }
      }

      .policy-desc {
        margin-bottom: 20px;
        text-align: center;
        font-size: 14px;
      }
      .check-area {
        margin-bottom: 40px;
        display: flex;
        justify-content: center;
      }
      .thanks-message {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin: 60px 0;
        text-align: center;
        .thanks-title {
          font-size: 38px;
          color: var(--color1);
          font-weight: 700;
          margin-bottom: 10px;
        }
      }
    }
    .send-btn-area {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
    }

    .send-btn {
      background-color: #0068ad;
      border-radius: 30px;
      padding: 0px 30px;
      cursor: pointer;
      color: #fff;
      width: fit-content;
      border: 0;
      transition: var(--trans);
    }
    .send-btn:hover {
      scale: 1.02;
    }
    .back-btn {
      background-color: #eee;
      border-radius: 30px;
      padding: 0px 30px;
      border: 1px #eee solid;
      cursor: pointer;
      color: #999;
      width: fit-content;
      transition: var(--trans);
    }

    .back-btn:hover {
      scale: 1.02;
    }
  }
  .recha-info {
    font-size: 14px;
    padding-top: 40px;
    text-align: center;
  }
  .policy-area {
    h3 {
      font-size: 36px;
    }
    .policy-text-area {
      border-radius: 40px;
      background-color: #fff;
      overflow-y: auto;
      padding: 40px;
      height: 500px;
      p {
        font-size: 14px;
        color: #383838;
        text-align: left;
      }
    }

    .policy-text-area::-webkit-scrollbar {
      display: none;
    }
  }
}

input,
select,
textarea {
  width: 100%;
  height: 50px;
  border-radius: 4px;
  border: #999 0.5px solid;
  background-color: rgb(255, 255, 255, 0.6);
  padding: 10px;
  font-size: 16px;
}
textarea {
  height: 300px;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  translate: 0 3px;
  margin-right: 10px;
  border: 1px #3f3f3f solid;
  font-size: 16px;
  color-scheme: light; /* 強制的にライトテーマで描画 */
}

input,
select,
textarea:focus {
  outline: none;
  box-shadow: none;
}

@media (max-width: 768px) {
  .under.contact {
    padding-bottom: 120px;
    margin-bottom: -40px;
    .contents {
      padding: 0 20px;
      .info {
        .desc {
          font-size: 14px;
        }
        a {
          gap: 4px;
          margin: 0 auto 10px auto;
          span {
            font-size: 40px;
            text-wrap: nowrap;
          }
          .img {
            width: 30px;
          }
        }
        a:hover {
          opacity: 0.7;
        }
      }
      /* フォーム */
      .form-area {
        padding: 40px 20px;
        margin-bottom: 40px;
        border-radius: 20px;
        table {
          tr {
            padding: 10px 0;
            th {
              font-size: 14px;
              margin: 10px 0;
            }

            th.il::after {
              padding: 2px 8px;
              font-size: 10px;
              margin-left: 10px;
            }
          }
          td {
            width: 100%;
          }
        }

        .policy-desc {
          font-size: 12px;
        }
        .check-area {
          font-size: 14px;
        }
        .thanks-message {
          gap: 10px;
          margin: 40px 0;
          .thanks-title {
            font-size: 20px;
          }
        }
      }
      .flex {
        .btn-privacy-policy {
          padding-left: 20px;
          margin-bottom: 60px;
        }
      }
      .recha-info {
        font-size: 12px;
      }
    }
    .policy-area {
      h3 {
        font-size: 20px;
      }
      .policy-text-area {
        padding: 20px;
        height: 300px;
        border-radius: 20px;
      }
    }
  }
}
