@charset "UTF-8";
/******************************************************************
共通
******************************************************************/
html {
  font-size: 62.5%; /* 10px */
}

body {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
}

/******************************************************************
ヘッダー
******************************************************************/
.header {
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.9);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 96%;
  max-width: 1280px;
  margin: auto;
}
.header__logo img {
  width: 150px;
  margin-top: 0px;
  margin-left: 10px;
}
.header__logo img h1 {
  margin: 0;
  padding: 0;
}

/******************************************************************
グローバルメニュー
******************************************************************/
/* スマートフォン用 *************************************************/
@media screen and (min-width: 320px) and (max-width: 1023px) {
  .sp__menu--btn {
    position: fixed;
    top: 7px;
    right: 3%;
    display: flex;
    width: 45px;
    height: 50px;
    justify-content: center;
    align-items: center;
    z-index: 90;
  }
  .sp__menu--btn span, .sp__menu--btn span::before, .sp__menu--btn span::after {
    content: "";
    display: block;
    height: 2px;
    width: 35px;
    background-color: white;
    position: absolute;
    transition: transform 0.3s;
  }
  .sp__menu--btn span::before {
    bottom: 8px;
  }
  .sp__menu--btn span::after {
    top: 8px;
  }
  .sp__menu--btn::before {
    content: "menu";
    margin-top: 38px;
    font-size: 1.2rem;
    color: white;
  }
  #sp__menu--btncheck {
    display: none;
  }
  #sp__menu--btncheck:checked ~ .sp__menu--btn span {
    background-color: rgba(255, 255, 255, 0);
  }
  #sp__menu--btncheck:checked ~ .sp__menu--btn span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #sp__menu--btncheck:checked ~ .sp__menu--btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  #sp__menu--btncheck {
    display: none;
  }
  #sp__menu--btncheck:checked ~ .pc__mneu {
    left: 0;
  }
  .pc__mneu {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background-color: #4B90CD;
    transition: all 0.5s;
  }
  .pc__mneu ul {
    padding: 70px 10px 0;
  }
  .pc__mneu ul > li {
    border-bottom: solid 1px white;
    list-style: none;
  }
  .pc__mneu ul > li > a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color: white;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
  }
  .pc__mneu ul > li > a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px white;
    border-right: solid 2px white;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
  }
}
/* ＰC用 **********************************************************/
@media screen and (min-width: 1024px) {
  #sp__menu--btncheck {
    display: none;
  }
  .pc__mneu ul {
    display: flex;
    color: white;
  }
  .pc__mneu ul li {
    list-style: none;
  }
  .pc__mneu ul a {
    display: block;
    width: 120px;
    text-align: center;
    color: white;
    text-decoration: none;
  }
  .pc__mneu ul a:hover {
    opacity: 0.6;
    transition: all 0.3s;
  }
}
/******************************************************************
ヒーロー
******************************************************************/
.hero {
  position: relative;
  width: 100%;
  margin-top: 80px;
}
.hero img {
  width: 100%;
  filter: brightness(0.7);
}
.hero__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: "Noto Serif JP", serif;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1280px;
  color: white;
}
.hero__pr--main {
  font-size: 1.2em;
  text-align: center;
  display: block;
  text-shadow: 0 0 15px rgb(0, 0, 0), 0 0 20px rgb(0, 0, 0), 0 0 30px black;
  font-weight: bold;
}
.hero__pr--sub {
  width: 80%;
  margin: auto;
  padding: 10px 0;
  font-size: 0.8em;
  display: block;
  text-shadow: 0 0 15px rgb(0, 0, 0), 0 0 20px rgb(0, 0, 0), 0 0 30px black;
}

/******************************************************************
メインコンテンツ
******************************************************************/
.contents_home {
  width: 96%;
  max-width: 1000px;
  margin: auto;
}
.contents_home h2 {
  font-size: 1.4em;
  padding-top: 45px;
  position: relative;
}
.contents_home h2::before {
  display: block;
  font-size: 0.6em;
  font-weight: normal;
  position: absolute;
  top: 20px;
  left: 0;
  background-color: #C2DAEE;
  padding: 1px 10px;
}

section {
  margin: 20px 0;
  border-top: 1px solid silver;
}

.news h2::before {
  content: "News";
}
.news__title {
  display: block;
}
.news__contents {
  padding: 10px 0;
}
.news__contents span {
  display: block;
}
.news__images img {
  width: 100%;
  height: auto;
}

