@charset "UTF-8";
@import url("reset.css");
@import url("loader.css");
/*----------------------------------------
	fonts Noto Sans JP
----------------------------------------*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2"), url("../fonts/NotoSansJP-Regular.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/NotoSansJP-Medium.woff2") format("woff2"), url("../fonts/NotoSansJP-Medium.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/NotoSansJP-SemiBold.woff2") format("woff2"), url("../fonts/NotoSansJP-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2"), url("../fonts/NotoSansJP-Bold.woff") format("woff");
}
/*----------------------------------------
	fonts Barlow
----------------------------------------*/
.barlow-bold, .en-bold {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.barlow-medium, .en-medium {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
}

html {
  font: 400 16px/2 "Noto Sans JP", "游ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

ul {
  list-style: none;
}

a {
  color: #333;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

/* -----------------------
common
----------------------- */
.common-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5%;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .common-container.en-logo {
    padding: 0;
  }
}

.title {
  text-align: center;
  font-size: 2.125rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 480px) {
  .title {
    font-size: 1.5625rem;
  }
}
.title span {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
}
#sec-models .title, #sec-inquiry .title {
  position: relative;
  margin-bottom: 0rem;
}

.sub-title {
  font-size: 1.375rem;
  text-align: center;
  margin: 2rem 0;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 480px) {
  .sub-title {
    font-size: 1.1875rem;
  }
}
#sec-greeting .sub-title {
  line-height: 1.5;
  font-size: clamp(1.125rem, 1.011rem + 0.48vw, 1.375rem);
  font-weight: 700;
}
#sec-models .sub-title {
  font-size: 1.4375rem;
  font-weight: 400;
  margin-bottom: 0;
}
@media screen and (max-width: 480px) {
  #sec-models .sub-title {
    font-size: 1.1875rem;
  }
}
#sec-information .sub-title {
  font-size: 1.25rem;
  background-color: #f8de00;
  max-width: 710px;
  margin: 0 auto 1.5rem;
  font-weight: 400;
}
@media screen and (max-width: 480px) {
  #sec-information .sub-title {
    font-size: 1.0625rem;
  }
}
#sec-lease-area .sub-title {
  line-height: 1.4;
}
#sec-lease-area .sub-title span {
  display: block;
  font-size: 0.875rem;
  padding-top: 16px;
}

.title + p,
.sub-title + p {
  text-align: center;
  margin-top: 1rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 480px) {
  #sec-models .title + p,
#sec-models .sub-title + p {
    font-size: 0.875rem;
  }
  #sec-information .title + p,
#sec-information .sub-title + p {
    text-align: left;
  }
}

#sec-greeting, #sec-lease-area {
  margin-bottom: 50px;
}

/* -----------------------
loading
----------------------- */
#loading {
  width: 100%;
  height: 100vh;
  transition: all 1s;
  background-color: #f8de00;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* -----------------------
opening
----------------------- */
.opening {
  display: none;
}

body.appear .opening {
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleY(0);
  background-color: #f8de00;
  -webkit-animation-name: PageAnime;
          animation-name: PageAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

@keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
#container {
  opacity: 0;
}

body.appear #container {
  -webkit-animation-name: PageAnimeAppear;
          animation-name: PageAnimeAppear;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* -----------------------
