/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

@media screen and (max-width: 768px) {
  a {
    outline: none;
  }
}


/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #333;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #333;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
  -webkit-appearance: none;
}

/******************* リセットcssここまで **********************/

/*********************** 共通 ******************************/

html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO", "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  font-weight: normal;
  color: #333;
  line-height: 2;
  letter-spacing: 0.1em;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

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

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ul,
li,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  transition: ease-in-out 0.6s ease;
}

a:hover {
  transition: ease-in-out 0.6s ease;
}

.content-wrapper {
  width: 90%;
  margin: 0 auto;
  max-width: 1000px;
}

h5 {
  font-size: 1.5rem;
  color: #333;
}

/* ボタンパーツ */
.btn-parts p {
  text-align: center;
  margin-bottom: 80px;
}

#formWrap {
  width: 100%;
  max-width: 700px;
	margin:0 auto;
	color:#555;
	line-height:120%;
  font-size:90%;
  text-align: left;
}
table.formTable{
	width:100%;
	margin:0 auto 20px;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	/* border:1px solid #ccc; */
	padding:10px;
}
table.formTable th{
	width:30%;
	font-weight:normal;
  /* background:#4ba8de; */
  color: #121212;
  text-align:left;
  vertical-align: middle;
}

.formTable .caution-text {
  color: rgb(216, 15, 15);
}

table.formTable textarea {
  border: 1px solid #ccc;
}

.contact-button {
  display       : inline-block;
  border-radius : 5%;          /* 角丸       */
  font-size     : 16px;        /* 文字サイズ */
  text-align    : center;      /* 文字位置   */
  cursor        : pointer;     /* カーソル   */
  padding       : 12px 12px;   /* 余白       */
  background    : #1a8e03;     /* 背景色     */
  color         : #ffffff;     /* 文字色     */
  line-height   : 1em;         /* 1行の高さ  */
  transition    : .3s;         /* なめらか変化 */
  box-shadow    : 2px 2px 0px #666666;  /* 影の設定 */
  border        : 2px solid #1a8e03;    /* 枠の指定 */
  width: 100%;
  max-width: 150px;
}

.contact-button:hover {
  box-shadow    : none;        /* カーソル時の影消去 */
  color         : #1a8e03;     /* 背景色     */
  background    : #ffffff;     /* 文字色     */
}

.reset-button {
  background    : #fff;     /* 背景色     */
  color         : #1a8e03;     /* 文字色     */
}

.reset-button:hover {
  box-shadow    : none;        /* カーソル時の影消去 */
  color         : #fff;     /* 背景色     */
  background    : #1a8e03;     /* 文字色     */
}

.button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.button-wrapper input {
  margin-bottom: 20px;
}



.m-form-text {
  height: 2.4em;
  width: 100%;
  padding: 0 16px;
  border-radius: 4px;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.m-form-text:focus {
  outline: 0;
  box-shadow: 0 0 0 2px #1a8e03 inset;
}


@media screen and (max-width:599px) {
  .btn-parts {
    margin-top: 20px;
  }
  #formWrap {
    width:95%;
    margin: 0 auto;  
  }
  table.formTable th, table.formTable td {
    width:auto;
    display:block;
    padding-bottom: 0;
  }
  table.formTable th {
    margin-top:5px;
    border-bottom:0;
  }
  input[type="text"], textarea {
    width:100%;
    padding:5px;
    font-size:110%;
    display:block;
  }
  input[type="submit"], input[type="reset"], input[type="button"] {
    /* display:block; */
    height:40px;
  }
  }
  
  .button {
    display       : inline-block;
    border-radius : 5%;          /* 角丸       */
    font-size     : 12pt;        /* 文字サイズ */
    text-align    : center;      /* 文字位置   */
    cursor        : pointer;     /* カーソル   */
    padding       : 10px 25px;   /* 余白       */
    background    : #333333;     /* 背景色     */
    color         : #ffffff;     /* 文字色     */
    line-height   : 1em;         /* 1行の高さ  */
    transition    : .3s;         /* なめらか変化 */
    box-shadow    : 1px 1px #666666;  /* 影の設定 */
    border        : 1px solid #333333;    /* 枠の指定 */
  }
  .button:hover {
    box-shadow    : none;        /* カーソル時の影消去 */
    color         : #333333;     /* 背景色     */
    background    : #ffffff;     /* 文字色     */
  }

