@charset "UTF-8";
/* SCSS Document */
* {
  box-sizing: border-box;
}

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

common

------------------------------------------------------------*/
body {
  font-family: "Century Gothic", "Arial", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  counter-reset: item;
}

.js_ttlFadeIn {
  transform: translateX(-3%);
  opacity: 0;
}

.js_ttlFadeIn.fadeUp {
  transform: translateY(30px);
  opacity: 0;
}

.huwa {
  animation: huwa 1s ease-out forwards;
}

@keyframes huwa {
  to {
    transform: initial;
    opacity: 1;
  }
}
a {
  text-decoration: none;
}

.flex {
  display: flex;
}

.left {
  width: 30%;
}

.right {
  width: 70%;
}

.wht {
  color: #fff;
}

.bold {
  font-weight: bold;
}

span.number {
  letter-spacing: 1px;
}

.margin-top-100 {
  margin-top: 100px;
}
@media screen and (max-width: 480px) {
  .margin-top-100 {
    margin-top: 50px;
  }
}

.margin-bottom-100 {
  margin-bottom: 100px;
}
@media screen and (max-width: 480px) {
  .margin-bottom-100 {
    margin-bottom: 50px;
  }
}

.text-box {
  position: relative;
  display: inline-block;
  /* padding-bottom: 20px; */
  margin-bottom: 20px;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .text-box {
    margin-bottom: 10px;
  }
}

.boxInner {
  display: flex;
  width: inherit;
  height: inherit;
  padding-bottom: 20px;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .boxInner {
    flex-wrap: wrap;
  }
}

.isPlay {
  animation-name: play;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  position: relative;
  opacity: 1 !important;
}

.isPlay:before {
  animation-name: maskOut;
  animation-duration: 0.4s;
  animation-delay: 0.4s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #00b09b;
}

@keyframes play {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes maskOut {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(101%);
  }
}
.top-image {
  position: relative;
  height: 100vh;
  background: #f5f5f5;
}
@media screen and (max-width: 480px) {
  .top-image {
    height: 60vh;
  }
}

.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (max-width: 480px) {
  .logo {
    width: 100%;
  }
}

.logo-image {
  max-width: 600px;
}
@media screen and (max-width: 480px) {
  .logo-image {
    max-width: 300px;
    margin: 0 auto;
  }
}
.logo-image img {
  width: 100%;
}

.nav {
  position: fixed;
  width: 100%;
  z-index: 99;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .nav {
    display: none;
  }
}

.gnav {
  width: 100%;
  display: flex;
  gap: 40px;
  align-items: center;
  margin: 0 auto;
}
.gnav li a {
  display: inline-block;
  position: relative;
  padding: 5px 10px;
  color: #333;
  font-weight: bold;
  text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
  transition: 0.3s;
}
.gnav li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 0;
  height: 2px;
  background: #ff8c00;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.gnav li a:hover::after {
  width: 100%;
  opacity: 1;
  visibility: visible;
}
.gnav li.list-end {
  padding: 0;
}
.gnav li.list-end a {
  display: block;
  padding: 30px 40px;
  color: #fff;
  text-shadow: none;
  background: #228b22;
}
.gnav li.list-end a::after {
  content: none;
}

.top-logo {
  padding: 10px !important;
  margin-right: auto;
  width: 100%;
  max-width: 300px;
  opacity: 0;
}

.top-logo a::after {
  content: none !important;
}

.top-logo img {
  width: 100%;
}

.top-logo.logoShow {
  opacity: 1 !important;
}

.bgColor {
  background: rgba(255, 255, 255, 0.9);
  transition: 0.3s;
}

.sub-image {
  position: relative;
  height: 50vh;
  background: url(../img/slide_02.jpg);
  background-size: cover;
  background-position: top;
}
@media screen and (max-width: 480px) {
  .sub-image {
    height: 60vh;
  }
}

.sub-image-ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.sub-image-ttl h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 5px #000;
}
@media screen and (max-width: 480px) {
  .sub-image-ttl h1 {
    font-size: 1.8rem;
  }
}

#contents {
  width: 100%;
  /*padding: 100px 0;*/
}

.subttl__area {
  padding: 20px;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .subttl__area {
    margin-bottom: 0;
  }
}

