* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Roboto", sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
  letter-spacing: 1.2px;
}

li {
  list-style: none;
}
p,
h1,
h2,
h3,
h4 {
  letter-spacing: 1.2px;
  line-height: 1.7;
}

.img-status {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inline {
  display: inline-block;
}

/*header*/

header {
  position: fixed;
  top: 0;
  z-index: 80;
  width: 100%;
  color: #fff;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  height: 100px;
}
.header-nav ul {
  display: flex;
  font-weight: bold;
  align-items: center;
}

.header-nav li {
  margin-left: 1.5rem;
}
.contact-btn a {
  background-color: #2c86bc;
  padding: 1rem 2rem;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  width: 250px;
}
.fixed-block {
  display: none;
}

header.fixed {
  background-color: #fff;
  color: #000;
  opacity: 0;
  animation: headerfade 0.5s ease alternate forwards;
}
header.fixed .contact-btn a {
  color: #fff;
}
header.fixed .contact-btn:hover a {
  color: #2c86bc;
}
header.fixed .fixed-none {
  display: none;
}
header.fixed .fixed-block {
  display: block;
}
@keyframes headerfade {
  to {
    opacity: 1;
  }
}
/*fv*/
.fv {
  width: 100%;
  height: 100vh;
  background: url("../img/fv-bg.jpg") no-repeat top / cover;
  position: relative;
}
.fv-textwrap {
  position: absolute;
  left: 7%;
  top: 45%;
  width: 90%;
  color: #2ec0ff;
  font-weight: bold;
}
.fv-textwrap h1 {
  font-size: 4rem;
  font-family: "Nothing You Could Do", cursive;
  text-transform: capitalize;
  text-shadow: 1px 1px 1px #185e8a;
  line-height: 1.2;
}

/*main共通*/
section {
  padding: 4rem 0;
  width: 95%;
  margin: 0 auto;
}
/*news*/
.news-section-title {
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #005f88;
  letter-spacing: 6px;
}
.news-section-title::before {
  content: attr(data-en);
  font-size: 2.7rem;
  text-transform: uppercase;
  line-height: 1;
}
.news-contents {
  width: 95%;
  max-width: 800px;
  margin: 2rem auto;
}

.news-item {
  display: flex;
  align-items: center;
  padding: 1.5rem 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.news-title {
  font-weight: normal;
  font-size: 1rem;
}

.news-genre {
  padding: 0.1rem 0.8rem;
  color: #005f88;
  border: 1px solid #005f88;
  font-size: 0.9rem;
}

.news-date {
  margin: 0 2.5rem;
}

.morebtn-wrap {
  margin-top: 4rem;
  text-align: center;
}
.morebtn-wrap.left {
  text-align: left;
}
.more {
  padding: 1rem 5rem;
  color: #005f88;
  background-color: #fff;
  border: 1px solid #005f88;
  position: relative;
}
.more img {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

/*strength*/
.strength-inner {
  width: 100%;
}
.strength-sectoin-title {
  color: #005f88;
}
.strength-title-wrap {
  display: flex;
  align-items: center;
}
.strength-title-wrap::before {
  width: 50px;
  height: 3px;
  content: "";
  background-color: #005f88;
  margin-right: 1rem;
}
.strength-sectoin-title span {
  font-size: 2.7rem;
  text-transform: uppercase;
  line-height: 1;
}

.strength-contents {
  height: 600px;
  width: 100%;
  position: relative;
  margin: 4rem 0;
}

.strength-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 90%;
  max-width: 700px;
  height: 350px;
}
.strength-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 90%;
  max-width: 1100px;
  height: 480px;
  background-color: #005f88;
  z-index: -1;
}

.strength-box {
  position: absolute;
  right: 5%;
  top: 35%;
  background-color: #fff;
  padding: 3rem 2rem;
  width: 800px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.strength-title {
  color: #005f88;
  font-size: 1.5rem;
}
.strength-textwrap {
  font-weight: bold;
}
.strength-textwrap ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.strength-textwrap li {
  width: 50%;
  display: block;
  align-items: flex-start;
  position: relative;
  padding: 0.5rem 2rem;
}

.strength-textwrap li::before {
  content: attr(data-num);
  background-color: #005f88;
  color: #fff;
  padding: 0.2rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/*service*/
.service {
  position: relative;
  width: 100%;
}
.service::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 80%;
  height: 250px;
  background-color: #005f88;
  z-index: -1;
}
.service-inner {
  width: 95%;
  margin: 0 auto;
}
.service-titile-wrap {
  display: flex;
  color: #fff;
  align-items: center;
}
.service-titile-wrap::before {
  content: "";
  width: 50px;
  height: 3px;
  background-color: #fff;
  margin-right: 1rem;
}
.service-title-wrap {
  display: flex;
  align-items: center;
}
.service-title-wrap::before {
  width: 50px;
  height: 3px;
  content: "";
  background-color: #fff;
  margin-right: 1rem;
}

.service-sectoin-title span {
  font-size: 2.7rem;
  text-transform: uppercase;
  line-height: 1;
}
.service-contents {
  display: flex;
  justify-content: space-between;
  margin: 3rem auto 0;
  width: 95%;
}

.service-item {
  width: 300px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.service-item-textwrap {
  padding: 1.8rem;
}

.service-img {
  height: 180px;
}

.service-item-title {
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
}
.service-item-title::before {
  color: #005f88;
  content: attr(data-en);
  text-transform: uppercase;
  font-weight: 400;
  font-style: italic;
  font-size: 1rem;
}
.service-item-textwrap p {
  font-size: 0.95rem;
  margin-top: 1rem;
}

/*company*/
.company {
  background-color: #f9f9f9;
  width: 100%;
}
.company-contents {
  display: flex;
  width: 95%;
  max-width: 1000px;
  margin: 3rem auto 0;
}
.company-img {
  width: 50%;
}
.company-textwrap {
  width: 50%;
  padding: 1.5rem 3rem;
}
.company-title {
  font-size: 2rem;
  line-height: 1.4;
}
.company-textwrap p {
  margin-top: 2rem;
}

/*contact*/
.contact {
  position: relative;
  width: 100%;
  margin: 3rem 0;
}
.contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  background-color: #005f88;
  z-index: -1;
  height: 300px;
}

.contact-contents {
  width: 90%;
  margin: 2rem auto;
  padding: 2rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  text-align: center;
  background-color: #fff;
}
.contact-title {
  display: flex;
  flex-direction: column;
  font-size: 2rem;
}
.contact-title::before {
  content: attr(data-en);
  text-transform: uppercase;
  color: #005f88;
}

.tel {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}
.tel img {
  width: 30px;
}

.tel p {
  font-size: 2rem;
  font-weight: bold;
  color: #005f88;
}

/*footer*/
footer {
  background-color: #005f88;
  color: #fff;
}
.footer-inner {
  padding: 2rem 0;
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}

.footer-left,
.footer-right {
  width: 50%;
  padding: 1rem 3rem;
}
.footer-right {
  border-left: 1px solid #ffffff64;
}
.footer-nav li + li {
  margin-top: 1rem;
}
.footer-left p {
  margin-top: 0;
}
.footer-logo img {
  width: 120px;
}

.copyright {
  text-align: center;
  padding: 1rem 0;
}

/*u-style*/
.u-fv {
  position: relative;
}
.u-fv-bg {
  height: 300px;
  width: 100%;
  background: url("../img/u-fv.jpg") no-repeat center / cover;
}

.u-fv-box {
  position: absolute;
  bottom: -4rem;
  left: 0;
  background-color: #005f88;
  padding: 2rem;
  width: 80%;
  display: flex;
  align-items: center;
}
.u-fv-box::before {
  width: 50px;
  height: 3px;
  background-color: #fff;
  content: "";
  margin-right: 1rem;
}
.u-fv-title {
  display: flex;
  justify-content: center;
  color: #fff;
  flex-direction: column;
  font-size: 1.5rem;
}

.u-fv-title::before {
  content: attr(data-en);
  font-size: 2.7rem;
  text-transform: uppercase;
  line-height: 1.2;
}

/*u-strength*/
.u-strength-item {
  padding: 6rem 0;
  display: flex;
  justify-content: space-between;
  width: 95%;
  margin: 0 auto;
  border-bottom: 1px solid #00000069;
}

.u-strength-item-title {
  width: 20%;
}

.u-strength-item-textwrap {
  width: 50%;
  padding: 0 3rem;
}

.u-strength-item-img {
  width: 30%;
  height: 280px;
}
.u-strength-item-title {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
}
.u-strength-item-title::before {
  content: attr(data-en);
  font-size: 2rem;
  color: #005f88;
}
.u-strength-item-subtitle {
  color: #005f88;
  font-size: 1.7rem;
}

.u-strength-item-textwrap p {
  margin-top: 2rem;
}

/*u-news*/
.u-news {
  margin: 4rem 0;
}
/*u-service*/
.u-service-item {
  position: relative;
  padding: 4rem 0;
}
.u-service-item + .u-service-item {
  margin-top: 3rem;
}
.u-service-item:nth-of-type(odd) .u-service-textbox {
  width: 500px;
  padding: 3rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 5%;
  bottom: 20%;
  z-index: 2;
  background-color: #fff;
}
.u-service-textbox p {
  margin-top: 2rem;
}
.u-service-item:nth-of-type(odd) .u-service-img {
  margin-left: auto;
  width: 70%;
  height: 450px;
  position: relative;
}
.u-service-item:nth-of-type(odd) .u-service-img::before {
  content: "";
  position: absolute;
  top: 15%;
  right: 0;
  width: 110%;
  height: 110%;
  z-index: -1;
  background-color: #005f88;
}

.u-service-item:nth-of-type(even) .u-service-textbox {
  width: 500px;
  padding: 3rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  right: 5%;
  bottom: 20%;
  z-index: 2;
  background-color: #fff;
}

.u-service-item:nth-of-type(even) .u-service-img {
  margin-right: auto;
  width: 70%;
  height: 450px;
  position: relative;
}
.u-service-item:nth-of-type(even) .u-service-img::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 0;
  width: 110%;
  height: 110%;
  z-index: -1;
  background-color: #005f88;
}

/*u-company*/
.u-company-table {
  margin: 4rem auto;
  width: 95%;
  max-width: 900px;
  border-collapse: collapse;
}
.u-company-table tr {
  border-bottom: 1px solid #00000033;
}

.u-company-table th,
.u-company-table td {
  padding: 2rem 1rem;
  text-align: left;
}
.u-company-table th {
  width: 300px;
  vertical-align: top;
  color: #005f88;
}

/*ハンバーガー*/
.open-btn {
  display: none;
}
/*==================================================
　5-2-1 3本線が×に
===================================*/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn {
  /*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  z-index: 90;
  top: 1rem;
  right: 1rem;
  display: none;
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
}
header.fixed .openbtn span {
  background: #185e8a;
}
header.fixed .openbtn.active span {
  background: #fff;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 40%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 40%;
}

p.mt1 {
  margin-top: 1rem;
}
.mt1 span {
  display: inline-block;
  background-color: #005f88;
  color: #fff;
  padding: 0.2rem 0.4rem;
  margin-bottom: 0.3rem;
}

/*achievement*/

.achievement-sectoin-title {
  color: #005f88;
}
.achievement-title-wrap {
  display: flex;
  align-items: center;
}
.achievement-title-wrap::before {
  width: 50px;
  height: 3px;
  content: "";
  background-color: #005f88;
  margin-right: 1rem;
}
.achievement-sectoin-title span {
  font-size: 2.7rem;
  text-transform: uppercase;
  line-height: 1;
}

/*==================================================
スライダーのためのcss
===================================*/
.achievement-slider {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 90%;
  max-width: 1100px;
  margin: 4rem auto;
}

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

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

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

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute; /*絶対配置にする*/
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #666; /*矢印の色*/
  border-right: 2px solid #666; /*矢印の色*/
  height: 15px;
  width: 15px;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc; /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #333; /*ドットボタンの現在地表示の色*/
}

.achievement-img {
  width: 100%;
  height: 250px;
}

.achievement-slider h2 {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1rem 0;
}

.slick-dots button {
  border: none;
  width: 15px;
  height: 15px;
  outline: none;
  cursor: pointer;
}

/*u-achievement*/
.u-achievement-contents {
  display: flex;
  flex-wrap: wrap;
  margin: 4rem auto 0;
  width: 95%;
  max-width: 1100px;
}
.u-achievement-item {
  width: 50%;
  padding: 1.5rem;
}
.u-achievement-img {
  width: 100%;
}
.u-achievement-img img {
  display: block;
  width: 100%;
}
.u-achievement-textwrap {
  padding: 1rem 0.5rem 0.5rem;
}

.u-achievement-title {
  font-size: 1.2rem;
}

.u-achievement-date {
  font-size: 0.9rem;
}

/*manufacturers*/
.manufacturers-sectoin-title {
  color: #005f88;
}
.manufacturers-title-wrap {
  display: flex;
  align-items: center;
}
.manufacturers-title-wrap::before {
  width: 50px;
  height: 3px;
  content: "";
  background-color: #005f88;
  margin-right: 1rem;
  display: block;
}
.manufacturers-sectoin-title span {
  font-size: 2.7rem;
  text-transform: uppercase;
  line-height: 1;
}

/*==================================================
スライダーのためのcss
===================================*/
.manufacturers-slider img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: auto;
}

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

