/* 黒文字＆黄緑斜線型下線の装飾 -> class="common-line-001 */
.common-line-001 {
    position: relative;
    padding: 0.5rem 1rem;
    color: #000;
    font-size: 2rem;
}

.common-line-001:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    content: '';
    background-image: -webkit-repeating-linear-gradient(135deg, #9acd32, #9acd32 1px, transparent 2px, transparent 5px);
    background-image: repeating-linear-gradient(-45deg, #9acd32, #9acd32 1px, transparent 2px, transparent 5px);
    background-size: 7px 7px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/************************************
** レスポンシブデザイン用のメディアクエリ 黒文字＆黄緑斜線型下線
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px) {}

/*834px以下*/
@media screen and (max-width: 834px) {
	.common-line-001 {
		margin-bottom: 1rem;
		font-size: 1.5rem;
	}
}

/*480px以下*/
@media screen and (max-width: 480px) {
	.common-line-001 {
		margin-bottom: 1rem;
		font-size: 1rem;
	}
}

/* ##################################################################### */

/* ピンク文字＆ピンク斜線型下線の装飾 -> class="common-line-002" */
.common-line-002 {
    position: relative;
    padding: 2.5rem 1rem;
    color: #EA6188;
    font-size: 2rem;
}

.common-line-002:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    content: '';
    background-image: -webkit-repeating-linear-gradient(135deg, #EA6188, #EA6188 1px, transparent 2px, transparent 5px);
    background-image: repeating-linear-gradient(-45deg, #EA6188, #EA6188 1px, transparent 2px, transparent 5px);
    background-size: 7px 7px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/************************************
** レスポンシブデザイン用のメディアクエリ ピンク文字＆ピンク斜線型下線
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px) {}

/*834px以下*/
@media screen and (max-width: 834px) {
	.common-line-002 {
		margin-bottom: 1rem;
		font-size: 1.5rem;
	}
}

/*480px以下*/
@media screen and (max-width: 480px) {
	.common-line-002 {
		margin-bottom: 1rem;
		font-size: 1rem;
	}
}

/* ##################################################################### */

/* TOP画面ミッション文字列の装飾 -> class="mission-top-label" */
.mission-top-label {
    position: relative;
    overflow: hidden;
    padding: 1.5rem 2rem 1.5rem 265px;
    font-size: 1.5rem;
    border: 5px solid #499846;
    background: #fff;
    border-radius: 62px;
	margin-top: 3rem;
    margin-bottom: 2rem;
}

.mission-top-label:before {
    position: absolute;
    top: -25%;
    left: 0px;
    width: 240px;
    height: 150%;
    content: '';
    background: #499846;
    border-radius: 10rem;
}

.mission-top-label span {
    font-size: 2rem;
    position: absolute;
    z-index: 1;
    top: 4px;
    left: 0;
    display: block;
    padding-top: 12px;
    padding-left: 16px;
    color: #fff;
}

/************************************
** レスポンシブデザイン用のメディアクエリ TOP画面ミッション文字列
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px) {}

/*834px以下*/
@media screen and (max-width: 834px) {
    .mission-top-label {
        padding: 2rem 1rem 1.5rem 195px;
        font-size: 1.3rem;
    }

    .mission-top-label:before {
        width: 180px;
        height: 150%;
    }

    .mission-top-label span {
        font-size: 1.5rem;
        top: 15px;
        padding-top: 12px;
        padding-left: 16px;
    }
}

/*480px以下*/
@media screen and (max-width: 480px) {
    .mission-top-label {
        padding: 1rem 0rem 0.5rem 80px;
        font-size: 1rem; /* 16px - WCAG準拠（0.5remから修正） */
        border: 2px solid #499846;
        border-radius: 50px;
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }

    .mission-top-label:before {
        width: 75px;
        height: 150%;
    }

    .mission-top-label span {
        font-size: 1rem; /* 16px - WCAG準拠（0.5remから修正） */
        top: 5px;
        left: -5px;
    }
}

/* ##################################################################### */

/* ミッション文字列の装飾 -> class="mission" */
.mission {
    position: relative;
    padding-left: 8.5em;
    font-weight: 700;
    font-size: 2.0rem;
}

.mission span {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 2rem;
    color: #e3f5d8;
    background: #22ac38;
}

.mission span:after {
    position: absolute;
    top: calc(50% - 7px);
    right: -11px;
    width: 0;
    height: 0;
    content: '';
    border-width: 7px 0 7px 12px;
    border-style: solid;
    border-color: transparent transparent transparent #22ac38;
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px) {

    /* ミッション文字列の装飾 -> class="mission" */
    .mission {
        position: relative;
        padding-left: 9.5em;
        font-weight: 700;
        font-size: 1.5rem;
    }

    .mission span {
        position: absolute;
        top: 0;
        left: 0;
        padding: 0 1.5rem;
        /* 吹き出しの文字回り */
        color: #e3f5d8;
        background: #22ac38;
    }

    /* 吹き出しの三角部分 */
    .mission span:after {
        position: absolute;
        top: calc(50% - 7px);
        right: -11px;
        width: 0;
        height: 0;
        content: '';
        border-width: 7px 0 7px 12px;
        border-style: solid;
        border-color: transparent transparent transparent #22ac38;
    }
}

/*834px以下*/
@media screen and (max-width: 834px) {

    /* ミッション文字列の装飾 -> class="mission" */
    .mission {
        position: relative;
        padding-left: 10em;
        font-weight: 700;
        font-size: 1.3rem;
    }

    .mission span {
        position: absolute;
        top: 0;
        left: 0;
        padding: 0 1.0rem;
        /* 吹き出しの文字回り */
        color: #e3f5d8;
        background: #22ac38;
    }

    /* 吹き出しの三角部分 */
    .mission span:after {
        position: absolute;
        top: calc(50% - 7px);
        right: -11px;
        width: 0;
        height: 0;
        content: '';
        border-width: 7px 0 7px 12px;
        border-style: solid;
        border-color: transparent transparent transparent #22ac38;
    }
}

/* ##################################################################### */

/* 見出し -> class="readme-label" */
.readme-label {
    position: relative;
    display: inline-block;
    padding: 1rem 2rem 1rem 4rem;
    color: #fff;
    border-radius: 100vh;
    background: #EA6188;
    margin: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 35px;
    padding-right: 40px;
    position: relative;
    font-weight: 700;
    font-size: 2.0rem;
}
/************************************
** レスポンシブデザイン用のメディアクエリ 見出し
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px) {
}

/*834px以下*/
@media screen and (max-width: 834px) {
    /* 見出し */
    .readme-label {
        border-radius: 105vh;
        font-size: 1.5rem;
    }
}
/*480px以下*/
@media screen and (max-width: 480px) {
    /* 見出し */
    .readme-label {
        padding: 0.5rem 1rem 0.5rem 2rem;
        border-radius: 100vh 0 0 100vh;
        margin-top: 20px;
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 10px;
        font-weight: 500;
        font-size: 1rem;
    }
}

/* ##################################################################### */

/* ページ遷移ボタンラベル -> class="link-btn-label" */
.link-btn-label {
    position: relative;
    display: inline-block;
    color: #fff;
    border-radius: 100vh;
    background: #EA6188;
    margin: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 35px;
    padding-right: 40px;
    font-weight: 700;
    font-size: 2.0rem;
	box-shadow: 0 5px 0 #00000073;
	border: 1px solid #fff;
	cursor: pointer;
}
/* .link-btn-label:hover {
  box-shadow: none;
  transform: translateY(5px);
} */
/* ラベル位置を中央寄せにする */
.turn-top-btn-posi {
	text-align: center;
}
.link-btn-label:active {
  box-shadow: none;
  transform: translateY(5px);
}
/************************************
** レスポンシブデザイン用のメディアクエリ ページ遷移ボタンラベル
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px) {
}

/*834px以下*/
@media screen and (max-width: 834px) {
    /* 見出し */
    .link-btn-label {
        border-radius: 105vh;
        font-size: 1.5rem;
    }
}
/*480px以下*/
@media screen and (max-width: 480px) {
    /* 見出し */
    .link-btn-label {
        padding: 0.5rem 1rem 0.5rem 2rem;
        border-radius: 100vh;
        margin-top: 20px;
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 10px;
        font-weight: 500;
        font-size: 1rem;
    }
}

/* ##################################################################### */

/* 利用規約・プライバシーポリシー見出し -> class="privacypolicy-label" */
.privacypolicy-label {
    position: relative;
    display: inline-block;
    padding: 1rem 2rem 1rem 4rem;
    color: #fff;
    border-radius: 100vh;
    background: #499846;
    margin: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 35px;
    padding-right: 40px;
    position: relative;
    font-weight: 700;
    font-size: 2.0rem;
}

/* ##################################################################### */

/* クイズ選択肢ボタン */
/* 親テーマで定義されている.btnのスタイルをいったんここでクリア	 */
.select-btn {
    font-weight: bold;
    display: inline-block;
    cursor: pointer;
    line-height: normal;
    margin: 10px;
    padding-top: 20px;
    padding-bottom: 10px;
    padding-left: 30px;
    text-decoration: none;
    font-size: 25px;
    border: 2px solid transparent;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.btn--orange,
a.btn--orange {
    color: #000;
    background-color: #fff;
    width: 80%;
}

.btn--orange:hover,
a.btn--orange:hover {
    color: #000;
    background: #D3E173;
}

a.btn--radius {
    border-radius: 100vh;
}
/************************************
** レスポンシブデザイン用のメディアクエリ クイズ選択肢ボタン
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px) {
}
/*834px以下*/
@media screen and (max-width: 834px) {
}
/*480px以下*/
@media screen and (max-width: 480px) {
	.select-btn {
		font-weight: bold;
		line-height: normal;
		margin: 10px;
		padding-top: 5px;
		padding-bottom: 5px;
		padding-left: 5px;
		font-size: 12px;
		border: 2px solid transparent;
		transition: all 0.3s ease-in-out;
	}
}

/* ##################################################################### */

/* ヒントボタン（label）のスタイル */
.btn--hint,
a.btn--hint {
    font-weight: bold;
    display: block;
    cursor: pointer;
    line-height: normal;
    margin: 10px;
    padding-top: 20px;
    padding-bottom: 10px;
    padding-left: 30px;
    text-decoration: none;
    font-size: 25px;
    border: 2px solid transparent;
    position: relative;
    transition: all 0.3s ease-in-out;
    color: #fff;
    background-color: #F05F8D;
    width: 50%;
    border-radius: 100vh;
}

.btn--hint:hover,
a.btn--hint:hover {
    color: #000;
    background: #F172A3;
}