* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-family: YakuHanJP, "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック体, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
}

body {
    background: #fff;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #4C4C4C;
}

/*//////common//////*/

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

.txtcenter {
    text-align: center;
}

.red {
    color: #E8404D;
}

.px12 {
    font-size: 1.2rem;
}

.px14 {
    font-size: 1.4rem;
}

.px18 {
    font-size: 1.8rem;
}

.px18 {
    font-size: 1.8rem;
}

.px20 {
    font-size: 2.0rem;
}

.px22 {
    font-size: 2.2rem;
}


.px24 {
    font-size: 2.4rem;
}

.px30 {
    font-size: 3.0rem;
}

.tableflx {
    display: flex;
    margin: 5px 35px;
}

.tableflxTtl {
    display: flex;
    width: 120px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #A3D2E0;
    margin-right: 5px;
    padding: 5px;
    color: #fff;
    font-size: 1.6rem;
    font-weight: normal;
    text-align: center;
    box-sizing: border-box;
}

.tableflxCnt {
    background: #F3FAF1;
    width: 615px;
    padding: 5px;
    box-sizing: border-box;
}

.tableflx .tableflxCnt {
    flex-grow: 1;
}

.tableflx .tableflxCnt small {
    font-size: 1.4rem;
}

.tableflx .tableflxCnt p {
    margin: 0 0 1em;
}

.tableflx .tableflxCnt ul.mailcap {
    margin-left: 1.5em;
    margin-bottom: 1em;
    padding-left: 0.5em;
}

.tableflx .tableflxCnt h4.mendan {
    margin-bottom: 0.2em;
}

.tableflxCntTr {
    display: flex;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px dotted #666;
}

.tableflxCnt .tableflxCntTr:last-of-type {
    margin-bottom: 0;
    border-bottom: none;
}

.tableflxCntTh {
    width: 18%;
    font-weight: bold;
}

.tableflx .tableflxCnt ul {
    margin: 5px 0;
    padding: 0 1em;
}

.txt_center {
    text-align: center;
}

.txt_right {
    text-align: right;
}

.tableflxCnt-p {
    margin-top: 20px;
}

a:link {
    color: #5DA2B8;
    text-decoration: underline;
    transition: 0.3s;
}

a:visited {
    color: #5DA2B8;
    text-decoration: none;
}

a:hover {
    color: #46BFE3;
    text-decoration: underline;
}

a:active {
    color: #95CF82;
    text-decoration: underline;
}

a.file[href^="https://seeds.hsc.okayama-u.ac.jp/"]::after {
    content: "\f2d2";
    margin-left: 8px;
    font-family: Font Awesome\ 5 Free;
    text-decoration: none;
}

a.file[href$=".pdf"]::after {
    content: '\f1c1';
    margin-left: 8px;
    font-family: Font Awesome\ 5 Free;
    text-decoration: none;
}


a.file[href$=".doc"]::after,
a.file[href$=".docx"]::after {
    content: '\f1c2';
    margin-left: 8px;
    font-family: Font Awesome\ 5 Free;
    text-decoration: none;
}

a.file[href$=".xls"]::after,
a.file[href$=".xlsx"]::after {
    content: '\f1c3';
    margin-left: 8px;
    font-family: Font Awesome\ 5 Free;
    text-decoration: none;
}


a.cmnBtn {
    display: block;
    background: #A3D2E0;
    padding: 1em 2.5em;
    border: solid 2px #5DA2B8;
    border-radius: 3px;
    font-size: 2.8rem;
    color: #fff;
    text-decoration: none;
    transition: .3s;
    transform: translate3d(0, 0, 50px);
    z-index: 10;
}

a.cmnBtn:hover {
    background: #B2E0A3;
    border-color: #95CF82;
    text-shadow: 0 0 20px #999;
    -ms-transform: scale(1.02);
    transform: scale(1.02);

}

/*//////header//////*/

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 156px;
    margin-top: -1px;
    transform: translate3d(0, 0, 100px);
    z-index: 1000;
}

#secondheader {
    position: absolute;
    top: -100;
    background: #fff;
    border-bottom: solid 5px #5DA2B8;
    opacity: 0;
}

#svgBg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#headBg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    /*    width: auto;*/
    height: 100%;
    z-index: 1;
}

header nav {
    position: relative;
    z-index: 100;
    transform: translate3d(0, 0, 100px);
}

header ul {
    display: flex;
    width: 100%;
    height: 155px;
    justify-content: center;
    align-items: center;
    transition: .3s;

}


header ul li {
    list-style: none;
    flex-basis: 163px;
    font-size: 1.6rem;
    text-align: center;
    transition: .3s;
}

header ul li i {
    margin: 0 auto 10px;
    font-size: 2.8rem;
}

header ul li a:link {
    display: inline-block;
    color: #666666;
    text-decoration: none;
    transition: .3s;
}

header ul li a:hover i,
header ul li a:hover span {
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    transition: .3s;
}

header ul li a:link,
header ul li a:visited,
header ul li a:hover:active {
    text-decoration: none;
    color: #666666;
}

header ul li a i {
    color: #5DA2B8;
}

header ul li span {
    display: block;
    text-align: center;
}

.hdlogo {
    flex-basis: 409px;
    align-self: flex-start;
    margin-top: 15px;
    order: 3;
}

.hdlogo img {
    width: 95%;
    height: auto;
    margin: auto;
}

.hdyoukou {
    order: 1;
}


.hdshinsei {
    order: 2;
}

.hdtopics {
    order: 4;
}

.hdcontact {
    order: 5;
}

header.sec {
    height: auto;
}

header ul.sec {
    background: #fff;
    border-bottom: solid 5px #5DA2B8;
    height: 84px;
    transition: .3s;
}

header ul.sec li i {
    font-size: 2.6rem;
    margin-bottom: 5px;
    transition: .3s;
}

header ul li.hdlogo.sec {
    margin-top: 15px;
    transition: .3s;
}

.hdconnect {
    position: fixed;
    top: 100px;
    right: 20px;
    width: 15vw;
    box-sizing: border-box;
    transform: translateX(50vw);
    transition: 0.5s;
    z-index: 5000;
}

.hdconnect.is_scroll {
    transform: none;
}

.hdconnect a {
    display: block;
    background: #FFF;
    padding: 5px;
    border: solid 1px #dcdcdc;
    box-shadow: 0 0 10px rgba(200, 200, 200, 0.2);
}

.hdconnect a img {
    display: block;
    width: 100%;
    line-height: 0;
}

/*//////leadArea//////*/

#leadArea {
    background: url(../img/bg01.jpg) center center no-repeat fixed;
    margin-top: -145px;
    padding: 320px 0 70px;
    width: 100%;
    background-size: cover;
}

#leadArea .inner {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    width: 960px;
    margin: 10px auto;
}

#leadArea h2 {
    align-self: flex-end;
}

#leadArea h1 {
    margin: 130px 0 15px 60px;
    font-size: 3.2rem;
    color: #333333;
    text-shadow: 0 0 20px #fff;
}

#leadArea p {
    position: relative;
    margin-left: 60px;
    font-size: 1.6rem;
    color: #333333;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.5);
    z-index: 11;
}

#leadArea ul {
    display: flex;
    justify-content: space-between;
    width: 720px;
    margin: 50px auto 0;
    padding: 0;
}

#leadArea ul li {
    list-style: none;
}

a.leadBtn {
    display: block;
    background: rgba(210, 206, 199, 0.6);
    padding: 1em 2.5em;
    border: solid 2px #fff;
    border-radius: 3px;
    font-size: 2.8rem;
    color: #fff;
    text-decoration: none;
    transition: .3s;
    transform: translate3d(0, 0, 50px);
    z-index: 10;
}

a.leadBtn:hover {
    background: rgba(210, 206, 199, 0.9);
    border-color: #B3E0A5;
    text-shadow: 0 0 20px #999;
    -ms-transform: scale(1.02);
    transform: scale(1.02);

}

/*//////news//////*/

#news {
    width: 900px;
    margin: auto;
    padding: 50px 0 50px;
    font-size: 1.6rem;
}

#newsList {
    display: block;
}

#newsList li {
    list-style: none;
    display: flex;
    margin-bottom: 5px;
}

#newsList span {
    display: block;
}

#newsList .date {
    background: #A3D2E0;
    width: 150px;
    margin-right: 5px;
    padding: 5px 5px 5px 10px;
    color: #fff;
    box-sizing: border-box;
}

#newsList .topic {
    flex: 1;
    background: #F3FAF1;
    padding: 5px 5px 5px 10px;
}

#newsList .topic a {
    color: #4c4c4c;
    text-decoration: none;
    transition: .3s;
}

#newsList .topic a:hover {
    color: #5DA2B8;
    text-decoration: underline;
}

#newsList .pastNews {
    justify-content: flex-end;
}

/*//////outline//////*/

#outline {
    background: url(../img/bg02.jpg) center 0 no-repeat fixed;
    background-size: 100% 100%;
    width: 100%;
    padding: 70px 0;
}


#outline .inner {
    display: block;
    background: rgba(255, 255, 255, 0.9);
    border: solid 1px #CAE7C0;
    width: 900px;
    margin: auto;
    padding: 70px 0;
    color: #666;
}

#outline p.end {
    max-width: 810px;
    margin: 5px auto 0;
    padding: 0 0 0 1em;
    text-indent: -1em;
    color: #E8404D;
}

#outline h1 {
    text-align: center;
}

#outline h1.newblink {
    line-height: 1.2;
}

#outline h1.newblink span {
    display: inline-block;
}

#outline h1.newblink span::before {
    display: block;
    content: 'NEW';
    margin-right: 5px;
    color: red;
    font-weight: bold;
    font-size: 1.8rem;
    text-align: left;
    line-height: 1;
    animation: blinkAnime 1s infinite alternate;
}

@keyframes blinkAnime {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.outlinecnt {
    margin: 45px;
}

.outlinecnt:last-of-type {
    margin-bottom: 0;
}

.outlinecnt h2 {
    font-size: 2.0rem;
    margin-bottom: 10px;
}


.outlinecnt p {
    margin: 0 35px 15px;
}

.outlinecnt .tableflx {
    margin: 5px 35px;
}

.tableflx.outlineTable .tableflxTtl {
    width: 160px;
}

.fileArea {
    display: flex;
    margin: 5px 35px;
}

.fileLeft {
    margin-right: 60px;
    text-align: center;
}

.fileLeft img {
    box-shadow: 0 0 10px #ccc;
}

.fileRight li {
    margin-bottom: 8px;
}


/*//////oubo//////*/

#oubo {
    min-width: 960px;
    margin: auto;
}

#oubo .inner {
    width: 720px;
    margin: auto;
    padding: 70px 0;
}

#oubo h1 {
    text-align: center;
}

#oubo ul {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding: 0;
}

#oubo ul li {
    list-style: none;
}

/*//////about//////*/

#about {
    background: url(../img/bg03.jpg) center bottom no-repeat fixed;
    background-size: cover;
    width: 100%;
    padding: 70px 0;
}


#about .inner {
    display: block;
    background: rgba(255, 255, 255, 0.9);
    border: solid 1px #CAE7C0;
    width: 900px;
    margin: auto;
    padding: 70px 80px;
    color: #666;
    box-sizing: border-box;
}

#about h1 {
    margin-bottom: 60px;
    text-align: center;
}

#about figure {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#about figure span {
    width: 48%;
    margin-right: 10px;
    box-sizing: border-box;
}

#about figcaption {
    font-size: 1.5rem;
    color: #999;
}

#about figcaption b {
    color: #007DC5;
}

#about p {
    margin: 55px 0 25px;
}

#about ul {
    padding-left: 1.5em;
}

#about ul li {
    margin-bottom: 10px;
}

#about ul li:last-of-type {
    margin-bottom: 0;
}

/*//////footer//////*/

footer {
    background: #95CF82;
}

#ftnav {
    padding: 30px 0
}

#ftnav ul {
    display: flex;
    justify-content: space-around;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

#ftnav ul li {
    list-style: none;
    font-weight: bold;
}

#ftnav ul li.menuclose {
    display: none;
}

#ftnav ul li a {
    position: relative;
    padding-bottom: 5px;
    color: #fff;
    text-decoration: none;
}

#ftnav ul li a:hover {
    text-decoration: none;
}

#ftnav ul li a::after {
    background-color: #fff;
    bottom: 0;
    content: '';
    display: block;
    height: 2px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    transition: .3s all;
    width: 0;
}

#ftnav ul li a:hover::after {
    width: 100%;
}

#ftinfo {
    background: #fff;
    padding: 30px 0;
}

#ftinfo .inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 900px;
    margin: auto;
}

.okadaiInfo {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.okadaiInfo figure {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 60%;
}

.okadaiInfo figure img {
    display: block;
    width: 65%;
    max-width: none;
    max-width: initial;
}

.okadaiInfo figure figcaption {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.5;
    padding-left: 8px;
}

.okadaiInfo p {
    margin: 10px 0 0 10px;
    font-size: 1.8rem;
}

.kanrenLink ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 900px;
    padding: 0;
}

.kanrenLink ul li {
    flex-basis: auto;
    list-style: none;
    margin: 0 8px 20px;
}

.kanrenLink ul li:first-of-type {
    margin: 0 8px 20px 0;
}

.kanrenLink ul li:last-of-type {
    margin: 0 0 20px 8px;
}

.kanrenLink ul li img {
    display: block;
    width: auto;
    border: solid 1px #dcdcdc;
    box-sizing: border-box;
}

.kanrenLink ul li a {
    display: block;
    transition: 0.5s;
}

.kanrenLink ul li a:hover {
    opacity: 0.5;
}

.bnramed {
    flex: 1;
}

.ie .kanrenLink ul li,
.ie .kanrenLink ul li.bnramed {
    flex: none;
}

.ie .kanrenLink ul li:first-of-type {
    width: 15.1%;
}

.ie .kanrenLink ul li:nth-of-type(2) {
    width: 20%;
}

.ie .kanrenLink ul li:nth-of-type(3) {
    width: 29.444%;
}

.ie .kanrenLink ul li:last-of-type {
    width: 30.111%;
}


.copy {
    padding: 10px 0 8px;
    color: #fff;
    text-align: center;
}


/*//////sp//////*/

.spmenu {
    display: none;
}

@media(max-width:1100px) {
    #outline {
        background-size: 200%;
        width: 100%;
        padding: 70px 0;
    }
}



/*//////youkou//////*/

.youkou #outline {
    padding-top: 150px;
}

.youkou #outline h1 {
    margin-bottom: 50px;
    font-size: 3.0rem;
}

.youkou #outline .outlinecnt {
    margin-top: 0;
}

.youkou #outline .outlinecnt h2 {
    margin-bottom: 50px;
    font-size: 1.8rem;
    text-align: center;
}

.youkou #outline .outlinecnt p.outP {
    margin-bottom: 15px;
}

.youkou #outline .outlinecnt p.caption {
    margin-bottom: 50px;
    font-size: 1.4rem;
}


.youkou #outline .outlinecnt h3 {
    margin: 0 35px 10px;
}

.youkou #outline .outlinecnt p {
    margin-bottom: 15px;
}

.youkou #outline .outlinecnt p.margin-bw {
    margin-bottom: 30px;
}

#download .inner {
    width: 735px;
    margin: auto;
    padding: 70px 0;
}

.downloadInner {
    margin-top: 20px;
}

.downloadInner p.cap {
    margin: 0 35px;
    font-size: 1.4rem;
}


.downloadInner .tableflxCnt li {
    margin-bottom: 5px;
}

.downloadInner .tableflxCnt li:last-child {
    margin-bottom: 0;
}

.youkou ul.btnarea {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 65px;
    padding: 0;
}

.youkou ul.btnarea li {
    list-style: none;
}


/*//////touroku//////*/

#touroku2,
#touroku {
    padding: 150px 0 70px;
}


#touroku2 .inner,
#touroku .inner {
    width: 900px;
    margin: auto;
}

#touroku2 .inner p,
#touroku .inner p {
    width: 735px;
    margin: 50px auto;
}

.rdArea {
    margin-bottom: 50px;
    padding: 15px 0;
    border: solid 1px #CAE7C0;
    text-align: center;
}

#RandDBoxWP {
    display: none;
}

#RandDBox {
    padding: 15px;
}

#RandDBox h1 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: solid 1px #999;
}

.randdright {
    font-size: 1.2rem;
    text-align: right;
    margin-bottom: 20px;
}

#RandDBox p {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

#RandDBox p:last-of-type {
    margin-bottom: 10px;
}

.formcnt {
    margin: 15px 0 30px;
}

.formcnt h2 {
    position: relative;
    font-size: 1.8rem;
}

.formcnt h2.req::after {
    position: absolute;
    top: 3px;
    content: "必須";
    display: inline-block;
    background: #ff6b6b;
    margin-left: 10px;
    padding: 2px 3px;
    font-size: 1.4rem;
    font-weight: normal;
    color: #fff;
    border-radius: 3px;
}

.formcnt h2 .cap {
    font-size: 1.4rem;
    color: #ff6b6b;
}

.formcnt h2 small {
    display: none;
}

.formcnt h2.rdmp small {
    position: absolute;
    display: inline-block;
    top: 3px;
    color: #ff6b6b;
    font-size: 1.2rem;
}

.formcnt h2.rdmp small span {
    display: inline-block;
    background: #ff6b6b;
    margin-left: 10px;
    padding: 2px 3px;
    font-size: 1.4rem;
    font-weight: normal;
    color: #fff;
    border-radius: 3px;
}

.cklist {
    margin: 15px 0;
}

.cklist li {
    display: inline-block;
    list-style: none;
    margin-right: 50px;
}

.cklist.many li {
    margin-right: 30px;
}

.shinseiOther {
    display: none;
}

.formcnt.kakunin {
    font-size: 1.8rem;
    text-align: center;
}

.singleBtn {
    text-align: center;
}

button#cboxClose {
    background: none;
    border: none;
    font-size: 1.2rem;
}

button#cboxClose:hover {
    text-shadow: none;
    -ms-transform: scale(1);
    transform: scale(1);
}

.formCaption {
    text-align: center;
}

#touroku2 .inner .formCaption p,
#touroku .inner .formCaption p {
    display: inline-block;
    margin: 0;
    text-align: left;
    font-size: 1.4rem;
}

/*form*/

label {
    cursor: pointer;
}

.checkbox {
    display: none;
}

buttom,
textarea,
input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
}

input.btn,
button {
    background: #A3D2E0;
    padding: 1em 2.5em;
    border: solid 2px #5DA2B8;
    border-radius: 3px;
    font-size: 2.8rem;
    font-weight: normal;
    color: #fff;
    text-decoration: none;
    transition: .3s;
    transform: translate3d(0, 0, 50px);
    z-index: 10;
    cursor: pointer;
}

input.btn:hover,
button:hover {
    background: #B2E0A3;
    border-color: #95CF82;
    text-shadow: 0 0 20px #999;
    -ms-transform: scale(1.02);
    transform: scale(1.02);
    cursor: pointer;
}

input.btn:disabled,
input.btn:disabled:hover {
    background-color: #999;
    cursor: not-allowed;
    transform: none;
    color: #ddd;
    border-color: #999;
}

/*チェックボックス／ラジオボタン*/

.checkbox,
.radiobtn {
    position: absolute;
    display: inline-block !important;
    width: 1.5em;
    height: 0;
    margin-top: -16px;
    padding: 0;
    border: none;
    line-height: 0;
}


/*チェックボックス*/

.checkbox+.checkbox-icon {
    position: relative;
    vertical-align: middle;
    margin-right: 5px;
}

.checkbox+.checkbox-icon:before {
    content: "\f0c8";
    font-family: Font Awesome\ 5 Free;
    font-size: 18px;
    color: #4c4c4c;
}

.checkbox:checked+.checkbox-icon:before {
    content: "\f14a";
    color: #ff6b6b;
}

input#ckRandD {
    width: 1.5em;
}

input#kakunin.checkbox+.checkbox-icon:before {
    font-size: 28px;
}

/*ラジオボタン*/

.radiobtn+.radiobtn-icon {
    position: relative;
    vertical-align: middle;
    margin-right: 5px;
}

.radiobtn+.radiobtn-icon:before {
    content: "\f111";
    font-family: Font Awesome\ 5 Free;
    font-size: 18px;
    color: #4c4c4c;
}

.radiobtn:checked+.radiobtn-icon:before {
    content: "\f192";
    color: #ff6b6b;
}

/*テキスト／テキストエリア*/

.inputtext {
    width: 100%;
    margin-top: 5px;
    padding: 15px;
    border: solid 1px #CAE7C0;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 1.6rem;
}

.inputtext::-webkit-input-placeholder {
    color: #ccc;
}

.inputtext::-ms-input-placeholder {
    color: #ccc;
}

.inputtext::-placeholder {
    color: #ccc;
}

textarea.cmnt {
    width: 100%;
    height: 10em;
    margin-top: 5px;
    padding: 15px;
    border: solid 1px #CAE7C0;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 1.6rem;
}

/*ファイルアップロード*/

.fileup input {
    position: absolute;
    left: 0;
    bottom: 0;
    visibility: hidden;
}

.fileup {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 5px;
    box-sizing: border-box;
    cursor: pointer;
}

.filebox {
    display: flex;
}

.fileboxLeft,
.fileboxRight {
    padding: 15px;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
}

.fileboxLeft {
    width: 70%;
    border: solid 1px #CAE7C0;
    border-radius: 5px 0 0 5px;
    color: #ccc;
}

.fileboxLeft.add {
    color: #4c4c4c;
}

.fileboxRight {
    width: 30%;
    background: #95CF82;
    color: #fff;
    font-weight: bold;
    text-align: center;
    border-radius: 0 5px 5px 0;
}

/*エラーメッセージ*/

.formError.inline {
    width: 100%;
}

.formError .formErrorContent {
    width: auto;
    margin-top: 5px;
    font-size: 1.4rem;
    z-index: 99;
}

#tourokushinsei .formErrorContent,
#contact .formErrorContent {
    border-radius: 5px;
}

/*/////confirm/////*/

.confirm h2 {
    color: #666;
}

.confirm input[readonly],
.confirm textarea[readonly] {
    background: #EAF5E6;
    border: none;
    color: #666;
}

/*/////confirm-t/////*/

.confirm-t {
    background: #F7FCF6;
}

.multiBtn {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}

.multiBtn li {
    width: 300px;
    list-style: none;
}

.multiBtn li input {
    width: 100%;
}

button.back {
    background: #ccc;
    padding: 1em 2.5em;
    border: solid 2px #999;
    border-radius: 3px;
    font-size: 2.8rem;
    font-weight: normal;
    color: #fff;
    text-decoration: none;
    transition: .3s;
    transform: translate3d(0, 0, 50px);
    z-index: 10;
    cursor: pointer;
}

button.back:hover {
    background: #eee;
    border-color: #ccc;
    text-shadow: 0 0 20px #999;
    -ms-transform: scale(1);
    transform: scale(1);
    cursor: pointer;
}

/*/////thanx/////*/

#touroku .btnarea {
    margin: auto;
}

#touroku .btnarea li {
    list-style: none;
    max-width: 340px;
    margin: auto;
}

#touroku .btnarea li a.cmnBtn {
    padding: 0.8em 2.5em
}


/*//////touroku//////*/

#contact {
    padding: 150px 0 70px;
}


#contact .inner {
    width: 900px;
    margin: auto;
}

#contact .inner p,
.contacttop {
    width: 735px;
    margin: 50px auto 20px;
}

.contacttop {
    width: 735px;
    margin: 0 auto 50px;
}

.contacttop li {
    list-style: none;
    font-size: 1.4rem;
    text-indent: -1em;
    padding-left: 1em;

}

.contacttop li:first-of-type {
    margin-bottom: 10px;
}

/*//////news//////*/

body.news #news {
    padding: 150px 0 70px;
}

body.news #news h1 {
    margin-bottom: 20px;
}

body.news #news li {
    margin-bottom: 15px;
}

.moreBtnArea {
    display: none;
    width: 100%;
    text-align: center;
}

span.moreBtn {
    display: inline-block;
    background: #A3D2E0;
    width: 400px;
    margin: 50px auto 0;
    padding: 1em 2.5em;
    border: solid 2px #5DA2B8;
    border-radius: 3px;
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    transition: .3s;
    transform: translate3d(0, 0, 50px);
    z-index: 10;
    cursor: pointer;
}

span.moreBtn:hover {
    background: #B2E0A3;
    border-color: #95CF82;
    text-shadow: 0 0 20px #999;
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}

.linkDisabled {
    transform: scale(2);
    pointer-events: none;
}

/*ServerError*/
#srvrerr {
    margin: 0 auto 50px;
}

.errBox {
    background: rgb(238, 1, 1);
    color: white;
    border-radius: 5px;
    padding: 4px 10px;
    font-size: 11px;
}

.errBox i {
    margin-right: 3px;
}


/* 二次募集 */
.second_boshu {
    margin: 0 45px;
    line-height: 1.8;
}

#outline .second_boshu h1 {
    display: flex;
    align-items: center;
    margin-bottom: 0.5em;
}

#outline .second_boshu h1 span {
    display: inline-block;
}

#outline .second_boshu h1 span.new {
    background: crimson;
    margin-right: 5px;
    padding: 3px 5px;
    color: white;
    font-size: 16px;
    animation-duration: 2s;
    animation-delay: 1.5s;
}

.second_boshu h1+.txt_right {
    margin-bottom: 1.5em;
}

.second_boshu p {
    margin-bottom: 1.5em;
}

.boshu_conts {
    margin-top: 2.5em;
    margin-bottom: 2.5em;
}

.second_boshu ul.seeds {
    margin-top: -1em;
    margin-bottom: 1.3em;
    padding-left: 1.5em;
}

.second_boshu .caption {
    padding: 0.8em 0.8em 0.8em 2.3em;
    line-height: 1.5;
    text-indent: -1.5em;
    font-size: 1.4rem;
    border: solid 1px #969696;
    border-radius: 5px;
    color: #969696;
}

.boshu_outline {
    margin-bottom: 2.5em;
}

.boshu_outline p {
    margin-bottom: 2.5em;
}

.second_boshu .dlwrap {
    background: #FFF;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.second_boshu dl.boshu_dl {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.5em;
    line-height: 1.5;
}

.second_boshu dl.boshu_dl dt {
    flex-basis: 13%;
    margin-bottom: 1em;
    font-weight: bold;
    color: #90C67F;
}

.second_boshu dl.boshu_dl dd {
    flex-basis: 86%;
    margin-bottom: 1em;
}

.second_boshu dl.boshu_dl dd em {
    display: inline-block;
    margin-left: 0.3em;
    font-style: normal;
    font-weight: bold;
    color: crimson;
}

.second_boshu dl.boshu_dl dd .ddcaption {
    margin-top: 0.5em;
    font-size: 1.6rem;
    line-height: 1.3;
}

.second_boshu dl.boshu_dl dt::after {
    content: "： ";
    display: inline-block;
}

.second_boshu dl.boshu_dl dt:last-of-type,
.second_boshu dl.boshu_dl dd:last-of-type {
    margin-bottom: 0;
}


.jimukyoku {
    display: flex;
    width: 70%;
    margin: 2.5em auto 0;
    border: solid 1px #888;
}

.jimukyoku_left {
    padding: 10px;
}

.jimukyoku_right {
    padding: 10px;
}

.jimukyoku_right_item {
    margin-bottom: 5px;
}

.second_boshu .caution h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5em;
}

.second_boshu .caution ul {
    padding-left: 1.8em;
}

.second_boshu .caution ul li {
    margin-bottom: 0.4em;
    line-height: 1.5;
}

.second_boshu .caution ul li:last-of-type {
    margin-bottom: 0;
}

#outline.second-end .inner {
    position: relative;
}

#outline.second-end .inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    background-color: #FFF;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.second-end-wrap {
    margin-bottom: 35px;
    text-align: center;
}

#outline.second-end .second-end-wrap .second-end-box {
    position: relative;
    display: inline-block;
    background-color: #FFF;
    padding: 0.5em;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
    color: crimson;
    letter-spacing: 0.3em;
    text-indent: 0.3em;
    border: 2px solid crimson;
    z-index: 100;
}

/* 開始前 */

body.kaishimae #boshu_main.finish .finish_text,
body.finish.kaishimae #outline .finish_text,
body.touroku.finish.kaishimae #touroku .finish_text {
    display: none !important;
}

body.kaishimae #boshu_main.finish::before {
    display: none;
}

body.finish.kaishimae #outline .inner::before {
    display: none;
}

#touroku .touroku_yet {
    position: relative;
    max-width: 720px;
    margin: 20px auto 30px;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    border: solid 1px red;
    box-sizing: boder-box;
    z-index: 10;
}

/* 募集終了時 */
#boshu_main.finish {
    position: relative;
}

#boshu_main.finish a {
    position: relative;
    z-index: 11;
    opacity: 0.5;
}

#boshu_main.finish .newblink span::before {
    display: none;
}

.finish_text {
    display: none;
}

#boshu_main.finish .finish_text {
    position: relative;
    max-width: 720px;
    margin: 20px auto 30px;
    padding: 10px;
    color: red;
    text-align: center;
    font-weight: bold;
    border: solid 1px red;
    box-sizing: boder-box;
    z-index: 10;
}

#boshu_main.finish .finish_text br {
    display: none;
}

#boshu_main.finish::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    opacity: 0.5;
}

/* 募集終了時(youkou.html) */

body.finish #outline .finish_text,
body.touroku.finish #touroku .finish_text,
#touroku .touroku_yet {
    background-color: #FFF;
    max-width: 900px;
    margin: 0 auto 25px;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    color: red;
    border: solid 1px red;
    box-sizing: boder-box;
}

body.finish #outline .finish_text br,
body.touroku.finish #touroku .finish_text br {
    display: none;
}

body.finish #outline .inner {
    position: relative;
}

body.finish #outline .inner::before,
body.touroku.finish #touroku .inner::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 10;
    opacity: 0.5;
}

body.touroku.finish #touroku .inner {
    position: relative;
}

body.touroku.finish #touroku .inner * {
    pointer-events: none;
}