header
----------------------- */
header {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  background-image: url(../img/L-mark.svg);
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1280px) {
  header {
    background-image: url(../img/L-mark1440.svg);
  }
}
@media screen and (max-width: 850px) {
  header {
    min-height: 0;
    background-image: url(../img/L-mark768.svg);
  }
  header::before {
    content: "";
    display: block;
    padding-top: 65.5%;
  }
}
@media screen and (max-width: 480px) {
  header {
    background-image: url(../img/L-mark375.svg);
  }
  header::before {
    padding-top: 118%;
  }
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header h1 {
  width: 280px;
  padding-left: 1%;
  line-height: 1;
}
@media screen and (max-width: 1600px) {
  .header h1 {
    width: 246px;
  }
}
@media screen and (max-width: 850px) {
  .header h1 {
    position: absolute;
    top: 13px;
    left: 7px;
    width: 200px;
  }
}
@media screen and (max-width: 480px) {
  .header h1 {
    width: 180px;
  }
}

.en-logo {
  width: 100%;
  margin: 0 auto;
  padding-left: 6%;
}
@media screen and (max-width: 1600px) {
  .en-logo {
    max-width: 1280px;
    padding-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .en-logo {
    padding-left: 3%;
  }
}
.en-logo .animate-title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  line-height: 1;
  color: rgba(0, 0, 0, 0);
  font-size: 3.5vw;
  position: relative;
  top: -80px;
}
@media screen and (max-width: 1600px) {
  .en-logo .animate-title {
    font-size: 5vw;
    top: -40px;
  }
}
@media screen and (max-width: 480px) {
  .en-logo .animate-title {
    top: 0;
    font-size: 9vw;
    padding-left: 10px;
  }
}
.en-logo .animate-title.inview {
  opacity: 1;
}
.en-logo .animate-title.inview .char {
  display: inline-block;
  color: rgb(0, 0, 0);
  -webkit-animation-name: kf-animate-chars;
          animation-name: kf-animate-chars;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
          animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.en-logo .animate-title.inview .char:nth-child(1) {
  -webkit-animation-delay: 0.04s;
          animation-delay: 0.04s;
}
.en-logo .animate-title.inview .char:nth-child(2) {
  -webkit-animation-delay: 0.08s;
          animation-delay: 0.08s;
}
.en-logo .animate-title.inview .char:nth-child(3) {
  -webkit-animation-delay: 0.12s;
          animation-delay: 0.12s;
}
.en-logo .animate-title.inview .char:nth-child(4) {
  -webkit-animation-delay: 0.16s;
          animation-delay: 0.16s;
}
.en-logo .animate-title.inview .char:nth-child(5) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.en-logo .animate-title.inview .char:nth-child(6) {
  -webkit-animation-delay: 0.24s;
          animation-delay: 0.24s;
}
.en-logo .animate-title.inview .char:nth-child(7) {
  -webkit-animation-delay: 0.28s;
          animation-delay: 0.28s;
}
.en-logo .animate-title.inview .char:nth-child(8) {
  -webkit-animation-delay: 0.32s;
          animation-delay: 0.32s;
}
.en-logo .animate-title.inview .char:nth-child(9) {
  -webkit-animation-delay: 0.36s;
          animation-delay: 0.36s;
}
.en-logo .animate-title.inview .char:nth-child(10) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.en-logo .animate-title.inview .char:nth-child(11) {
  -webkit-animation-delay: 0.44s;
          animation-delay: 0.44s;
}
.en-logo .animate-title.inview .char:nth-child(12) {
  -webkit-animation-delay: 0.48s;
          animation-delay: 0.48s;
}
.en-logo .animate-title.inview .char:nth-child(13) {
  -webkit-animation-delay: 0.52s;
          animation-delay: 0.52s;
}
.en-logo .animate-title.inview .char:nth-child(14) {
  -webkit-animation-delay: 0.56s;
          animation-delay: 0.56s;
}

@-webkit-keyframes kf-animate-chars {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes kf-animate-chars {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* -----------------------
contents animation
----------------------- */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
    transform: translateY(3%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
    transform: translateY(3%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* -----------------------
nav menu-btn
----------------------- */
#g-nav ul {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 0.9375rem;
}
#g-nav li a {
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 100px;
  padding: 0 10px;
  margin-left: 10px;
}
@media screen and (max-width: 1380px) {
  #g-nav li a {
    height: 80px;
  }
}
@media screen and (max-width: 1024px) {
  #g-nav li a {
    height: 70px;
  }
}
#g-nav li.inquiry a {
  background-color: #f8de00;
  padding: 0 15px;
}
@media screen and (max-width: 850px) {
  #g-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background-color: #f8de00;
    transition: all 0.6s;
  }
  #g-nav.panelactive {
    right: 0;
  }
  #g-nav ul {
    display: block;
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #g-nav ul li {
    list-style: none;
    text-align: center;
  }
  #g-nav ul li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}