.manufacturers-slider .slick-slide {
  margin: 0 10px; /*スライド左右の余白調整*/
}

.manufacturers-contents {
  margin: 4rem auto;
}

.manufacturers-bottom {
  width: 90%;
  margin: 1rem auto 0;
}

/*u-adoption*/
.u-adoption-contents {
  margin: 4rem auto;
}
.u-adoption-item {
  border: 1px solid #000;
  padding: 2rem;
  margin: 4rem auto 0;
  width: 95%;
  max-width: 1000px;
}

.u-adoption-table {
  margin-top: 2rem;
}
.u-adoption-table th {
  width: 145px;
  text-align: left;
  background-color: #005f88;
  color: #fff;
  padding: 1rem;
}
.u-adoption-table td {
  padding: 1rem;
}

.u-adoption-toptitle {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #005f88;
}

.u-adoption-toptitle span {
  border-bottom: 4px solid #005f88;
  display: inline-block;
  margin-top: 1rem;
}

/*アニメーション*/
.contact-btn a {
  transition: color 0.5s ease, background-color 0.5s ease;
  border: 1px solid #2c86bc;
}
.contact-btn a:hover {
  color: #2c86bc;
  background-color: #fff;
}
.more {
  transition: color 0.5s ease, background-color 0.5s ease;
}

