@charset "utf-8";

h1,
.fv_h {
  position: absolute;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  color: #1f2948;
  font-family: "Noto Serif JP", serif;
  font-size: 48px;
  text-align: center;
  letter-spacing: .16em;
  font-weight: 400;
  line-height: 1.6;
  left: 5%;
  padding: 20px;
  border-radius: 5px 5px 0 0;
  animation: fadeIn 3s ease-in-out;
  /* 2秒でフェードインするアニメーションを設定 */
}

h1 span,
.fv_h span {
  font-family: "Roboto", serif;
  letter-spacing: .22em;
  font-size: 14px;
  display: block;
  text-align: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    /* 初期状態は透明 */
  }

  to {
    opacity: 1;
    /* 完全に表示された状態 */
  }
}

.test-box {}

section.fv {
  position: relative;
  padding: 0;
}

.fv_img img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  animation: fadeIn 1s ease-in-out;
}

/* 採用一覧 */
.case_box_cover {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 4em;
}

.case_box {
  background: #fff;
  padding: 20px;
  display: block;
  transition: 0.6s;
  filter: drop-shadow(5px 5px 5px #aaa);
  border-radius: 20px;
  width: 30%;
  box-sizing: border-box;
  margin-bottom: 4em;
}

/* 親要素の中の7番目の要素を指定 */
.case_box:nth-child(7),
.case_box:nth-child(8),
.case_box:nth-child(9) {
  margin-bottom: 0;
}

.case_img {
  position: relative;
  transition: 0.6s;
}

.case_img:hover {
  opacity: 0.6;
}

.case_img span {
  position: absolute;
  background: rgba(31, 41, 72, 0.8);
  right: -5px;
  top: -5px;
  color: #fff;
  font-size: 14px;
  padding: 3px 10px;
}

.case_name {
  font-weight: 600;
  font-size: 19px;
  margin: 2px 0 5px;
}

.case_box ul {
  border: 1px dashed #ccc;
  padding: 5px 10px;
  background: #f6f6f6;
  margin-bottom: 10px;
}

.case_box li {
  line-height: 2.2;
  font-size: 15px;
}

.case_box li span {
  background: #444;
  color: #fff;
  margin-right: 5px;
  padding: 1px 5px 3px;
  border-radius: 5px;
}

.case_box p {
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 0;
}

/* モーダル */
.remodal-wrapper .remodal {
  border-radius: 10px;
}

.remodal-wrapper .remodal-close {
  right: 0;
  left: initial;
  color: #333;
}

.remodal-wrapper .remodal-close:hover {
  opacity: 0.6;
}

.remodal-wrapper .remodal-close::before {
  font-size: 30px;
}

/* 会社情報 */
.campany_box {
  display: flex;
  justify-content: space-between;
  width: 1000px;
  margin: 0 auto;
  max-width: 100%;
  flex-wrap: wrap;
}

.campany_img {
  width: 40%;
}

.campany_text {
  width: 50%;
}

.campany_name {
  font-size: 20px;
}

.campany_name span {
  font-size: 0.8rem;
  margin-right: 5px;
}

table.overview_table {
  width: 1000px;
  margin: 0 auto;
  border-top: 1px solid #b2b2b2;
  font-size: 17px;
  border-collapse: collapse;
  max-width: 100%;
}

table.overview_table th {
  background-color: #1f2948;
  padding: 25px 40px;
  text-align: left;
  width: 250px;
  font-weight: 400;
  border-bottom: 1px solid #aaa;
  color: #fff;
}

table.overview_table td {
  padding: 25px 40px;
  border-bottom: 1px solid #aaa;
  background: #fff;
}


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

.timeline-list {
  padding: 30px 0 0;
  border-top: 1px solid #aaa;
}

.timeline-list-item {
  display: flex;
  line-height: 1.5;
  font-size: 16px;
}

.timeline-list-item .date {
  width: 20%;
  padding: 0 0 0 20px;
  padding: 30px 20px 30px 30px;
  font-weight: bold;
  font-family: "Roboto", "Noto Sans JP", serif;
  font-size: 17px;
  border-bottom: 1px solid #aaa;
}

.timeline-list-item:first-child .date,
.timeline-list-item:first-child .content {
  padding-top: 0;
}

.timeline-list-item .content {
  position: relative;
  width: 80%;
  padding: 0 20px 60px 30px;
  padding: 30px 20px 30px 30px;
  border-left: 1px solid #1f2948;
  border-bottom: 1px solid #aaa;
	border-left: 5px solid #1f2948;
}

.timeline-list-item .content::before {
  content: "";
  position: absolute;
  top: 30px;
  left: -10px;
  width: 20px;
  height: 20px;
  background-color: #1f2948;
  border-radius: 10px;
	left: -18px;
  width: 30px;
  height: 30px;
	border-radius: 50%;
}

.timeline-list-item:first-child .content::before {
  top: 0;
}

.access {
  background: #f6f6f6;
  padding: 40px;
  margin-bottom: 4em;
  border-radius: 20px;
  border: 1px solid #1f2948;
}

.access h3 {
  background: #1f2948;
  color: #fff;
  margin-bottom: 25px;
  text-align: center;
  width: 300px;
  margin: 0 auto 3em;
}

.access_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.access_img {
  width: 40%;
}

.access_box iframe {
  width: 55%;
	height:auto;
}

#items,
#overview {
  background: #f6f6f6;
}

