@charset "UTF-8";

/*---------------------------------------------------------------*\
	$共通
\*---------------------------------------------------------------*/

/*---------------------------------------------------------------*\
	$よくある質問
\*---------------------------------------------------------------*/
.content_inner {
    max-width: 1100px;
    margin: 0 auto 50px;
    padding-top: 100px;
}

.content_inner h1 {
    text-align: center;
    font-size: 4rem;
    font-weight: bold;
    margin: 50px 0 80px;
}

.faq {
    padding: 120px 0;
}

.faq_inner h2 {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 60px;
    font-weight: 600;
}

.faq_category {
    margin: 30px auto;
    border-bottom: 2px solid;
    width: 100%;
}

.faq_category img {
    width: 500px!important;
    margin: 0 auto 15px;
}

ul.faq_list li:last-child {
    margin-bottom: 60px;
}

ul.faq_anchor_link {
    display: flex;
    justify-content: space-between;
}

ul.faq_anchor_link li {
    width: 32.5%;
}

ul.faq_anchor_link li a {
    text-align: center;
    font-size: 2rem;
    display: block;
    font-weight: 600;
    border: 1px solid;
    padding: 25px 0;
    position: relative;
    background: #fff;
    border-radius: 5px;
    margin-bottom: 60px;
    transition: all 0.25s ease-in-out 0s;
}

ul.faq_anchor_link li a:hover {
	background: #005844;
	border: 1px solid #005844;
	color: #fff;
}

ul.faq_anchor_link li a:hover:after {
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

ul.faq_anchor_link li a:after {
    transition: all 0.25s ease-in-out 0s;
    position: absolute;
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(45deg);
    right: 25px;
    top: 50%;
    margin-top: -5px;
}

ul.faq_list {
    max-width: 1100px;
    margin: 0 auto;
}

ul.faq_list li {
    width: 100%;
    padding: 50px;
    background: #fff;
    border-radius: 10px;
    align-items: center;
    display: flex;
    margin: 20px 0;
    justify-content: space-between;
}

.faq_q {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.faq_q_icon {
    font-size: 2rem;
    background: #005844;
    color: #fff;
    margin-right: 20px;
    padding: 10px 0;
    font-weight: 500;
    border-radius: 6px;
    width: 40px;
    line-height: 16px;
    text-align: center;
}

.faq_q p {
    font-size: 2.2rem;
    font-weight: 600;
    width: 90%;
    line-height: 34px;
}

.faq_a {
    display: flex;
    align-items: flex-start;
}

.faq_a_icon {
    background: #eee;
    padding: 10px 0;
    font-weight: 600;
    width: 40px;
    font-size: 2rem;
    margin-right: 20px;
    line-height: 16px;
    text-align: center;
    border-radius: 6px;
}

.faq_a p {
    font-size: 1.5rem;
    line-height: 28px;
    width: 90%;
    letter-spacing: 0.5px;
}

.faq_a p span {
    font-weight: bold;
    color: #005844;
    font-size: 1.5rem;
}

.faq_text {
    width: 60%;
}

.faq_text_large {
    width: 100%;
}

.faq_photo {
    width: 35%;
    background: #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq_more_btn {
    display: block;
    padding: 16px;
    border: 1px solid #005844;
    border-radius: 5px;
    text-align: center;
    color: #005844;
    font-size: 1.4rem;
    max-width: 800px;
    position: relative;
    transition: all 0.2s ease-in-out 0s;
    margin: 30px auto 0;
}

.faq_more_btn:hover {
	background: #005844;
	color: #fff;
}

.faq_more_btn:after {
    width: 6px;
    height: 6px;
    border-right: 1px solid #005844;
    border-bottom: 1px solid #005844;
    content: "";
    display: block;
    transform: rotate(-45deg);
    right: 15px;
    top: 50%;
    position: absolute;
    margin-top: -3px;
}

.faq_more_btn:hover:after {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

h2.faq_title {
    text-align: center;
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.faq_rank {
    font-size: 4rem;
    color: #005844;
    width: max-content;
    display: block;
    position: relative;
    margin: 0 auto 15px;
}

.faq_rank span {
    font-size: 8rem;
    color: #005844;
}

.faq_rank:before {
    position: absolute;
    height: 50px;
    width: 1px;
    display: block;
    background: #005844;
    content: "";
    left: -28px;
    top: 30px;
    transform: rotate(-30deg);
}

.faq_rank:after {
    position: absolute;
    height: 50px;
    width: 1px;
    display: block;
    content: "";
    background: #005844;
    right: -28px;
    top: 30px;
    transform: rotate(30deg);
}
/*---------------------------------------------------------------*\
	$980px
\*---------------------------------------------------------------*/
@media screen and (max-width: 980px) {
}

/*---------------------------------------------------------------*\
	$768px
\*---------------------------------------------------------------*/
@media screen and (max-width: 768px) {
.content_inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 90%;
}
.content_inner h1 {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 0;
    margin: 0;
    padding: 20px 0 50px;
}
.faq_inner h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.faq {
    padding: 40px 3%;
}

ul.faq_list li {
    display: block;
    padding: 5%;
    margin: 10px 0;
    border-radius: 8px;
}

.faq_photo {
    width: 100%;
    height: 160px;
    margin-bottom: 5%;
}

.faq_text {
    width: 100%;
}

.faq_q p {
    font-size: 1.5rem;
    line-height: 22px;
}

.faq_a p {
    font-size: 1.3rem;
    line-height: 22px;
}

.faq_a p span {
    font-size: 1.3rem;
}

.faq_q_icon {
    font-size: 1.6rem;
    padding: 8px 0;
    margin-right: 10px;
    width: 34px;
    border-radius: 4px;
}

.faq_a_icon {
    width: 34px;
    font-size: 1.6rem;
    margin-right: 10px;
    padding: 8px 0;
}

.faq_q {
    margin-bottom: 5%;
}

.faq_more_btn {
    margin: 20px auto 0;
}
	
ul.faq_anchor_link {
    display: block;
    margin-bottom: 50px;
}

ul.faq_anchor_link li {
    width: 100%;
}

ul.faq_anchor_link li a {
    font-size: 1.8rem;
    padding: 16px;
    margin-bottom: 10px;
}

ul.faq_anchor_link li a:after {
    right: 18px;
}

.faq_category img {
    width: 70%;
    margin: 0 auto 5px;
}

.faq_category {
    margin: 20px auto;
    border-bottom: 3px solid;
}

ul.faq_list li:last-child {
    margin-bottom: 50px;
}
	
h2.faq_title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.faq_rank {
    font-size: 3rem;
}

.faq_rank span {
    font-size: 6rem;
}

.faq_rank:before {
    top: 14px;
}

.faq_rank:after {
    top: 15px;
}

ul.faq_list li:last-child {
    margin-bottom: 20px;
}
/*---------------------------------------------------------------*\
    $480px
\*---------------------------------------------------------------*/
@media screen and (max-width: 480px) {
}

/*---------------------------------------------------------------*\
    $320px - iPhone SE, 5s, 5 and 4s
\*---------------------------------------------------------------*/
@media screen and (max-width: 320px) {
}
}
