@charset "UTF-8";

a:hover {
	text-decoration: none;
}

body {
	background-image: url(images/bg2.jpg);
	font-family:sans-serif;
}

header {
	background-image: url("./images/bg1.png");
	width: 100%;
}

header>h1 img {
	height: 4vw;
	max-height: 25px;
	padding: clamp(10px, 2vw, 20px);
}

header+nav ul {
	margin-top: 10px;
	width: 76%;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

header+nav ul {
	text-align: center;
}

header+nav ul li {
	display: inline-block;
}

header+nav ul li a {
	display: inline-block;
	background: white;
	font-size: clamp(16px, 2vw, 25px);
	line-height: clamp(16px, 2vw, 25px);
	color: black;
	text-decoration: none;
	border: slategray solid thin;
	border-radius: 25px;
	padding: clamp(2px, 2vw, 10px) clamp(6px, 2vw, 20px);
}
#area_img_main{
	position: relative;
}
#area_img_main #img_main {
	width: 100%;
	height: auto;
}
#area_img_main p{
	font-family: serif;
	font-weight: 600;
	font-size: clamp(16px,2vw,50px);
	line-height:  clamp(20px,2vw,1em);
	position: absolute;
	top:clamp(10px,4vw,60px);
	left:clamp(30px,4vw,60px);
	text-indent: -1em;

}
section {
	text-align: center;
}

h2 {
	text-align: center;
	font-size: clamp(18px, 2vw, 26px);
	line-height: clamp(24px, 2vw, 40px);
	font-weight: bold;
	display: inline-block;
	max-width: 800px;
	margin: auto;
	margin-top: clamp(20px, 4vw, 40px);
	padding-top: clamp(1px,0.1vw,14px);
	background: url(./images/bg1.png);
	width: 38vw;
	height: 38vw;
	max-width: 200px;
	max-height: 200px;
	border-radius: 6px;
}
h2>img{
	display: block;
	margin: auto;
	width: 26vw;
	height: 26vw;
	max-width: 126px;
	max-height: 126px;
}
h2>small{
	display: block;
	font-size: clamp(10px, 1vw, 14px);
	line-height: clamp(10px, 1vw, 24px);
}
h2+div{
	text-align: left;
	background: white;
	margin: 10px;
	margin-top: -20px;
	padding-top: clamp(30px,3vw,40px);
	padding-bottom: clamp(20px,3vw,40px);
	padding-left: clamp(20px,3vw,40px);
	padding-right: clamp(20px,3vw,40px);
	border-radius: 10px;
	border: solid thin gainsboro;
	
    font-size: clamp(16px, 2vw, 20px);
    line-height: clamp(24px, 2vw, 34px);
  }
section p{
	font-size: clamp(16px,2vw,22px);
	line-height: clamp(26px,2vw,34px);
	font-family: serif;
	font-weight: 400;
}
h3 {
	text-align: center;
	font-size: clamp(18px, 2vw, 24px);
	line-height: clamp(17px, 2vw, 24px);
	font-weight: bold;
	margin-top: clamp(20px, 2vw, 40px);
}

.area_btn {
	text-align: center;
}

footer {
	font-size: clamp(12px, 2vw, 14px);
	text-align: clamp(18px, 2vw, 20px);
	text-align: center;
	padding-top: clamp(40px, 2vw, 80px);
	padding-bottom: clamp(40px, 2vw, 80px);
	background: white;
	border-top: solid thin gainsboro;
}

.loader {
	width: 48px;
	height: 48px;
	border: 5px solid gray;
	border-bottom-color: transparent;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}
@font-face {
	font-family: 'Material Symbols Outlined';
	font-style: normal;
	font-display: swap;
	font-weight: 100 700;
	src: url(./font/material-symbols-outlined.woff2) format('woff2');
  }

  .material-symbols-outlined {
	font-family: 'Material Symbols Outlined';
	font-weight: normal;
	font-style: normal;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-smoothing: antialiased;
  }