.access_img.fadein {
  transition: opacity 1.5sease-out, transform 1.5sease-out;
  opacity: 0;
  transform: scale(1.2) translate(0, 0);
}

.access_img.fadein.scrollin {
  opacity: 1;
  transform: scale(1) translate(0, 0);
}

/* 製品一覧 */
.product_table thead th,.product_table thead td {
    font-weight: 800;
}
ul.product_box {
  width: 800px;
  margin: 0 auto;
  max-width: 100%;
}

.product_box li a {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  border: 1px solid #333;
  background: #fff;
  color: #333;
  font-weight: 600;
  transition: 0.8s;
}

.product_box li a:after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: 10px;
  top: 50%;
  font-weight: 900;
  color: #1f2948;
  font-size: 24px;
  transform: translateY(-50%);
}

.product_box li a:hover {
  opacity: 0.6;
}

ul.product_box li img {
  width: 240px;
}

ul.product_box li span {
  height: 68px;
  line-height: 68px;
  display: block;
  width: calc(100% - 240px);
  padding: 0 20px;
  text-align: center;
}

.products_box_cover {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 800px;
    margin: 0 auto 3em;
}

.products_box_img img {
  width: 240px;
}
.products_text_area{
    margin: 0 auto 2em;
    width: 1000px;
	max-width:100%;
}
.products_text_area p.center{
	text-align:center;
}
.products_text_area p span{
	color:#1f2948;
	font-weight:600;
	font-size:1.1em;
}

.products_box_text {
  font-size: 15px;
	text-align: center;
}

.products_box {
  margin: 0 30px;
}
.products_box_cover02 .products_box p span {
    color: #1f2948;
    font-weight: 600;
    font-size: 1.1em;
}

.products_box_cover.products_box_cover02 {
    justify-content: space-around;
    max-width: 100%;
}

.products_box_cover.products_box_cover02 .products_box {
        width: 45%;
    text-align: center;
    margin: 0;
    background: #f3f3f3;
    padding: 20px;
    border-radius: 10px;
	 margin-top: 2em;
}
.products_box_cover.products_box_cover02 .products_box:nth-child(1), .products_box_cover.products_box_cover02 .products_box:nth-child(2) {
    margin-top: 2em;
}
.products_box_cover02 .products_box p {
    text-align: left;
}

.products_box_cover02 .products_box_text {
    margin-bottom: 1em;
}
.h3_cover{
	  display: flex;
}
#products h3 {
  text-align: center;
  background: #1f2948;
  color: #fff;
  margin: 0 auto 2em;
  min-width: 300px;
  width: auto;
  display: inline-block;
  padding: 0 20px;
  max-width: 100%;
}

table.product_table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #ccc;
  color: #353535;
  table-layout: fixed;
}

table.product_table thead {
  background: #1f2948;
  color: #fff;
}

table.product_table th,
table.product_table td {
  border-right: 1px solid #ccc;
  padding: 10px;
}

table.product_table tr:nth-child(2n) td,
table.product_table tr:nth-child(2n) th {
  background-color: #f6f6f6;
}

.products_items {
  padding: 50px;
  border: 1px solid #1f2948;
  border-radius: 20px;
  margin-bottom: 4em;
}
.product_table td span:before,.product_table th span:before {
    content: "";
    display: block;
    width: 15px;
    height: 1px;
    background-color: black;
    margin: 0 auto;
}
.part_page table tr th:first-child {
    font-weight: 800;
}
.product_table td span.small::before{
  content:none;
}
.product_table td span.small{
    font-size: 0.8em;
    line-height: 1.6 !important;
    display: block;
}
/* お問い合わせ */
.center{
	text-align:center;
    margin-bottom: 4em;
}
.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: #F4F4F4;
}

/* ドロップダウンメニュー */
.cf7__select {
  position: relative;
}

.cf7__select:before {
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 10;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid #000;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  pointer-events: none;
  content: '';
}