h2.subttl {
  position: relative;
  margin: 0 auto;
}
h2.subttl span.en {
  font-family: "Outfit", sans-serif;
  display: block;
  color: #004b8d;
  color: #00b09b;
  font-size: 4.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  h2.subttl span.en {
    font-size: 2.5rem;
  }
}
h2.subttl span.jp {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #00b09b;
  color: #004b8d;
}
@media screen and (max-width: 480px) {
  h2.subttl span.jp {
    font-size: 1rem;
  }
}
h2.subttl::before {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 30px;
  height: 1px;
  transition: 0.3s;
  content: "";
  background: #000;
}
@media screen and (max-width: 480px) {
  h2.subttl::before {
    width: 20px;
  }
}

/* .isPlay{
	h2.subttl{

		  &::before {
			width: 30px;
		  }
	}
} */
.tbl {
  margin: 0 auto 20px auto;
  width: 100%;
  max-width: 1280px;
  border-collapse: collapse;
}
@media screen and (max-width: 480px) {
  .tbl {
    width: 100%;
  }
}
.tbl th {
  font-weight: bold;
  text-align: left;
  padding: 15px 30px 15px 10px;
  border-bottom: 1px solid #004b8d;
  width: 25%;
}
@media screen and (max-width: 480px) {
  .tbl th {
    display: block;
    width: 100%;
    background: #004b8d;
    border-bottom: none;
    color: #fff;
  }
}
.tbl td {
  padding: 15px 30px 15px 10px;
  border-bottom: 1px solid #004b8d;
  line-height: 1.7;
}
@media screen and (max-width: 480px) {
  .tbl td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
}
.tbl td ol {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 480px) {
  .tbl td ol {
    gap: 10px;
  }
}
.tbl td ol li {
  list-style-type: decimal;
  padding: 5px;
  list-style-position: inside;
}

.section__space {
  padding: 100px 0;
}
@media screen and (max-width: 480px) {
  .section__space {
    padding: 50px 10px;
  }
}

.fade-nav-side {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 101;
}
@media screen and (max-width: 480px) {
  .fade-nav-side {
    top: auto;
    bottom: 0;
  }
}
.fade-nav-side .sns {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 15px 10px;
  background: #00b09b;
  border-radius: 10px 0 0 10px;
}
.fade-nav-side .sns li a {
  display: block;
  aspect-ratio: 1;
  max-width: 40px;
}
.fade-nav-side .sns li a img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

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

矢沢商事について

------------------------------------------------------------*/
.about__area {
  padding: 200px 0 100px 0;
  margin-bottom: 50px;
  background: url(../img/wave.svg);
  background-size: 100%;
  background-position: top;
  background-repeat: no-repeat;
}
@media screen and (max-width: 480px) {
  .about__area {
    padding: 100px 10px 50px;
    background: url(../img/wave-sp.svg);
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
  }
}

.about__area--box {
  position: relative;
}

.about__area--image {
  aspect-ratio: 750/330;
  width: 70%;
  border-radius: 0 10px 10px 0;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .about__area--image {
    width: 100%;
  }
}
.about__area--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__area--text {
  width: 50%;
  position: absolute;
  bottom: -50px;
  right: 50px;
  padding: 50px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  border-radius: 10px;
}
@media screen and (max-width: 480px) {
  .about__area--text {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    padding: 20px;
    margin-top: 10px;
  }
}
.about__area--text p {
  line-height: 1.75;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .about__area--text p {
    font-size: 1.1rem;
  }
}

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

業務案内

------------------------------------------------------------*/
.service__area {
  background: #f5f5f5;
  overflow: hidden;
}
.service__area h3 {
  position: relative;
  max-width: 1280px;
  font-size: 2rem;
  margin: 0 auto 50px;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .service__area h3 {
    padding: 10px;
    font-size: 1.3rem;
    border-bottom: solid 1px #004b8d;
    margin: 0 auto 20px;
  }
}
.service__area h3::after {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 100%;
  content: "";
  background: #000;
  height: 1px;
  width: 150%;
}
@media screen and (max-width: 480px) {
  .service__area h3::after {
    content: none;
  }
}

.service__area--box {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto 20px auto;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 480px) {
  .service__area--box {
    flex-wrap: wrap;
  }
}

