@charset "utf-8";
/* CSS Document */
body, div, ul, li, p, a {
	padding: 0;
	margin: 0;
}
/*ページ遷移アニメーション*/
.move .animation-bg {
  background: #ffffff;
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.ltr .animation-bg {
  animation-name: PageAnime-ltr;
}
@keyframes PageAnime-ltr {
  0% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*ヘッダー*/
.c-header {
    position: fixed;
	top:0;
    align-items: center;
    background-color: #FFFFFF; /* PCヘッダー色 */
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    padding-top: 0px;
    padding-right: 2rem;
    padding-left: 2rem;
    padding-bottom: 0px;
    width: 100%;
    height: 80px;
    z-index: 100;
    margin-top: 0px;
    margin-bottom: 0px;

}
.c-header__logo img {
    text-align: left;
    display: flex;
    width: 80%;
}
.c-header__logo2 img{
	vertical-align: baseline;
	margin-left: 0px;
	padding-left: 0px;
}
.c-header__list {
    box-sizing: border-box;
    display: flex;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
}
.c-header__list-item {
    list-style: none;
    text-decoration: none;
    background-color: #FFFFFF;
}
.c-header__list-link {
	color: #000000; /* ヘッダーメニュー文字色 */
	display: block;
	margin-right: 20px; /* ヘッダーメニュー文字幅 */
	text-decoration: none;
	padding: 10px 0px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(0.7vw + 0.6rem);
}
.c-header__list-link:hover {
	filter: opacity(0.6);
	color: #0207F8;
}
.c-hamburger-menu {
  position: relative;
}
.c-header.c-hamburger-menu {
  position: fixed;
}
@media screen and (max-width: 480px){
.c-header {
	position: fixed;
	align-items: center;
	background: #ffffff; /* PCヘッダー色 */
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	padding-top: 0px;
	padding-right: 1rem;
	padding-left: 1rem;
	padding-bottom: 0rem;
	width: 100%;
	height: 80px;
	z-index: 100
}
.c-header__logo img {
	text-align: left;
	display: flex;
	width: 60%;
	height: auto;
}
.c-header__logo2 img{
	vertical-align: baseline;
	margin-left: 0px;
	padding-left: 0px;
}	
}


@media screen and (max-width: 750px) {
  .c-hamburger-menu__list {
    background: #ffffff;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 2rem; 
    position: absolute;
    transform: translateX(-100%);
    transition: 0.3s; 
    top: 100%;
    width: 100%;
  }

  #hamburger:checked ~ .c-hamburger-menu__list {
    transform: translateX(0%);
    transition: 0.3s;
  }
}
.c-hamburger-menu__input {
  display: none;
}
.c-hamburger-menu__bg { /*メニュー上段*/
  background: rgba(255, 255, 255, .6);
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0.4; 
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
#hamburger:checked ~ .c-hamburger-menu__bg {
  display: block;
}
.c-hamburger-menu__button {
  display: none;
}
@media screen and (max-width: 750px) {
  .c-hamburger-menu__button {
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px; 
    height: 32px;
    justify-content: center;
    width: 32px; 
  }
.c-hamburger-menu__button-mark {
  background-color: #000000; 
  display: block;
  height: 1px; 
  transition: 0.3s; 
  width: 20px;
}
}

@media screen and (max-width: 750px) {
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(1) {
    transform: translate(2px, 1px) rotate(45deg); 
    transform-origin: 0%; 
  }
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(3) {
    transform: translate(2px, 3px) rotate(-45deg); 
    transform-origin: 0%; 
  }
	.c-header__list-item {
	width:100%;
	border-bottom: solid #FB0004 1px;
}
}
@media screen and (min-width: 750px) {
	.r-img{
		display: none;
	}
}
/*----------------------------------------*/

/*初期画像*/
.box_10 {
    max-width: 1500px;
    width: 90%;
    border: solid #d7043f 2px;
    border-radius: 10px;
    margin-top: 10px;
    margin-right: auto;
    margin-left: auto;
    background-color: #d7034f;
    padding-bottom: 5px;
    box-sizing: border-box;
    margin-bottom: 10px;
   animation: fadeup 5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
 
@keyframes fadeup {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.company-txt10{
	width: 60%;
	height: auto;
	color: #000000;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	font-size: calc(3vw + 1.2rem);
	display: block;
	text-align: left;
	margin-top: 50px;
	margin-bottom: 10px;
	margin-left: 20px;
	position: absolute;
    top: 30%;
    transform: translateY(-50%);
}
/*会社情報横線*/
.company-txt10 span{
  color: #000000;
  align-items: center; /* 縦中心 */
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: calc(0.5vw + 1.0rem);
  width:30vw;
  height: 5vw;
  padding: 0 10px;
  white-space:nowrap;
}
.company-txt10 span::before,.company-txt10 span::after {
  content: '';
  background-color: #000000;
  height: 0.5px; 
  width:10px;
  display: inline-block;
  vertical-align: middle;
  
}/*横線終わり*/
.company-txt11{
	position: absolute;
	top:50%;
	left:4%;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: calc(0.5vw + 1.0rem);
}
@media screen and (max-width: 600px) {
	.company-txt11{
	position: absolute;
	top:50%;
	left:10%;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: calc(0.5vw + 0.7rem);
	}
}
.box_20{
    height: 500px;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    background-color: #FFFFFF;
    border-radius: 10px;
    border-top: solid #d7043f 2px;
    border-right: solid #d7043f 2px;
    border-bottom: solid #d7043f 2px;
    border-left: solid #d7043f 2px;
    margin-top: 5px;
    margin-left: 5px;
    margin-right: 5px;
    background-image: url(image4/div-img.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.txt_2{
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 1.5em;
	padding-left: 2rem;
	color: #000000;
}

/*背景画像*/
body{
	height: 1200px;
}
body::before{
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	content: "";
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: -1;
	background-image: url(image4/bg5-img.jpg);
}
/*パンくずリスト*/
.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	color: #D7043F;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: calc(0.6vw + 0.4rem);
	margin-top:80px;
	
}
.breadcrumb li a{
    text-decoration: none;
    color: #333333;
}
	
.breadcrumb li:not(:last-of-type)::after {
  content: "›";
  margin: 0 .6em; /* 記号の左右の余白 */
  color: #777; /* 記号の色 */
}
/*--------------------------------------------*/
/*沿革内容*/
 /*.box_1 {
	position:relative;
    max-width: 1500px;
    width: 90%;
    border: solid #d7043f 2px;
    border-radius: 10px;
    margin-top: 50px;
    margin-right: auto;
    margin-left: auto;
    background-color: #d7034f;
    padding-bottom: 50px;
    box-sizing: border-box;
    margin-bottom: 100px;
	opacity: 0;
    visibility: hidden;
	transition: all 1s;
    transform: translateY(150px);
	overflow: hidden;
    }
.is-active {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
}
.company-txt{
	width: 60%;
	color: #ffffff;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	font-size: calc(1.2vw + 1rem);
	display: block;
	text-align: left;
	margin-top: 30px;
	margin-bottom: 10px;
	margin-left: 20px;
}
/*会社情報横線*/
/*.company-txt span{
  color: #ffffff;
  align-items: center; /* 縦中心 */
 /* font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: calc(0.2vw + 0.8rem);
  width:30vw;
  height: 5vw;
  padding: 0 10px;
  white-space:nowrap;
}
.company-txt span::before,.company-txt span::after {
  content: '';
  background-color: #ffffff;
  height: 0.5px; 
  width:10px;
  display: inline-block;
  vertical-align: middle;
  
}/*横線終わり*/

/*.box_2{
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	background-color: #FFFFFF;
	border-radius: 10px;
	border-top: solid #d7043f 2px;
	border-right: solid #d7043f 2px;
	border-bottom: solid #d7043f 2px;
	border-left: solid #d7043f 2px;
	margin-left: 5px;
	margin-right: 5px;
	overflow: hidden;
}
.box_2_1{
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	background-color: #FFFFFF;
	border-radius: 10px;
	border-top: solid #d7043f 2px;
	border-right: solid #d7043f 2px;
	border-bottom: solid #d7043f 2px;
	border-left: solid #d7043f 2px;
	margin-left: 5px;
	margin-right: 5px;
	overflow: hidden;
}
.box_2_2{
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	background-color: #FFFFFF;
	border-radius: 10px;
	border-top: solid #d7043f 2px;
	border-right: solid #d7043f 2px;
	border-bottom: solid #d7043f 2px;
	border-left: solid #d7043f 2px;
	margin-left: 5px;
	margin-right: 5px;
	overflow: hidden;
}
.box_2_3{
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	background-color: #FFFFFF;
	border-radius: 10px;
	border-top: solid #d7043f 2px;
	border-right: solid #d7043f 2px;
	border-bottom: solid #d7043f 2px;
	border-left: solid #d7043f 2px;
	margin-left: 5px;
	margin-right: 5px;
	overflow: hidden;
}
.txt_2{
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 1.5em;
	padding-left: 2rem;
	color: #000000;
}
/*.box_3{
	display: flex;
	flex-wrap: wrap;
	justify-content: left;

}*/
/*.box_4{
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: calc(1.0vw + 1rem);
	text-align: left;
	padding-top: 50px;
	margin-left: 6%;
	margin-right: 1%;
	width: 40%;
}
.txt_6{
	text-align: left;
	color: #333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(0.2vw + 0.8rem);
	margin-left: 1%;
	margin-right: 1%;
	width: 45%;
	padding-top: 50px;
}
@media screen and (max-width: 600px) {
	.box_1 {
	margin-top:10px;
	}
	.box_2{
	display: flex;
    flex-direction: column;
    align-items: center;
    }
	.box_2_1{
	display: flex;
    flex-direction: column;
    align-items: center;
    }
	/*div.box_3{
	width: 100%;
	padding-bottom: 10px;
	display: flex;
	justify-content: center;
	}
	div.box_4{
	width: 100%;
	padding-left: .5em;
	padding-right: 2em;
	}
	.txt_6{
	text-align: left;
	color: #333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(0.2vw + 0.8rem);
    width: 100%;
	padding-top: 5px;
	padding-left: 2em;
	padding-right: 2em;
	}
}

/*はみ出しbox
@media (min-width:768px) {
  .box {
	display: flex;
	width: 100%;
	height: 100px;
	justify-content: space-evenly;
	margin-top: 10px;
	margin-bottom: 5vw;
  }
  .text_1 {
	width: 50%;
	height: auto;
	max-height: 500px;
	padding-top: 1rem;
	padding-left: 3rem;
	padding-right: 3rem;
	text-align: left;
  }
  .box-txt{
	width: 100%;
	height: auto;
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(0.3vw + 0.7rem);
	color: #000000;
	}
  .pict_1 {
	text-align: end;
    width: 100%;
	height: auto;
	max-height: 300px;
	margin: calc(50% - 50vw);
	z-index: 1
  }
  div.pict_1 img {
    max-width: 50vw;
    height:auto;
	border-radius: 500px;
	
	}
	.text2{
	width: 100%;
	margin-left: 50px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(0.3vw + 1.2rem);
	font-weight: bold;
    color: #505050;/*文字色
  padding: 0.5em;/*文字周りの余白
  display: inline-block;/*おまじない
  line-height: 1.3;/*行高
  background: #dbebf8;/*背景色
  vertical-align: middle;
  border-radius: 25px 0px 0px 25px;/*左側の角を丸く  
}
	.car-text1{
	width: 100%;
	height: auto;
	}
.car-text2{
	width: 100%;
	margin-left: 50px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(0.3vw + 1.2rem);
	font-weight: bold;
    color: #505050;/*文字色
  padding: 0.5em;/*文字周りの余白
  display: inline-block;/*おまじない
  line-height: 1.3;/*行高
  background: #dbebf8;/*背景色
  vertical-align: middle;
  border-radius: 25px 0px 0px 25px;/*左側の角を丸く
}
.machin-text2{
	width: 100%;
	margin-left: 50px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(0.3vw + 1.2rem);
	font-weight: bold;
    color: #505050;/*文字色
  padding: 0.5em;/*文字周りの余白
  display: inline-block;/*おまじない
  line-height: 1.3;/*行高
  background: #dbebf8;/*背景色
  vertical-align: middle;
  border-radius: 25px 0px 0px 25px;/*左側の角を丸く  
}
	.house-text2{
	width: 100%;
	margin-left: 50px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(0.3vw + 1.2rem);
	font-weight: bold;
    color: #505050;/*文字色
  padding: 0.5em;/*文字周りの余白
  display: inline-block;/*おまじない
  line-height: 1.3;/*行高
  background: #dbebf8;/*背景色
  vertical-align: middle;
  border-radius: 25px 0px 0px 25px;/*左側の角を丸く  
}
	.tech-text2{
	width: 100%;
	margin-left: 50px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(0.3vw + 1.2rem);
	font-weight: bold;
    color: #505050;/*文字色
  padding: 0.5em;/*文字周りの余白
  display: inline-block;/*おまじない
  line-height: 1.3;/*行高
  background: #dbebf8;/*背景色
  vertical-align: middle;
  border-radius: 25px 0px 0px 25px;/*左側の角を丸く 
}
.text2:before {
	content: "　";
	margin-right: 8px;
	background-image: url(image4/shipicon-img.png);
	background-repeat: no-repeat;
}
	.car-text2:before{
	content: "　";
	margin-right: 8px;
	background-image: url(image4/caricon-img.png);
	background-repeat: no-repeat;
	}
	.machin-text2:before{
	content: "　";
	margin-right: 8px;
	background-image: url(image4/machinicon-img.png);
	background-repeat: no-repeat;
	}
	.house-text2:before{
	content: "　";
	margin-right: 8px;
	background-image: url(image4/houseicon-img.png);
	background-repeat: no-repeat;
	}
	.tech-text2:before{
	content: "　";
	margin-right: 8px;
	background-image: url(image4/techicon-img.png);
	background-repeat: no-repeat;
	}	
	.text3 span{
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(0.3vw + 0.7rem);
	font-weight: bold;
	}
	.text3{
	width: 60%;
	height: auto;
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(0.3vw + 0.7rem);
	margin-left: 50px;
	padding-right: 40px;
	}
    .text3 strong:before {
	content: '●';
	margin-right: .5em;
	color: #000;
	}
	.machin-text3{
	width: 80%;
	height: auto;
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(0.3vw + 0.7rem);
	margin-left: 50px;
	padding-right: 40px;
	margin-bottom: 30px;
	}
	.machin-text3 span{
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(0.3vw + 0.7rem);
	font-weight: bold;	
	}
	.machin-text3 strong:before {
	content: '●';
	margin-right: .5em;
	color: #000;
	}
	.text4{
	width: 40%;
	height: auto;
	margin-left: 50px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(0.5vw + 0.6rem);
	padding-bottom: 3vw;
	}
	.text4 span{
	font-weight: bold;		
	}
	.ship-text2{
	display: flex;
	
	}
	.pict_2 {
	text-align: start;
    width: 100%;
	height: auto;
	max-height: 300px;
	margin: calc(50% - 50vw);
	padding-left: 5vw;
	padding-top:10vw; 
	}
	div.pict_2 img {
    max-width: 45vw;
    height:auto;
	}
}
.car-text1{
	width: 80%;
}
@media screen and (max-width: 768px) {
.box {
  width: 100%;
  height: auto;
  margin-bottom: 4vw;
  
}
.box_2{
	background-image: url(image4/ship2-img.jpg);
	background-size: cover;
	overflow: hidden; 
	}
.box_2_1{
	background-image: url(image4/car3-img.jpg);
	background-size: cover;
	overflow: hidden;
	}
.box_2_2{
	background-image: url(image4/house3-img.jpg);
	background-size: cover;
	overflow: hidden;
	}
.box_2_3{
	background-image: url(image4/tech3-img.jpg);
	background-size: cover;
	overflow: hidden;
	}
.text_1 {
  width: 100%;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(0.3vw + 0.7rem);
  padding-top:4vw;
  padding-left: 4vw;
  padding-right: 4vw;
  box-sizing: border-box;
}
	.text2{
	width: 100%;
	margin-left: 3vw;
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(0.3vw + 1.2rem);
	font-weight: bold;
	color: #505050;/*文字色
  padding-top: 0.5em;/*文字周りの余白
  padding-left:0.5em;
  padding-bottom: 0.5em;
  display: inline-block;/*おまじない
  line-height: 1.3;/*行高
  background: #dbebf8;/*背景色
  vertical-align: middle;
  border-radius: 25px 0px 0px 25px;/*左側の角を丸く
 
}
.car-text2{
	width: 100%;
	margin-left: 3vw;
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(0.3vw + 1.2rem);
	font-weight: bold;
	color: #505050;/*文字色
  padding-top: 0.5em;/*文字周りの余白
  padding-left:0.5em;
  padding-bottom: 0.5em;
  display: inline-block;/*おまじない
  line-height: 1.3;/*行高
  background: #dbebf8;/*背景色
  vertical-align: middle;
  border-radius: 25px 0px 0px 25px;/*左側の角を丸く
 
}
.machin-text2{
	width: 100%;
	margin-left: 3vw;
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(0.3vw + 1.2rem);
	font-weight: bold;
	color: #505050;/*文字色
  padding-top: 0.5em;/*文字周りの余白
  padding-left:0.5em;
  padding-bottom: 0.5em;
  display: inline-block;/*おまじない
  line-height: 1.3;/*行高
  background: #dbebf8;/*背景色
  vertical-align: middle;
  border-radius: 25px 0px 0px 25px;/*左側の角を丸く
 
}
	.house-text2{
	width: 100%;
	margin-left: 3vw;
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(0.3vw + 1.2rem);
	font-weight: bold;
	color: #505050;/*文字色
  padding-top: 0.5em;/*文字周りの余白
  padding-left:0.5em;
  padding-bottom: 0.5em;
  display: inline-block;/*おまじない
  line-height: 1.3;/*行高
  background: #dbebf8;/*背景色
  vertical-align: middle;
  border-radius: 25px 0px 0px 25px;/*左側の角を丸く
 
}	
.tech-text2{
	width: 100%;
	margin-left: 3vw;
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(0.3vw + 1.2rem);
	font-weight: bold;
	color: #505050;/*文字色
  padding-top: 0.5em;/*文字周りの余白
  padding-left:0.5em;
  padding-bottom: 0.5em;
  display: inline-block;/*おまじない
  line-height: 1.3;/*行高
  background: #dbebf8;/*背景色
  vertical-align: middle;
  border-radius: 25px 0px 0px 25px;/*左側の角を丸く
 
}	

.text2:before {
	content: "　";
	margin-right: 8px;
	background-image: url(image4/shipicon-img.png);
	background-repeat: no-repeat;
}
	.car-text2:before {
	content: "　";
	margin-right: 8px;
	background-image: url(image4/caricon-img.png);
	background-repeat: no-repeat;
}
	.machin-text2:before {
	content: "　";
	margin-right: 8px;
	background-image: url(image4/machinicon-img.png);
	background-repeat: no-repeat;
}
	.house-text2:before {
	content: "　";
	margin-right: 8px;
	background-image: url(image4/houseicon-img.png);
	background-repeat: no-repeat;
}
	.tech-text2:before {
	content: "　";
	margin-right: 8px;
	background-image: url(image4/techicon-img.png);
	background-repeat: no-repeat;
}
	.text3{
	font-family: "Noto Sans JP", sans-serif;
	font-size:  calc(0.3vw + 0.7rem);
	margin-left: 5vw;
	margin-right: 4vw;
	}
   .machin-text3{
	width: 90%;
	font-family: "Noto Sans JP", sans-serif;
	font-size:  calc(0.3vw + 0.7rem);
	margin-left: 5vw;
	}
	.text3 span{
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(0.3vw + 0.7rem);
	font-weight: bold;
	}
	.machin-text3 span{
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(0.3vw + 0.7rem);
	font-weight: bold;
	}
	.text3 strong:before {
	content: '●';
	margin-right: .5em;
	color: #000;	
}	
	.machin-text3 strong:before {
	content: '●';
	margin-right: .5em;
	color: #000;	
}
.car-text1{
	width: 100%;
	height: auto;
	}
	.text4{
	margin-left: 5vw;
	margin-right: 5vw;
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(0.5vw + 0.6rem);
	padding-bottom: 20px;
	overflow-wrap: break-word;
	}
	.text4 span{
	font-weight: bold;		
	}
.pict_1 img {
  display: none;
}
.pict_2 img {
  display: none;
}
}
/*kanae'future
.box_5_1 {
	position: relative;
    max-width: 1920px;
    width: 89%;
	height: 200px;
    border: solid #d7034f 8px;
    border-radius: 10px;
    margin-top: 100px;
    margin-right: auto;
    margin-left: auto;
	opacity: 0;
    visibility: hidden;
	transition: all 1s;
    transform: translateY(150px);
}
.is-active {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
}
.box_5_1 img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	
}
.txt_4_1{
	text-align: center;
	position: absolute;
	width: 100%;
	height: 60%;
	top: 20%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #333333;
	font-family: "Paytone One", sans-serif;
	font-size: 3vw;
}   
a.btn_04 {
	position:absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	white-space: nowrap;
	width: 10vw;
	height: 1.2vw;
	padding: 1rem 4rem;
	font-weight: bold;
	background: #d7034f;
	border: solid 2px #ffffff;
	color: #ffffff;
	border-radius: 100vh;
	transition: 0.5s;
	font-size: calc(0.2vw + 0.6rem);
	top:150%;
    left: 50%;
    transform: translate(-50%,-50%);
}
a.btn_04:hover {
	border: solid 2px #d7034f;
	color: #d7034f;
	background: #ffffff;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
	.box_5_1 {
	position: relative;
	width: 90%;
    height: 200px;
	}
	.box_5_1 img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}
	.txt_4_1{
	position:absolute;
	width: 50%;
	height: 40%;
	top:40%;
    left: 50%;
    transform: translate(-50%,-50%);
	padding-bottom:80px;
	}

	a.btn_04 {
	width: 30%;
	top:100%;
    left: 50%;
    transform: translate(-50%,-50%);
	}
}
@media screen and (max-width: 600px) {
	.box_5_1 {
	position: relative;
	width: 90%;
    height: 30vw;
	}
	.box_5_1 img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

	.txt_4_1{
	position:absolute;
	width: 100%;
	height: 40%;
	top:20%;
    left: 50%;
    transform: translate(-50%,-50%);
	
	}
	a.btn_04 {
	width: 15%;
	top:160%;
    left: 50%;
    transform: translate(-50%,-50%);
	}
}

/*menu
.product{
	position:relative;
	border: solid 2px #d7043f;
	max-width: 1500px;
	width: 90%;
	margin-top: 100px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 100px;
	background-color: #d7034f;
	padding-right: 5px;
	padding-left: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
	box-sizing: border-box;
	border-radius: 10px;
	background-size: 1.3em;
	font-size: medium;
	opacity: 0;
    visibility: hidden;
	transition: all 1s;
    transform: translateY(150px);
}
.is-active {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
}
.product-1{
	background-color: #d7034f;
	border: solid 2px #d7034f;
	border-radius: 10px;
}

.product-2 img {
	position:relative;
	width: 100%;
	height: auto;
	border-radius: 10px 10px 0px 0px;
}
.product-txt-2 {/*現場を支えるカナヱの製品
	font-family: "Noto Serif JP", serif;
	font-weight: bold;
	text-align: center;
	font-size: calc(0.8vw + 0.8rem);
	color: #FFFFFF;
	padding-bottom:10px;
	
}
.product-3 p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: calc(0.2vw + 0.8rem);
    display: flex;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
    color: #FFFFFF;
    margin-right: 4vw;
    margin-left: 4vw;
    box-sizing: border-box;
    padding-bottom: 30px;
}

@media (max-width: 600px) {
.sp{
	display: block;
}
	.product-2{
		max-width: 600px;
	}
	.product-2 img{
		width: 100%;
		height: 200px;
		object-fit: cover;
	}
}
a.btn_03 {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	white-space: nowrap;
	width: 10vw;
	height: 1.2vw;
	padding: 1rem 4rem;
	font-weight: bold;
	background: #d7034f;
	border: solid 2px #ffffff;
	color: #ffffff;
	border-radius: 100vh;
	transition: 0.5s;
	font-size: calc(0.2vw + 0.6rem);
	bottom:0%;
	left:50%;
	transform: translate(-50%,-50%);
}
a.btn_03:hover {
	border: solid 2px #d7034f;
	color: #d7034f;
	background: #ffffff;
}
a.btn_05 {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	white-space: nowrap;
	width: 10vw;
	height: 1.2vw;
	padding: 1rem 4rem;
	font-weight: bold;
	background: #d7034f;
	border: solid 2px #ffffff;
	color: #ffffff;
	border-radius: 100vh;
	transition: 0.5s;
	font-size: calc(0.2vw + 0.6rem);
	top:92%;
	left:50%;
	transform: translate(-50%,-50%);
}
a.btn_05:hover {
	border: solid 2px #d7034f;
	color: #d7034f;
	background: #ffffff;
}
@media screen and (max-width: 896px){
a.btn_03 {
	bottom:0%;
	left:50%;
	transform: translate(-50%,-50%);
}
a.btn_05 {
	top:88%;
	left:50%;
	transform: translate(-50%,-50%);
}
}
@media screen and (max-width: 767px){
a.btn_03 {
	bottom:0%;
	left:50%;
	transform: translate(-50%,-50%);
}
a.btn_05 {
	top:90%;
	left:50%;
	transform: translate(-50%,-50%);
}
}
/*内容*/
.box_1 {
    max-width: 1500px;
    width: 90%;
    border: solid #D7034f 2px;
    border-radius: 10px;
    margin-top: 80px;
    margin-right: auto;
    margin-left: auto;
    background-color: #D7034f;
    padding-bottom: 5px;
    box-sizing: border-box;
    margin-bottom: 100px;
	opacity: 0;
    visibility: hidden;
	transition: all 1s;
    transform: translateY(150px);
	overflow: hidden;
    }
.is-active {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
}
.company-txt1{
    width: 100%;
    color: #ffffff;
    font-family: "MS Serif", "New York", serif;
    font-weight: bold;
    font-size: calc(1.2vw + 1rem);
    display: block;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 10px;
    margin-left: 20px;
}

.company-txt2{
	width: 100%;
	color: #ffffff;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	font-size: calc(1.2vw + 1rem);
	display: block;
	text-align: left;
	margin-top: 20px;
	margin-bottom: 10px;
	margin-left: 20px;
}
.company-txt3{
	width: 100%;
	color: #ffffff;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	font-size: calc(1.2vw + 1rem);
	display: block;
	text-align: left;
	margin-top: 20px;
	margin-bottom: 10px;
	margin-left: 20px;
}
.company-txt4{
	width: 100%;
	color: #ffffff;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	font-size: calc(1.2vw + 1rem);
	display: block;
	text-align: left;
	margin-top: 20px;
	margin-bottom: 10px;
	margin-left: 20px;
}



.box_2{
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	background-color: #FFFFFF;
	border-radius: 10px;
	border: solid #D7034f 2px;
	margin-left: 5px;
	margin-right: 5px;
	overflow: hidden;
}
 .flex-parent {
  width:100%;
  display:flex;
  flex-wrap:wrap; /*折り返し*/
  justify-content:space-between;/*両端揃え*/
}
.flex-child {
  width:32%;
  display:flex;
  flex-direction:column;
  border:1px solid #ccc;
  box-sizing:border-box;
  border-radius:0px 0px 10px 10px;
}
.flex-grandchild-img {
  width:100%;
  height:auto;
  position:relative;
}
.flex-grandchild-img::after {
  display:block;
  content:'';
  width:100%;
  height:0;
  padding-top:64%;
}
.flex-grandchild-img img {
  display:block;
  width:100%;
  height:100%;
  position:absolute;
  top:0;left:0;
}
.flex-grandchild-inner {
  display:flex;
  flex-direction:column;
  flex-grow:1;
  width:100%;
}
.flex-grandchild-inner p {
	display: flex;
	align-items: center;
	min-height: 56px;
	color: #000;
	line-height: 1.6;
	padding: 5px 0;
	margin: 0 30px 0 30px;
	box-sizing: border-box;
	border-bottom: 1px solid #ccc;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
	font-size: calc(0.4vw + 0.6rem);
	font-weight: bold;
}

.flex-grandchild-innerText {
    flex-grow: 1;
    padding: 50px 50px;
    margin-left: 20px;
    margin-right: 20px;
    box-sizing: border-box;
    color: #000000;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
    font-size: calc(0.4vw + 0.6rem);
    line-height: 2em;
}
.flex-grandchild-innerText span{
    flex-grow: 1;
    padding: 5px 10px;
    box-sizing: border-box;
    color: #000000;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
    font-size: calc(0.4vw + 0.6rem);
    font-weight: bold;
}
.flex-grandchild-innerLink {
  width:100%;
  height:auto;
}
.flex-grandchild-innerLink a {
  max-width:70%;
  height:48px;
  margin:10px auto 20px auto;
  display:flex;
  justify-content:center;
  align-items:center;
  color:#fff;
  font-weight:bold;
  font-size: calc(0.5vw + 0.5rem);
  text-decoration:none;
  background:#D7034f;
  border-radius:8px;
  text-align: center;
}

@media screen and (min-width: 786px){
  .flex-child {
    width:100%;
    display:flex;
    flex-direction:row;
    border:1px solid #ccc;
    box-sizing:border-box;
    border-radius:10px;

  }
  .flex-child:nth-of-type(n+2) {
    margin-top:40px;
  }
  .flex-grandchild-img img {
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    position:absolute;
    top:0;left:0;
    border-radius:10px 0 0 10px;/*角丸変更*/
  }
  .flex-grandchild-inner p {
    padding: 10px 0;
    font-size: calc(0.4vw + 0.8rem);
    font-weight: bold;
  }
  .flex-grandchild-innerText {
    min-height: 120px;
    font-size: calc(0.4vw + 0.6rem);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-align: left;
  }
	.flex-grandchild-innerLink a {
	padding-left:30px;
	padding-right:30px;
	}
}
@media screen and (max-width: 786px) {
  .flex-parent {
    width:100%;
    margin:0 auto;
  }
  .flex-child {
	width:100%;
    flex-direction:column-reverse;
  }
  .flex-grandchild-img img {
    border-radius:0px 0px 10px 10px;/*角丸変更*/
	object-fit: cover;
  }
	.flex-grandchild-inner p {
	font-size: calc(0.4vw + 0.6rem);
  }
	.flex-grandchild-innerText {
	font-size: calc(0.4vw + 0.6rem);
	padding:2%;
	}
}
@media screen and (max-width: 480px) {
  .flex-parent {
    width:100%;/*全体の幅を90%に*/
  }
	.flex-grandchild-innerText {
	font-size: calc(0.4vw + 0.6rem);
	margin:2px;
	}
	.flex-grandchild-innerLink a {
	padding-left:30px;
	padding-right:30px;
	}
}
/*フッターサイトマップ*/	
#footer {
　height: 10%;
  position: relative;
  margin-top: 40px;
  color: #333;
}
#footer a {
  text-decoration: none;
  color: #333;
}
#footer a:hover {
  text-decoration: underline;
}
#footer .primary {
  padding: 40px 20px 20px;
}
#footer .primary .flex {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
}
#footer .primary .flex .left{
  width: 100%;
}
#footer .primary .flex .left .logo{
	width: 100%;
    font-size: 1.4em;  
}
#footer .primary .flex .left .address{
    font-size: calc(0.2vw + 0.8rem);	
}
#footer .primary .flex .right{
  display: flex;
  width: 100%;
  justify-content: start;
}
@media screen and (max-width: 896px) {
#footer .primary .flex .left{
  width: 450px;
}
#footer .primary .flex .left .logo{
    font-size: 18px;  
}
#footer .primary .flex .left .address{
    font-size: 12px;	
}
#footer .primary .flex .right{
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  font-size: 12px;
}
}
@media screen and (max-width: 767px) {
  #footer .primary {
    padding: 20px 20px;
  }
  #footer .primary .flex {
    display: block;
  }
  #footer .primary .flex .left{
    width: 100%;
  }
  #footer .primary .flex .right{
    width: 100%;
    display: block;
  }
}
/* logo */

