@charset "utf-8";
/* CSS Document */

* {
    margin: 0px;
    padding: 0px;
}
.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700
}
.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

body {
	width: 100%;
	max-width: 1280.px;
	background-color: #ACACAC
}

.navi{
	width: 90%;
	max-width: 1120px;
	background-color: #483d8b;
	height:60px;
	margin: 0 auto;
}

.flex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}

nav a {
        text-decoration: none;
	    color:#FFFFFF;
		transition-duration: .2s;
    }

.header_menu li{
	margin-left: 40px;
	margin-right: 40px;
	list-style: none;
    display: inline-block;
}


.header_menu li a:hover {
	text-decoration: none;
	color: yellow;
	border-bottom: 2px solid #FF7A37; /* 下線の太さや色を指定します */
}

.rogo{
	height:60px;
	margin-left: 40px;
	margin-top:0px;
	margin-bottom: 0px;
}

.section1 {
	width: 90%;
	max-width: 1120px;
	margin: 0 auto;
	background-image: url("../img/subbg.jpg");
	background-position: center bottom;
	background-size: cover;
	height: 650px;
}


.title img {
	margin-top: 30px;
	margin-left: 40px;
	margin-right: 40px;
}

.container{
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
}



.col1 {
	font-size: 22px;
	color: #FFFFFF;
	margin-left: 100px;
	width:35%;
}

.col2 img {
	width:90%;
	}

/* SP向け */
@media (max-width: 950px) {
.col1 {
	font-size: 20px;
}
.col2 img {
	width:80%;
	margin-left: 15px;
	margin-top: 20px;
}
}

@media (max-width: 890px) {
.col1 {
	font-size: 18px;
}
}
@media (max-width: 850px) {
.col1 {
	font-size: 16px;
}
}
@media (max-width: 786px) {
.container{
	display: contents;
	justify-content: center;
	text-align: center;
	margin: 0 auto;
}
.col1 {
	text-align: left;	
}
.col2 img {
	width:70%;
}
.title img {
	margin-left: 10px;
	margin-bottom: 30px;
	width: 250px;
}
.header_menu li{
	margin-left: 0px;
	margin-right: 10px;
	list-style: none;
}
}
@media (max-width: 600px) {

.col1 {
	white-space: nowrap;
}
}

@media (max-width: 480px) {

.rogo{
	height:30px;
	margin-left: 0px;
}
.section1 {
	width: 90%;
	margin: 0 auto;
	background-image: url("../img/subbg.jpg");
	background-position: center bottom;
	background-size: cover;
	min-height: 500px;
}

.col2 img {
	width:90%;
}
}


.footer {
	width: 90%;
	max-width: 1120px;
	background-color: #483d8b;
	height:50px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer P {
	color:#FFFFFF;
	font-size: 15px;
	text-align: center;
}