@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}
body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}
a:visited {
  color: white;
}
a:link {
  color: white;
}
a:hover {
  opacity: 0.6;
  transition: 0.2s;
}

header {
  width: 100vw;
  height: 80px;
  position: fixed;
  top: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  background-color: #3e3a39;
  color: white;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  header {
    height: 70px;
  }
}
header .adtec-logo {
  margin-left: 16px;
  line-height: 1;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  header .adtec-logo {
    /* 520px以下で表示させたいcssを記述していく */
  }
  header .adtec-logo img {
    width: 50px;
  }
}
@media screen and (max-width: 520px) {
  header .adtec-logo {
    /* 520px以下で表示させたいcssを記述していく */
  }
  header .adtec-logo img {
    width: 40px;
  }
}
header .list-menu {
  margin-right: 30px;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  header .list-menu {
    /* 520px以下で表示させたいcssを記述していく */
    display: none;
  }
}
header .list-menu .list {
  display: flex;
  align-items: center;
  line-height: 2.2;
}
header .list-menu .list li {
  margin-right: 50px;
  position: relative;
  cursor: pointer;
}
header .list-menu .list li:nth-child(5) {
  margin-right: 30px;
}
header .list-menu .list li.email-icon {
  margin-right: 19px;
  margin-top: 5px;
}
header .list-menu .list li.line-icon {
  margin-right: 0;
  margin-top: 12px;
}
header .list-menu .list li::after {
  content: "";
  width: 2px;
  height: 22px;
  background-color: white;
  position: absolute;
  top: 9px;
  right: -25px;
}
header .list-menu .list li:nth-child(5)::after,
header .list-menu .list li:nth-child(6)::after,
header .list-menu .list li:nth-child(7)::after {
  display: none;
}
header .hamburger {
  display: none;
}
@media screen and (max-width: 1024px) {
  header .hamburger {
    /* 520px以下で表示させたいcssを記述していく */
    display: block;
    position: fixed;
    z-index: 3;
    right: 13px;
    top: 15px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
  header .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #fff;
    transition: 0.3s ease-in-out;
  }
  header .hamburger span:nth-child(1) {
    top: 10px;
  }
  header .hamburger span:nth-child(2) {
    top: 20px;
  }
  header .hamburger span:nth-child(3) {
    top: 30px;
  }
}
header .hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  background: #fff;
  transform: rotate(-45deg);
}
header .hamburger.active span:nth-child(2),
header .hamburger.active span:nth-child(3) {
  top: 16px;
  background: #fff;
  transform: rotate(45deg);
}
header .globalMenuSp {
  display: none;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  header .globalMenuSp {
    /* 520px以下で表示させたいcssを記述していく */
    display: block;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
    width: 100%;
    height: 100vh;
    opacity: 0;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }
  header .globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  header .globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: 0.4s all;
  }
  header .globalMenuSp ul li:last-child {
    padding-bottom: 0;
  }
  header .globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 1em 0;
    text-decoration: none;
  }
}
header .globalMenuSp.active {
  opacity: 100;
  pointer-events: auto;
}