.cf7__select select {
  width: 100%;
  padding: 19px 20px;
  background: #F4F4F4;
  color: #a5a5a5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* チェックボックス・ラジオボタン */
.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: '';
}

/* ラジオボタン */
input[type="radio"] {
  border-radius: 50%;
}

input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #000;
  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: #a5a5a5;
}

/* 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: #a5a5a5;
}

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

input[type="submit"] {
  width: 260px;
  height: 60px;
  background: #1f2948;
  color: #fff;
  transition: opacity .6s;
}

input[type="submit"]:hover {
  opacity: .6;
}

/* ajax-loader */
.wpcf7-spinner {
  vertical-align: middle;
}
/* 私たちに */
.about_box_cover {
  margin-top: 4em;
}

.about_box {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 8em;
flex-wrap: wrap;	
}
.about_box:nth-child(even) .about_box_img {
  order: 2;
}

.about_box:nth-child(even) .about_box_text {
  order: 1;
}

.about_box_img {
  width: 46%;
}

.about_box_img.fadein {
  transition: opacity 1.5sease-out, transform 1.5sease-out;
  opacity: 0;
  transform: scale(1.2) translate(0, 0);
}

.about_box_img.fadein.scrollin {
  opacity: 1;
  transform: scale(1) translate(0, 0);
}

.about_box_text {
  width: 50%;
  line-height: 2.2;
  padding-top: 10px;
}

.about_box_h {
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  color: #1f2948;
  border-bottom: 1px solid #1f2948;
  padding: 0 10px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
  display: inline-block;
}

.about_box_h span {
  display: block;
  font-size: 16px;
  font-weight: 600;
  font-family: "Roboto", serif;
  line-height: 1;
}

.about_box_text p {
  margin-bottom: 0;
}

.overview_table a,.c-box-step__text a {
  color: #1f2948;
  transition: 0.6s;
  text-decoration: underline;
}

.overview_table a:hover,.c-box-step__text a:hover {
  opacity: 0.6;
  text-decoration: none;
}

/* フロー */

.c-box-step__flexitems {
  display: flex;
  flex-wrap: wrap;
  /* align-items: flex-start; */
  padding-top: 2.5rem;
  margin-top: 4em;
}

.c-box-step__block {
  background-color: #fff;
  position: relative;
  width: calc(25% - 30px);
  margin-right: 40px;
  padding: 4.125rem 1.5rem 1.8125rem;
  position: relative;
  border-radius: 20px;
  filter: drop-shadow(5px 5px 5px #aaa);
  border: 1px solid #1f2948;
}

.c-box-step__number {
  width: 5rem;
  height: 5rem;
  background-color: #1f2948;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 62.5rem;
  position: absolute;
  top: -2.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
  line-height: 1.3;
  padding-top: 1rem;
}

.c-box-step__number small {
  display: block;
  font-size: .875rem;
  letter-spacing: .1em;
  width: 100%;
  font-weight: 400;
}

.c-box-step__number span {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.2;
  font-size: 1.75rem;
  letter-spacing: .05em;
  display: block;
  width: 100%;
}

.c-box-step__title {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: .03em;
  min-height: 4.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 1.25rem;
}

.c-box-step__text {
  font-size: 16px;
  letter-spacing: .05em;
  line-height: 1.6;
}

.c-box-step__text p {
  margin-bottom: 0;
}

.c-box-step__block:after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: -40px;
  top: 50%;
  font-weight: 900;
  color: #1f2948;
  font-size: 24px;
  transform: translateY(-50%);
  width: 40px;
  text-align: center;
}

.c-box-step__block:nth-child(4n):after {
  content: none;
}

.c-box-step__block:nth-child(4n) {
  margin-right: 0;
}

/*プライバシーポリシー*/
#privacy .inner {
    width: 1000px;
}
#privacy section {
    padding: 1em 0;
}
#privacy h3{
    color: #1f2948;
}
#privacy ul{
    list-style: auto;
    list-style-position: inside;
    margin-left: 5px;
}
#privacy ul li{
margin-bottom: 10px;
}
@media only screen and (min-width: 641px) {
  .remodal-wrapper .remodal {
    max-width: 800px;
  }
}

@media (max-width: 1200px) {
  .case_box {
    width: 47%;
    margin-bottom: 3em;
  }

  .case_box:nth-child(7),
  .case_box:nth-child(8) {
    margin-bottom: 3em;
  }
}

