@charset "UTF-8";

/* 基本 */

/* 色
黒　#100E0E
白　#F7F9FA
赤　#F90D25
緑　#0BCB29
黄緑　#0AFF00　>>

青　#0B2B5C >> #0B2B5C
赤紫　#E40145 >> #E40145
緑　#D36A00　＞＞


フォント
font-family: 'DotGothic16', sans-serif;
 */

:root{
  --v-space: clamp(90px,9vw,120px);
}

body{
  margin:0;
  background-color: #F7F9FA;
  color: #100E0E;
  font-family: sans-serif;
}

h1,h2,h3,h4,h5,p,figure,ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p{
  line-height: 1.8;
  font-size: medium;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  filter:brightness(90%) contrast(120%);
}

img{
  display: block;
  max-width: 100%;
  height: auto;
}

h2{
  display: block;
  width: 200px;
  background-color: #F7F9FA;
  box-shadow:0px 1px 4px -1px #100e0e50 inset;
  margin-top: 42px;
  text-align: center;
  font-family: 'DotGothic16', sans-serif;
  color: #0B2B5C;
}

h3{
  display: block;
  width: 30%;
  background-color: #0B2B5C;
  box-shadow:0px 1px 4px -1px #100e0e50 inset;
  margin-top: 60px;
  text-align: center;
  font-family: 'DotGothic16', sans-serif;
  color: #F7F9FA;
}

h5{
  line-height: 1.8em;
  font-size: 18px;
  margin-top: 18px;
  color: #4b4141;
}

.w-container > h1{
  margin-top: 62px;
}

.chu{
  font-size: smaller;
  color: #0B2B5C;
}


/* 横幅と左右の余白 */
.w-container{
  width: min(92%, 1166px);
  margin:auto;
  position: relative;
}

.ww-container{
  width: min(88%, 980px);
  margin:auto;
  position: relative;
}


/* ヘッダー */
.header{
  height: 80px;
  background-color: #F7F9FA;
  box-shadow:0px -3px 6px -1px #ccc inset;
  position: fixed;
  width: 100%;
  z-index: 90;
}

.header-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.h_h1{
  font-size: 48px;
  color: #0B2B5C;
}

.nav a{
  color: #0B2B5C;
  font-family: 'DotGothic16', sans-serif;
  font-size: 14px;

}




/* ナビゲーションボタン */
.navbtn{
  padding: 0;
  outline: none;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #aaaaaa;
  font-size: 30px;
}

.open .navbtn{
  z-index: 110;
  color: #ffffff;
}

.navbtn .fa-bars{
  display: revert;
}
.open .navbtn .fa-bars{
  display: none;
}

.navbtn .fa-times{
  display: none;
}
.open .navbtn .fa-times{
  display: revert;
}

@media(min-width: 768px){
  .navbtn{
    display: none;
  }
}


/* ナビゲーションメニュー：モバイル */
@media(max-width:767px){
  .nav{
    position:fixed;
    inset: 0 -100% 0 100%;
    z-index: 100;
    background-color:  #4e483ae6;
    transition: transform 0.3s;
  }
  .open .nav{
    transform: translate(-100%, 0)
  }
  .open body{
    position:fixed;
    overflow:hidden;
  }


  .nav ul{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 40px;
    color: #ffffff; 
  }
}

/* ナビゲーションメニュー：PC */
@media(min-width: 768px){
  .nav ul{
    display: flex;
    gap: 40px;
    color: #707070;
  }
}

/* ヒーロー */
.hero {
  height: 923px;
  background-image: url(img/hero.png);
  background-position: center;
  background-size: cover;
}

.hero-container {
  display: grid;
  justify-items: left;
  align-content: center;
  height: 100%;
}

.hero h1{
  margin-bottom: 42px;
  font-family: "Osaka",sans-serif;
  font-size: clamp(36px,4vw,52px);
  min-height: 0vw;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  color: #0B2B5C;
  background-color: #F7F9FA;
}

.hero h2{
  font-family: "Osaka",sans-serif;
  font-size: clamp(24px,2vw,34px);
  min-height: 0vw;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  color: #0B2B5C;
  display: block;
  width: auto;
  background-color: #F7F9FA;
  box-shadow:0px 1px 4px -1px #100e0e50 inset;
  margin-top: 42px;
  text-align: center;
  font-family: 'DotGothic16', sans-serif;
  color: #0B2B5C;
}