.service__area--image {
  width: calc(40% - 20px);
}
@media screen and (max-width: 480px) {
  .service__area--image {
    width: 100%;
  }
}
.service__area--image .service__area--image-main {
  aspect-ratio: 600/430;
  width: 100%;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.service__area--image .service__area--image-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service__area--image .service__area--image-sub {
  display: flex;
  gap: 10px;
}
.service__area--image .service__area--image-sub div {
  width: calc((100% - 10px) / 2);
  aspect-ratio: 600/430;
  border-radius: 10px;
  overflow: hidden;
}
.service__area--image .service__area--image-sub div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service__area--text {
  width: 60%;
  padding: 30px;
}
@media screen and (max-width: 480px) {
  .service__area--text {
    padding: 10px;
  }
}
@media screen and (max-width: 480px) {
  .service__area--text {
    width: 100%;
  }
}
.service__area--text p {
  font-size: 1.2rem;
  line-height: 1.75;
}
@media screen and (max-width: 480px) {
  .service__area--text p {
    font-size: 1.1rem;
  }
}
.service__area--text ul {
  list-style-type: disc;
  list-style-position: inside;
}
.service__area--text ul li {
  padding: 10px;
  line-height: 1.75;
}

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

実績一覧

------------------------------------------------------------*/
.archive__area {
  background: #333333;
}

.archive__area--txt {
  width: 100%;
  max-width: 900px;
  margin: 30px auto;
}
.archive__area--txt p {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.75;
}
@media screen and (max-width: 480px) {
  .archive__area--txt p {
    font-size: 1rem;
  }
}

.slider-box {
  width: 100%;
  max-width: 900px;
  margin: 30px auto 100px auto;
}

.slider-wrap {
  width: 100%;
}
.slider-wrap .slick-slide {
  aspect-ratio: 900/675;
}
.slider-wrap .slick-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider-nav {
  position: relative;
  width: 100%;
  padding: 0 !important;
}
.slider-nav li:hover {
  cursor: pointer;
}

.slick-prev {
  margin: 0 !important;
  position: absolute !important;
  bottom: 0 !important;
  z-index: 99;
  font-size: 1.2em !important;
  padding: 0 20px;
  height: 100% !important;
  background: rgba(255, 255, 255, 0.8) !important;
  border: none !important;
  cursor: pointer;
}

.slick-next {
  margin: 0 !important;
  position: absolute !important;
  bottom: 0 !important;
  right: 0;
  font-size: 1.2em !important;
  padding: 0 20px;
  height: 100% !important;
  background: rgba(255, 255, 255, 0.8) !important;
  border: none !important;
  cursor: pointer;
}

.slick-current p.filter {
  background: #000;
}

.filter img {
  opacity: 0.8;
}

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

お問い合わせ

------------------------------------------------------------*/
.contact__area {
  background: #00b09b;
}
.contact__area .subttl__area .subttl span.en {
  color: #fff;
}
.contact__area .subttl__area .subttl span.jp {
  color: #004b8d;
}
.contact__area .isPlay:before {
  background: #fff;
}

.contact__area--box {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .contact__area--box {
    width: 100%;
    margin-bottom: 20px;
  }
}
.contact__area--box .dllist__flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
@media screen and (max-width: 480px) {
  .contact__area--box .dllist__flex {
    flex-wrap: wrap;
  }
}
.contact__area--box .dllist__flex dl {
  width: calc((100% - 40px) / 3);
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .contact__area--box .dllist__flex dl {
    width: 100%;
  }
}
.contact__area--box .dllist__flex dl dt {
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .contact__area--box .dllist__flex dl dt {
    font-size: 1rem;
  }
}
.contact__area--box .dllist__flex dl dd {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 1px;
}
.contact__area--box .dllist__flex dl dd a {
  color: #fff;
}
@media screen and (max-width: 480px) {
  .contact__area--box .dllist__flex dl dd {
    font-size: 2rem;
  }
}
.contact__area--box .dllist__flex dl dd.mail {
  aspect-ratio: 206/18;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .contact__area--box .dllist__flex dl dd.mail {
    max-width: 250px;
  }
}
.contact__area--box .dllist__flex dl dd.mail img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact__btn {
  text-align: center;
  width: 400px;
  height: 60px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .contact__btn {
    width: 90%;
    height: 50px;
    margin: 30px auto 0;
  }
}
.contact__btn a {
  border-radius: 50px;
  display: inline-block;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: bold;
  border: 1px solid #fff;
  background: #004b8d;
}
.contact__btn a:hover {
  color: #004b8d;
  background: #fff;
  border: 1px solid #004b8d;
  transition: all 0.3s;
  box-sizing: border-box;
}

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

アクセス

------------------------------------------------------------*/
.access__area {
  padding: 100px 0 0;
}

@media screen and (max-width: 480px) {
  .gmap {
    width: 100%;
    height: auto;
  }
}
.gmap iframe {
  width: 100%;
  height: 350px;
}

.recruit__area {
  position: relative;
  padding: 100px 0 300px;
}
@media screen and (max-width: 480px) {
  .recruit__area {
    padding: 50px 10px 200px;
  }
}
.recruit__area::after {
  position: absolute;
  left: 0;
  bottom: -10px;
  display: block;
  content: "";
  width: 100%;
  height: 180px;
  background: url(../img/wave2.svg);
  background-size: 100%;
  background-position: bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 480px) {
  .recruit__area::after {
    height: 100px;
    background: url(../img/wave-sp2.svg);
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
  }
}

.recruit__area--interview {
  padding: 100px 0;
}
@media screen and (max-width: 480px) {
  .recruit__area--interview {
    padding: 50px 0;
  }
}

.interview__box {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  min-height: 600px;
}

.interview__box--image {
  aspect-ratio: 600/400;
  width: 50%;
  border-radius: 10px;
  box-shadow: rgba(0, 176, 155, 0.4) 20px 20px;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .interview__box--image {
    width: 100%;
    margin-bottom: 10px;
    box-shadow: none;
  }
}
.interview__box--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.interview__box--text {
  width: 60%;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 50px;
  color: #fff;
  background: #004b8d;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  border-radius: 10px;
}
@media screen and (max-width: 480px) {
  .interview__box--text {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    padding: 20px;
    box-shadow: none;
  }
}
.interview__box--text h3 {
  font-size: 1.5rem;
  font-weight: bold;
  padding: 10px;
  border-bottom: solid 2px #00b09b;
}
.interview__box--text h3 span {
  font-size: 1.1rem;
  margin-left: 10px;
}
.interview__box--text .interview__box--text--inner {
  padding: 10px;
}
.interview__box--text h4 {
  font-size: 1.2rem;
  padding: 20px 0 10px;
  font-weight: bold;
}
.interview__box--text p {
  line-height: 1.75;
  font-size: 1rem;
}

footer {
  position: relative;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.75;
  background: #004b8d;
  padding: 50px 0 10px 0;
}
@media screen and (max-width: 480px) {
  footer {
    padding: 50px 0;
  }
}
footer .logistic {
  max-width: 300px;
  aspect-ratio: 300/80;
  margin: 0 auto 20px;
}
@media screen and (max-width: 480px) {
  footer .logistic {
    max-width: 250px;
  }
}
footer .logistic img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
footer small {
  color: #fff;
  font-weight: bold;
  line-height: 1rem;
}
footer span {
  margin-left: 10px;
}
@media screen and (max-width: 480px) {
  footer span {
    display: block;
    margin-left: 0;
  }
}

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

スマホナビ

------------------------------------------------------------*/
.sp-logo {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sp-logo {
    display: block;
    padding: 20px;
  }
}

nav.globalMenuSp {
  display: none;
}
@media screen and (max-width: 1024px) {
  nav.globalMenuSp {
    display: block;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    /*background: #fff;*/
    color: #000;
    text-align: center;
    transform: translateX(-10%);
    visibility: hidden;
    opacity: 0;
    transition: all 0.6s;
    width: 100%;
    height: 100%;
  }
  nav.globalMenuSp ul {
    background: #004b8d;
    /*background: -webkit-linear-gradient(-45deg, #fa709a 0%, #fbb0c9 100%);*/
    background-size: cover;
    margin: 0 auto;
    padding: 50px 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  nav.globalMenuSp ul li {
    font-size: 1.1em;
    list-style-type: none;
    padding: 0;
    width: 100%;
    /*border-bottom: 1px dotted #fff;*/
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    /*text-shadow: 1px 1px 0 #ccc;*/
    font-weight: bold;
    padding: 1em 0;
    font-size: 1.1em;
    border-bottom: dotted 2px #00b09b;
  }
  nav.globalMenuSp ul li a:hover {
    background: rgba(245, 245, 245, 0.8);
  }
  nav.globalMenuSp.nav_active {
    transform: translateX(0%);
    visibility: visible;
    opacity: 1;
  }
}

.navToggle {
  display: none;
}
@media screen and (max-width: 1024px) {
  .navToggle {
    display: block;
    position: fixed;
    right: 5px;
    top: 5px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 101;
    text-align: center;
    border-radius: 5px;
  }
  .navToggle span {
    display: block;
    position: absolute;
    width: 47px;
    border-bottom: solid 4px #fff;
    box-shadow: 1px 1px 1px #aaaaaa;
    transition: 0.35s ease-in-out;
    left: 6px;
  }
  .navToggle span:nth-child(1) {
    top: 9px;
  }
  .navToggle span:nth-child(2) {
    top: 23px;
  }
  .navToggle span:nth-child(3) {
    top: 37px;
  }
  .navToggle span:nth-child(4) {
    border: none;
    color: #fff;
    text-shadow: 1px 1px 1px #aaaaaa;
    box-shadow: none;
    font-size: 11px;
    font-weight: bold;
    top: 45px;
  }
  .navToggle.nav_active span {
    box-shadow: none;
    text-shadow: none;
  }
  .navToggle.nav_active span:nth-child(1) {
    top: 22px;
    left: 6px;
    transform: rotate(-45deg);
  }
  .navToggle.nav_active span:nth-child(2), .navToggle.nav_active span:nth-child(3) {
    top: 22px;
    transform: rotate(45deg);
  }
}

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

問い合わせ

------------------------------------------------------------*/
.contact__ttl {
  text-align: center;
}
.contact__ttl h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 50px;
}
@media screen and (max-width: 480px) {
  .contact__ttl h3 {
    font-size: 1.5rem;
  }
}

.form__area {
  padding: 100px 0;
}
@media screen and (max-width: 480px) {
  .form__area {
    padding: 50px 10px;
  }
}

.form__area--inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.contacttbl {
  width: 100%;
  height: auto;
  border-collapse: separate;
  border-spacing: 5px;
}
@media screen and (max-width: 480px) {
  .contacttbl tr {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
}
.contacttbl th {
  width: 30%;
  text-align: left;
  color: #fff;
  background-color: #00b09b;
  font-weight: bold;
  padding: 10px;
  vertical-align: middle;
}
@media screen and (max-width: 480px) {
  .contacttbl th {
    width: 100%;
  }
}
.contacttbl td {
  padding: 10px;
}
@media screen and (max-width: 480px) {
  .contacttbl td {
    width: 100%;
    padding: 5px;
  }
}
.contacttbl td input {
  width: 60%;
  height: auto;
}
@media screen and (max-width: 480px) {
  .contacttbl td input {
    width: 100%;
  }
}
.contacttbl td input[type=checkbox i] {
  width: auto;
}
@media screen and (max-width: 480px) {
  .contacttbl td textarea {
    width: 100% !important;
  }
}
.contacttbl td.checkbox {
  line-height: 1.75;
}
.contacttbl td.submit {
  text-align: center;
}
.contacttbl td.submit input[type=submit i] {
  width: auto;
}

@media screen and (max-width: 480px) {
  form#mailformpro label {
    margin: 0 !important;
    white-space: wrap !important;
  }
}

.policy__area {
  background: #f5f5f5;
  padding: 100px 0;
}
@media screen and (max-width: 480px) {
  .policy__area {
    padding: 50px 10px;
  }
}

.policy__area--inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.policy {
  font-weight: bold;
}

.policy-txt {
  padding: 10px;
  font-size: 0.9rem;
  line-height: 1.75;
}
.policy-txt ul {
  list-style-type: disc;
  list-style-position: inside;
}

.thanks h3 {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.75;
}
@media screen and (max-width: 480px) {
  .thanks h3 {
    font-size: 1.2rem;
  }
}

.thanks-txt {
  line-height: 1.75;
}
.thanks-txt p {
  margin-bottom: 10px;
}/*# sourceMappingURL=style.css.map */