@import url("../../css/cssreset.css");
@import url("../../css/base.css");
@import url("../../css/navigation.css");
@import url("../../css/contents.css");

/*--------------------------------------*/
/* Press Release */
/*--------------------------------------*/
/* styles.css */
/*--------------------------------------*/

/* section title */
#section_title {
    background:url("../../images/h1_terms_bg.png");
}
#section_title_inner {
    height:130px;
}
#section_title_inner h1 {
    margin:0 auto;
    padding-top:0;
    text-align:center;
    line-height:130px;
}


/* years */
.year_select {
    position: relative;
    margin-left: auto;
    margin-bottom: 20px;
}
.year_select,
.year_select ul {
    width: 205px;
}
.year_select label,
.year_select .apply,
.year_select ul li a {
    line-height: 1.0;
    font-size: 20px;
}
.year_select input {
    display: none;
}
.year_select label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2.0em;
    z-index: 1;
    transition: all .3s ease;
    cursor: pointer;
}
.year_select label:hover {
    background-color: rgba(255,255,255,0.3);
}
.year_select label:after {
    position: absolute;
    top: 0.65em;
    right: 1em;
    font-size: 18px;
    color: #ffffff;
    transform: rotate(90deg);
    transition: all .3s ease;
    z-index: 1;
    content: ">";
}
.year_select ul li {
    border-top: 1px solid #999999;
}
.year_select .apply,
.year_select ul li a {
    display: block;
    background-color: #606060;
    padding: 0.5em 1em;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    transition: all .3s ease;
}
.year_select ul li a:hover {
    opacity: 0.7;
    text-decoration: none;
}


.year_select .year-list {
    display: none;
    height: 0;
    position: absolute;
    top: 100%;
    left: 0;
}
.year_select ul {
    overflow-y: auto;
    height: calc(var(--body-height) - 500px);
    max-height: 48em;
    background-color: #ffffff;
}

@keyframes menu {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.year_select input:checked + label:after {
    transform: rotate(90deg) scale(-1,1);
}
.year_select input:checked ~ .year-list {
    display: block;
    animation: menu .5s ease;
}



/* list */
dl.list {
    border-top: 1px solid #cdcdcd;
}
dl.list div {
    display: flex;
    justify-content: space-between;
    padding: 1em 0;
    border-bottom: 1px solid #cdcdcd;
    font-size: 16px;
}
dl.list dt {
    width: 10em;
    font-weight: bold;
}
dl.list dd {
    width: calc(100% - 10em);
}
dl.list dd a {
    color: #000000;
    text-decoration: none;
}
dl.list dd a:hover {
    text-decoration: underline;
}



/* - 750px */
/*-----------------------------------------------------------*/
@media only screen and (max-width: 750px) {

/* section title */
#section_title {
    margin-bottom:40px;
}
#section_title_inner {
    height:auto;
    padding:2.5em 0;
}
#section_title_inner h1 {
    line-height:1.2;
}


/* years */
.year_select {
    margin-bottom: 6vw;
}
.year_select,
.year_select ul {
    width: 40vw;
}
.year_select label,
.year_select .apply,
.year_select ul li a {
    font-size: 5.2vw;
}
.year_select label:after {
    right: 0.75em;
    font-size: 4.8vw;
}
.year_select ul {
    height: 44vh;
    max-height: inherit;
}


/* list */
dl.list div {
    flex-direction: column;
    font-size: 3.8vw;
}
dl.list dt,
dl.list dd {
    width: 100%;
}


}
/* - 750px end */




/* - 375px */
/*-----------------------------------------------------------*/
@media only screen and (max-width: 375px) {

.section h2 {
    font-size:1.3em;
}




}
/* - 375px end */




/* - 320px */
/*-----------------------------------------------------------*/
@media only screen and (max-width: 320px) {




.section_inner .contact a {
    font-size:1.1em;
}



}
/* - 320px end */