/* ボタンパーツ　共通 */
.button {
  display: inline-block;
  width: 250px;
  height: 60px;
  text-align: center;
  text-decoration: none;
  line-height: 60px;
  outline: none;
}

.button::before,
.button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
}

.button,
.button::before,
.button::after {
  -webkit-transition: ease-in-out 0.6s;
  transition: ease-in-out 0.6s;
}

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

* {
  list-style: none;
}

a {
  text-decoration: none;
  color: #fff;
}

/* ボタンパーツ */

.link-btn p {
  text-align: left;
  margin-left: -20px;
}

.btn-right p {
  text-align: right;
  font-size: 16px;
}

/* ボタンパーツ　共通 */
.button {
  display: inline-block;
  width: 250px;
  height: 60px;
  text-align: center;
  text-decoration: none;
  line-height: 60px;
  outline: none;
  border-radius: 50px;
}

.button::before,
.button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
}

.button,
.button::before,
.button::after {
  -webkit-transition: ease-in-out 0.6s;
  transition: ease-in-out 0.6s;
}

/* btn01 */
.btn01 .button {
  background-color: #489aef;
  border: 2px solid #489aef;
  color: #fff;
  min-width: 270px;
  font-size: 12px;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.btn01 .button:hover {
  background-color: #c29033;
  border-color: #c29033;
  color: #fff;
  transition: ease-in .3s;
}

/*********************** 共通 ここまで******************************/

header {
  position: fixed;
  width: 100%;
  z-index: 100;
}

.logo img {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
}

.main-ttl {
  text-align: center;
  font-size: 12px;
  padding: 20px 0;
}

.fa-phone-alt:before {
  color: #333333;
}

.nav-tel-wrap {
  margin-left: 20px;
  position: fixed;
  right: 210px;
  line-height: 1.5;
  top: 23px;
}

.nav-tel {
  font-size: 40px;
  color: #333;
  font-weight: bold;
}

.nav__number {
  color: #333;
  font-family: 'Noto Sans SC', sans-serif;
}

.nav-tel-txt {
  font-size: 16px;
}


@media screen and (max-width: 899px) {
  .nav-tel {
    font-size: 32px;
  }

  .nav-tel-txt {
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  .nav-tel {
    font-size: 24px;
  }

  .nav-tel-wrap {
    top: 18px;
    right: 120px;
  }

}


.nav-list img {
  width: 170px;
  height: auto;
  position: absolute;
  top: -50px;
  right: -180px;
}

.nav-list a:hover {
  color: #2361b4;
  transition: ease-in-out 0.3s;
}

.nav-list {
  position: relative;
}

.nav-list span {
  position: absolute;
  top: -15px;
  right: -190px;
  display: block;
}

.nav-list span:first-child {
  top: -20px;
}

.nav-list span:last-child {
  top: 15px;
  right: -163px;
}

@media screen and (max-width: 768px) {

  .nav-list img {
    width: 100px;
    top: -30px;
    right: -200px;
  }  
}


@media screen and (max-width: 599px) {
  .pc-nav {
    display: none;
  }
}


.ttl-logo {
  width: 120px;
  color: #333333;
}

.ttl-txt {
  position: relative;
  top: 5px;
  color: #333;
  font-size: 48px;
  display: block;
}

.sp-logo {
  display: none;
}

@media screen and (max-width: 768px) {
  .ttl-txt {
    display: none;
  }

  .sp-logo {
    display: block;
    width: 70px;
  }
}


.ttl-txt span:first-child {
  position: absolute;
  font-size: 14px;
  left: 15%;
  width: 100%;
}

.ttl-txt span:nth-child(2) {
  position: absolute;
  top: 20px;
  left: -9px;
  display: block;
  font-size: 16px;

}

.ttl-txt span:nth-child(3) {
  position: absolute;
  top: 46px;
  left: -9px;
  display: block;
  font-size: 16px;
}

.ttl-txt span:last-child {
  position: relative;
  left: 32px;
}



.sp-nav-btn,
.sp-nav {
  display: none;
}

.sp-nav {
  position: relative;
  color: #333;
  font-size: 32px;
}

.sp-ttl-txt {
  position: absolute;
  left: 50%;
  top: 15%;
  transform: translateX(-50%);

}

.sp-sub-text {
  font-size: 9px;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 32%;
  transform: translateX(-50%);
  min-width: 250px;
  font-weight: 900;
}

.sp-ttl-txt span:first-child {
  position: absolute;
  left: 8.5%;
  font-size: 12px;
  width: 100%;
  text-align: center;
}

.sp-ttl-txt span:nth-child(2) {
  position: absolute;
  top: 17px;
  display: block;
  font-size: 14px;
}

.sp-ttl-txt span:nth-child(3) {
  position: absolute;
  top: 38px;
  display: block;
  font-size: 14px;
}

.sp-ttl-txt span:last-child {
  position: relative;
  left: 32px;
}

@media screen and (max-width: 768px) {
  .sp-ttl-txt {
    font-size: 40px;
  }
}


.header-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.1vw 3vw;
  transition: ease-out 0.3s;
  background-color: #fff;
}

.nav-list {
  padding: 8px;
}

.nav-list .line {
  width: 64px;
  height: 64px;
}

.fa-envelope {
  font-size: 16px;
}


.nav-list a {
  color: #333;
  position: relative;
  display: inline-block;
  text-decoration: none;
}


.sp-nav-list a {
  color: #333;
}

.sp-nav-list a:hover {
  color: #2462b4;
}

.pc-nav {
  margin-left: auto;
  position: absolute;
  right: 200px;
}

.pc-nav ul {
  background-color: #fff;
}

.pc-nav .green a {
  color: rgb(0, 128, 28);
}

.pc-nav ul,
.btn-wrapper {
  line-height: 50px;
  letter-spacing: 0.1em;
}

.pc-nav ul li,
.button {
  /* display: inline-block; */
  vertical-align: middle;
}

.pc-nav ul li {
  color: #333;
}

/* メインビジュアル */
main {
  z-index: 0;
  position: relative;
}

.mv {
  position: relative;
}

.mv img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: top;
  margin-top: 107px;
  filter: brightness(0.9);

}

