@charset "utf-8";
/* CSS Document */
body#toppage {
  background-image: url("../img/indexTop_bg.jpg");
  background-repeat: no-repeat;
}
@media (min-width: 1025px) {}
@media (max-width: 1024px) {}
@media (min-width: 600px) {
  body#toppage {
    background-position: center top;
  }
}
@media (max-width: 599px) {
  body#toppage {
    background-size: 1000px auto;
    background-position: left top;
  }
}
#gNavi {
  background-color: rgba(24, 76, 151, 0.3);
}
#gNavi ul > li {
  border-right-width: 2px;
  border-right-style: solid;
  border-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 1) 35.1%, rgba(255, 255, 255, 1) 65.1%, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0) 100%);
  border-image-slice: 1;
}
#gNavi ul > li a {
  color: #FFF;
}

.mainImage {
  background-image: url("../img/pharaoh.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  position: relative;
	margin-bottom: 150px;
}
.mainLead {
  position: absolute;
  top: 0px;
  left: 0px;
  background: linear-gradient(to bottom, rgba(22, 151, 209, 0), rgba(22, 151, 209, 0.8));
  padding: 30px;
  margin: 30px 0;
}
.mainLead .img {
  margin-bottom: 30px;
}
.mainLead .text {
  color: #FFF;
  text-align: left;
}
.anime {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
}
.anime ul {
  position: relative;
}
.anime ul li {
  position: absolute;
}
@media (min-width: 1025px) {
.anime ul li.ball01 {
  top: 50px;
  left: -140px;
}
.anime ul li.ball02 {
  top: 200px;
  left: 450px;
}
.anime ul li.ball03 {
  top: 20px;
  right: 450px;
}
.anime ul li.ball04 {
  top: 450px;
  right: 320px;
}
.anime ul li.ball05 {
  top: 230px;
  right: -150px;
}

}
@media (max-width: 1024px) {
  .anime ul li.ball01 {
    top: 50px;
    left: -40px;
  }
  .anime ul li.ball02 {
    top: 200px;
    left: 45%;
  }
  .anime ul li.ball03 {
    top: 20px;
    right: 250px;
  }
  .anime ul li.ball04 {
    top: 450px;
    left: 80px;
  }
  .anime ul li.ball05 {
    top: 400px;
    right: 220px;
  }
}
@media (min-width: 600px) {
  .mainImage {
    height: 650px;
  }
  .mainLead {
    background: linear-gradient(to bottom, rgba(22, 151, 209, 0), rgba(22, 151, 209, 0.3));
    width: 400px;
  }
}
@media (max-width:599px) {
  .mainImage {
    background-size: auto 300px;
    background-position: right -30px bottom;
    height: 450px;
    overflow: hidden;
		margin-bottom: 20px;
  }
  .mainLead {
    width: 60%;
    margin: 15px;
    padding: 15px;
  }
  .mainLead .img img {
    width: 75%;
  }
  .anime ul li img {
    width: 50%;
  }
  .anime ul li.ball01 {
    top: 50px;
    left: -50px;
  }
  .anime ul li img {
    width: 60%;
  }
  .anime ul li.ball02 {
    top: 250px;
    left: 60%;
  }
  .anime ul li.ball03 {
    top: 5px;
    right: 40px;
  }
  .anime ul li.ball03 img {
    width: 40%;
  }
  .anime ul li.ball04 {
    top: 300px;
    left: 20px;
  }
  .anime ul li.ball04 img {
    width: 70%;
  }
  .anime ul li.ball05 {
    top: 35px;
    right: -30px;
  }
  .anime ul li.ball05 img {
    width: 60%;
  }
}
.anime ul li.ball01 {
  animation: main_anim_sc 8.5s ease-in-out infinite alternate;
}
.anime ul li.ball01 img {
  animation: main_anim_s 10.5s ease-in-out infinite alternate;
}
.anime ul li.ball02 {
  animation: main_anim_s 10.5s ease-in-out infinite alternate;
}
.anime ul li.ball02 img {
  animation: main_anim_y 2.5s ease-in-out infinite alternate;
}
.anime ul li.ball03 {
  animation: main_anim_xy 10s ease-in-out infinite alternate;
}
.anime ul li.ball03 img {
  animation: main_anim_sc 8.5s ease-in-out infinite alternate;
}
.anime ul li.ball04 {
  animation: main_anim_x 8.5s ease-in-out infinite alternate;
}
.anime ul li.ball04 img {
  animation: main_anim_sc 3s ease-in-out infinite alternate;
}
.anime ul li.ball05 {
  animation: main_anim_xy 8.5s ease infinite alternate;
}
.anime ul li.ball05 img {
  animation: main_anim_s 10.5s ease-in-out infinite alternate;
}
/*画像が縮小拡大*/
@keyframes main_anim_sc {
  0% {
    transform: scale(0.85, 0.85);
  }
  100% {
    transform: scale(1, 1);
  }
}
/*左右に回転ゆらゆら*/
@keyframes main_anim_s {
  50% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(15deg);
  }
}
@keyframes main_anim_y {
  0% {
    transform: translateY(0)
  }
  100% {
    transform: translateY(15px)
  }
}
@keyframes main_anim_x {
  0% {
    transform: translate(0, 0)
  }
  100% {
    transform: translate(10px, 10px)
  }
}
@keyframes main_anim_xy {
  0% {
    transform: translate(0, 0)
  }
  100% {
    transform: translate(50px, 30px)
  }
}