.menu-btn {
  display: none;
}
@media screen and (max-width: 850px) {
  .menu-btn {
    display: block;
  }
}

.menu-btn {
  position: absolute;
  z-index: 9999;
  top: 5px;
  right: 5px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 480px) {
  .menu-btn {
    top: 0;
    right: 0;
  }
}
.menu-btn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #333;
  width: 45%;
}
.menu-btn span:nth-of-type(1) {
  top: 15px;
}
.menu-btn span:nth-of-type(2) {
  top: 23px;
}
.menu-btn span:nth-of-type(3) {
  top: 31px;
}

.menu-btn.active span:nth-of-type(1) {
  top: 18px;
  left: 14px;
  transform: translateY(6px) rotate(-45deg);
  width: 45%;
}
.menu-btn.active span:nth-of-type(2) {
  opacity: 0;
  /*真ん中の線は透過*/
}
.menu-btn.active span:nth-of-type(3) {
  top: 30px;
  left: 14px;
  transform: translateY(-6px) rotate(45deg);
  width: 45%;
}

/* -----------------------
construction-site slider
----------------------- */
.construction-site {
  overflow: hidden;
  width: 100%;
  margin-left: auto;
  margin-bottom: 80px;
}
@media screen and (max-width: 480px) {
  .construction-site {
    margin-bottom: 50px;
  }
}
.construction-site .slider img {
  width: 100%;
  height: auto;
}

/* -----------------------
sec-company
----------------------- */
#sec-company {
  padding-bottom: 160px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #sec-company {
    padding-bottom: 180px;
  }
}

table {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
  font-size: 0.9375rem;
}

.normal-table {
  max-width: 690px;
  margin: 0 auto;
  border-top: 1px dashed #ccc;
}
@media screen and (max-width: 850px) {
  .normal-table {
    width: 98%;
  }
}
.normal-table td,
.normal-table th {
  border-bottom: 1px dashed #ccc;
  padding: 16px 0;
  text-align: left;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 850px) {
  .normal-table td,
.normal-table th {
    padding: 10px 0;
  }
}
@media screen and (max-width: 480px) {
  .normal-table td,
.normal-table th {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}
.normal-table th {
  vertical-align: top;
  width: 160px;
  padding-left: 0.5em;
}
@media screen and (max-width: 480px) {
  .normal-table th {
    width: 96px;
  }
}
.normal-table .address {
  line-height: 1.6;
}
.normal-table .address p + p {
  margin-top: 10px;
}
#sec-information .normal-table {
  margin: 2rem auto 4rem;
}
@media screen and (max-width: 480px) {
  #sec-information .normal-table {
    margin-bottom: 2rem;
  }
}

/* -----------------------
sec-greeting
sec-information
----------------------- */
#sec-greeting,
#sec-information {
  position: relative;
}
#sec-greeting::before, #sec-greeting::after,
#sec-information::before,
#sec-information::after {
  content: "";
  background-size: contain;
  position: absolute;
}

.polygon-yellow {
  background-color: #f8de00;
  padding: 5rem 0 10rem;
}
#sec-lease-area .polygon-yellow {
  padding: 5rem 0 14rem;
}
.polygon-yellow::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 20vh;
  background-image: url(../img/white-line.svg);
  background-position: center bottom;
}
@media screen and (max-width: 480px) {
  .polygon-yellow {
    padding-bottom: 4rem;
  }
}
@media screen and (max-width: 480px) {
  #sec-lease-area .polygon-yellow {
    padding: 3rem 0 8rem;
  }
}

