main a:hover {
  text-decoration: underline !important;
}

main a.link {
  text-decoration: none;
  color: #000000;
}

.mv-slideLeft {
  opacity: 0;
  transform: translateX(-100%);
  transition-property: opacity transform;
  transition-timing-function: ease-out;
  transition-duration: .2s;
  transition-delay: .6s;
}

.mv-slideLeft.is-active {
  opacity: 1;
  transform: translateX(0);
}

.mv-slideRight {
  opacity: 0;
  transform: translateX(100%);
  transition-property: opacity transform;
  transition-timing-function: ease-out;
  transition-duration: .2s;
  transition-delay: .8s;
}

.mv-slideRight.is-active {
  opacity: 1;
  transform: translateX(0);
}

.is-in-fadeUp {
  opacity: 0; 
  visibility: hidden;
  transform: translateY(50px);
  transition: all .6s;
}
.is-in-fadeUp.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* animation */
.is-ready .is-in-left,
.is-ready .is-in-right,
.is-in-left.is-ready,
.is-in-right.is-ready,
.is-in-bottom.is-ready {
    opacity: 0;
    transition: transform .5s ease-in-out, opacity .5s ease-in-out;
}

.is-ready .is-in-left,
.is-in-left.is-ready {
    transform: translateX(-100%);
}
.is-ready .is-in-right,
.is-in-right.is-ready {
    transform: translateX(100%);
}
.is-in-bottom.is-ready {
    transform: translateY(100px);
}

.is-active .is-in-left,
.is-active .is-in-right,
.is-in-left.is-active,
.is-in-right.is-active,
.is-in-bottom.is-active {
    transform: translate(0);
    opacity: 1;
}
.is-cover-image.is-ready {
    position: relative;
}
.is-cover-image.is-ready::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 120%;
    background: #fff;
    transition: width .5s ease-in-out;
}
.is-cover-image.is-active::before {
    width: 0;
}

/* key visual */
.players-key-visual {
    padding-top: 100%; /* 高さと幅の比を比率で固定。 */
    background: no-repeat 50% 0;
    background-size:contain;
    position: relative;
}
@media print,screen and (min-width:768px){
    .players-key-visual {
    padding-top: 300px;
    background: no-repeat 50% 0;
    background-size: auto 100%;
    position: relative;
    }
}
.players-key-visual::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: transform .3s ease-in-out;
}
.players-key-visual.is-active::before {
    transform: translateX(100%);
}
.players-key-visual.is-main {
    background-image: url("../images/players_main_sp.jpg");
}
@media print,screen and (min-width:768px){
    .players-key-visual {
        margin-top: 144px;
        padding-top:  35%; /* 高さと幅の比を比率で固定。 */
    }
    .players-key-visual::before {
        transition: transform .5s ease-in-out;
    }
    .players-key-visual p {
        font-size: 2rem;
    }
    .players-key-visual__logo img {
        width: 560px;
    }
    .players-key-visual.is-main {
        background-image: url("../images/players_main_pc.jpg");
        max-width: 100%;
        height: auto;
    }
}
/* catch*/
.para-catch {
    margin: 2.0rem 0 0;
    font-size: 2.4rem;
    text-align: justify;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: -0.1px;
}
@media print,screen and (min-width:414px){
    .para-catch {
		margin-top: 2.0rem;
        font-size: 2.7rem;
		text-align: justify;
		letter-spacing: -0.1px;
    }
}
@media print,screen and (min-width:512px){
    .para-catch {
        font-size: 3.4rem;
		letter-spacing: -0.3px;
    }
}	
@media print,screen and (min-width:580px){
    .para-catch {
        font-size: 3.8rem;
    }
}	
@media print,screen and (min-width:768px){
    .para-catch {
        font-size: 4.1rem;
    }
}

.para-lead {
    margin: 20px 0px 0px;
    font-size: 1.6rem;
    font-weight: normal;
	text-align: justify;
    line-height: 2.4rem;
}

@media print,screen and (min-width:768px){
    .para-lead {
        font-size: 1.8rem;
		line-height: 1.8;
		letter-spacing: -0.1px;
    }
}

/* colum */
.players-column-list {
    margin-top: 10px;
}
.players-column-box {
    max-width: 90%;
}
.players-column-box_name {
    margin-top: 2.4rem;
	margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.4;
    text-align: left;
}
.players-column-box_detail {
    margin: 10 10 10 10;
	text-align: justify;
}
@media print,screen and (min-width:768px){
    .players-column-list {
        margin-top:2.0rem;
    }
    .players-column-box {
        display: flex;
        align-items: center;
    }
    .players-column-box:nth-child(odd) {
        flex-direction: row-reverse;
    }
    .players-column-box__img {
        flex: 0 0 50%;
        margin-right: 40px;
    }
    .players-column-box:nth-child(odd)     .players-column-box__img {
        margin: 0 0 0 40px;
    }
    .players-column-box_name {
        font-size: 2.0rem;
        line-height: 1.3;
        text-align: left;
        margin: 2.2rem  0 20px;
    }
    .players-column-box__text {
        margin: 0;
        font-size: 1.5rem;
        line-height: 1.46;
        flex: 1;
    }
}
@media print,screen and (min-width:1025px){
    .players-column-list {
        max-width: 900px;
        margin-right: auto;
        margin-left: auto;
    }
	.players-column-box_name {
    margin-top: -4px;
}
	.players-column-box_detail {
    margin-top: -8px;
}
    .players-column-box__img {
        flex: 0 0 61%;
    }
    .players-column-box__img {
        margin-left: -70px;
    }
}
.players-column-box_caption {
    margin-top: 2.4rem;
    font-size: 1.2rem;
    font-weight: normal;
	text-align: left;
    line-height: 1.5;
    letter-spacing: -0.15px;
}
@media print,screen and (min-width:1025px){
    .players-column-box_caption {
        text-align: left;
        font-size: 1.4rem;
    }
}

.players-column-box_takurepo1 {
    margin: -1.8rem 0 0;
	font-size: 1.8rem;
    font-weight: bold;
	text-align: left;
}
@media print,screen and (min-width:768px){
	.players-column-box_takurepo1 {
    margin: -1.2rem 0 0;
    }
}

@media print,screen and (min-width:1024px){
	.players-column-box_takurepo1 {
    margin: 7.6rem 0 0;
	font-size: 1.8rem;
    font-weight: bold;
	text-align: left;
    }
}	
.players-column-box_takurepo2 {
    margin: 0 0 -0.8rem;
	font-size: 1.6rem;
    font-weight: nomal;
	text-align: left;
}

/* link btn */
.players-btn-wrap {
    margin: 24px auto 0;
    max-width: 360px;
    width: 95%;
}
.players-btn {
    margin: 0 auto;
    padding: 8px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3d3d3d;
    background: #e5e5e5;
    font-weight: normal;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: -0.15px;
}
.players-btn-ghost {
    border: 1px solid #506070;
    color: #506070;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin: 0 auto;
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: -0.15px;
}
@media print,screen and (min-width:768px){
    .players-btn {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    .players-column-box .players-btn-wrap {
        margin-left: 0;
    }
    .players-column-box .players-btn {
        font-size: 1.4rem;
    }
}
@media print,screen and (min-width:1025px){
    .players-btn,
    .players-btn-ghost {
        position: relative;
        transition: color .15s ease-in-out;
    }
    .players-btn::before,
    .players-btn-ghost::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 0;
        transition: width .15s ease-in-out;
        z-index: 0;
        background: #ff4291;
    }
    .players-btn-ghost::before {
        background: #506070;
    }

    .players-btn:hover {
        color: #fff;
    }
    .players-btn-ghost:hover {
        color: #fff;
    }
    .players-btn:hover::before,
    .players-btn-ghost:hover::before {
        width: 100%;
    }
    .players-btn > span,
    .players-btn-ghost > span {
        position: relative;
    }
}

.players-dotline{
 background-image : linear-gradient(to right, #FFE3F0 4px, transparent 3px);
 background-size: 12px 4px;
 background-repeat: repeat-x; 
 background-position: left bottom;
 margin: 1.4rem 0 -5.6rem;
}
@media print,screen and (min-width:768px){
	.players-dotline{
 background-image : linear-gradient(to right, #FFE3F0 4px, transparent 3px);
 background-size: 12px 4px;
 background-repeat: repeat-x; 
 background-position: left bottom;
 margin: 1.4rem 0 -7rem;
		}
}

.players-caption {
    margin: 0rem 0 -0rem;
    font-size: 1.4rem;
    font-weight: normal;
	text-align: left;
    line-height: 1.6;
    letter-spacing: -0.1px;
}
@media print,screen and (min-width:768px){
    .players-caption {
        margin: -3.6rem 0 -3.6rem;
    }
}


/* page move */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 200%;
    background: #fff;
    transition: transform .4s ease-in-out;
    transform: translateX(-100%);
    z-index: 10000;
}
body.is-move:before {
    transform: translateX(0%);
}


figure {
    text-align: center;
}

  .pc { display:none; }
  .sp { display:block; }

@media screen and (min-width:768px){
  .pc { display:block; }
  .sp { display:none; }
}


/* 卓レポ */
.takurepo-section{
background-color: #192d3b;
color: white;	
}

.takurepo-img {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}
@media print,screen and (min-width:1025px){
    .takurepo-img {
        margin: 0px 20px 0px 20px;
		width: 100%;
    }
}

.takurepo-lead {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
    font-size: 1.5rem;
	color:#FFF;
	text-decoration: none;
    font-weight: bold;
	text-align: justify;
    line-height: 2.0;
}

@media print,screen and (min-width:1025px){
    .takurepo-lead {
		width: 90%;
		margin-top: 3.6rem;
		margin-left: 3.6rem;
        font-size: 2.4rem;
		text-align: justify;
		line-height: 2.4;
		letter-spacing: -0.1px;
    }
}

.takurepo-caption {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
    font-size: 1.4rem;
	color:#FFF;
    font-weight: normal;
    line-height: 1.6;
    letter-spacing: -0.15px;
}
@media print,screen and (min-width:1025px){
    .takurepo-caption {
		width: 90%;
		margin-left: 3.6rem;
        text-align: justify;
        font-size: 1.6rem;
		line-height: 1.6;
    }
}

.takurepo-link {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
    font-size: 1.6rem;
	color:#FFF;
    font-weight: 600;
	text-align: left;
    line-height: 2.0;
}

@media print,screen and (min-width:1025px){
    .takurepo-link {
		width: 90%;
		margin-left: 3.6rem;
        font-size: 2.0rem;
		text-align: left;
		line-height: 2.4;
		letter-spacing: -0.1px;
    }
}

.takurepo-button {
    width: 60%;
	margin: 1.6rem auto 0 auto;
}
@media print,screen and (min-width:768px){
    .takurepo-button {
		width: 40%;
    }
}
@media print,screen and (min-width:1025px){
    .takurepo-button {
        margin-left: 3.6rem;
		width: 36%;
    }
}