.topSec01 {
	overflow: hidden;
	background-image: url("../img/sec01_bg.png");
	background-repeat: no-repeat;
	background-position: left 20% bottom;
}
.topSec01 .sec01_image {
	background-image: url("../img/sec01_image_bg.jpg");
	background-repeat: no-repeat;
	background-position: left 80px top 80px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}
.topSec01 .sec01_image h3 {
	align-self: flex-start;
	margin-bottom: 180px;
}
.topSec01 .sec01_image .muryou {
	text-align: left;
}
.topSec01 .sec01_image .muryou ul {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
}
.topSec01 .sec01_image .muryou ul li {
	margin: 0 8px;
}
.topSec01 .sec01_image .muryou .text h4 {
	color: #E33F5D;
	font-weight: 700;
}
@media (min-width: 1025px) {
.topSec01 {
	min-width: 1200px;
	height: 1000px;
}
.topSec01 .sec01_image {
	height: 1000px;
}
.topSec01 .sec01_lead{
	left: 20%;
}
}
@media (max-width: 1024px) {
.topSec01 {
}
.topSec01 .sec01_image {
}
.topSec01 .sec01_image h3 {
	width: 300px;
	margin-bottom: 100px;
}
.topSec01 .sec01_image .muryou{
	width: 450px;
	margin: 0 auto;
}
}
@media (min-width: 600px) and (max-width: 1024px)  {
.topSec01 {
	height: 800px;
	background-size: auto 400px;
}
.topSec01 .sec01_lead {
  background-position: right bottom 15px;
	background-size: 60%;
}
.topSec01 .sec01_image {
	background-size: auto 50%;
}
}
@media (min-width: 600px) {
.topSec01 {
	position: relative;
}
.topSec01 .sec01_image {
	height: 800px;
	position: absolute;
	top: 0;
	left: 0;
	margin-left: 35%;
	width: 65%;
}
.topSec01 .sec01_lead{
	position: absolute;
	top: 0;
	left: 0;
	width: 35%;
	height: 800px;
  background-image: url("../img/pharaoh.png");
  background-repeat: no-repeat;
  background-position: right bottom;
}
.topSec01 .sec01_lead svg#sec01_lead_img {
	width: 50px;
}
}
@media (max-width: 599px) {
.topSec01 {
	background-position: right -15px top 50px;
	background-size: 100% auto;
	margin-bottom: 30px;
}
.topSec01 .sec01_image {
	margin-left: 15px;
	background-size: auto 50%;
	background-position: left 15px top 80px;
}
.topSec01 .sec01_image h3 {
	width: 50%;
	margin-bottom: 50px;
}
.topSec01 .sec01_image .muryou{
	width: 80%;
	margin: 0 auto;
}
.topSec01 .sec01_image .muryou ul {
	margin-bottom: 15px;
}
.topSec01 .sec01_image .muryou ul li {
	margin: 0 2px;
}
.topSec01 .sec01_lead{
	margin-bottom: 30px;
}
.topSec01 .sec01_lead svg#sec01_lead_img {
	width: 25px;
}
}