.more:hover {
  color: #fff;
  background-color: #005f88;
}

/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fff;
  text-align: center;
  color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo svg {
  width: 400px;
}

/*=============== SVGアニメーション内の指定 =================*/

/*アニメーション前の指定*/
#mask path {
  fill-opacity: 0; /*最初は透過0で見えない状態*/
  transition: fill-opacity 0.5s; /*カラーがつく際のアニメーション0.5秒で変化*/
  fill: none; /*塗りがない状態*/
  stroke: #000000; /*線の色*/
}

/*アニメーション後に.doneというクラス名がで付与された時の指定*/
#mask.done path {
  fill: #000000; /*塗りの色*/
  fill-opacity: 1; /*透過1で見える状態*/
  stroke: none; /*線の色なし*/
}

/*u-アニメーション*/

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

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

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

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

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

@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);
  }
}

/*画面遷移の後現れるコンテンツ設定*/
#u-container {
  opacity: 0; /*はじめは透過0に*/
}

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

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

/*お問い合わせ*/
.contact-wrap {
  width: 90%;
  max-width: 1000px;
  margin: 4rem auto;
}
.cf7__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.cf7__list dt:nth-of-type(n + 2),
.cf7__list dd:nth-of-type(n + 2) {
  margin-top: 30px;
}