.hero p{
  margin-bottom: 72px;
  color: #0B2B5C;
}

/* ボタン */
.btn{
  display: block;
  width: 200px;
  padding: 6px;
  background-color: #E40145;
  box-sizing:border-box;
  border-radius: 0px;
  box-shadow:0px 1px 2px -1px #100e0e50 inset;
  color: #ffffff;
  font-family: 'DotGothic16', sans-serif;
  font-size: 18px;
  text-align: center;
  
}

.btn-accent{
  background-color: #b72661;
}

/* 更新情報 */



.news{
  margin-top: 42px;
  padding-top: 60px;
  height: 350px;
  overflow: auto;
  box-shadow:0px 1px 2px -1px #100e0e75 inset;
}

::-webkit-scrollbar{
  width: 10px;
}
::-webkit-scrollbar-track{
  background-color: #0B2B5C;
}
::-webkit-scrollbar-thumb{
  background-color: #F7F9FA;
}

.news ul{
  font-family: 'DotGothic16', sans-serif;
  font-weight: 100;
  font-size: 12px;

}

.news a{
  color: #0B2B5C;
  text-decoration: underline;

}


/* フッター */
.footer{
  margin-top: 60px;
  padding:70px 0;
  background-color: #0B2B5C;
  color:#F7F9FA;
  font-size:13px;
}

.footer-container{
  display:grid;
  gap:50px;
  justify-items: center;
}

.f_h1{
  font-size: 48px;
  color: #F7F9FA;
}

@media (min-width: 768px){
  .footer-container{
    grid-template-columns: auto auto;
    grid-template-rows: auto auto auto;
    gap: 20px;
  }

  .footer-container > .footer-site{
    margin-bottom:20px;
  }

  .footer-container > *:not(.footer-sns){
    justify-self: start;
  }

  .footer-container > .footer-sns{
    grid-column: 2;
    grid-row: 1 / 4;
    justify-self: end;
    align-self: center;
  }
}

/* フッター：SNSメニュー */
.footer-sns{
  display:flex;
  gap:24px;
  font-size:24px;
}

.footer-sns a{
  display: grid;
  place-items: center;
  width:36px;
  aspect-ratio: 1/1;
  background-color: #F7F9FA;
  color: #0B2B5C;
  clip-path: circle(50%);
}

@supports not (aspect-ratio:1/1){
  .footer-sns a{
    height:36px;
  }
}

/* フッター：テキストメニュー */
.footer-menu{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}


/* 各ページ */
.headerimg {
  padding-top: 80px;
  height: 160px;
  background-image: url(img/header.png);
  background-position: center;
  background-size: cover;
}

.ww-container >img{
 margin-top: 40px;
}

.ww-container a{
  color: #0B2B5C;

}

.ww-container a:hover {
  text-decoration: underline 1px solid #0B2B5C;

}


.lead{
  margin-top: 42px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2em;
}

h4{
  margin-top: 42px;
  font-size: 20px;
  font-weight: bold;
  color: #0B2B5C;
}

p{
  margin-top: 10px;
  line-height: 1.6em;
}

.box-container{
  margin-top: 40px;
  display: grid;
}

@media (min-width: 768px){
  .box-container{
    grid-template-columns: auto auto;
    grid-template-rows: auto auto auto;
    gap: 20px;
  }
}

.inyou{
  background-color: #D36A00c6;
  padding: 12px;
  font-size: small;
  line-height: 1.2em;
}

.p_lead{
 font-size: large;
 font-family:'DotGothic16', sans-serif ;
 line-height: 2em;
 margin-top: 40px;
 padding: 20px;
 box-shadow:0px 1px 2px -1px #100e0e75 inset;
 background-image: linear-gradient(150deg, rgba(9, 8, 56, 1) 36%, rgba(34, 124, 9, 1) 77%, rgba(63, 221, 10, 1) 92%, rgba(19, 89, 37, 1) 98%);
 color: #D36A00c6;
}

.lead-title{
  font-size: 24px;
  background-color: #D36A00c6;
  color: #F7F9FA;
  text-shadow:1px 2px 3px #100e0e61;
  box-shadow:0px 1px 2px -1px #100e0e75 inset;
}

.important{
  background-color: #E40145;
  color: #F7F9FA;
  font-family: 'Times New Roman', Times, serif;
  padding: 5px;
  align-items:center ;
  font-size: 30px ;
  margin-top: 10px;
}