.mv h2 {
  position: absolute;
  top: 60%;
  left: 30%;
  font-size: 46px;
  line-height: 1.5;
  transform: translate(-50%, -50%);
  text-align: left;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 3px 3px 8px #99cc4d;
}

.mv_other img {
  height: 550px;
}

.mv_other h2 {
  letter-spacing: 0.5em;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);

}

@media screen and (max-width: 1024px) {
  .mv img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }

  .header-wrapper {
    padding: 1% 3vw;
  }
}

@media screen and (max-width: 768px) {
  .mv img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }

  .mv h2 {
    font-size: 30px;
    transform: none;
    top: 50%;
    left: 10%;
  }

  .mv p {
    font-size: 16px;
  }

  .mv_other h2 {
    letter-spacing: 0.5em;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media screen and (max-width: 599px) {
  .mv h2 {
    font-size: 24px;
  }

  .mv p {
    font-size: 14px;
  }

  .nav-list:last-child {
    margin-right: 0;
  }

  .header-wrapper {
    padding: 1% 4vw;
  }

  .mv_other img {
    height: 350px;
  }
}

/* メインビジュアル */

#service {
  padding-top: 80px;
}

/* スクロール後ヘッダー背景色 */
.header-wrapper.addColor {
  background: #fff;
  transition: ease-in 0.3s;
}

/* スクロール後ヘッダー背景色 */

.sec-ttl {
  position: relative;
  font-weight: 100;
  text-align: center;
  font-size: 32px;
  margin-top: 80px;
  margin-bottom: 48px;
  color: #151515;
}

.sec-ttl:before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 3px;
  background: #151515;
}

.sec-ttl-b {
  position: relative;
  font-weight: 100;
  text-align: center;
  font-size: 32px;
  margin-top: 10px;
  margin-bottom: 48px;
  color: #151515;
}