.cf7__list dt {
  width: 35%;
  padding-top: 15px;
}

.cf7__list dd {
  width: 65%;
}

/* 必須・任意 */
.cf7__required,
.cf7__optional {
  margin-right: 15px;
  padding: 6px 14px;
  color: #fff;
  font-size: 12px;
  vertical-align: 1px;
}

.cf7__required {
  background: #be1d1d;
}

.cf7__optional {
  background: #878d8e;
}

/* input・textarea */
.cf7__list dd input[type="text"],
.cf7__list dd input[type="tel"],
.cf7__list dd input[type="email"],
.cf7__list dd textarea {
  width: 100%;
  padding: 15px 20px;
  background: #ffffff;
}

/* チェックボックス・ラジオボタン */
.cf7__list dd .wpcf7-checkbox,
.cf7__list dd .wpcf7-radio {
  display: block;
  padding: 15px 0 10px;
}

/* 縦並び（チェックボックス・ラジオボタン） */
.cf7__list dd .wpcf7-list-item {
  display: block;
  margin: 0;
}

.cf7__list dd .wpcf7-list-item:nth-child(n + 2) {
  margin-top: 18px;
}

/* マウスカーソル（チェックボックス・ラジオボタン） */
.cf7__list dd .wpcf7-list-item label {
  cursor: pointer;
}