.service h2::before {
  content: "Service";
}
.service__images {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.service__images img {
  width: calc(33.333% - 7px);
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.service span {
  display: block;
}

.company h2::before {
  content: "Company";
}

.access h2::before {
  content: "Access";
}

/******************************************************************
会社概要
******************************************************************/
.company {
  width: 96%;
  max-width: 1000px;
  margin: 0 auto 30px;
}
.company__tbl {
  width: 100%;
}
.company__tbl tr {
  border-bottom: 1px solid silver;
}
.company__tbl th, .company__tbl td {
  width: 100%;
  display: block;
  padding: 8px 0;
  border: none;
}
.company__tbl tr:last-child {
  border-bottom: none;
}

.sp {
  display: block;
}

/******************************************************************
アクセス
******************************************************************/
.gmap {
  position: relative;
  width: 100%;
  margin: 8px auto 40px;
  height: 300px;
}
.gmap iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(50%);
  transition: all 0.7s ease;
}

/******************************************************************
フッター
******************************************************************/
.footer {
  background-color: #4B90CD;
  color: white;
}
.footer__address {
  width: 96%;
  max-width: 1280px;
  margin: auto;
  padding: 12px 0 2px;
}
.footer__address span {
  display: block;
}
.footer__address p {
  text-align: center;
  margin-top: 10px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.footer__logo img {
  height: 40px;
  width: auto;
}
.footer__logo span {
  font-weight: bold;
  font-size: 1.2em;
}
.footer__info span {
  display: block;
}

/******************************************************************
    ヒーロー
******************************************************************/
/******************************************************************
お問合せ
******************************************************************/
.hero__sub {
  margin-top: 80px;
}

.h2-contact {
  position: relative;
  padding-top: 50px;
  padding-left: 30px;
  font-size: 26px;
  margin-top: 80px;
  text-align: center;
}

.h2-contact span {
  position: relative;
  z-index: 2;
}

.h2-contact::before {
  content: attr(data-en);
  position: absolute;
  transform: rotate(-5deg);
  top: -20px;
  left: 0;
  color: rgba(75, 144, 205, 0.6);
  font-size: 80px;
  font-weight: 400;
  font-family: "luxus-brut", "Georgia", "Times New Roman", serif;
  font-style: italic;
  width: 100%;
}

.step {
  width: 96%;
  max-width: 1000px;
  margin: 20px auto 0;
}

.progressbar {
  position: relative;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.progressbar li {
  position: relative;
  list-style-type: none;
  text-align: center;
  text-transform: uppercase;
  width: 33.333%;
  color: silver;
  font-weight: bold;
}
.progressbar li::before {
  display: block;
  width: 18px;
  height: 18px;
  margin: 7px auto 20px auto;
  content: "";
  text-align: center;
  border-radius: 50%;
  background-color: #F5F5F5;
}
.progressbar li::after {
  position: absolute;
  z-index: -1;
  top: 15px;
  left: -50%;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #F5F5F5;
}
.progressbar li:first-child:after {
  content: none;
}
.progressbar li.active, .progressbar li.complete {
  color: #4B90CD;
}
.progressbar li.active::before, .progressbar li.complete::before {
  background-color: #4B90CD;
}
.progressbar li.active::after, .progressbar li.complete::after {
  background-color: #4B90CD;
}

.contact__form {
  width: 96%;
  max-width: 800px;
  margin: auto;
  padding: 50px 0 60px;
}
.contact__form--required01 {
  color: white;
  background-color: orangered;
  margin-left: 10px;
  padding: 4px 6px;
  border-radius: 3px;
}
.contact__form--required02 {
  color: white;
  background-color: royalblue;
  margin-left: 10px;
  padding: 4px 6px;
  border-radius: 3px;
}
.contact__form--dt01 {
  padding: 10px 0 10px 10px;
  letter-spacing: 0.15em;
}
.contact__form--dd01 > #sei, .contact__form--dd01 #mei, .contact__form--dd01 #seikana, .contact__form--dd01 #meikana {
  width: 80%;
  max-width: 250px;
  margin: 5px 0 0 20px;
  padding: 10px 10px;
  border-radius: 3px;
  font-size: 1.6rem;
  font-weight: 600;
  border: solid 1px black;
}
.contact__form--dd02 {
  padding-left: 22px;
}
.contact__form--dd02 > label {
  display: inline-block;
  padding: 5px;
}
.contact__form--dd03 {
  margin-left: 22px;
  padding: 14px 0;
}
.contact__form--dd03 > span {
  display: block;
}
.contact__form--dd03 > #company, .contact__form--dd03 #zipcode, .contact__form--dd03 #prefecture, .contact__form--dd03 #municipality, .contact__form--dd03 #address1, .contact__form--dd03 #tel, .contact__form--dd03 #mail, .contact__form--dd03 #emailck {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 3px;
  border: solid 1px black;
}
.contact__form--dd03 > #company, .contact__form--dd03 #address1, .contact__form--dd03 #tel, .contact__form--dd03 #mail, .contact__form--dd03 #emailck, .contact__form--dd03 #inquiry {
  width: 93%;
}
.contact__form--dd03 > #tel {
  max-width: 350px;
}
.contact__form--dd03 > #mail {
  max-width: 350px;
}
.contact__form--dd03 > #inquiry {
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 3px;
  padding: 10px;
}
.contact__form--dd03 > .spam__mail {
  width: 90%;
  font-size: 0.9rem;
  color: #999;
}
.contact__form--submit {
  width: 100%;
  text-align: center;
}
.contact__form--submit > span > input[type=submit] {
  width: 60%;
  max-width: 250px;
  height: 40px;
  font-size: 1.6rem;
  font-weight: bold;
  background-color: #EEEEEE;
  color: white;
  border: 1px solid dimgray;
  border-radius: 4px;
  color: black;
  box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.2);
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  font-size: 12px;
}