.sec-ttl-b:before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 3px;
  background: #151515;
}



.product .sec-ttl:after {
  content: 'Product';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  font-weight: bold;
  color: #18a52b0d;
}

.catalog .sec-ttl:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  font-weight: bold;
  color: #18a52b0d;
}

.blog .sec-ttl:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  font-weight: bold;
  color: #18a52b0d;
}



@media screen and (max-width:599px) {

  .product .sec-ttl:after,
  .catalog .sec-ttl:after,
  .blog .sec-ttl:after {
    font-size: 56px;
  }
}

.product {
  padding: 160px 0;
}

.product h3 {
  text-align: center;
  padding: .5rem;
  font-size: 24px;
}


.product__list {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  margin: -40px 0 0 -24px;
}

.product__item {
  margin: 20px 0;
  width: 50%;
  height: 350px;
  padding: 40px 0 0 24px;
}

.product__item a {
  color: #333333;
  display: block;
}

.product__item div {
  overflow: hidden;
}

.product__item img {
  max-width: 400px;
  height: 300px;
  object-fit: cover;
  transition: ease-in .3s;
}

.product__item img:hover {
  transition: ease-in .3s;
  filter: brightness(.8);
}


@media screen and (max-width:768px) {

  .product__item {
    height: auto;
  }

  .product__item img {
    height: auto;
    max-height: 200px;
  }

  @media screen and (max-width: 599px) {
    .product__item img {
      min-height: 150px;
      max-height: 150px;
    }

  }


  .product h3 {
    font-size: 16px;
  }

  .product__item a {
    display: flex;
    flex-direction: column-reverse;
  }
}

.catalog {
  background-color: #f5f5f5;
  background-blend-mode: lighten;
}

.catalog__list {
  display: flex;
  justify-content: space-around;
}

.catalog__item a {
  overflow: hidden;
  display: block;
}

.catalog__item img {
  transition: ease-in .3s;
  width: 75%;
  margin: 0 auto;
  display: block;
}

.catalog__item img:hover {
  transform: scale(1.1);
  transition: ease-in .3s;
  filter: brightness(.8);
}

@media screen and (max-width:768px) {
  .catalog__item {
    margin: 20px;
  }
}

.blog {
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.news-parts01 table {
  width: 100%;
}

.news-parts01 table tr {
  border-bottom: 1px solid #dcdcdc;
}

.news-parts01 table tr th {
  width: 15%;
  padding: 15px 15px 15px 0;
}

@media screen and (max-width: 1199px) {
  .news-parts01 table tr th {
    display: block;
    width: 100%;
    text-align: left;
    padding-bottom: 0;
  }

  .news-parts01 table tr td {
    display: block;
    width: 100%;
    padding-bottom: 20px;
  }
}

.footer__inner {
  text-align: center;
  padding: 40px 20px;
  background: url(img/footer.jpg) no-repeat;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.509);
  background-blend-mode: lighten;
}

footer img {
  height: 300px;
  object-fit: cover;
}