/* チェックボックス・ラジオボタン */
input[type="checkbox"],
input[type="radio"] {
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 1px solid #bcbcbc;
  vertical-align: -3px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* チェックボックス */
input[type="checkbox"]:checked {
  border: 1px solid #000;
  background: #000;
}

input[type="checkbox"]:checked:before {
  position: absolute;
  top: 2px;
  left: 5px;
  transform: rotate(50deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
}

/* プレースホルダー */
/* Google Chrome / Safari / Mozilla Firefox / Opera */
.cf7__list dd input[type="text"]::placeholder,
.cf7__list dd input[type="tel"]::placeholder,
.cf7__list dd input[type="email"]::placeholder,
.cf7__list dd textarea::placeholder {
  color: #a5a5a5;
}

/* Microsoft Edge */
.cf7__list dd input[type="text"]::-ms-input-placeholder,
.cf7__list dd input[type="tel"]::-ms-input-placeholder,
.cf7__list dd input[type="email"]::-ms-input-placeholder,
.cf7__list dd textarea::-ms-input-placeholder {
  color: #717171;
}

/* Internet Explorer */
.cf7__list dd input[type="text"]:-ms-input-placeholder,
.cf7__list dd input[type="tel"]:-ms-input-placeholder,
.cf7__list dd input[type="email"]:-ms-input-placeholder,
.cf7__list dd textarea:-ms-input-placeholder {
  color: #717171;
}

/* 送信ボタン */
.cf7__button {
  text-align: center;
}

input[type="submit"] {
  width: 260px;
  height: 60px;
  background: #2c86bc;
  color: #fff;
  border: 1px solid #2c86bc;
  transition: opacity 0.6s;
  cursor: pointer;
  transition: color 0.5s ease, background-color 0.5s ease;
}

input[type="submit"]:hover {
  background-color: #fff;
  color: #2c86bc;
}

/* ajax-loader */
.wpcf7-spinner {
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .cf7__list dt {
    width: 100%;
    margin-bottom: 15px;
    padding-top: 0;
  }

  .cf7__list dd {
    width: 100%;
  }

  .cf7__list dd:nth-of-type(n + 2) {
    margin-top: 0;
  }

  .cf7__list dd .wpcf7-checkbox,
  .cf7__list dd .wpcf7-radio {
    padding: 15px 0 0;
  }

  /* 送信ボタン */
  input[type="submit"] {
    width: 180px;
    height: 56px;
  }
}
.wpcf7-spinner {
  display: none !important;
}

.contact-top {
  text-align: center;
  font-size: 1.1rem;
  width: 95%;
  margin: 8rem auto 0;
}

.cf7__list dd input[type="text"],
.cf7__list dd input[type="tel"],
.cf7__list dd input[type="email"],
.cf7__list dd textarea {
  border: 1px solid #000;
}

.g-rec {
  width: 95%;
  margin: 4rem auto 0;
  text-align: center;
  font-size: 0.9rem;
}
.g-rec a {
  text-decoration: underline;
}

/*about*/
.about-contents {
  width: 95%;
  max-width: 1100px;
  margin: 4rem auto;
  position: relative;
}
.about-img {
  width: 350px;
  float: right;
  padding: 1rem;
}
.about-img img {
  display: block;
  width: 100%;
  padding: 1rem;
}

.about-textwrap {
  width: 70%;
}
.about-textwrap h3 {
  font-size: 2rem;
  color: #005f88;
}
.about-textwrap h4 {
  font-size: 1.3rem;
  padding-left: 0.4rem;
  text-transform: capitalize;
}
.about-textwrap p {
  font-size: 1.2rem;
  margin-top: 1.5rem;
}

/*banner*/

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

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

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

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

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.banner-slider .slick-prev,
.banner-slider .slick-next {
  position: absolute; /*絶対配置にする*/
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #666; /*矢印の色*/
  border-right: 2px solid #666; /*矢印の色*/
  height: 15px;
  width: 15px;
}

.banner-slider .slick-prev {
  /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg);
}

.banner-slider .slick-next {
  /*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.banner-slider .slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.banner-slider .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.banner-slider .slick-dots button {
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc; /*ドットボタンの色*/
}

.banner-slider .slick-dots .slick-active button {
  background: #333; /*ドットボタンの現在地表示の色*/
}

.banner {
  width: 95%;
  max-width: 800px;
  margin: 2rem auto 0;
}
.u-maintenance {
  height: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
  font-weight: bold;
  text-align: center;
}

.u-maintenance p {
  width: 95%;
  margin: 0 auto;
  font-size: 2rem;
}

.snswrap {
  display: flex;
  margin-top: 1rem;
}

.sns-item img {
  width: 30px;
  display: inline-block;
}
.sns-item + .sns-item {
  margin-left: 1rem;
}