/* -----------------------
#sec-greeting
#sec-lease-area
----------------------- */
.text {
  max-width: 770px;
  margin: 0 auto;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .text {
    font-size: 0.9375rem;
    padding: 0 1rem;
  }
}
.text p + p {
  margin-top: 1.5rem;
}
#sec-lease-area .text {
  line-height: 2;
}
#sec-lease-area .text p + p {
  margin-top: 2rem;
}
@media screen and (max-width: 480px) {
  .text {
    text-align: left;
  }
}

.sign {
  font-size: 1.1875rem;
  text-align: right;
}
.sign span {
  font-size: 0.9375rem;
  display: inline-block;
  padding-right: 1em;
}

.pict-crane {
  width: 190px;
  display: block;
  margin: 4rem auto 0;
}
@media screen and (max-width: 480px) {
  .pict-crane {
    width: 140px;
  }
}

@media screen and (max-width: 480px) {
  .forPC {
    display: none;
  }
}

/* -----------------------
sec-models
----------------------- */
.crane-car-wrapper {
  margin: 1.5rem auto 0;
}
@media screen and (min-width: 851px) {
  .crane-car-wrapper {
    margin: 4rem auto 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0 5rem;
  }
  .crane-car-wrapper > div {
    width: 42.333%;
  }
}

.crane-car:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.crane-car:nth-child(3) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.crane-car:nth-child(4) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.crane-car-photo {
  position: relative;
}
.crane-car-photo img {
  width: 100%;
}
.crane-car-photo .model-name {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0 0 0 16px;
  opacity: 0.8;
  line-height: 2.5;
  font-weight: 400;
}
@media screen and (max-width: 480px) {
  .crane-car-photo .model-name {
    font-size: 0.875rem;
  }
}
.crane-car-photo .model-name span {
  font-size: 1.3125rem;
  padding-right: 0.8rem;
  font-weight: 500;
  font-family: Oswald;
}
@media screen and (max-width: 480px) {
  .crane-car-photo .model-name span {
    font-size: 1.125rem;
  }
}

.spec-table {
  width: 100%;
  margin: 30px auto 80px;
  text-align: left;
  font-size: 0.8125rem;
}
@media screen and (max-width: 480px) {
  .spec-table {
    margin: 10px auto 40px;
  }
}
.spec-table tr:first-child th {
  border-bottom: 1px solid white;
}
.spec-table th {
  border-bottom: 1px solid #c2cfd7;
  border-top: 1px solid #c2cfd7;
  background: #c2cfd7;
  height: 40px;
  width: 28%;
  vertical-align: middle;
  padding-left: 16px;
  font-weight: 400;
}
@media screen and (max-width: 480px) {
  .spec-table th {
    width: 24%;
  }
  .spec-table th span {
    display: none;
  }
}
.spec-table td {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  vertical-align: middle;
  height: 40px;
  padding-left: 12px;
}
.spec-table.maker {
  margin-bottom: 150px;
  font-size: 0.875rem;
}
@media screen and (max-width: 480px) {
  .spec-table.maker {
    margin-bottom: 100px;
    font-size: 0.8125rem;
  }
}
.spec-table.maker th {
  font-size: 1rem;
}
@media screen and (max-width: 480px) {
  .spec-table.maker th {
    font-size: 0.875rem;
  }
}
.spec-table.maker th:nth-child(2) {
  border-left: 1px solid white;
}
.spec-table.maker td:nth-child(2) {
  border-left: 1px solid #ddd;
}

.icon-pdf:before {
  content: "";
  display: inline-block;
  width: 27px;
  height: 30px;
  background-image: url(../img/icon-pdf.png);
  background-size: cover;
  vertical-align: middle;
  margin-right: 10px;
}
@media screen and (max-width: 480px) {
  .icon-pdf:before {
    width: 20px;
    height: 22px;
  }
}

.icon-external-link:after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url(../img/icon-external-link.svg);
  background-size: cover;
  vertical-align: middle;
  margin-left: 8px;
}