#footer .logo {
  position: relative;
  padding: 0;
  margin: 0;
  width: 100%;
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #footer .logo {
    font-size: 16px;
  }
}

/* address */

.address {
  margin: 10px 0 0;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .address {
    font-size: 12px;
  }
}

/* navi */

.navi-section {
  display: flex;
  flex-direction: column;
  width: 25%;
  margin-left: 20px;
  font-size:calc(0.5vw + 0.5rem);
}
#footer .parent {
  margin: 0 0 16px 0;
  padding: 0;
  font-weight: bold;
}
#footer .navi {
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer .navi li {
  margin: 8px 0 0 0;
  padding: 0;
}
#footer .navi li:first-child {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .navi-section {
  display: block;
  width: 100%;
  margin: 40px 0 0;
}
#footer .parent {
  font-size: 12px;
  margin: 0 0 10px;
}
  #footer .navi {
    font-size: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #000000;
  }
  #footer .navi li {
    border-top: 1px solid #000000;
    padding-top: 10px;
    margin-top: 10px;
    font-size: 12px;
  }
}

/* sns-navi */

#footer .sns-navi {
  margin: 20px 0 0;
  padding: 0;
}
#footer .sns-navi li {
  display: inline-block;
  margin: 0 20px 0 0;
  padding: 0;
  font-size: 20px;
}
#footer .sns-navi li:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  #footer .sns-navi {
    margin: 20px 0 0;
    padding: 0;
  }
  #footer .sns-navi li {
    margin: 0 20px 0 0;
    padding: 0;
    font-size: 18px;
  }
}