.link-wrapper {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.link-wrapper a {
  margin: 0 10px;
  background-color: #1a8e03;
  width: 200px;
}

.maplink,
.fa-external-link-alt {
  color: #2079c7;
}


.copyright {
  font-family: Verdana, “Droid Sans”;
}

.under-fix__list {
  display: none;
}

@media screen and (max-width:768px) {
  footer {
    margin-bottom: 40px;
  }

  .other__footer-inner p,
  .company__footer-inner {
    display: none;
  }



  .company__footerinner {
    display: none;
  }

  footer img {
    display: none;
  }

  .under-fix__list {
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: auto;
    color: #ffffff;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .under-fix__list .fa-phone-alt:before {
    color: #ffffff;
  }

  .under-fix__item {
    width: 33.3%;
    text-align: center;
    line-height: 1.75;
  }

  .under-fix__item a {
    display: block;
  }

  .under-fix__item:first-child {
    background-color: #efb347;
  }

  .under-fix__item:nth-child(2) {
    background-color: #48d0ef;
  }

  .under-fix__item:last-child {
    background-color: #00B900;
  }

  .under-fix__text {
    font-size: 10px;
  }

}



.product,
.catalog,
.blog {
  padding: 160px 0;
}

@media screen and (max-width:768px) {

  .catalog,
  .blog {
    padding: 40px 0;
  }

  .product {
    padding-bottom: 40px;
  }

}

.sub-txt {
  text-align: center;
  font-size: 14px;
  color: #009fff;
}

.top_image {
  padding-top: 160px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  max-width: 1040px;
}

.top_image img {
  width: 45%;
  height: 350px;
  object-fit: contain;
}

.top_image p {
  letter-spacing: 0;
  font-feature-settings: "palt"1;
  text-align: center;
  width: 100%;
  font-size: 18px;
  padding: 16px;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.top_image span {
  background: linear-gradient(transparent 72%, #015a9e6b 0%);
  font-weight: bold;
}

.tanizawa_image p {
  text-align: center;
}

.tanizawa_image span {
  background: linear-gradient(transparent 72%, #019e356b 0%);
}

@media screen and (max-width: 1024px) {
  .top_image p {
    font-size: 16px;
  }
}


@media screen and (max-width:768px) {
  .top_image img {
    width: 50%;
    display: block;
    margin: 0 auto;
    height: auto;
  }

  .top_image p {
    font-size: 16px;
  }

  .top_image {
    display: block;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

}


.product-flow {
  padding: 160px 0;
}

.product-flow .sec-ttl,
.complete .sec-ttl {
  background: #64ea52;
}

.product-flow .sec-ttl:before,
.complete .sec-ttl:before {
  display: none;
}

.product-flow .flow-box .box {
  position: relative;
  margin-bottom: 80px;
}

.product-flow .flow-box .box .num {
  position: absolute;
  width: 170px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 1000px;
  /* background-color: #424242; */
  color: #fff;
  left: -45px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.product-flow .flow-box .box dl {
  text-align: center;
  background-color: #e1ffdd;
  width: calc(100% - 40px);
  margin-left: auto;
  padding: 30px 40px 30px 90px;
  display: flex;
  align-items: center;
  border-radius: 8px;
}

.product-flow .flow-box .box dl dt {
  font-size: 24px;
  font-weight: bold;
}

.product-flow .flow-box .box dl dd {
  position: absolute;
  left: 50%;
  width: 50%;
}

.product-flow .flow-box .box dl dd span {
  display: inline-block;
}

.product-flow .flow-box .box dl dd .font-small {
  font-size: 12px;
}

.product-flow .flow-box .box::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 17px;
  background-image: url(img/img-flow-arrow.png);
  background-repeat: no-repeat;
  background-position: center center;
  left: 50%;
  bottom: -3rem;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.product-flow .flow-box .box:last-child::after {
  display: none;
}

.text-link {
  text-align: center;
  margin-bottom: 40px;
}

.text-link a {
  color: #2631a5;
}

.text-link a:hover {
  text-decoration: underline;
}

@media screen and (max-width:768px) {
  .product-flow {
    padding: 40px 0;
  }

  .product-flow .flow-box .box dl dt {
    text-align: left;
  }

  .product-flow .flow-box .box dl dd {
    position: relative;
    left: 0;
    text-align: left;
    padding: 12px;
    width: 100%;
  }

  .product-flow .flow-box .box dl {
    display: block;
  }

  .product-flow .flow-box .box .num {
    width: 100px;
    left: -10px;
  }

  .product-flow .flow-box .box dl {
    padding: 15px 20px 15px 45px;
  }
}




.flow-last p {
  font-size: 72px;
  text-align: center;
}

.flow-last img {
  width: 200px;
  display: block;
  margin: 0 auto;
}

.complete h3 {
  font-weight: normal;
  font-size: 12px;
}

.complete__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.complete__list img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.complete__list .sidecolorbousaimen {
  object-position: left;
}

.complete__item {
  width: 23%;
  min-height: 200px;
  margin: 1%;
  margin-bottom: 40px;
}


.complete__item a {
  display: block;
  color: #333333;
  outline: none;
}

.complete__item p {
  text-shadow: 0px 0px 1px #383838;
  font-size: 14px;
  letter-spacing: 0;
}

.complete__item .highlight {
  font-size: 14px;
  color: #ffffff;
  background: rgb(215, 24, 24);
  display: inline-block;
  padding: 0px 10px;
}

@media screen and (max-width:768px) {
  .complete__list {
    margin-bottom: 20px;
  }

  .complete__item p {
    font-size: 10px;
  }

  .complete__item {
    width: 48%;
  }
}

.hard-hat__item {
  text-align: center;
}

.hard-hat__item p {
  text-shadow: none;
}

.hard-hat__item p:first-of-type {
  text-shadow: 0px 0px 1px #383838;
}

.hard-hat__item img {
  max-width: 200px;
  height: auto;
  object-fit: contain;
}

@media screen and (max-width: 599px) {
  .complete__list img {
    height: 150px;
  }
}



@media screen and (max-width:768px) {
  .hard-hat__item p {
    font-size: 14px;
  }
}

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

.expendable__item {
  width: 30%;
}

.hat-desc__list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 80px;
}

.hat-desc__list h3 {
  font-size: 32px;
}

.hat-desc__item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.list-wrapper {
  width: 48%;
}


.list-wrapper span {
  background: linear-gradient(transparent 72%, #c4f1ff 0%);
  font-size: 18px;
}

.hat-desc__item:nth-child(2n) {
  flex-flow: row-reverse;
}

.hat-desc__item p {
  margin-bottom: 20px;
  font-size: 12px;
}

.hat-desc__item img {
  max-width: 300px;
  object-fit: cover;
}

@media screen and (max-width:768px) {
  .list-wrapper {
    width: 100%;

  }

  .list-wrapper span {
    font-size: 14px;
  }

  .hat-desc__item img {
    min-height: 150px;
    height: auto;
  }

  .hat-desc__item p {
    display: inline-block;
    text-align: left;
  }


  .expendable__item {
    width: 48%;
  }

  .hat-desc__item {
    display: block;
    width: 100%;
  }

  .hat-desc__list {
    display: block;
    padding-top: 80px;
  }

  .hat-desc__list h3 {
    font-size: 32px;
  }

  .list-wrapper {
    width: 100%;
  }

  .hat-desc__item img {
    width: 100%;
  }

}

.toa_image {
  display: block;
  text-align: center;
}

.toa_image p {
  margin: 0 auto;
  text-align: center;
}

.toa_image img {
  width: 25%;
  height: auto;
}

.glasses__list {
  width: 100%;
}

.glasses__item {
  width: 23%;
  letter-spacing: 0;
}



.glasses__item img {
  width: 100%;
  min-height: 200px;
  max-height: 100px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .glasses__item {
    width: 30%;
  }

  .glasses__item p {
    font-size: 12px;
  }

}

@media screen and (max-width: 599px) {
  .glasses__item {
    width: 48%;
  }

  .glasses__item img {
    height: auto;
    min-height: 150px;
    max-height: 150px;
  }
.toa_image img {
  width: 45%;
  height: auto;
}
}



.color-change {
  color: rgb(213, 21, 21);
  font-weight: bold;
}

.color-change_02 {
  color: rgb(23, 157, 198);
}

.color-change_03 {
  color: rgba(210, 168, 30, 0.872);
}


.modaal-content-container img {
  transform: scale(2);
}



@media screen and (max-width:599px) {
  .modaal-content-container img {
    transform: scale(1.7);
  }
}

.care {
  padding-top: 160px;
}

.company {
  padding: 160px 0;
}

.company table {
  width: 100%;
}

.company table tr {
  border: 1px solid rgb(218, 218, 218);
}

.company table tr th {
  padding: 30px 20px;
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  text-align: left;
  width: 300px;
  border-right: 1px solid rgb(218, 218, 218);
  background: #ecffe6;
}

.company table tr td {
  padding-left: 20px;
}

.company table tr td {
  padding-left: 20px;
}

@media screen and (max-width: 767px) {

  .company {
    padding: 40px 0 64px;
  }

  .company table tr th {
    display: block;
    width: 100%;
    text-align: left;
    padding-bottom: 0;
    padding: 15px 20px 0 20px;
  }

  .company table tr td {
    display: block;
    width: 100%;
    padding: 15px 0 15px 20px;
  }
}

.map {
  position: relative;
  width: 100%;
  padding-top: 50%;
  /* = height ÷ width × 100 */
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact {
  padding: 160px 0;
}

.contact p {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .contact {
    padding: 40px 0;
  }
  
}














@media screen and (max-width: 599px) {
  /***** ハンバーガー *****/

  .sp-nav-btn,
  .sp-nav {
    display: block;
  }

  /* .pc-nav {
    display: none;
  } */

  /* ハンバーガーボタンの中身 */
  .sp-nav-btn {
    position: relative;
    width: 25px;
    height: 16px;
    margin: 3% 4vw;
    z-index: 20;
    margin-left: auto;
    cursor: pointer;
  }

  /* ハンバーガーボタンの中身 */

  /* ハンバーガーボタンの背景色 */
  /* .sp-nav-btn:before {
    content: "";
    position: absolute;
    color: #2462b4;
    width: 45px;
    height: 40px;
    font-size: 10px;
    top: -14px;
    right: -8px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 0px;
    padding-top: 45px;
  } */
  /* ハンバーガーボタンの背景色 */



  .nav-btn-wrapper {
    display: none;
  }

  /* ハンバーガーの３本線 */

  .sp-nav-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    position: absolute;
    transition: ease-in .3s;
  }

  .sp-nav-btn span:nth-of-type(1) {
    top: -4px;
    right: 3px;
  }

  .sp-nav-btn span:nth-of-type(2) {
    top: 3px;
    margin: auto;
    right: 3px;
  }

  .sp-nav-btn span:nth-of-type(3) {
    bottom: 4px;
    right: 3px;
  }

  /* ハンバーガーの３本線 */

  /* ハンバーガークリック後の線の動き */
  .sp-nav-btn.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
  }

  .sp-nav-btn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .sp-nav-btn.active span:nth-of-type(3) {
    transform: translateY(-4px) rotate(45deg);
  }

  .sp-nav-btn.active:before {
    opacity: 0;
  }

  /* ハンバーガークリック後の線の動き */

  /* ハンバーガークリック後のメニュー */
  .sp-nav {
    display: block;
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    transform: translateX(100vw);
    transition: ease-in 0.3s;
    background: #fff;
  }

  /* ハンバーガークリック後のメニュー */

  .sp-nav.active {
    transform: translateX(0);
  }

  /* ハンバーガークリック後メニュー中身 */
  .sp-nav .ttl-logo {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .sp-nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
  }

  .sp-nav-list {
    font-size: 16px;
    font-size: 1rem;
    text-align: center;
    padding-top: 20px;
  }

  .sp-address {
    font-size: 12px;
    margin: 0;
    padding: 0;
  }

  .sp-nav-tel {
    color: #333;
    margin-top: 20px;
  }

  .sp-nav-fax {
    margin-bottom: 20px;
  }

  .under-line {
    border-bottom: 1px solid #000;
  }

  .sp-btn-wrapper {
    height: 50px;
    line-height: 50px;
  }

  .sp-nav .fz-small {
    font-size: 12px;
    color: #fff;
  }

  /* ハンバーガークリック後メニュー中身 */
}

/***** ハンバーガーここまで *****/


/*infoエリアをはじめは非表示*/

#info,
#info2,
#info3,
#info4,
#info5,
#info6,
#info7,
#info8,
#info9,
#info10,
#info11,
#info12,
#info13,
#info14,
#info15,
#info16,
#info17,
#info18,
#info19,
#info20,
#info21,
#info22,
#info23,
#info24,
#info25 {
  display: none;
}

/*モーダルの横幅を変更したい場合*/
.modaal-container {
  max-width: 600px;
}

/*モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

/* PCで電話番号リンクを無効に */
@media (min-width: 768px) {
  .pc-nav a[href*="tel:"] {
    pointer-events: none;
    display: block;
    cursor: default;
    text-decoration: none;
  }
}