@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;
}


@media (max-width: 480px) {
.header_menu li{
	margin-left: 0px;
	margin-right: 10px;
	list-style: none;
}
}

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

@media (max-width: 480px) {
.rogo{
	height:30px;
	margin-left: 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;
}

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

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

@media (max-width: 480px) {
.title img {
	margin-left: 10px;
	width: 250px;
}
}

.container{
	margin-top: 30px;
	font-size: 14px;
	color: #ffffff;
	text-align: center;
}

.container ul {
	list-style: none;
}

.box {
	overflow: hidden;
	width: 300px;
	height: 212px;
	margin: 1rem;
	margin: 0 auto;
}

.box img {
	width: 100%;
	margin-bottom: 10px;
	border-radius: 12px;
	box-shadow: 0px 4px 8px rgba(3, 3, 3, 0.3);
	object-fit: cover;
	transition-duration: 0.5s;
}

.box img:hover {
	transform: scale(1.1);
	opacity: 0.5;
}

.list {
	width: 260px;
	margin: 0 auto;
	background: rgba(72,61,139,0.6);
	padding: 5px 10px 5px;
}
.list li {
	text-align: left;
}
.list a {
	color: #ffffff;
}
.button {
	text-decoration: none;
	font-size: 13px;
	padding: 7px 10px;
	color: #ffffff;
	border: solid 2px #5f9ea0;
	background-color: #4682b4;
	border-radius:20px;
	display: inline-block;
	margin-top: 20px;
	margin-bottom: 10px;
}

@media screen and (max-width:778px) {
.container img {
	width: 90%;
}
.header_menu li{
	margin-left: 0px;
	margin-right: 10px;
}
.rogo{
	height:30px;
	margin-left: 0px;
}
.flex{
	flex-wrap: wrap;
	align-items: center;
}
}

.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;
}