/* sitenavi */

#footer .sitenavi {
  width: 50%;
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer .sitenavi li {
  display: inline-block;
  margin: 0 0 0 20px;
  padding: 0;
}
#footer .sitenavi li:first-child {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  #footer .sitenavi {
    width: 100%;
    text-align: center;
    font-size: 12px;
  }
}

body {
    font-family: Lato, sans-serif;
    background-repeat: no-repeat;
}

footer {
	width: 100%;
	bottom: 0px;
	background-color: #FAF7D4;
}
footer div {
  margin: -5px 0px 0px 0px;
  padding:0px;
  color: #333;
  text-align:center;
}
svg {
    width: 100%;
    background-color: #FAF7D4;
}



.wave {
  animation: wave 3s linear;
  animation-iteration-count:infinite;
  fill: #f9c202;
}
.drop {
  fill: transparent;
  animation: drop 5s ease infinite normal;
  stroke: #f9c202;
  stroke-width:0.5;
  opacity:.6; 
  transform: translateY(80%);
}
.drop1 {
  transform-origin: 20px 3px;
}
.drop2 {
  animation-delay: 3s;
  animation-duration:3s;
  transform-origin: 25px 3px;
}
.drop3 {
  animation-delay: -2s;
  animation-duration:3.4s;
  transform-origin: 16px 3px;
}
.gooeff {
    filter: url(#goo);
}
#wave2 {
  animation-duration:5s;
  animation-direction: reverse;
  opacity: .6
}
#wave3 {
  animation-duration: 7s;
  opacity:.3;
}
@keyframes drop {
  0% {
    transform: translateY(80%); 
    opacity:.6; 
  }
  80% {
    transform: translateY(80%); 
    opacity:.6; 
  }
  90% { 
    transform: translateY(10%) ; 
    opacity:.6; 
  }
  100% { 
    transform: translateY(0%) scale(1.5);  
    stroke-width:0.2;
    opacity:0; 
  }
}
@keyframes wave {
  to {transform: translateX(-100%);}
}
@keyframes ball {
  to {transform: translateY(20%);}
}
.copyright{
	color: #333333;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
	font-size: calc(0.5vw + 0.5rem);
	text-align: center;
	background-color: #FAF7D4
}