/* -----------------------
sec-information
----------------------- */
ul.news {
  max-width: 680px;
  margin: 0 auto;
}
ul.news li {
  display: flex;
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
}
ul.news li:first-child {
  border-top: 1px solid #ccc;
}
ul.news li a {
  display: flex;
  text-decoration: none;
}
@media screen and (max-width: 850px) {
  ul.news li,
ul.news li a {
    flex-wrap: wrap;
  }
}

ul.news li .news_date {
  font-size: 1.1875rem;
}
ul.news li .news_category {
  flex-shrink: 0;
  color: #fff;
  font-size: 0.8125rem;
  height: 24px;
  line-height: 24px;
  display: inline-block;
  border-radius: 100px;
  padding: 0 15px;
  margin: 0 24px;
}
ul.news li .news_detail {
  font-size: 1.0625rem;
  line-height: 1.5;
}
@media screen and (max-width: 850px) {
  ul.news li .news_detail {
    width: 100%;
    font-size: 0.9375rem;
    margin-top: 8px;
  }
}
ul.news li a .news_detail {
  text-decoration: underline;
}

/* -----------------------
sec-inqury
----------------------- */
.crane-full-view {
  color: #fff;
  background-image: url(../img/crane-full-view.png);
  background-position: center;
  background-size: cover;
  width: 100%;
  position: relative;
  padding: 60px 0 160px;
}
@media screen and (max-width: 850px) {
  .crane-full-view {
    padding-bottom: 60px;
  }
}

.inqury__container {
  max-width: 1000px;
  margin: 2rem auto;
}
.inqury__container dl {
  border: 1px solid white;
  background-color: rgba(0, 0, 0, 0.2);
  color: white;
  padding: 20px 0;
}
@media screen and (max-width: 850px) {
  .inqury__container dl {
    margin: 0 1rem 20px;
  }
}
.inqury__container dl a {
  color: white;
}
.inqury__container dl dt {
  background-color: #f8de00;
  color: black;
  text-align: center;
  border-radius: 50px;
  width: 120px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 850px) {
  .inqury__container dl dt {
    margin-bottom: 20px;
  }
}
.inqury__container dl dd .en {
  font-size: 0.8em;
}
@media screen and (min-width: 851px) {
  .inqury__container {
    display: flex;
    justify-content: space-between;
  }
  .inqury__container dl {
    width: 48%;
    height: 200px;
  }
}

.telfax {
  text-align: center;
  font-size: 1.375rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  position: relative;
  top: -10px;
  left: -10px;
}
.telfax span.hour {
  display: block;
  font-size: 0.875rem;
  position: relative;
  left: 12px;
  top: 3px;
}

.email {
  text-align: center;
  line-height: 1;
  letter-spacing: 0.15em;
}
.email::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 18px;
  background-image: url(../img/icon-envelope.svg);
  background-size: contain;
  vertical-align: middle;
  margin-right: 16px;
  position: relative;
  top: -2px;
}

.form-container {
  max-width: 960px;
  border-radius: 24px;
  padding: 40px 60px 60px;
  margin: 2rem auto 0;
  background-color: #dfe9f2;
}

.contact-table th {
  font-weight: 700;
  padding-left: 1.5rem;
  vertical-align: middle;
  text-align: left;
  width: 14rem;
  color: #444;
}
.contact-table td {
  padding: 1rem 1.5rem;
}

/* -----------------------
form
----------------------- */
.required {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: #b7002b;
  border-radius: 4px;
  padding: 0 6px;
  margin-top: 4px;
  margin-left: 1rem;
}

input[type=submit],
input[type=button] {
  border: none;
}

input[type=text],
input[type=tel],
input[type=email],
textarea,
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  width: 100%;
  border: 1px solid #ccc;
  padding: 10px 5px;
  background-color: white;
}

.btn-container {
  display: flex;
  justify-content: center;
}

.btn-confirm,
.btn-send,
.btn-back {
  color: white;
  text-align: center;
  padding: 0.75rem 3.5rem;
  font-size: 0.9375rem;
}

.btn-confirm,
.btn-send {
  background: #333;
}

