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

html {
    font-size: 62.5%;
}

body {
    margin: 0;
    padding: 0;
    height: 100%; /* ← これが重要 */
    width: 100%;
    font-size: 1.6rem;
    line-height: 2;
    font-family: fot-tsukuardgothic-std, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #333333;
  }

  .background-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1; /* コンテンツの裏に表示 */
    background-image: url('../img/main01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
header {
    padding: 20px;
}

header p {
    text-align: center;
    color: #FFF;
    font-weight: bold;
    font-size: 1.8rem;
}


main {}

section {
    width: 90%;
    background-color: #FFF;
    margin: auto;

    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
}

.block-inner {
    padding: 20px;
    margin-bottom: 30px;
}

p {
    font-size: 1.4rem;
}

h1 {
    text-align: center;
    padding-top: 30px;

}

h1 img {
    width: 30%;

}

h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #0b58b1;

}

h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 10px;
    background-color: #d1e6ec;
    /*
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px; */



}

h4 {
    text-align: center;
    border: 1px solid #4444;
    font-weight: 300;
    /*
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px; */

}

.sp {
    display: none;
}

ul{
    list-style: none;
}

ul.news-block{
   

}

ul.news-block li{
    margin-bottom: 10px;

}

ul.news-block li dl{

}

ul.news-block li dl dt{
    font-size: 1.4rem;

}

ul.news-block li dl dd{
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 120%;

}

ul#list-japan {
    display: flex;
            flex-wrap: wrap;
            list-style: none;
            justify-content: space-evenly;
            gap: 8px;
            /* max-width: 800px; */
            margin: 30px auto;
            padding: 0;
  }
  
  ul#list-japan li {
    width: 30%; 
    background-color: #e01c95;
    text-align: center;
    border-radius: 50px;
    transition: transform 0.2s ease;
    margin-bottom: 0px;

  }
  
  ul#list-japan li:hover {
    transform: scale(1.05); /* 少し拡大するホバー効果 */
  }
  
  ul#list-japan li a {
    color: #FFF;
    font-size: 1.4rem;
    display: block;
    padding:6px 10px;
    text-decoration: none;
  }
  

.box01 {
    margin: 20px 0;

}

.box01 p.box01-title {
    font-size: 1.6rem;
    font-weight: 900;
    display: block;
    padding-left: 20px;
    background-image: url(../img/sizuku.png);
    background-repeat: no-repeat;
    background-size: 15px;
}


.box01-table dl {

    font-size: 1.4rem;

}

.box01-table dl dt {}

.box01-table dl dd {
    display: block;
    overflow: scroll;

}

.gosyu {
    color: #e01c95;
    font-size: 1.2rem;
}


footer {
    color: #FFF;
    text-align: center;
    padding: 20px;

}