/*
:root {
    --bg-color: #36B558;
    --color-primary: #000000;
}
*/
:root {
    --bg-color: #61AA78;
    --color-primary: #000000;
}

.keyword_font{
    color:var(--bg-color);
}

body {
    font-family: "BIZ UDPGothic", "Arial", "Helvetica", sans-serif;
    color: var(--color-primary);
    font-size:21px;
}

button:hover {
    opacity: 0.8;
}

.container{
    padding:0% 100px;
}

.header_line {
    height: 35px;
    background: var(--bg-color);
}

.header_logo {
    width: 639px;
    height: 132px;
    margin: auto;
    margin-top: 42px;
}

.header_logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header_content {
    font-size: 21px;
    color: var(--color-primary);
    margin:20px 0;
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    gap:20px;
    align-items: center;
    grid-template-rows: 1fr;
}

.left_border_green{
    border-left:10px solid var(--bg-color);;
}

.header_content_wrapper{
    padding-left:20px;
}

.body_content_row{
    margin:10px 0;
    display:grid;
    grid-template-columns: 0.3fr 1fr;
    align-items: center;
}

.body_content_title{
    font-size: 28px;
}

.header_title_lesson {
    font-size: 21px;
    color: var(--color-primary);
    margin-top: 70px;
    display: flex;
    justify-content: center;
    padding-right: 250px;
}

.header_title h1 {
    font-weight: normal;
}

.is-invalid {
    color: red;
}

.btn_manual_download{
    box-sizing: border-box;
    width: 100%;
    height: 85px;
    background: #707070 0% 0% no-repeat padding-box;
    border-radius: 41px;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    font-size: 25px;
    font: normal normal bold 21px/31px BIZ UDPGothic;
    text-align: left;
    margin-bottom: 8px;
    cursor: pointer;
}

.btn_output_sheet{
    position:relative;
    box-sizing: border-box;
    width: 90%;
    height: 55px;
    background: var(--bg-color) 0% 0% no-repeat padding-box;
    border-radius: 41px;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    font-size: 25px;
    font: normal normal bold 21px/31px BIZ UDPGothic;
    text-align: left;
    margin-bottom: 8px;
    cursor: pointer;
    border: none;
}

.btn_output_sheet::after {
    /*content: '＞';*/
    content: '\FF1E';
    position: absolute;
    top: 50%;
    right: 10px; /* 右端からの距離 */
    transform: translateY(-50%);
    font-size: 30px; /* 矢印のサイズ */
    color: white; /* 矢印の色 */
}
    
.btn_output_sheet:disabled {
    background: #939598 0% 0% no-repeat padding-box;
}

.checkbox_content{
    gap:10px;
}

.checkbox_content_row{
    display:grid;
    grid-template-columns: repeat(5,1fr);
    gap:10px;
}

.checkbox_content_item{
    padding:5px;
    display: flex;
    align-items: center;
}

.checkbox {
    appearance: none;
    width: 35px; /* チェックボックスの幅 */
    height: 35px; /* チェックボックスの高さ */
    border: 2px solid #58585a;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
    margin-right:15px;
}
.checkbox:disabled {
    border: 2px solid #ccc;
}
.checkbox:checked {
    border: 0;
    background-color: var(--bg-color); /* チェックされたときの背景色 */
}
.checkbox:checked::after {
    /*content: '✔';*/
    /*content: '✓';*/
    content: '\2713';
    border: 0;
    color: white; /* チェックマークの色 */
    font-size: 2em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blank_top50{
    margin-top:50px;
}

.radio-button {
    width: 35px; /* ラジオボタンの幅 */
    height: 35px; /* ラジオボタンの高さ */
    margin-right:15px;
    /*accent-color:#1aa346;*/
    accent-color:#5da172;
}

.file-input-container {
    display: flex;
    align-items: center;
    width: 100%;
}
.file-input-button {
    flex: 1;
    background-color: var(--bg-color);
    color: white;
    padding: 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px 0px 0px 5px;
    text-align: center;
    font-size:25px;
    border: solid 2px var(--bg-color);
}
.file-input-label {
    flex: 9;
    background-color: #e0e0e0;
    padding: 15px;
    border-radius: 0px 5px 5px 0px;
    border:solid 2px #e0e0e0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    align-content: center;
}
.file-input {
    display: none;
}

.fade {
	width: 200px;
	height: 200px;
	background-color: lightcoral;
	opacity: 1; /* 初期状態: 完全に表示 */
	transition: opacity 1.5s ease; /* 1.5秒間でフェードアウト */
}
.fade.hidden {
	opacity: 0; /* 徐々に透明に */
}

/* プログレスバーの外枠 */
.progress-container {
	width: 50%;
	background-color: #f3f3f3;
	border-radius: 25px;
	box-shadow: 0px 0px 5px #aaa;
	overflow: hidden;
}

/* プログレスバー本体 */
.progress-bar {
	width: 0%;
	height: 30px;
	background-color: var(--bg-color);
	text-align: center;
	line-height: 30px;
	color: white;
	border-radius: 25px 0 0 25px;
}

.optionsHeaderText {
    color: var(--bg-color);  /* テキストの色をグレーに */
    /*cursor: not-allowed;*/  /* カーソルを変更 */
}

.optionsHeaderText_disabled {
    color: #939598;  /* テキストの色をグレーに */
    /*cursor: not-allowed;*/  /* カーソルを変更 */
}

.optionsText {
    color: #000000;  /* テキストの色をグレーに */
    /*cursor: not-allowed;*/  /* カーソルを変更 */
}

.optionsText_disabled {
    color: #939598;  /* テキストの色をグレーに */
    /*cursor: not-allowed;*/  /* カーソルを変更 */
}

.optionsRadioButton_disabled {
    accent-color: #939598;    /* テキストの色をグレーに */
    /*cursor: not-allowed;*/  /* カーソルを変更 */
}

.optionsCheckBox_disabled:checked {
    background-color: #939598; /* チェックされたときの背景色 */
}