.main {
  margin-top: 80px;
  width: 100%;
  height: auto;
}
.main .intro-sec {
  position: relative;
}
.main .intro-sec .intro-img {
  height: 100vh;
  margin-top: -80px;
  background-image: url(../images/top__bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .main .intro-sec .intro-img {
    height: 600px;
  }
}
@media screen and (max-width: 768px) {
  .main .intro-sec .intro-img {
    /* 520px以下で表示させたいcssを記述していく */
    height: 600px;
    margin-top: -40px;
    background-size: cover;
    background-image: url(../images/sp_top.png);
  }
}
@media screen and (max-width: 520px) {
  .main .intro-sec .intro-img {
    /* 520px以下で表示させたいcssを記述していく */
    height: 550px;
    background-position: left;
    background-image: url(../images/sp_top.png);
  }
}
.main .intro-sec .intro-img h2 {
  text-align: center;
  margin: 0;
  font-size: 50px;
  text-shadow: 2px 6px 8px #282726;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: white;
}
@media screen and (max-width: 1024px) {
  .main .intro-sec .intro-img h2 {
    font-size: 33px;
  }
}
@media screen and (max-width: 480px) {
  .main .intro-sec .intro-img h2 {
    font-size: 25px;
  }
}
@media screen and (max-width: 375px) {
  .main .intro-sec .intro-img h2 {
    font-size: 21px;
  }
}
.main .intro-sec .white-line {
  width: 2px;
  height: 60px;
  background-color: white;
  position: absolute;
  left: 50%;
  bottom: 0;
}
.main .intro-sec .black-line {
  width: 2px;
  height: 60px;
  background-color: #00287b;
  position: absolute;
  left: 50%;
  bottom: -60px;
}
.main .concept-sec {
  width: 100%;
  text-align: center;
  padding: 105px 0 115px 0;
}
@media screen and (max-width: 1024px) {
  .main .concept-sec {
    padding: 0 0 115px 0;
    margin-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .main .concept-sec {
    padding: 0;
    margin-top: 130px;
  }
}
@media screen and (max-width: 520px) {
  .main .concept-sec {
    /* 520px以下で表示させたいcssを記述していく */
    padding-bottom: 75px;
  }
}
@media screen and (max-width: 375px) {
  .main .concept-sec {
    margin-top: 60px;
  }
}
.main .concept-sec .title_wrap {
  margin-bottom: 60px;
  color: #3e3a39;
}
@media screen and (max-width: 375px) {
  .main .concept-sec .title_wrap {
    margin-bottom: 40px;
  }
}
.main .concept-sec .title_wrap h1 {
  margin: 0 0 15px 0;
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.14;
}
@media screen and (max-width: 520px) {
  .main .concept-sec .title_wrap h1 {
    /* 520px以下で表示させたいcssを記述していく */
    font-size: 30px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 480px) {
  .main .concept-sec .title_wrap h1 {
    font-size: 25px;
  }
}
@media screen and (max-width: 375px) {
  .main .concept-sec .title_wrap h1 {
    font-size: 21px;
  }
}
.main .concept-sec .title_wrap span {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 520px) {
  .main .concept-sec .title_wrap span {
    /* 520px以下で表示させたいcssを記述していく */
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  .main .concept-sec .title_wrap span {
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  .main .concept-sec .title_wrap span {
    font-size: 15px;
  }
}
.main .concept-sec p {
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 1.54;
  color: #3e3a39;
  margin-bottom: 60px;
}
@media screen and (max-width: 520px) {
  .main .concept-sec p {
    /* 520px以下で表示させたいcssを記述していく */
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 1.7;
  }
}
@media screen and (max-width: 375px) {
  .main .concept-sec p {
    /* 520px以下で表示させたいcssを記述していく */
    font-size: 12px;
  }
}
.main .concept-sec p .sp {
  display: none;
}
@media screen and (max-width: 520px) {
  .main .concept-sec p .sp {
    /* 520px以下で表示させたいcssを記述していく */
    display: block;
  }
}
.main .concept-sec .heading_wrap {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .main .concept-sec .heading_wrap img {
    /* 520px以下で表示させたいcssを記述していく */
    width: 100%;
  }
}
.main .concept-sec .heading_wrap h2 {
  position: absolute;
  width: 100%;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -40%);
  font-size: 50px;
  letter-spacing: 0.2em;
  line-height: 0.94;
  color: #3e3a39;
  margin: 0;
  text-shadow: 6px 6px 0px #fff, -6px -6px 0px #fff, -6px 6px 0px #fff,
    6px -6px 0px #fff, 6px 0px 0px #fff, -6px 0px 0px #fff, 0px 6px 0px #fff,
    0px -6px 0px #fff;
}
@media screen and (max-width: 1024px) {
  .main .concept-sec .heading_wrap h2 {
    /* 520px以下で表示させたいcssを記述していく */
    width: 100%;
    font-size: 46px;
    letter-spacing: 0.1em;
    text-shadow: 4px 4px 0px #fff, -4px -4px 0px #fff, -4px 4px 0px #fff,
      4px -4px 0px #fff, 4px 0px 0px #fff, -4px 0px 0px #fff, 0px 4px 0px #fff,
      0px -4px 0px #fff;
  }
}
@media screen and (max-width: 768px) {
  .main .concept-sec .heading_wrap h2 {
    /* 520px以下で表示させたいcssを記述していく */
    width: 100%;
    font-size: 34px;
    letter-spacing: 0.1em;
    text-shadow: 4px 4px 0px #fff, -4px -4px 0px #fff, -4px 4px 0px #fff,
      4px -4px 0px #fff, 4px 0px 0px #fff, -4px 0px 0px #fff, 0px 4px 0px #fff,
      0px -4px 0px #fff;
  }
}
@media screen and (max-width: 520px) {
  .main .concept-sec .heading_wrap h2 {
    /* 520px以下で表示させたいcssを記述していく */
    width: 100%;
    font-size: 24px;
    letter-spacing: 0.1em;
    text-shadow: 4px 4px 0px #fff, -4px -4px 0px #fff, -4px 4px 0px #fff,
      4px -4px 0px #fff, 4px 0px 0px #fff, -4px 0px 0px #fff, 0px 4px 0px #fff,
      0px -4px 0px #fff;
  }
}
@media screen and (max-width: 375px) {
  .main .concept-sec .heading_wrap h2 {
    /* 520px以下で表示させたいcssを記述していく */
    font-size: 20px;
  }
}

.service {
  padding-bottom: 160px;
  width: 100%;
}
@media screen and (max-width: 520px) {
  .service {
    /* 520px以下で表示させたいcssを記述していく */
    padding-bottom: 75px;
  }
}
.service .intro-sec {
  position: relative;
}
.service .intro-sec .intro-img {
  height: 305px;
  background-image: url(../images/service.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 520px) {
  .service .intro-sec .intro-img {
    /* 520px以下で表示させたいcssを記述していく */
    height: 220px;
  }
}
@media screen and (max-width: 375px) {
  .service .intro-sec .intro-img {
    height: 200px;
  }
}
.service .intro-sec .intro-img .title_wrap {
  text-align: center;
  position: absolute;
  width: 100%;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -60%);
}
@media screen and (max-width: 520px) {
  .service .intro-sec .intro-img .title_wrap {
    /* 520px以下で表示させたいcssを記述していく */
    top: 52%;
    left: 50%;
    transform: translate(-50%, -52%);
  }
}
.service .intro-sec .intro-img .title_wrap h2 {
  margin: 0 0 15px;
  font-size: 35px;
  letter-spacing: 0.1em;
  line-height: 1.14;
  color: #ffffff;
  text-shadow: 1px 1px 2px black;
}
@media screen and (max-width: 520px) {
  .service .intro-sec .intro-img .title_wrap h2 {
    /* 520px以下で表示させたいcssを記述していく */
    font-size: 30px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 480px) {
  .service .intro-sec .intro-img .title_wrap h2 {
    font-size: 21px;
  }
}
.service .intro-sec .intro-img .title_wrap span {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-shadow: 1px 1px 2px black;
}
@media screen and (max-width: 520px) {
  .service .intro-sec .intro-img .title_wrap span {
    /* 520px以下で表示させたいcssを記述していく */
    font-size: 15px;
  }
}
.service .img_wrap {
  width: 82%;
  margin: 0 auto;
}
@media screen and (max-width: 1330px) {
  .service .img_wrap {
    /* 520px以下で表示させたいcssを記述していく */
    width: 72%;
  }
}
@media screen and (max-width: 1024px) {
  .service .img_wrap {
    /* 520px以下で表示させたいcssを記述していく */
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .service .img_wrap {
    /* 520px以下で表示させたいcssを記述していく */
    width: 90%;
  }
}
@media screen and (max-width: 520px) {
  .service .img_wrap {
    /* 520px以下で表示させたいcssを記述していく */
    width: 90%;
  }
}
.service .img_wrap .img_flex {
  padding: 90px 0 0 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 1330px) {
  .service .img_wrap .img_flex {
    /* 520px以下で表示させたいcssを記述していく */
    padding: 100px 0 60px 0;
    justify-content: space-between;
  }
}
@media screen and (max-width: 1024px) {
  .service .img_wrap .img_flex {
    /* 520px以下で表示させたいcssを記述していく */
    padding: 100px 0 60px 0;
    justify-content: space-between;
  }
}
@media screen and (max-width: 520px) {
  .service .img_wrap .img_flex {
    /* 520px以下で表示させたいcssを記述していく */
    justify-content: space-between;
    padding-top: 40px;
    padding-bottom: 24px;
  }
}
.service .img_wrap .img_flex .img_box {
  width: 300px;
  border-radius: 50%;
  margin-right: 95px;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 1330px) {
  .service .img_wrap .img_flex .img_box {
    /* 520px以下で表示させたいcssを記述していく */
    margin-right: 0;
    margin-bottom: 20px;
  }
  .service .img_wrap .img_flex .img_box:nth-child(3) {
    width: 100%;
  }
  .service .img_wrap .img_flex .img_box:nth-child(3) img {
    width: 300px;
  }
}
@media screen and (max-width: 1024px) {
  .service .img_wrap .img_flex .img_box {
    /* 520px以下で表示させたいcssを記述していく */
    margin-right: 0;
    margin-bottom: 20px;
  }
  .service .img_wrap .img_flex .img_box:nth-child(3) {
    width: 100%;
  }
  .service .img_wrap .img_flex .img_box:nth-child(3) img {
    width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .service .img_wrap .img_flex .img_box {
    /* 520px以下で表示させたいcssを記述していく */
    width: 44%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .service .img_wrap .img_flex .img_box:nth-child(3) {
    width: 100%;
  }
  .service .img_wrap .img_flex .img_box:nth-child(3) img {
    width: 220px;
  }
}
@media screen and (max-width: 520px) {
  .service .img_wrap .img_flex .img_box {
    /* 520px以下で表示させたいcssを記述していく */
    width: 46%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .service .img_wrap .img_flex .img_box:nth-child(3) {
    width: 100%;
  }
  .service .img_wrap .img_flex .img_box:nth-child(3) img {
    width: 160px;
  }
}
@media screen and (max-width: 375px) {
  .service .img_wrap .img_flex .img_box {
    /* 520px以下で表示させたいcssを記述していく */
    width: 46%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .service .img_wrap .img_flex .img_box:nth-child(3) {
    width: 100%;
  }
  .service .img_wrap .img_flex .img_box:nth-child(3) img {
    width: 120px;
  }
}
.service .img_wrap .img_flex .img_box img {
  width: 100%;
  height: 300px;
}
@media screen and (max-width: 768px) {
  .service .img_wrap .img_flex .img_box img {
    /* 520px以下で表示させたいcssを記述していく */
    width: 220px;
    height: auto;
  }
}
@media screen and (max-width: 520px) {
  .service .img_wrap .img_flex .img_box img {
    /* 520px以下で表示させたいcssを記述していく */
    width: 160px;
    height: auto;
  }
}
@media screen and (max-width: 375px) {
  .service .img_wrap .img_flex .img_box img {
    /* 520px以下で表示させたいcssを記述していく */
    width: 120px;
    height: auto;
  }
}
.service .img_wrap .img_flex .img_box:nth-child(3n) {
  margin-right: 0;
}
.service .img_wrap .img_flex .img_box:nth-child(4) {
  margin-left: 95px;
}
@media screen and (max-width: 1330px) {
  .service .img_wrap .img_flex .img_box:nth-child(4) {
    /* 520px以下で表示させたいcssを記述していく */
    margin-left: 0;
  }
}
.service .img_wrap .img_flex .img_box:nth-child(1) h2 {
  margin-top: 22px;
}
@media screen and (max-width: 520px) {
  .service .img_wrap .img_flex .img_box:nth-child(1) h2 {
    /* 520px以下で表示させたいcssを記述していく */
    margin-top: 10px;
  }
}
.service .img_wrap .img_flex .img_box:nth-child(3) h2 {
  margin-top: 22px;
}
@media screen and (max-width: 520px) {
  .service .img_wrap .img_flex .img_box:nth-child(3) h2 {
    /* 520px以下で表示させたいcssを記述していく */
    margin-top: 10px;
  }
}
.service .img_wrap .img_flex .img_box:nth-child(4) h2 {
  margin-top: 22px;
}
@media screen and (max-width: 520px) {
  .service .img_wrap .img_flex .img_box:nth-child(4) h2 {
    /* 520px以下で表示させたいcssを記述していく */
    margin-top: 10px;
  }
}
.service .img_wrap .img_flex .img_box h2 {
  font-size: 25px;
  letter-spacing: 0.1em;
  line-height: 1.32;
  color: #3e3a39;
  margin-top: 15px;
  margin-bottom: 0;
}
@media screen and (max-width: 520px) {
  .service .img_wrap .img_flex .img_box h2 {
    /* 520px以下で表示させたいcssを記述していく */
    font-size: 16px;
    margin-top: 0;
  }
}
@media screen and (max-width: 375px) {
  .service .img_wrap .img_flex .img_box h2 {
    /* 520px以下で表示させたいcssを記述していく */
    font-size: 12px;
    margin-top: 0;
  }
}
.service .button_wrap {
  width: 400px;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  .service .button_wrap {
    /* 520px以下で表示させたいcssを記述していく */
    width: 65%;
  }
}
.service .button_wrap .contact_button {
  display: block;
  text-align: center;
  position: relative;
  width: 100%;
  color: #3e3a39;
  background-color: #efe8d9;
  font-size: 25px;
  font-weight: 600;
  padding: 19px 0;
  letter-spacing: 0.1em;
  line-height: 1.32;
  border: none;
  border-radius: 60px;
  cursor: pointer;
}
@media screen and (max-width: 520px) {
  .service .button_wrap .contact_button {
    /* 520px以下で表示させたいcssを記述していく */
    padding: 16px 0;
    font-size: 18px;
  }
}
@media screen and (max-width: 375px) {
  .service .button_wrap .contact_button {
    /* 520px以下で表示させたいcssを記述していく */
    font-size: 14px;
  }
}
.service .button_wrap .contact_button img {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
}
@media screen and (max-width: 520px) {
  .service .button_wrap .contact_button img {
    /* 520px以下で表示させたいcssを記述していく */
    width: 6px;
    right: 20px;
  }
}
.service .button_wrap .contact_button:hover {
  opacity: 0.7;
  transition: all 0.2s;
}

.product {
  padding-bottom: 200px;
  width: 100%;
}
@media screen and (max-width: 520px) {
  .product {
    /* 520px以下で表示させたいcssを記述していく */
    padding-bottom: 105px;
  }
}
@media screen and (max-width: 520px) {
  .product {
    /* 520px以下で表示させたいcssを記述していく */
    padding-bottom: 55px;
  }
}
.product .intro-sec {
  position: relative;
}
.product .intro-sec .intro-img {
  height: 305px;
  background-image: url(../images/product.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 520px) {
  .product .intro-sec .intro-img {
    /* 520px以下で表示させたいcssを記述していく */
    height: 220px;
  }
}
.product .intro-sec .intro-img .title_wrap {
  text-align: center;
  position: absolute;
  width: 100%;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -60%);
}
@media screen and (max-width: 520px) {
  .product .intro-sec .intro-img .title_wrap {
    /* 520px以下で表示させたいcssを記述していく */
    top: 52%;
    left: 50%;
    transform: translate(-50%, -52%);
  }
}
.product .intro-sec .intro-img .title_wrap h2 {
  margin: 0 0 15px;
  font-size: 35px;
  letter-spacing: 0.1em;
  line-height: 1.14;
  color: #ffffff;
  text-shadow: 1px 1px 2px black;
}
@media screen and (max-width: 520px) {
  .product .intro-sec .intro-img .title_wrap h2 {
    /* 520px以下で表示させたいcssを記述していく */
    font-size: 30px;
    margin-bottom: 10px;
  }
}
.product .intro-sec .intro-img .title_wrap span {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-shadow: 1px 1px 2px black;
}
@media screen and (max-width: 520px) {
  .product .intro-sec .intro-img .title_wrap span {
    /* 520px以下で表示させたいcssを記述していく */
    font-size: 15px;
  }
}
.product .slider_area {
  width: 100%;
  margin: 0 auto;
  padding: 90px 0 0 0;
}
@media screen and (max-width: 1330px) {
  .product .slider_area {
    /* 520px以下で表示させたいcssを記述していく */
    width: 88%;
  }
}
@media screen and (max-width: 1024px) {
  .product .slider_area {
    /* 520px以下で表示させたいcssを記述していく */
    width: 88%;
  }
}
@media screen and (max-width: 900px) {
  .product .slider_area {
    padding-top: 115px;
  }
}
@media screen and (max-width: 520px) {
  .product .slider_area {
    /* 520px以下で表示させたいcssを記述していく */
    width: 88%;
  }
}
@media screen and (max-width: 375px) {
  .product .slider_area {
    /* 520px以下で表示させたいcssを記述していく */
    padding: 60px 0 0 0;
  }
}
.product .slider_area .slider_wrap {
  max-width: 1130px;
  height: 400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 970px) {
  .product .slider_area .slider_wrap {
    height: 350px;
  }
}
@media screen and (max-width: 375px) {
  .product .slider_area .slider_wrap {
    /* 520px以下で表示させたいcssを記述していく */
    height: 410px;
  }
}
.product .slider_area .slider_wrap .prev-arrow {
  cursor: pointer;
  position: absolute;
  z-index: 9;
  top: 50%;
  left: -60px;
  transform: translateY(-50%);
}
@media screen and (max-width: 1330px) {
  .product .slider_area .slider_wrap .prev-arrow {
    /* 520px以下で表示させたいcssを記述していく */
    left: -40px;
  }
}
@media screen and (max-width: 760px) {
  .product .slider_area .slider_wrap .prev-arrow {
    /* 520px以下で表示させたいcssを記述していく */
    left: -30px;
  }
}
@media screen and (max-width: 520px) {
  .product .slider_area .slider_wrap .prev-arrow {
    /* 520px以下で表示させたいcssを記述していく */
    width: 20px;
    left: -10px;
    top: 46%;
  }
}
@media screen and (max-width: 375px) {
  .product .slider_area .slider_wrap .prev-arrow {
    top: 36%;
  }
}
.product .slider_area .slider_wrap .next-arrow {
  cursor: pointer;
  position: absolute;
  z-index: 9;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
}
@media screen and (max-width: 1330px) {
  .product .slider_area .slider_wrap .next-arrow {
    /* 520px以下で表示させたいcssを記述していく */
    right: -40px;
  }
}
@media screen and (max-width: 760px) {
  .product .slider_area .slider_wrap .next-arrow {
    /* 520px以下で表示させたいcssを記述していく */
    right: -30px;
  }
}
@media screen and (max-width: 520px) {
  .product .slider_area .slider_wrap .next-arrow {
    /* 520px以下で表示させたいcssを記述していく */
    width: 20px;
    right: -10px;
    top: 46%;
  }
}
@media screen and (max-width: 375px) {
  .product .slider_area .slider_wrap .next-arrow {
    top: 36%;
  }
}
.product .slider_area .slider_wrap .slick-dots {
  bottom: -50px !important;
}
@media screen and (max-width: 375px) {
  .product .slider_area .slider_wrap .slick-dots {
    /* 520px以下で表示させたいcssを記述していく */
    bottom: -10px !important;
  }
}
.product .slider_area .slider_wrap .slick-dots li button:before {
  font-size: 18px;
}
@media screen and (max-width: 520px) {
  .product .slider_area .slider_wrap .slick-dots li button:before {
    top: -50px;
  }
}
@media screen and (max-width: 375px) {
  .product .slider_area .slider_wrap .slick-dots li button:before {
    top: -90px;
  }
}
.product .slider_area .slider_wrap .slider_item {
  position: relative;
  margin: 0 18px;
}
@media screen and (max-width: 520px) {
  .product .slider_area .slider_wrap .slider_item {
    /* 520px以下で表示させたいcssを記述していく */
    margin: 0 20px;
  }
}
.product .slider_area .slider_wrap .slider_item img {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 970px) {
  .product .slider_area .slider_wrap .slider_item img {
    height: 350px;
  }
}
@media screen and (max-width: 520px) {
  .product .slider_area .slider_wrap .slider_item img {
    /* 520px以下で表示させたいcssを記述していく */
    height: 310px;
  }
}
@media screen and (max-width: 375px) {
  .product .slider_area .slider_wrap .slider_item img {
    height: 280px;
  }
}
.product .slider_area .slider_wrap .slider_item .mask_text {
  width: 100%;
  height: 18%;
  border-radius: 0 0 0 50px;
  position: absolute;
  /* 絶対位置指定 */
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  /* マスクは半透明 */
}
@media screen and (max-width: 520px) {
  .product .slider_area .slider_wrap .slider_item .mask_text {
    /* 520px以下で表示させたいcssを記述していく */
    border-radius: 0 0 0 34px;
    height: 14%;
  }
}
.product .slider_area .slider_wrap .slider_item .mask_text .caption {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 520px) {
  .product .slider_area .slider_wrap .slider_item .mask_text .caption {
    /* 520px以下で表示させたいcssを記述していく */
    font-size: 18px;
  }
}

.company {
  padding-bottom: 160px;
  width: 100%;
}
@media screen and (max-width: 520px) {
  .company {
    /* 520px以下で表示させたいcssを記述していく */
    padding-bottom: 75px;
  }
}
.company .intro-sec {
  position: relative;
}
.company .intro-sec .intro-img {
  height: 305px;
  background-image: url(../images/company.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 520px) {
  .company .intro-sec .intro-img {
    /* 520px以下で表示させたいcssを記述していく */
    height: 220px;
  }
}
.company .intro-sec .intro-img .title_wrap {
  text-align: center;
  position: absolute;
  width: 100%;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -60%);
}
@media screen and (max-width: 520px) {
  .company .intro-sec .intro-img .title_wrap {
    /* 520px以下で表示させたいcssを記述していく */
    top: 52%;
    left: 50%;
    transform: translate(-50%, -52%);
  }
}
.company .intro-sec .intro-img .title_wrap h2 {
  margin: 0 0 15px;
  font-size: 35px;
  letter-spacing: 0.1em;
  line-height: 1.14;
  color: #ffffff;
  text-shadow: 1px 1px 2px black;
}
@media screen and (max-width: 520px) {
  .company .intro-sec .intro-img .title_wrap h2 {
    /* 520px以下で表示させたいcssを記述していく */
    font-size: 30px;
    margin-bottom: 10px;
  }
}
.company .intro-sec .intro-img .title_wrap span {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-shadow: 1px 1px 2px black;
}
@media screen and (max-width: 520px) {
  .company .intro-sec .intro-img .title_wrap span {
    /* 520px以下で表示させたいcssを記述していく */
    font-size: 15px;
  }
}
.company .company-wrapper {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
}
.company .company-wrapper .company-info {
  margin: 88px auto 0;
  max-width: 830px;
  width: 100%;
}
.company .company-wrapper .company-info .sp_wrap {
  display: none;
}
@media screen and (max-width: 520px) {
  .company .company-wrapper .company-info {
    /* 520px以下で表示させたいcssを記述していく */
    margin: 30px auto 0;
  }
  .company .company-wrapper .company-info table {
    display: none;
  }
  .company .company-wrapper .company-info .sp_wrap {
    display: block;
  }
  .company .company-wrapper .company-info .sp_wrap dt {
    font-weight: bold;
  }
  .company .company-wrapper .company-info .sp_wrap dd {
    margin: 0;
    color: #3e3a39;
  }
  .company .company-wrapper .company-info .sp_wrap .persons {
    padding: 15px 5px;
    border-top: dashed 1px #111;
  }
  .company .company-wrapper .company-info .sp_wrap .persons:last-child {
    border-bottom: dashed 1px #111;
  }
}
.company .company-wrapper .company-info tr th {
  border-bottom: 1px dashed #111;
  width: 15%;
  padding: 20px 0 20px 40px;
  text-align: left;
  font-size: 22px;
  letter-spacing: 0.1em;
  font-weight: 550;
  color: #3e3a39;
}
.company .company-wrapper .company-info tr td {
  border-bottom: 1px dashed #111;
  width: 37%;
  font-size: 22px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #3e3a39;
}
.company .company-wrapper .company-info tr:first-child th {
  border-top: 1px dashed #111;
}
.company .company-wrapper .company-info tr:first-child td {
  border-top: 1px dashed #111;
}
.company .company-wrapper .map {
  width: 100%;
  margin-top: 52px;
  max-width: 830px;
  margin: 50px auto 0;
  padding: 0;
}
@media screen and (max-width: 520px) {
  .company .company-wrapper .map {
    /* 520px以下で表示させたいcssを記述していく */
    margin-top: 30px;
  }
  .company .company-wrapper .map iframe {
    height: 200px;
  }
}
.company .company-wrapper .map p {
  margin-top: 14px;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: #3e3a39;
}
@media screen and (max-width: 520px) {
  .company .company-wrapper .map p {
    /* 520px以下で表示させたいcssを記述していく */
    font-size: 14px;
    margin-top: 4px;
  }
}

.contact {
  padding-bottom: 350px;
  width: 100%;
}
@media screen and (max-width: 520px) {
  .contact {
    /* 520px以下で表示させたいcssを記述していく */
    padding-bottom: 220px;
  }
}
.contact .intro-sec {
  position: relative;
}
.contact .intro-sec .intro-img {
  height: 305px;
  background-image: url(../images/contact.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 520px) {
  .contact .intro-sec .intro-img {
    /* 520px以下で表示させたいcssを記述していく */
    height: 220px;
  }
}
.contact .intro-sec .intro-img .title_wrap {
  text-align: center;
  position: absolute;
  width: 100%;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -60%);
}
@media screen and (max-width: 520px) {
  .contact .intro-sec .intro-img .title_wrap {
    /* 520px以下で表示させたいcssを記述していく */
    top: 52%;
    left: 50%;
    transform: translate(-50%, -52%);
  }
}
.contact .intro-sec .intro-img .title_wrap h2 {
  margin: 0 0 15px;
  font-size: 35px;
  letter-spacing: 0.1em;
  line-height: 1.14;
  color: #ffffff;
  text-shadow: 1px 1px 2px black;
}
@media screen and (max-width: 520px) {
  .contact .intro-sec .intro-img .title_wrap h2 {
    /* 520px以下で表示させたいcssを記述していく */
    font-size: 30px;
    margin-bottom: 10px;
  }
}
.contact .intro-sec .intro-img .title_wrap span {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-shadow: 1px 1px 2px black;
}
@media screen and (max-width: 520px) {
  .contact .intro-sec .intro-img .title_wrap span {
    /* 520px以下で表示させたいcssを記述していく */
    font-size: 18px;
  }
}
.contact .contact-box {
  margin-top: 80px;
}
@media screen and (max-width: 520px) {
  .contact .contact-box {
    /* 520px以下で表示させたいcssを記述していく */
    padding: 0 30px;
    margin-top: 40px;
  }
}
.contact .contact-box .img-box {
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 600px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 520px) {
  .contact .contact-box .img-box img {
    width: 50px;
  }
}
.contact .contact-box .btn-box {
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 600px;
  margin: auto;
}
.contact .contact-box .btn-box a {
  text-align: center;
}
.contact .contact-box .btn-box a p {
  font-size: 25px;
  letter-spacing: 0.075em;
  font-weight: 550;
  margin-top: 30px;
  text-align: center;
  color: #3e3a39;
}
@media screen and (max-width: 520px) {
  .contact .contact-box .btn-box a p {
    /* 520px以下で表示させたいcssを記述していく */
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 0;
  }
}
.contact .contact-bottom {
  margin-top: 150px;
  position: relative;
}
@media screen and (max-width: 520px) {
  .contact .contact-bottom {
    /* 520px以下で表示させたいcssを記述していく */
    margin-top: 90px;
  }
}
.contact .contact-bottom .original-company {
  background-image: url(../images/contact-bottom.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 350px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
}

@media screen and (max-width: 480px) {
  .contact .contact-bottom .original-company {
    background-image: url(../images/contact_bottom2.jpg);
  }
}

@media screen and (max-width: 520px) {
  .contact .contact-bottom .original-company {
    /* 520px以下で表示させたいcssを記述していく */
    height: 220px;
  }
}
.contact .contact-bottom .contact-img {
  position: absolute;
  bottom: -25px;
  left: 0;
  z-index: 1;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .contact .contact-bottom .contact-img {
    /* 520px以下で表示させたいcssを記述していく */
    bottom: -18px;
  }
}
@media screen and (max-width: 768px) {
  .contact .contact-bottom .contact-img {
    /* 520px以下で表示させたいcssを記述していく */
    bottom: -15px;
  }
}
@media screen and (max-width: 520px) {
  .contact .contact-bottom .contact-img {
    /* 520px以下で表示させたいcssを記述していく */
    bottom: -11px;
  }
}
.contact .contact-bottom .contact-img img {
  width: 100%;
}

footer {
  background-color: #3e3a39;
}
footer .footer-wrap {
  max-width: 1366px;
  width: 100%;
  margin: auto;
}
footer .footer-wrap .footer-logo {
  text-align: center;
  padding-top: 64px;
}
@media screen and (max-width: 520px) {
  footer .footer-wrap .footer-logo {
    /* 520px以下で表示させたいcssを記述していく */
    padding-top: 36px;
  }
  footer .footer-wrap .footer-logo img {
    width: 50px;
  }
}
footer .footer-wrap .footer-link {
  padding-top: 56px;
  margin-left: auto;
}
@media screen and (max-width: 520px) {
  footer .footer-wrap .footer-link {
    /* 520px以下で表示させたいcssを記述していく */
    padding-top: 24px;
  }
}
footer .footer-wrap .footer-link .list {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 2.2;
  margin-top: 0;
  padding: 0;
  flex-wrap: wrap;
}
@media screen and (max-width: 520px) {
  footer .footer-wrap .footer-link .list {
    /* 520px以下で表示させたいcssを記述していく */
    width: 100%;
  }
}
footer .footer-wrap .footer-link .list li {
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 550;
  margin-right: 50px;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 520px) {
  footer .footer-wrap .footer-link .list li {
    /* 520px以下で表示させたいcssを記述していく */
    margin-right: 14px;
    margin-left: 14px;
    font-size: 14px;
  }
}
footer .footer-wrap .footer-link .list li:nth-child(5) {
  margin-right: 30px;
}
@media screen and (max-width: 520px) {
  footer .footer-wrap .footer-link .list li:nth-child(5) {
    /* 520px以下で表示させたいcssを記述していく */
    margin-right: 10px;
  }
}
footer .footer-wrap .footer-link .list li.email-icon {
  margin-right: 19px;
  margin-top: 5px;
}
@media screen and (max-width: 520px) {
  footer .footer-wrap .footer-link .list li.email-icon {
    /* 520px以下で表示させたいcssを記述していく */
    margin-right: 4px;
  }
  footer .footer-wrap .footer-link .list li.email-icon img {
    width: 18px;
  }
}
footer .footer-wrap .footer-link .list li.line-icon {
  margin-right: 0;
  margin-top: 12px;
}
@media screen and (max-width: 520px) {
  footer .footer-wrap .footer-link .list li.line-icon {
    /* 520px以下で表示させたいcssを記述していく */
    margin-top: 8px;
  }
  footer .footer-wrap .footer-link .list li.line-icon img {
    width: 18px;
  }
}
footer .footer-wrap .footer-link .list li::after {
  content: "";
  width: 2px;
  height: 22px;
  background-color: white;
  position: absolute;
  top: 9px;
  right: -25px;
}
@media screen and (max-width: 520px) {
  footer .footer-wrap .footer-link .list li::after {
    /* 520px以下で表示させたいcssを記述していく */
    top: 4px;
    right: -14px;
  }
}
footer .footer-wrap .footer-link .list li:nth-child(5)::after,
footer .footer-wrap .footer-link .list li:nth-child(6)::after,
footer .footer-wrap .footer-link .list li:nth-child(7)::after {
  display: none;
}
footer .footer-wrap .copyright {
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 520px) {
  footer .footer-wrap .copyright {
    /* 520px以下で表示させたいcssを記述していく */
    padding-bottom: 14px;
    padding-top: 10px;
  }
}
footer .footer-wrap .copyright small {
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 550;
  color: #ffffff;
}
@media screen and (max-width: 520px) {
  footer .footer-wrap .copyright small {
    /* 520px以下で表示させたいcssを記述していく */
    font-size: 12px;
  }
}

#service,
#product,
#company,
#contact {
  padding-top: 70px;
  margin-top: -70px;
}

@media screen and (max-width: 520px) {
  #company {
    margin-top: -40px;
  }
}
@media screen and (max-width: 375px) {
  #company {
    padding-top: 50px;
    margin-top: -100px;
  }
}
/*# sourceMappingURL=style.css.map */