.topSec01 .sec01_lead.fadeUp svg#sec01_lead_img #text path {
 /*
	animation-name: sec01_anim_fade;
  animation-duration: 2s;
	animation-fill-mode: forwards;
  opacity:0;
	*/
	animation: main_anim_sc 1.5s ease-in-out infinite alternate;
}
.topSec01 .sec01_lead.fadeUp svg#sec01_lead_img #text path#txt2 {
	animation-delay: 1s;
}
.topSec01 .sec01_lead.fadeUp svg#sec01_lead_img #text path#txt3 {
	animation-delay: 2s;
}
.topSec01 .sec01_lead.fadeUp svg#sec01_lead_img #text path#txt4 {
	animation-delay: 3s;
}
.topSec01 .sec01_lead.fadeUp svg#sec01_lead_img #text path#txt5 {
	animation-delay: 4s;
}
.topSec01 .sec01_lead.fadeUp svg#sec01_lead_img #text path#txt6 {
	animation-delay: 5s;
}
.topSec01 .sec01_lead.fadeUp svg#sec01_lead_img #text path#txt7 {
	animation-delay: 6s;
}
@keyframes sec01_anim_fade {
  0% {
		opacity: 0;
  }
  80% {
		opacity: 1;
  }
  100% {
		opacity: 1;
  }
}


.topSec02 {
	overflow: hidden;
	background-image: url("../img/topSec02_bg.jpg");
	background-repeat: no-repeat;
	background-position: left 80px top 150px;
	background-size: auto 100%;
}
.topSec02 .sec02_image {
	background-image: url("../img/sec02_image_bg.jpg");
	background-repeat: no-repeat;
	background-position: right 80px top 80px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}
