@charset "UTF-8";
/*---------------------------reset*/
* {
  padding: 0;
  position: 0;
}
html {
  height: 100%;
  font-size: 62.5%;
}
/* 基礎設定 */
body {
  font-family: "Sawarabi Gothic", sans-serif;
  font-size: 1.6rem;
  color: #444444;
  height: 100%;
  margin: 0;
  padding: 0;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

/*----------------------ローディングアニメーション*/
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* アニメーション本体 */
#loader {
    width: 300px;
    height: 300px;
}

/* 読み込み完了後にローディング画面を非表示にする */
.loaded #loader-wrapper {
    display: none;
}
/*--------------------------- header*/
header {
	top: 0;          
    left: 0; 
    display: flex;
    justify-content: space-between; 
    align-items: center;
    background-color: #fff;
	position: fixed;   
    width: 100%; 
	height:70px;
	padding: 0px auto;
    z-index: 100;  
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

header h1 img {
  width: 40px;
  height: auto;
	margin: 10px;
}

nav {
    display: flex; 
    align-items: center;
    gap: 30px; 
}

.BoxPage {
    display: flex; 
    gap: 30px; 
    justify-content: space-between;
	
}

.BoxPage li a {
    padding: 0 10px;
    color: #4a914d;
    font-weight: bold;
    font-size: 2rem;
	padding-right: 15px;
 	border-right: 1px solid #4a914d;
}
.BoxPage li a:hover {
    color: #517fd3;
}

/* ----- アイコンスタイル ----- */
.BoxIcon {
  display: flex;
	margin-right: 20px;
}
.BoxIcon li img {
  width: 40px;
  height: auto;
	margin: 10px;
}

/*--------------------------- main*/
main {
	background-color: #F4F4F4;	
	background-size: cover;
	padding-bottom: 30px;
}

/* パンくずリスト */
.BreadCrumb {
    margin-top: 60px; 
	margin-bottom: 30px;
    padding: 20px; 
    background-color: #F4F4F4; 
    border-bottom: 1px solid #ddd; 
    font-size: 1.4rem; 
}

/* リストリセット */
.BreadCrumb ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; 
}

/* リスト */
.BreadCrumb li {
    display: flex; 
}

/* リンク */
.BreadCrumb li a {
    text-decoration: none;
    color: #4a914d; 
    white-space: nowrap;
}

/* ホバー */
.BreadCrumb li a:hover {
    text-decoration: underline; 
    color: #2e3eb2;
}

/* 矢印（'>'） */
.BreadCrumb li:not(:last-child)::after {
    content: '>';
    margin: 0 8px;
    color: #4A914D; 
}

/* 現在ページ */
.BreadCrumb li:last-child {
    color: #4A914D;
    font-weight: bold;
}

/*---新着情報のスタイル---*/

.BoxTopic {
    display: flex;
    max-width: 1400px;
    height: auto;
	justify-content: center;
    padding: 20px;
	 margin:10px 50px;
}
h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 10px;
    color: #4A914D;   
}


.BlockTopic ul li {
    border-top: 2px dotted #A0A0A0;
	display: flex;
	padding: 30px;
}

.BlockTopic ul li img {
	max-width: 400px;
    height: auto;
	margin-right: 15px;
	object-fit: cover;
}



.ListDate {
    background-color: #d3b25f;
    color: #FFFFFF;
    width: 100px;
	padding: 0 5px;
	margin-bottom: 5px;
	margin-top: 50px;
}

.ListText{
    font-size: 1.8rem;
    padding-bottom: 3px;
    margin-bottom: 5px;
    border-bottom: 1px dotted #A0A0A0;
}
.ListText:hover {
    text-decoration: underline;    
}

.ListExp{
	font-size: 1.6rem;
}

.Details {
    display: block;
    margin-left: auto;
    margin-right: 10%;
    padding: 0 10px;
    border-radius: 10px;
    border: 2px solid #2e3eb2;
    color: #2e3eb2;
    font-weight: bold;
    font-size: 2rem;
	cursor: pointer; 
}

.Details:hover{
	transform: scale(1.1);
}

/*-------------------------footer*/
footer {
    width: 100%;
	height: 300px;
    background-color: #fff;
    padding: 80px auto;
	text-align: center;
	
}
.BoxNav{
	display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
}
.BoxNav nav {
  height: 200px;
  display: block;
}
.BoxNav nav a {
  display: flex;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  align-items: center;
}
.BoxNav nav a:hover {
    color: #517fd3;
    text-decoration: underline;
}
.BoxNav nav a img {
  width: 30px;
  height: 30px;
  justify-content: flex-end;
  margin: 5px;
}

/*----------------------950px変更*/
@media (max-width: 992px) {
	body{
		min-width: 550px;
	}
	
	
	/*header*/
	header{
		width: 100%;
		padding: 0px auto;
	}
	
	header h1 img { 
    min-width: 40px;
	margin: 10px;
}
	
	.BoxIcon li img {
	width: 0;
    display: none;
}
	
	.BoxPage li a {
		padding: 0 10px;
		color: #4a914d;
		font-weight: bold;
		font-size: 2rem;
		padding-right: 15px;
		border-right: 1px solid #4a914d;
	}
	
	.LogoRai{
	 position: absolute;
  z-index: 2;
	 width: 400px;
  	height: auto;
	margin: 0 auto;
	margin-bottom: 20px;
	top: 20px;
	right: 20%;
}

.VisuRai{
	position: absolute;
  z-index: 1;
	 width: 500px;
  	height: auto;
	margin: 0 auto;
	top: 300px;
	left: 1%;
}


.LogoRai p{
    
    margin: 0 auto;
	margin-bottom: 10px;
	width: 150px;
	padding: 3px;
    color: #f49547;
    border-radius: 50px;
    background-color: rgba(255,255,255,0.9);	
}
}
