@charset "UTF-8";

html {
    font-size: 16px;
}

html, body {
    height: 100%;
}

html * {
    box-sizing: border-box;
} 

body {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;;
}

.container {
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1040px;
}

/* -- ヘッダー装飾 --*/
.header {
    background: #F38470;
    position: fixed;
    width: 100%;
    height: 170px;
    border-bottom: 6px solid #6846A5;
    z-index: 30;
}


header .LACOlogo img {
    width: 90px;
    height: auto;
    cursor: pointer;
}

header .maintitle {
    padding: 0 0 0 30px;
    display: flex;
    justify-content: center;
}

.title-name h1 {
    font-weight: 700;
    font-size: 36px;
    padding: 0 0 0 16px;
    margin: 0;
    color: black;
}

.title-name h2 {
    font-weight: 600;
    font-size: 20px;
    padding: 0 0 0 18px;
    margin: 0;
    color: black;
}


/* -- メイン装飾 -- */
main {
    padding-top: 170px;
    background-color: white;
    height: auto;
    border-bottom: 6px solid #6846A5;
}


/* - index.htmlの装飾 - */
.slide-wrapper {
    max-width: 1470px;
    width: 100%;
    margin: 0 auto;
    height: auto;
    position: relative;
    overflow: hidden;
    z-index: 10;
    display: flex;
    align-items: stretch;
}

.slide {
    width: 100%;
    height: 100%;
    display: flex;
    flex: 6;
}

.slide img {
    width: 100%;
    height: auto;
    position: relative;
    object-fit: cover;
}