.topSec02 .sec02_image h3 {
	align-self: flex-end;
}
.topSec02 .sec02_image .sec02_item ul {
	display: flex;
	justify-content: center;
}
.topSec02 .sec02_lead {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	text-align: left;
}
.topSec02 .sec02_lead .sec02_lead_heading {
	margin-bottom: 15px;
}
.topSec02 .sec02_lead .sec02_lead_heading h2 {
	color: #00A5B7;
	font-weight: 500;
}
.topSec02 .sec02_lead .textBox {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.topSec02 .sec02_lead .textBox .text {
	font-size: 16px;
	flex-basis: 60%;
}
.topSec02 .sec02_lead .textBox .seel {
	flex-basis: 30%;
}
.topSec02 .zaikaku {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
@media (min-width: 1025px) {
.topSec02 {
	min-width: 1200px;
	height: 1200px;
}
.topSec02 .sec02_image {
	height: 800px;
}
.topSec02 .sec02_image h3 {
	margin-bottom: 180px;
}
.topSec02 .sec02_lead{
	height: 800px;
}
.topSec02 .sec02_lead .sec02_lead_heading,
.topSec02 .sec02_lead .textBox {
	width: 380px;
	margin-right: auto;
}
.topSec02 .zaikaku {
	height: 380px;
}
}
@media (min-width: 600px) and (max-width: 1024px) {
.topSec02 {
	height: 1000px;
}
.topSec02 .sec02_image {
	height: 800px;
	background-size: auto 400px;
}
.topSec02 .sec02_image h3 {
	width: 300px;
	margin-bottom: 100px;
}
.topSec02 .sec02_image .sec02_item {
	width: 450px;
	margin: 0 auto;
}
.topSec02 .sec02_image .sec02_item ul li {
	padding: 4px;
}
.topSec02 .sec02_lead{
	height: 700px;
}
.topSec02 .sec02_lead .sec02_lead_heading h2 {
	font-size: 22px;
}
.topSec02 .sec02_lead .sec02_lead_heading p {
	font-size: 18px;
}
.topSec02 .sec02_lead .textBox .text {
	font-size: 14px;
}
.topSec02 .zaikaku {
	height: 250px;
}
.topSec02 .zaikaku > div {
	width: 50%;
}
}
@media (min-width: 600px) {
.topSec02 {
	position: relative;
}
.topSec02 .sec02_image {
	position: absolute;
	top: 0;
	right: 0;
	margin-right: 35%;
	width: 65%;
}
.topSec02 .sec02_lead{
	position: absolute;
	top: 0;
	right: 0;
	width: 36%;
}
.topSec02 .sec02_image .sec02_item ul li {
	padding: 4px;
}
.topSec02 .zaikaku {
	position: absolute;
	left: 0;
	bottom: 15px;;
	width: 100%;
}
.topSec02 .zaikaku > div {
	margin: 8px;
}
}
@media (max-width: 599px) {
.topSec02 {
	background-position: left 15px top 150px;
}
.topSec02 .sec02_image {
	background-size: 100% auto;
	background-position: right 30px top 30px;
	margin-right: 15px;
}
.topSec02 .sec02_image h3 {
	width: 50%;
	margin-bottom: 10px;
}
.topSec02 .sec02_image .sec02_item {
	width: 80%;
	margin: 0 auto;
}
.topSec02 .sec02_image .sec02_item ul li {
	padding: 1px;
}
.topSec02 .sec02_lead .sec02_lead_heading p {
	font-size: 16px;
}
.topSec02 .sec02_lead{
	width: 80%;
	margin: 15px auto;
}
.topSec02 .sec02_lead .textBox .text {
	font-size: 12px;
}
.topSec02 .zaikaku {
	width: 80%;
	margin: auto;
	height: 200px;
}
.topSec02 .zaikaku > div {
	margin: 4px;
}
}


.top_sdgs > div {
	padding: 50px 0;
}
@media (min-width: 600px) and (max-width: 1024px) {
.top_sdgs > div {
	padding: 50px 15px;
}
}
@media (max-width: 599px) {
.top_sdgs > div {
	padding: 30px 15px;
}
}

.topUsedcar > div {
  padding: 50px 0;
}
.topUsedcar h2.head_border {
  display: flex;
  align-items: center;
  color: #10B7AA;
  margin-bottom: 0.5em;
	font-size: 32px;
}
.topUsedcar h2.head_border:before, .topUsedcar h2.head_border:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #10B7AA;
}
.topUsedcar h2.head_border:before {
  margin-right: 1rem;
}
.topUsedcar h2.head_border:after {
  margin-left: 1rem;
}
.topUsedcar ul.list {
	display: flex;
	justify-content: center;
}
@media (min-width: 600px) and (max-width: 1024px) {
.topUsedcar > div {
	padding: 50px 15px;
}
	
}
@media (max-width: 599px) {
.topUsedcar > div {
	padding: 30px 15px;
}
.topUsedcar h2.head_border {
	font-size: 16px;
}
.topUsedcar ul.list {
	padding: 15px;
}
.topUsedcar ul.list li {
	flex-basis: 50%;
	padding: 8px;
	box-sizing: border-box;
}
.topUsedcar ul.list .text h3 {
	line-height: 1.2;
	text-align: left;
}
}
@media (min-width: 600px) {
.topUsedcar ul.list {
	width: 650px;
	margin: 15px auto 30px;
}
.topUsedcar ul.list li {
	flex-basis: 300px;
	padding: 8px;
}
}