.btn-back {
  margin-right: 1rem;
  background: #666;
}

.go-top {
  width: 56px;
  position: fixed;
  right: 20px;
  bottom: 50px;
  z-index: 10;
}
@media screen and (max-width: 480px) {
  .go-top {
    width: 46px;
    right: 12px;
    bottom: 20px;
  }
}

/* -----------------------
footer
----------------------- */
footer {
  background-color: #f8de00;
  padding: 2.5rem 0 1.5rem;
  text-align: center;
}
@media screen and (max-width: 480px) {
  footer {
    padding: 1.5rem 0;
  }
}
footer img {
  width: 246px;
}
@media screen and (max-width: 480px) {
  footer img {
    width: 200px;
  }
}
@media screen and (min-width: 851px) {
  footer .footer-in {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
  }
}
footer ul {
  font-size: 0.875rem;
  text-align: left;
  display: inline-block;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  footer ul {
    font-size: 0.75rem;
    margin: 1rem 0 0;
  }
  footer ul li {
    margin-bottom: 10px;
  }
}
footer ul span {
  display: inline-block;
  width: 6em;
}
@media screen and (max-width: 480px) {
  footer ul span {
    display: block;
  }
}
@media screen and (min-width: 851px) {
  footer ul {
    margin-left: 6rem;
    line-height: 1.8;
  }
}

/* -----------------------
 masters
----------------------- */
.masters {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 40px;
}

.masters p {
  margin-top: 16px;
}

@media screen and (max-width: 480px) {
  .masters {
    text-align: left;
    margin-top: 30px;
    font-size: 15px;
    line-height: 1.6;
  }
}
/* -----------------------
 Magnific Popup
----------------------- */
.mfp-bg {
  opacity: 0;
  transition: opacity 1s;
}
.mfp-bg.mfp-ready {
  opacity: 0.8;
}
.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-wrap .mfp-content {
  opacity: 0;
  transition: opacity 1s;
}
.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/* -----------------------
 movie
----------------------- */
.movie-wrapper {
  margin: 80px auto 0;
  text-align: center;
}
.movie-wrapper h3 {
  font-size: 1.375rem;
}
@media screen and (max-width: 480px) {
  .movie-wrapper h3 {
    font-size: 1.25rem;
    line-height: 1.4;
  }
}

.movie {
  max-width: 900px;
  margin: 16px auto;
  aspect-ratio: 16/9;
}
.movie iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

.down-arrow {
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
  position: relative;
  z-index: 999999999999;
}
.down-arrow::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(../img/arrow-down.svg);
  background-size: contain;
  background-repeat: none;
  position: relative;
  top: 3px;
  margin-left: 5px;
}
@media screen and (max-width: 480px) {
  .down-arrow {
    font-size: 1.0625rem;
  }
}

/* -----------------------
 daysPassed
----------------------- */
.safety-first_txt, .ten-year {
  text-align: center;
  font-size: clamp(1rem, 0.886rem + 0.48vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
@media screen and (max-width: 480px) {
  .safety-first_txt, .ten-year {
    margin-bottom: 10px;
    line-height: 1.5;
    letter-spacing: 2px;
  }
}

.ten-year {
  font-size: clamp(1.125rem, 0.841rem + 1.21vw, 1.75rem);
}

b {
  font-size: 1.2em;
  color: red;
}

/* -----------------------
 no-accidents
----------------------- */
.no-accidents {
  padding: 0 2%;
}

.safety-first {
  max-width: 600px;
  margin: 30px auto 50px;
  border: 1px solid #999;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 20px;
}
.safety-first .pict-helmet {
  position: relative;
  top: -15px;
  width: 100px;
}
.safety-first .pict-safetyfirst {
  margin-right: 50px;
}
@media screen and (max-width: 480px) {
  .safety-first .pict-helmet {
    width: 70px;
  }
  .safety-first .pict-safetyfirst {
    width: 140px;
  }
}

#daysPassed {
  font-size: 22px;
  font-weight: 700;
  position: relative;
  left: -10px;
}
@media screen and (max-width: 480px) {
  #daysPassed {
    font-size: 18px;
  }
}