.slide div {
    width: 25%;
    height: 100%;
    font-size: 16px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.slide1 {
    transform: translateX(0);
}

.slide2 {
    transform: translateX(-25%);
}

.slide3 {
    transform: translateX(-50%);
}

.slide4 {
    transform: translateX(-75%);
}

.next {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 10px;
    bottom: 50%;
    z-index: 30;
    cursor: pointer;
    border-top: solid 5px black;
    border-right: solid 5px black;
    -webkit-transform: rotate(45deg)translateY(50%);
    transform: rotate(45deg)translateY(50%);
}

.prev {
    position: absolute;
    width: 20px;
    height: 20px;
    left: 25px;
    bottom: 50%;
    z-index: 30;
    cursor: pointer;
    border-top: solid 5px black;
    border-right: solid 5px black;
    -webkit-transform: rotate(-135deg)translateY(-50%);
    transform: rotate(-135deg)translateY(-50%);
}

/* - index mininewsの装飾 - */

/* ミニニュースの装飾 */
.mininews {
    width: 69%;
    float: left;
    margin-top: 15px;
}

.mnnews-title {
    margin-top: 40px;
    background-color: lightskyblue;
    border-radius: 10px 10px 0 0;
    display: flex;
    border-top: 2px solid #F3573A;
    border-right: 2px solid #F3573A;
    border-left: 2px solid #F3573A;
}

.mnnews-title a {
    padding: 10px;
    margin-top: 20px;
    margin-right: 20px;
    margin-left: auto;
    margin-bottom: 20px;
    display: block;
    border-radius: 5px;
    font-size: 16px;
    text-decoration-line: none;
    background-color: greenyellow;
    color: black;
}

.mnnews-title a:hover {
    color: #6846A5;
}

.mnnews-title p {
    padding: 0 40px 0 40px;
    font-size: 26px;
    font-weight: 500;
}

.mnnews-list {
    background-color: white;
    margin: 0 0 34px 0;
    padding: 0;
    border-radius: 0 0 10px 10px;
    border: 2px solid #F3573A;
}

.mnnews-list ul {
    margin: 0;
    padding: 30px 30px 30px 30px;
}

.mnnews-list li {
    padding: 10px 0 10px 0;
    list-style: none;
    line-height: 40px;
    border-bottom: 1px dotted #F3573A;
}

.mnnews-list a {
    text-decoration: none;
    color: black;
    font-size: 19px;
}

.genre {
    padding: 7px 20px 7px 20px;
    background-color: #F3573A;
    color: white;
}

.date {
    padding: 0 10px 0 10px;
}

.news-info {
    padding: 0 10px 0 10px;
}

.mnnews-list li a:hover {
    color: dodgerblue;
}
/* ミニニュースの装飾終わり */

/* スコアボードの装飾 */
.minigameinfo {
    display: grid;
    flex: 4;
    /* grid-template-columns: 33% 33% 33%; */
}

.minigameinfo-all {
    margin:10px 10px 0 10px;
    border: 2px solid #F3573A;
    padding: 10px;
}

.score-title {
    text-align: center;
    margin: 0;
    font-size: 20px;
    color: #F3573A;
}

.score-leag {
    text-align: center;
    margin: 5px auto;
    font-size: 16px;
    color: #F3573A;
}

.score-home {
    color: #F3573A;
    margin: 0;
    font-size: 18px;
}

.score-away {
    color: #F3573A;
    margin: 0;
    font-size: 18px;
}

.score-team {
    display: grid;
    margin-top: 10px;
    text-align: center;
    grid-template-columns: 35% 30% 35%;
}

.score-result {
    margin: auto 0;
    text-align: center;
    font-size: 50px;
    font-weight: 600;
    color: #F3573A;
}

.minigameinfo-teamimg {
    display: grid;
    text-align: center;
    grid-template-columns: 35% 30% 35%;
    margin: 10px 0 10px 0;
}

.minigameinfo-teamimg img {
    margin: 0 auto;
    width: 80%;
    height: auto;
}

.score-vs {
    text-align: center;
    font-size: 30px;
    color: #F3573A;
}

.score-year {
    margin: 0;
    text-align: center;
    color: #F3573A;
}

.score-place {
    margin: 0;
    text-align: center;
    color: #F3573A;
}

.rankandminigameinfo-all {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 20px 10px;
}

.score-ranking {
    margin: 0;
    border: 2px solid #F3573A;
    padding: 20px;
}

.rank-ranking {
    margin: 0;
    color: #F3573A;
    font-size: 18px;
    padding: 0;
}

.rank-title {
    margin: 10px 0 0 0;
    font-size: 26px;
    color: #F3573A;
}

.rank-leag {
    font-size: 20px;
    color: #F3573A;
    margin: 0 10px 0 10px;
    padding-top: 23px;
}

.rank-number {
    margin: 0;
    font-size: 35px;
    color: #F3573A;
}

.rank-number-number {
    margin: 0;
    font-size: 24px;
    color: #F3573A;
}

.minigameinfo-link {
    margin: 0;
    border: 2px solid #F3573A;
    padding: 20px;
}

.minigameinfo-link-button {
    text-decoration: none;
    color: #F3573A;
}

.minigameinfo-link-button:hover {
    text-decoration-line: underline;
    color: deepskyblue;
}

/* スコアボードの装飾終わり */

.laco-news {
    margin-bottom: 50px;
}

.laco-news img {
    width: 100%;
}

.laco-news h3 {
    font-size: 26px;
    color: black;
    font-weight: 600;
    margin-bottom: 15px;
}
/*.indicator {
    width: 100%;
    position: absolute;
    bottom: 20px;
    display: flex;
    column-gap: 18px;
    z-index: 10;
    justify-content: center;
    align-items: center;
}

.indicator li {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    list-style: none;
    background-color: #fff;
    border: 2px #000 solid;
    cursor: pointer;
}

.indicator li:first-of-type {
    background-color: #000;
} */

/* - matchinfo.htmlの装飾 - */
.page-title {
    margin: 40px 0 40px 0;
    text-align: center;
    font-weight: normal;
    font-size: 30px;
    color: black;
}

.leagtitle {
    font-weight: 200;
    font-size: 30px;
    color: black;
}

.gameinfo {
    border-collapse: collapse;
    margin: 0 0 80px 0;
    width: 100%;
}

.gameinfo th, .gameinfo td {
    padding: 17px;
    border: 2px solid #F3573A;
    text-align: center;
}

.gameinfo th{
    background-color: lightskyblue;
    vertical-align: top;
    font-size: 20px;
    font-weight: 700;
}

.gameinfo td {
    background-color: white;
    font-size: 20px;
}

.getpoint {
    padding: 0 0 0 50px;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    
}

.p-getplayer {
    display: flex;
    padding: 0 10px 0 10px;
}

.getperiod {
    text-align: left;
    padding: 0 10px 0 40px;
    font-size: 16px;
}

.loseperiod {
    text-align: left;
    padding: 0 10px 0 100px;
    font-size: 16px;
}

.matchinfo-place {
    font-size: 24px;
    color: white;
}
/* - matchinfo.htmlの装飾終わり - */

/* - linknewsの装飾 - */
.linknews {
    width: 29%;
    float: right;
}

.linknews-frame {
    flex-wrap: wrap;
    width: 100%;
}

.linknews-individual-school {
    margin-right: 10px;
    margin-bottom: 10px;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.linknews-individual-school img {
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: 0.3s;
}

.linknews-individual-school img:hover {
    transform:scale(1.1);
}

.linknews-individual-kosaru {
    margin-right: 10px;
    margin-bottom: 10px;
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

.linknews-individual-kosaru img {
    width: 100%;
    height: auto;
}

/*.linknews-individual-kosaru img:hover {
    transform:scale(1.1);
}
*/

.linknews-individual-trial {
    margin-right: 10px;
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

.linknews-individual-trial img {
    width: 100%;
    height: auto;
}

/*.linknews-individual-trial img:hover {
    transform:scale(1.1);
}
*/
/* - linknewsの装飾終わり - */

/* - allmember-formの装飾 - */
.allmember-form {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 5px;
}

.member-form, 
.nomember-form {
    padding: 5px 8px;
    background-color: #6A3300;
    border-radius: 20px;
}

.member-form p,
.nomember-form p {
    font-size: 14px;
    font-weight: 500;
    margin: 2px 0;
}

.member-form a,
.nomember-form a {
    text-decoration-line: none;
    color: white;
}

.member-form a:hover,
.nomember-form a:hover {
    text-decoration-line: underline;
}
/* - allmember-formの装飾終わり - */

/* - taikenkai-allの装飾 - */
.taikenkai-form {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 8px;
    background-color: yellow;
    border-radius: 20px;
    width: auto;
}

.taikenkai-form p {
    font-size: 14px;
    font-weight: 500;
    margin-top: 2px;
    margin-bottom: 2px;
    white-space: nowrap;
}

.taikenkai-form a {
    text-decoration-line: none;
    color: black;
}

.taikenkai-form a:hover {
    text-decoration-line: underline;
}
/* - taikenkai-allの装飾終わり - */

/* - sponsorの装飾- */
.sponsor {
    clear: both;
}

.sponsor p {
    font-size: 20px;
    font-weight: 600;
    padding-left: 10px;
    margin-bottom: 10px;
    background: transparent;
    border-left: solid 5px dodgerblue;
}

.sponsor-uniform {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 10px);
    margin-bottom: 50px;
}

.sponsor-logo {
    width: calc(25% - 10px);
    height: auto;
    margin-right: 10px;
    margin-bottom: 5px;
}

.sponsor-logo img {
    width: 100%;
    height: auto;
    border: 1px solid gray;
    cursor: pointer;
    transition: 0.3s;
}

.sponsor-logo img:hover {
    opacity: 0.5;
}

.sponsor-wormup {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 10px);
    margin-bottom: 50px;
}

.sponsor-wormup-logo {
    width: calc(25% - 10px);
    height: auto;
    margin-right: 10px;
    margin-bottom: 5px;
}

.sponsor-wormup img {
    width: 100%;
    height: auto;
    border: 1px solid gray;
    cursor: pointer;
    transition: 0.3s;
}

.sponsor-wormup img:hover {
    opacity: 0.5;
}

/* - sponsorの装飾終わり- */

/* - index内のニュースまとめ装飾 - */
/*.index-news {
    
}
*/
/* - index内のニュースまとめ装飾終わり - */

/* - news.infoの装飾 - */
.notice {
    background-color: white;
    padding: 10px 30px 30px 30px;
    margin-bottom: 40px;
    border: 2px solid #F3573A;
}

.entry-title {
    padding-top: 200px;
    margin-top: -190px;
    margin-bottom: 20px;
    padding-bottom: 7px;
    border-bottom: 3px solid dodgerblue;
    font-size: 24px;
}

.entry-detail {
    margin-bottom: 20px;
    padding-bottom: 5px;
    border-bottom: 3px solid dodgerblue;
    font-size: 20px;
}

.entry-inform img {
    width: 100%;
    height: auto;
    display: block;
    padding-left: 50px;
    padding-right: 50px;
    margin-left: auto;
    margin-right: auto;
}

.entry-inform p {
    margin-top: 0;
    margin-bottom: 20px;
}

.entry-inform a {
    text-decoration: none;
    color: blue;
}

.entry-inform a:hover {
    border-bottom: 1px solid blue;
}

/* - member.htmlの装飾 - */
.players {
    background-color: white;
    padding: 40px;
    border: 2px solid #F3573A;
    display: flex; 
    font-family: Arial, sans-serif;
    margin-bottom: 40px;
}

.left-side {
    width: 50%;
    text-align: center;
    display: flex;
}

/*
.players p {
    margin-top: 0;
    margin-bottom: 10px;
    padding-bottom: 5px;
    font-size: 30px;
    font-weight: 500;
    border-bottom: 3px solid dodgerblue;
}
*/

.left-side img {
    width: 100%;
    height: auto;
    padding: 20px;
}

.right-side {
    width: 50%;
    padding: 20px;
}

.player-profile {
    padding: 4px;
    flex: 1;
}

.player-info-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.player-number {
    font-size: 70px;
    margin-left: 40px;
    margin-right: 50px;
    margin-bottom: 40px;
    flex: 0 0 auto;
}

.player-details {
    display: flex;
    flex-direction: column;
}

.player-name {
    font-weight: bold;
    flex: 1;
}

.player-name h1 {
    margin: 0;
    font-size: 50px;
}

.player-name p {
    margin-top: 0;
    font-weight: 400;
    font-size: 30px;
    color: #999;
}

.info-details p {
    font-size: 40px;
    margin: 20px 0;
    padding-left: 65px;
}

/*
.info-label {
    display: inline-block;
    border-bottom: 3px solid dodgerblue;
}
*/

/*
.players img {
    margin-top: 10px;
    margin-bottom: 20px;
    width: 100%;
    height: auto;
}
*/

.staf img {
    width: 100%;
    height: auto;
}

.staf {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 40px;
}

.staf-kantoku {
    padding: 20px 60px;
    background-color: #F38470;
    border: 2px solid white;
}

.staf-kantoku p {
    text-align: center;
    font-weight: 500;
    font-size: 30px;
}

.staf-traner {
    padding: 20px 60px;
    background-color: #F38470;
    border: 2px solid white;
}

.staf-traner p {
    text-align: center;
    font-weight: 500;
    font-size: 30px;
}

.staf-GK {
    padding: 20px 60px;
    background-color: #F38470;
    border: 2px solid white;
}

.staf-GK p {
    text-align: center;
    font-weight: 500;
    font-size: 30px;
}

/* - futsalschool.htmlの装飾 - */
.school-introduce {
    display: flex;
    justify-content: center;
}

.school-introduce img {
    width: 50%;
    height: auto;
    margin: 10px;
    border: 1px solid black;
}

.school-come {
    margin: 20px;
    font-size: 20px;
}

.school-come a {
    text-decoration: none;
    font-weight: bold;
    color: black;
}

.school-come a:hover {
    color: blue;
}
/* - futsalschool.htmlの装飾終わり - */

/* - contact.htmlの装飾 - */
.contact-link {
    background-color: white;
    padding: 30px;
    margin-bottom: 40px;
}

.contact-address {
    font-size: 20px;
}
/* - contact.htmlの装飾終わり - */

/* -- organization.htmlの装飾 --  */
.organization-name {
    margin-bottom: 10px;
    font-size: 24px;
}

.organization-tbl {
    border-collapse: collapse;
    margin: 0 0 80px 0;
    width: 100%;
    writing-mode: horizontal-tb;
}

.organization-tbl th, .organization-tbl td {
    padding: 15px 35px 15px 35px;
    border: 1px solid black;
}

.organization-tbl th {
    background-color: #FFDCD2;
    text-align: center;
    white-space: nowrap;
}

.teikan-contain {
    margin-bottom: 50px;
}

.teikan {
    font-size: 24px;
    margin-bottom: 10px;
}

.teikan-pdf {
    color: blue;
    text-decoration: none;
    font-size: 20px;
}

.teikan-pdf:hover {
    text-decoration-line: underline;
}
/* -- organization.htmlの装飾終わり --  */

/* -- フッター装飾 -- */
footer {
    background-color: #717375;
}

.footermenu {
    margin: 0;
    padding: 30px 0 0 20px;
    list-style: none;
}

.footermenu a {
    text-decoration-line: none;
    color: white;
    font-size: 18px;
    line-height: 40px;
}

.organization-footer {
    margin-top: 40px;
    margin-left: 20px;
    color: white;
}

.organization-title {
    font-size: 22px;
}

.copylight {
    width: 100%;
    background-color: white;
    margin: 30px 0 0 0;
    padding: 1px 0 1px 20px;
    font-size: 16px;
    font-weight: 200;
    text-align: center;
}

.footermenu a:hover {
    border-bottom: 1.5px solid white;
}