@charset "utf-8";
/* CSS Document */

/*-----------------------------------------------------------------

	payment　お支払いについて

-----------------------------------------------------------------*/


/*------------------------------------------------------------------------------
  pay-type
------------------------------------------------------------------------------*/
.pay-type {
    font-size: 1.8rem;
    margin: 6rem 5rem;
}

.pay-type li {
    padding-left: 30px;
    font-size: 1.8rem;
    position: relative;
    letter-spacing: .1em;
}
.pay-type li:before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    border: 4px solid #aabfe6;
    border-radius: 50%;
    left: 0;
    top: 6px;
    position: absolute;
    box-sizing: border-box;
}

.pay-type li:not(:last-child) {
    margin-bottom: 1rem;
}

@media screen and (max-width: 480px) {
    .pay-type {
        margin: 4rem 2rem;
    }
}


/*------------------------------------------------------------------------------
  method-caution
------------------------------------------------------------------------------*/
.method-caution {
    width: 90%;
    max-width: 800px;
    margin: 0 auto 7rem;
}

.method-caution dt {
	color: #FFF;
	font-size: 1.9rem;
	font-weight: bold;
	background: var(--main-color);
	padding: 2rem 5rem;
	letter-spacing: .1em;
	box-sizing: border-box;
}
.method-caution dd {
	font-size: 13px;
	line-height: 1.5;
	background: #f4f4f4;
	padding: 2.5rem 5rem;
	box-sizing: border-box;
}

@media screen and (max-width: 480px) {
    
    .method-caution {
        width: 100%;
	}
    
    .method-caution dt {
        padding: 2rem 3rem;
	}
    
    .method-caution dd {
		padding: 2.5rem 3rem;
	}
    
    .method-caution dd p {
		font-size: 12px;
	}
}




/*------------------------------------------------------------------------------
  payment-table
------------------------------------------------------------------------------*/

.payment-table {
	margin: 0 auto 3rem;
	padding: 2.5rem 5rem;
	border: 1px dashed #191919;
    border-radius: 1.5rem;
}
.payment-table table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 1rem;
    font-size: 1.6rem;
    font-weight: bold;
}
.payment-table th {
	background-color: #edf1f9;
	color: var(--guide-color);
	padding: 2rem 1rem;
	text-align: center;
    font-weight: bold;
    border-radius: 1.5rem;
}
.payment-table td {
	padding: 2rem;
    color: #313131;
}

@media screen and (max-width: 810px) {

}
@media screen and (max-width: 480px) {
    .payment-table {
        padding: 2.5rem 3.5rem .5rem;
        text-align: center;
    }
    
    .payment-table th,
    .payment-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    
    .payment-table th {
        padding: 1.6rem 1rem;
    }
}




/*------------------------------------------------------------------------------
  payment-daibiki
------------------------------------------------------------------------------*/

.payment-daibiki ul {
    display: flex;
    justify-content: center;
    gap: 0 55px;
    margin-bottom: 4rem;
    flex-flow: row wrap;
}

.payment-daibiki li {
    position: relative;
    border: 3px solid var(--guide-color);
    color: var(--guide-color);
    border-radius: 8px;
    padding: 2rem 3rem;
    width: fit-content;
    font-size: 2.1rem;
    font-weight: 900;
    display:flex;
	justify-content: center;
	align-items: center;
    text-align: center;
    letter-spacing: .08em;
    box-sizing: border-box;
}
.payment-daibiki li:not(:last-child):after {
    content: "+";
    font-weight: bold;
    font-size: 3.5rem;
    position: absolute;
    right: -42px;
    top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

@media screen and (max-width: 786px) {
    .payment-daibiki ul {
        gap: 3.5rem 0;
    }
    .payment-daibiki li:not(:last-child):after {
        font-size: 3.2rem;
        top: auto;
        bottom: -4rem;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
    }
    
    .payment-daibiki li {
        width: 80%;
    }
    
    .payment-daibiki li br {
        display: none;
    }
}