.red {
  color: #eb4141;
  font-size: 1.2em;
  font-weight: 700;
}

.calculateDay {
  font-size: 1.4em;
  font-weight: 700;
  color: green;
}

/* -----------------------
 interview by MASTERS
----------------------- */
.blue-area {
  border-bottom: 1px solid #e5f5fd;
  background-color: #e5f5fd;
  padding: 1px 2.5% 70px;
}

.interview-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 44px, #f2fafe 44px, #f2fafe 88px);
  background-color: #fafdff;
  padding: 20px 7%;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .interview-wrapper {
    padding-left: 5%;
    padding-right: 5%;
  }
}

.interview-title {
  display: flex;
  flex-direction: column;
  color: #84b1ea;
  letter-spacing: 1px;
}

.interview {
  text-align: left;
}
.interview.first {
  padding-bottom: 20px;
}
.interview.first div {
  padding-top: 15px;
}
.interview > div {
  padding-top: clamp(1.563rem, 0.852rem + 3.03vw, 3.125rem);
}

.more-contents {
  display: none;
}

.btn_more-contents {
  width: 160px;
  height: 46px;
  margin: 0 auto;
  border-radius: 100px;
  background-color: #84b1ea;
  color: #fff;
  font-size: 0.9375rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.btn_more-contents::after {
  content: "";
  position: absolute;
  right: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 7px solid #fff;
  border-bottom: 0;
}

.interview:nth-child(2) > div {
  margin-bottom: 0;
}
.interview dt {
  margin-bottom: 0.8em;
  font-size: clamp(1.063rem, 0.92rem + 0.61vw, 1.375rem);
  font-weight: 500;
  letter-spacing: 1px;
}
.interview dt::before {
  content: "―";
  display: inline-block;
  margin-right: 5px;
}
@media screen and (max-width: 480px) {
  .interview dt {
    line-height: 1.5;
    font-weight: bold;
  }
}
.interview dd {
  font-size: clamp(0.875rem, 0.818rem + 0.24vw, 1rem);
}
@media screen and (max-width: 480px) {
  .interview dd {
    line-height: 2;
  }
}
.interview small {
  margin-bottom: 20px;
}

.text-right {
  text-align: right;
  display: block;
}

/* -----------------------
 animation
----------------------- */
section {
  position: relative;
}

.sec-pict {
  position: absolute;
  opacity: 0;
}
.sec-pict.ill02 {
  width: 200px;
  height: 250px;
  bottom: 0;
  right: 10px;
}
@media screen and (max-width: 1024px) {
  .sec-pict.ill02 {
    width: 140px;
    height: 175px;
    right: 0;
    left: 0;
    margin: auto;
  }
}
@media screen and (max-width: 480px) {
  .sec-pict.ill02 {
    width: 120px;
    height: 150px;
  }
}
.sec-pict.ill03 {
  width: 220px;
  height: 100px;
  top: -60px;
  right: 2%;
}
@media screen and (max-width: 480px) {
  .sec-pict.ill03 {
    width: 150px;
    height: 78px;
    top: -40px;
  }
}
.sec-pict.ill04 {
  width: 190px;
  height: 193px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 480px) {
  .sec-pict.ill04 {
    width: 140px;
    height: 145px;
  }
}

/* -----------------------
 banner
----------------------- */
.banner {
  text-align: center;
  max-width: 300px;
  padding: 0 2%;
  margin: 0 auto 40px;
  text-align: center;
}
.banner img.line {
  border: 1px solid #ccc;
}
@media screen and (max-width: 480px) {
  .banner {
    max-width: 240px;
    margin: 0 auto 20px;
  }
}

.forSP {
  display: none;
}

@media screen and (max-width: 480px) {
  .forSP {
    display: block;
  }
  .forPC {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */