@charset "utf-8";

/*------------------------------------------------------
 RESET
------------------------------------------------------*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, main, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button{
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    box-sizing: border-box;}
html, body, footer, header, main,
div, iframe, table, form, img,
menu, nav, article, section, dl, ol, ul{
	vertical-align: top;}
tr, th, td,
label, input, select, button{
    margin: 0;
    vertical-align: middle;}
input,textarea,select,::placeholder{
    font-size: 100%;
	font: inherit;
    color: inherit;
    box-sizing: border-box;}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, main, hgroup, menu, nav, section {display: block;}
body {line-height: 1;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,
q:before, q:after {content: ''; content: none;}
table {border-collapse: collapse; border-spacing: 0;}


/*------------------------------------------------------
 MOBILE / ~499px
------------------------------------------------------*/

/*      common
----------------------*/

html{font-size: 62.5%;}
body {
    background-color: #FFF;
    color: #222;
    font-size: 1.4em;
    font-family: 'ヒラギノ角ゴ Pro','Hiragino Maru Gothic Pro','ヒラギノ角ゴ ProN','Hiragino Maru Gothic ProN',sans-serif;
    font-weight: 300;
    line-height: 1;
    -webkit-font-feature-settings: 'palt';
    font-feature-settings: 'palt';
    -webkit-text-size-adjust: 100%;}

a{text-decoration: none; color:inherit; display: inline-block;}
p a{text-decoration: underline;
    color:#0080FF;
    transition: all 0.5s ease;}
p a:hover{text-decoration-color: transparent;}
img{max-width: 100%; height: auto;}
hr{margin:1em auto; border: none; width:100%; height: 1px; background:#555;}
span{display: inline-block;}
th,dt{white-space: nowrap;}
em{font-style: italic;}
strong{font-weight: 600;}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea{
    -webkit-appearance: none;
    appearance: none;
    display: inline-block;
    background: #FFF;
    border: 1px solid #555;}
input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
select{
    border-radius: 5px;
    padding: .5em .8em;}
::placeholder,
input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
select{
    line-height: 1.4;}
::placeholder{
    color:#AAA;}
select{
    padding-right: 1.6em;
    background-image:
        linear-gradient(45deg, transparent 50%, #555 50%),
        linear-gradient(135deg, #555 50%, transparent 50%);
    background-position:
        calc(100% - 10px) 1em,
        calc(100% - 5px) 1em;
    background-size:
        5px 5px,
        5px 5px;
    background-repeat: no-repeat;}
input[type="submit"],
input[type="button"] {
    box-sizing: border-box;
    -webkit-appearance: button;
    appearance: button;
    background-color: transparent;
    border: none;
    border-radius: 0;
    cursor: pointer;}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;}

.note{font-size: 0.8em; line-height: 1.5;}
.required{color:#FF7D6C;}
.TAcenter{text-align: center;}
.TAleft{text-align: left;}
.TAright{text-align: right;}
.current{pointer-events: none;}
.hidden{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
    clip-path: inset(0px 0px 99.9% 99.9%);
    border: 0;}

/*       header
----------------------*/


@keyframes maskInOutL {
    from {transform: scaleX(1);} to {transform: scaleX(0);} }

header {
    position: relative;
}
header h1 {
    width: 50%;
    position: absolute;
    top: 2%;
    right: 2%;
    z-index: 50;
}
header img{
    width: 100%;}
header img.pc {
    display: none;
}
/* ぼかしから出現 */
.blur{
    animation-name:blurAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
  }
  
  @keyframes blurAnime{
    from {
    filter: blur(10px);
    transform: scale(1.02);
    }
  
    to {
    filter: blur(0);
    transform: scale(1);
    }
}

header .titleArea {
    margin-bottom: 24px;
}
header .titleArea h2 {
    background: #008100;
    color: #FFF;
    font-size: 1.8em;
    line-height: 1.5em;
    text-align: center;
    font-weight: bold;
    padding: 6px 0;
}
header .titleArea ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
header .titleArea ul li {
    width: 50%;
}
.box{
    opacity: 0;
}
.fadeUp {
    animation-name:fadeUpAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity: 0;
    }
    
    @keyframes fadeUpAnime{
      from {
        opacity: 0;
      transform: translateY(100px);
      }
    
      to {
        opacity: 1;
      transform: translateY(0);
      }
    }


/*    main & footer
----------------------*/

.pickupArea {
    padding: 0 4%;
    margin-bottom: 36px;
}
.pickupArea .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 12px;
}
.pickupArea .title img {
    width: 15%;
    margin-right: 6px;
}
.pickupArea .title h2 {
    font-size: 3.2em;
    font-weight: bold;
    line-height: .8em;
}
.pickupArea .title h2 span {
    font-size: 0.55em;
    color: #0F8116;
}
.pickupArea .lead {
    text-align: center;
    line-height: 2em;
    font-size: 1em;
    font-weight: bold;
}
.newsArea {
    padding: 0 4%;
}

.newsBox {
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
    height: 400px;
}
.textBox {
    position: absolute;
    width: 90%;
    top: 200px;
    left: 5%;
    box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.1);
}
.textBox dl {
    position: relative;
}
.textBox dl dt {
    width: 40px;
    position: absolute;
    top: -45px;
    left: 45%;
}
.textBox dl dd {
    font-size: 20px;
    line-height: 1.5em;
    font-weight: bold;
    color: #0F8116;
    margin-bottom: 12px;
}
.profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 24px;
}
.profile img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
.profile .text {
    width: 50%;
}
.profile .text h3 {
    font-weight: bold;
    margin-bottom: 6px;
    font-size: 1.1em;
}
.profile .text h3 span {
    font-size: 0.8em;
}
.profile .text p {
    font-size: .9em;
    line-height: 1.5em;
}
.textBox {
    padding: 24px;
    background:rgba(255,255,255,0.7);
}
.linkbtn {
    width: 50%;
    text-align: center;
    font-weight: bold;
    background: #0F8116;
    color: #FFF;
    padding: 12px;
    border-radius: 24px;
    display: block;
    margin: 0 auto;
}
.linkbtn a {
    display: block;
    color: #FFF;
    text-decoration: none;
}

.itemArea {
    background: #DEDDEF;
    padding: 4%;
}
.itemname {
    margin-bottom: 24px;
}
.itemname dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 8px;
}
.itemname dl dt{
    background: #003894;
    color: #FFF;
    font-size: 0.8em;
    padding: 4px;
    margin-right: 6px;
}
.itemname dl dd {
    color: #003894;
    font-weight: bold;
    font-size: 1.2em;
}
.itemname h2 {
    font-weight: bold;
    font-size: 1.6em;
    color: #003894;
    line-height: 1.2em;
}
.itemname h2 span {
    font-size: .6em;
    color: #000;
}
.mainitem {
    margin-bottom: 24px;
}
.mainitem h2 {
    color: #003894;
    line-height: 1.2em;
    font-size: 1.2em;
    margin-bottom: 12px;
}
.iteminfo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 8px;
}
.iteminfo .itemImg {
    width: 36%;
    margin-right: 4%;
}
.iteminfo .itemImg img {
    margin-bottom: 12px;
}
.iteminfo .itemImg dl {
    font-size: 0.6em;
    line-height: 1.5em;
}
.iteminfo .itemImg dl dt {
    font-weight: bold;
}
.iteminfo .itemTxt {
    width: 60%;
    font-size: 0.9em;
    line-height: 1.5em;
}
.subitem {
    margin-bottom: 24px;
}
.subitem h2 {
    color: #003894;
    line-height: 1.2em;
    font-size: 1.2em;
    margin-bottom: 12px;
}
.subitem h2 br {
    display: none;
}
.subitem .subinfo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction : row-reverse;
    justify-content: left;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 8px;
}
.subitem .subinfo img {
    width: 36%;
    margin-right: 4%;
}
.subitem .subinfo p {
    width: 60%;
    font-size: 0.9em;
    line-height: 1.5em;
}

.athleteArea h2 {
    background: #003894;
    color: #FFF;
    font-size: 1.5em;
    line-height: 1.5em;
    text-align: center;
    font-weight: bold;
    padding: 6px 0;
}
.athlete-comment {
    position: relative;
}
.athlete-comment h3 {
    font-weight: bold;
    font-size: 2em;
}
.athlete-comment h3.togashiname {
    color: #FFF;
    position: absolute;
    top: 5%;
    left: 5%;
}
.athlete-comment h3.kawamuraname {
    position: absolute;
    top: 5%;
    right: 5%;
}
.athlete-comment img.pc {
    display: none;
}
.athlete-comment .togashiTxt {
    color: #FFF;
    background: #000;
    font-size: 1em;
    line-height: 1.5em;
    padding: 24px;
}
.athlete-comment .kawamuraTxt {
    color: #000;
    background: #E6E6E6;
    font-size: 1em;
    line-height: 1.5em;
    padding: 24px;
}


/*--- footer ---*/

footer{
    padding-bottom: 50px;
}


footer {
    text-align: center;
}
footer dl dt {
    font-size: 0.9em;
    margin-bottom: 6px;
}
footer dl dd {
    width: 40%;
    margin: 0 auto;
}
.footbanner li img {
    width: 90%;
    margin: 0 auto 24px;
}

/*------------------------------------------------------
  500px~
------------------------------------------------------*/

@media screen and (min-width:500px) {
    header h1 {
        width: 30%;
        top: 2%;
        right: 2%;
    }
    header img.pc {
        display: block;
    }
    header img.sp {
        display: none;
    } 
    header .titleArea ul li {
        width: 25%;
    } 
    .pickupArea .title img {
        width: 10%;
    }
    .pickupArea .title h2 {
        font-size: 2.6em;
    }
    .pickupArea .title h2 span {
        font-size: .4em;
    }
    .pickupArea .title h2 br {
        display: none;
    } 
    .pickupArea .lead .sp {
        display: none;
    }
    .newsArea {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        margin-bottom: 8px;
    }
    .newsBox {
        width: 48%;
        margin-right: 4%;
    }
    .newsBox {
        width: 48%;
        margin-right: 4%;
        margin-bottom: 36px;
        height: 600px;
    }
    
    .newsBox:last-child {
        margin-right: 0;
    }
    .textBox {
        width: 90%;
        top: 300px;
        left: 5%;
    }
    .textBox dl dd {
        padding-top: 32px;
        padding-bottom: 16px;
    }
    .itemname h2 br {
        display: none;
    }
    .mainitem h2 {
        font-size: 1.4em;
    }
    
    .athlete-comment img.pc {
        display: block;
    }
    .athlete-comment img.sp {
        display: none;
    }
    .athlete-comment .togashiTxt {
        position: absolute;
        max-width: 300px;
        top: 70px;
        left: 4%;
    }
    .athlete-comment h3.kawamuraname {
        left: 5%;
    }    
    .athlete-comment .kawamuraTxt {
        position: absolute;
        max-width: 300px;
        top: 70px;
        left: 4%;
    }

    footer{
        padding-bottom: 60px;}
    
    .footbanner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    .footbanner li {
        width: 320px;
        height: auto;
    }
}


/*------------------------------------------------------
 TABLET / 750px~
------------------------------------------------------*/

@media screen and (min-width:750px) {
    
    body{
        font-size: 1.6em;}
    
    footer{
        padding-bottom: 80px;}
    
}



/*------------------------------------------------------
 PC / 1050px~
------------------------------------------------------*/

@media screen and (min-width:1000px) {
    header .titleArea h2 {
        font-size: 2.4em;
    }
    header .titleArea h2 br {
        display: none;
    }
    .pickupArea .title h2 {
        font-size: 4.2em;
    }
    .pickupArea .lead {
        line-height: 2em;
        font-size: 1.4em;
    }
    .newsBox dl dt {
        width: 60px;
    }    
    .newsBox dl dd {
        font-size: 1.4em;
    }
    .textBox dl dd  
    .profile .text h3 {
        font-size: 1.4em;
    }
    .profile .text p {
        font-size: 1.2em;
    } 
    .voiceArea .text ul li {
        font-size: 1.2em;
        line-height: 1.5em;
    } 
    .itemBox {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    .mainitem {
        width: 60%;
        margin-right: 5%;
    }
    .mainitem h2 br {
        display: none;
    }
    .iteminfo .itemImg {
        width: 56%;
    }
    .iteminfo .itemTxt {
        font-size: 1em;
        width: 40%;
    }
    .iteminfo .itemImg dl {
        font-size: 0.9em;
        line-height: 1.5em;
    }    
    .subitem {
        width: 35%;
    }
    .subitem .subinfo {
        display: block;
    }
    .subitem .subinfo p {
        width: 100%;
    }
    .subitem .subinfo img {
        width: 100%;
        margin-right: 0;
    }
    .itemname dl dt{
        font-size: 1em;
    }
    .itemname dl dd {
        font-size: 1.4em;
    }
    .itemname h2 {
        font-size: 2.3em;
    }
    .itemname h2 span {
        font-size: .5em;
        margin-left: 6px;
    }
    .athleteArea h2 {
        font-size: 2.4em;
        padding: 6px 0;
    }
    .athleteBox {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    .athlete-comment {
        width: 50%;
    }
    .onlinelinkbtn {
        width: 30%;
        font-size: 1.4em;
        padding: 16px;
        border-radius: 32px;
    }
    
    footer dl dd {
        width: 20%;
    }
    
                
}
/*------------------------------------------------------
 PC / 12000px~
------------------------------------------------------*/

@media screen and (min-width:1200px) {
 
    #wrap{
        margin: 0 auto;}
    
}