@media (max-width: 768px) {
  .fv_img img {
    height: 60vh;
  }

  h1,
  .fv_h {
    font-size: 26px;
  }

  h1 span,
  .fv_h span {
    font-size: 12px;
  }

  .case_box {
    width: 100%;
    margin-bottom: 2em;
  }

  .case_name {
    font-size: 16px;
  }

  .case_box li {
    font-size: 14px;
  }

  .case_box p {
    font-size: 13px;
  }

  .case_box:nth-child(7),
  .case_box:nth-child(8) {
    margin-bottom: 2em;
  }

  .remodal-wrapper .remodal {
    padding: 15px;
  }

  .remodal-wrapper .remodal-close::before {
    line-height: 20px;
    width: 20px;
    font-size: 20px;

  }

  .remodal-wrapper .remodal-close {
    width: 20px;
    height: 20px;
  }

  /* 会社情報 */
  .campany_img {
    width: 100%;
    margin-bottom: 1em;
  }

  .campany_text {
    width: 100%;
  }

  .campany_name {
    font-size: 18px;
  }

  table.overview_table {
    font-size: 15px;
	  width: 100%;
  }

  table.overview_table th {
    width: 150px;
    padding: 15px 20px;
  }

  table.overview_table td {
    padding: 15px 20px;
  }

  .timeline-list-item .date {
    padding: 30px 10px 30px 10px;
    font-size: 15px;
  }

  .timeline-list-item .content {
    font-size: 15px;
  }

  .timeline-list-item .content::before {
            left: -12px;
        width: 20px;
        height: 20px;
  }

  .access h3 {
    max-width: 100%;
    font-size: 18px;
    margin-bottom: 20px;
  }

  .access_img {
    width: 100%;
    margin-bottom: 1.5em;
  }

  .access_box iframe {
    width: 100%;
	  height:400px;
  }

  /* 製品一覧 */
  .product_box li a {
    padding-left: 8px;
    align-items: center;
	  font-size: 14px;
  }

  ul.product_box li img {
    width: 160px;
  }

  ul.product_box li span {
    width: calc(100% - 160px);
    height: 60px;
    line-height: 60px;
    padding: 0px 10px;
    text-align: left;
  }

  ul.product_box li.two_line span {
    line-height: 24px;
    padding: 6px 10px;
  }

  .product_box li a:after {
    font-size: 18px;
  }
	.scroll_table{
  overflow-x: scroll;
}
	.products_items{
		padding: 30px 20px;
	}
	#products h3{
		min-width: 200px;
		font-size: 17px;
	}
	.products_box_text {
  font-size: 13px;
	}
	.products_box {
  margin: 0 auto 20px;
    width: 100%;
    text-align: center;
	}
	.products_box:last-child {
		margin-bottom:0;
	}
	.products_box_img img {
  width: 200px;
}
	.products_box_cover {
  margin-bottom: 2em;
}
.products_box_cover.products_box_cover02 .products_box {
    width: 90%;
    margin-bottom: 2em;
}
.products_box_cover.products_box_cover02 .products_box:nth-child(3), .products_box_cover.products_box_cover02 .products_box:nth-child(4) {
    margin-top: 0;
}
.products_box_cover.products_box_cover02 .products_box:nth-child(4) {
    margin-bottom: 1em;
}
	table.product_table{
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
  table-layout: auto;
  font-size: 15px;
}
	table.product_table th, table.product_table td{
		min-width: 100px;
	}
.products_text_area p.center{
	text-align:left;
}
  /* お問い合わせ */
  .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;
  }
	.about_box {
  margin: 0 auto 6em;
	}
	.about_box .about_box_text {
  order: 1;
		width:100%;
		margin-bottom: 10px;
}
	.about_box .about_box_img {
  order: 2;
		width:100%;
}
	.about_box_h {
  font-size: 24px;
}
	.about_box_h span {
font-size:12px;
	}
	.c-box-step__flexitems{
  justify-content: center;
}
	.c-box-step__block{
		margin-right: 0;
  margin-bottom: 90px;
		padding: 3rem 1.5rem 1.8125rem;
		width: 90%;
	}
	.c-box-step__block::after {
  transform: translateX(-50%);
  left: 50%;
  bottom: -55px;
  top: initial;
  transform: translateX(-50%) rotate( 90deg );

}
	.c-box-step__title {
  font-size: 1.3rem;
  min-height: 2rem;
	}

.c-box-step__number {
  width: 4rem;
  height: 4rem;
	top: -2rem;
	}
	.c-box-step__number small {
  font-size: .7rem;
	}
	.c-box-step__number span {
  font-size: 1.5rem;
}
	#campany p.center,#case p.center,#flow p.center,#items p.center{
	text-align:left;
}
    #privacy p {
        margin-bottom: 0;
    }
	#privacy address {
    font-size: 15px;
    margin-top: 15px;
}
	#privacy ul {
    font-size: 15px;
    margin-top: 15px;
}
	}