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

@media screen and (min-width:1024px) {


main{
    padding-top: 60px;
}    

header{
    background-color: #1F3C88;
    align-items: center !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;    
    font-family: m-plus-rounded-1c, sans-serif;
    font-style: normal;
    font-weight:500;
}


header .logo{
  display: flex;
  align-items: center;
  gap: 10px;
}

header .logo img {
    width: auto;
    height: 50px;
}

header .logo a:active{
  transform:translateY(1px) scale(0.99);
  box-shadow:0 1px 3px rgba(0,0,0,0.2);
}


header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center !important;
    padding: 0 1% 0 1%;
    height: 60px;
}


header .inner-title a{
    font-family: zen-maru-gothic, sans-serif;
    font-style: normal;
    font-weight:700;
    font-size:20px;
    color:#fff;
    text-decoration: none;
}

header .inner-title a:hover{
    color:#DCE6FF;
}


header .menu ul{
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
  position:relative;
}

@media (max-width:1130px){
    header .menu ul{
        gap: 3px;
        font-size: 13px;
    }
}


header .menu a{
  font-family: zen-maru-gothic, sans-serif;
  font-style: normal;
  font-weight:500;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  padding:0.8rem 1.2rem;
  display:inline-block;
  position: relative;
}

header .menu a:hover{
    color:#ffffff;
    opacity: 0.8;
}

header .menu .current a:hover{
    color:#F20C0C;
    opacity: 1;
}

header .menu li.current a{
  color:#F20C0C;
  font-weight:600;
}


header .menu .nav-indicator{
  position:absolute;
  bottom:-11px;
  height:3px;
  background:#F20C0C;
  left:0;
  width:0;
  transition:left 0.3s ease, width 0.3s ease;
}


/*入局はこちらボタン*/

header .menu li.join a::after{
  display:none;
}

header .menu li.join a{
  background:#F20C0C;
  color:#fff;
  padding:0.9rem 1.8rem;
  border-radius:999px; 
  font-weight:600;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow:0 2px 6px rgba(0,0,0,0.15);
}

header .menu li.join a:hover{
  background:#FF2E2E;
  transform:translateY(-2px)scale(1.005);
  box-shadow:0 6px 16px rgba(0,0,0,0.25);
}

/* 押したとき */
header .menu li.join a:active{
 background:#ff3b3b;
  transform:translateY(1px) scale(0.99);
  box-shadow:0 1px 3px rgba(0,0,0,0.2);
}


/*ヘッダーの下の影*/
header{
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

header.scrolled{
  box-shadow:0 6px 16px rgba(0,0,0,0.15);
  background-color:#1b387c;
}


.toggle_btn{
  display:none;
  background:none;
  border:none;
  padding:0;
}







footer{
    background-color: #1F3C88;
    color:#FFFFFF;
    text-align: center;
    padding:3rem 5% 1rem;
    font-family: zen-maru-gothic, sans-serif;
    font-style: normal;
    font-weight:500;
}

footer .grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
}

footer .pages{
    grid-column-start: 1;
    grid-column-end: 2;
    align-items: center;
}

footer .socialmedia{
    grid-column-start: 2;
    grid-column-end: 3;
}

footer a:hover{
    color:#DCE6FF;
    opacity: 0.7;
    text-decoration: none;
}

footer ul li{
    list-style-type: none;
    margin: 2rem 0;
    font-size: 16px;
    font-weight: 600;
}

footer ul{
    padding:0;
}

footer ul a{
    color:#FFFFFF;
}




footer .official{
    font-size: 22px;
    font-weight:700;
    border-bottom: 1px #FFFFFF solid;
    margin-bottom: 2.5rem;
    padding-bottom: 6px;
    width:90%;
    margin-left:auto;
    margin-right:auto;
}

footer .socialmedia li{
    font-size: 16px;
    font-weight: 600;
}

footer .socialmedia ul:nth-of-type(1){
    margin-bottom:6rem;
}


footer .line{
    vertical-align: middle;
}


footer li.line{
  display: flex;
  align-items: center;
  justify-content:center;
  gap:8px;
}

footer .hakumon{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:60px;
}

footer img{
    height:35px;
    width:auto;
}



footer .website a{
    color:#FFFFFF;
    font-size: 20px;
    font-weight:600;
}

footer .website{
    margin: 5rem 0 0;
}



footer .copyright{
    margin-top: 4rem;
    font-size: 12px;
    color:#FFFFFF;
}



}