@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  font-style: normal;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  line-break: strict;
  word-break: break-word;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
*,
*:focus,
a:focus {
  outline: none;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  -webkit-text-size-adjust: 100%;
  color: #000;
  width: 100%;
  background-color:#ffffff;
  overflow-x: hidden; /* 横スクロール防止 */
}
p{
    padding: 0;
    margin: 0;
}
ul{
    padding: 0;
}
ul li{
    list-style: none;
}
a{
    text-decoration: none;
}
img{
    display:block;
    width: 100%;
}

/* ======= 共通 ======= */
.header .inner,
.footer .inner,
.main,
.lp-page{
    max-width: 1000px;
    width: 100%;
    padding: 0;
    margin: 0 auto;
}
.main,
.lp-page{
    padding-top: 167px;
}

.sp{
    display: none;
}
.pc{
    display: block;
}
.tx-yellow{
    color: #fdf050;
}
.tx-red{
    color: #d82237;
}
.tx-center{
    text-align: center;
}
.secttl2 {
    position: relative;
    padding-bottom: .5em;
    margin-bottom: 1.2em;
    color: #2f3682;
    text-align: center;
    font-size: 3em;
    line-height: 1.5;
}
.secttl2:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 1em;
    height: 3px;
    margin: 0 auto;
    background: #d82237;
}

/* ======= header ======= */
.header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto!important;
    background-color: #ffffff;
    box-shadow: 0 3px 3px #eee;
    z-index: 1000;
    padding: 10px;
}
.header-top-area{
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.header-logo-area h1{
    font-size: 12px;
    padding-bottom: 5px;
}
.header-logo-area img{
    height: 50px;
    width: auto;
}
.header-menu-area{
    position: relative;
    z-index: 1100;
}
.header-menu-area ul{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 10px;
}
.nav-link{
    position: relative;
    font-weight: bold;
}
.nav-link:hover{
    border-bottom: 3px solid #DF0716;
}
.nav-link a{
    display: block;
    text-align: center;
    color: #000;
    padding: 10px 0;
}
.nav-link a span{
    display: block;
    font-size: 12px;
}
.nav-link:hover > a{
    color: #DF0716;
}

/* ======= footer ======= */
.footer{
    background-color: #000!important;
    padding: 10px;
}
.copy{
    font-size: 12px;
    text-align: center;
    color: #fff;
}

/*1000px以上*/
@media screen and (max-width:1000px){
    body{
        font-size: 14px;
    }
    .main,
    .lp-page{
        padding-top: 77.5px;
    }
    .secttl2 {
        font-size: 2em;
    }

    /* header */
    .menu-btn{
        position: absolute;
        display: block;
        box-sizing: border-box;
        width: fit-content;
        right: 15px;
        bottom: 15px;
    }
    .menu-btn .h_menu {
        position: relative;
        width: 30px;
        height: 25px;
        margin: 0 auto;
    }
    .menu-btn span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #000;
    }
    .menu-btn span:nth-of-type(1) {
        top: 0;
    }
    .menu-btn span:nth-of-type(2) {
        top: 11px;
    }
    .menu-btn span:nth-of-type(3) {
        bottom: 1px;
    }
    .menu-btn.active span:nth-of-type(1) {
        -webkit-transform: translateY(11px) rotate(-45deg);
        transform: translateY(11px) rotate(-45deg);
    }
    .menu-btn.active span:nth-of-type(2) {
        opacity: 0;
    }
    .menu-btn.active span:nth-of-type(3) {
        -webkit-transform: translateY(-11px) rotate(45deg);
        transform: translateY(-11px) rotate(45deg);
    }
    /* header */
    .header-logo-area img{
        width: 250px!important;
        height: auto;
    }
    .header-menu-area{
        display: none;
    }
    .header-menu-area.active{
        display: block;
        position: fixed;
        top: 92px;
        right: 0;
        width: 100%;
        height: 100%;
        padding: 0 20px;
        background-color: #fff;
    }
    .header-menu-area ul{
        display: block;
    }
    .nav-link:hover{
    border-bottom: none;
    }
    .nav-link a{
        position: relative;
        border-bottom: 1px solid #dbdbdb;
        text-align: left;
        padding: 15px;
    }
}

/*750px以上*/
@media screen and (max-width:750px){
    .sp{
        display: block;
    }
    .pc{
        display: none;
    }
}