input:-moz-placeholder, textarea:-moz-placeholder {
  font-size: 12px;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  font-size: 12px;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  font-size: 12px;
}

.confirmation dl {
  display: flex;
  flex-flow: column;
  width: 100%;
  border: 1px solid silver;
  border-bottom: none;
}
.confirmation dt {
  padding: 4px;
  background-color: #D0DEEA;
  border-bottom: 1px solid silver;
}
.confirmation dd {
  padding: 10px;
  margin: 0;
  border-bottom: 1px solid silver;
}
.confirmation__content {
  margin: 0 0 20px 16px;
}
.confirmation__submit {
  width: 100%;
  margin: auto;
  text-align: center;
  border: none;
}
.confirmation__submit--send > input[type=submit] {
  background-color: #EEEEEE;
  border-radius: 4px;
  padding: 3spx 10px;
  border: 1px solid dimgray;
}
.confirmation__submit--back {
  background-color: orangered;
  border-radius: 4px;
  padding: 6px 10px;
}
.confirmation__submit--back > a {
  color: white;
}

.contact__done {
  margin-top: 100px;
}

.completion__msg {
  width: 80%;
  text-align: center;
  margin: auto;
  padding: 70px 0 60px;
  text-align: center;
  font-size: 1.6rem;
}

@media (min-width: 480px) {
  /******************************************************************
  会社概要
  ******************************************************************/
  .company {
    width: 100%;
  }
  .company__tbl th, .company__tbl td {
    display: inline-block;
  }
  .company__tbl th {
    width: 20%;
  }
  .company__tbl td {
    width: 80%;
  }
}
@media (min-width: 600px) {
  /******************************************************************
  ヒーロー
  ******************************************************************/
  .hero__inner {
    padding-left: 10px;
  }
  .hero__pr--bottom {
    width: 60%;
    padding-left: 0;
  }
  .hero__pr--main {
    text-align: left;
    font-size: 1.7em;
  }
  .hero__pr--sub {
    text-align: left;
    line-height: 170%;
    margin: 0;
  }
  /******************************************************************
  ニュース
  ******************************************************************/
  .news__images img {
    width: 50%;
    height: auto;
    padding: 10px 0;
  }
  .news__inner {
    display: flex;
    width: 100%;
  }
  .news__inner--left {
    width: 30%;
  }
  .news__inner--right {
    width: 70%;
    padding-top: 50px;
  }
  /******************************************************************
  事業内容
  ******************************************************************/
  .service__inner {
    display: flex;
  }
  .service__inner--left {
    width: 30%;
  }
  .service__inner--right {
    width: 70%;
    padding-top: 50px;
  }
  .service__inner--right span:first-child {
    font-size: 1.3em;
    padding-bottom: 10px;
  }
  /******************************************************************
  アクセス
  ******************************************************************/
  .gmap {
    height: 500px;
  }
}
@media (min-width: 960px) {
  /******************************************************************

  Stylesheet: 960px以上のモニタで適用

  ******************************************************************/
}
@media (min-width: 1280px) {
  /******************************************************************
  ヘッダー
  ******************************************************************/
  .header {
    position: absolute;
    width: 100%;
    height: 80px;
    background-color: transparent !important;
  }
  .header--sub {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.9) !important;
  }
  /******************************************************************
  ヒーロー
  ******************************************************************/
  .hero {
    height: 800px;
    margin-top: 0;
  }
  .hero img {
    height: 800px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hero__inner {
    top: 50%;
    left: 50%;
  }
  .hero__pr--main {
    font-size: 3em;
  }
  .hero__pr--sub {
    width: 84%;
    font-size: 1.6em;
  }
  /******************************************************************
  ニュース
  ******************************************************************/
  .news__images img {
    width: 100%;
    height: auto;
    padding: 10px 0;
  }
  /******************************************************************
  アクセス
  ******************************************************************/
  .gmap {
    height: 600px;
  }
}/*# sourceMappingURL=style.css.map */