@charset "utf-8";
@import url("https://use.fontawesome.com/releases/v5.15.4/css/all.css");
/*-------------------------------------------------------------
///////////////////////////////////////////////////////////////
style
///////////////////////////////////////////////////////////////
--------------------------------------------------------------*/

/* @group theme
------------------------------------------------------*/
:root {
    --color_primary: #3b7d62;
    --color_secondary: #FF6E00;
    --color_tertiary: #39B24A;
    --color_quaternary: #E73817;
}

/* @group base layout
------------------------------------------------------*/
.wrapper {
    width: 100%;
}
.header {
    min-height: 170px;
    display: flex;
    justify-content:center;
}
.main {
    width: 100%;
}
.main_container {
    width: 100%;

    @media (width >= 1200px) {
        width: 1100px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: row-reverse;
    }
}
.contents {
    width: 100%;
}
.footer {
    width: 100%;
}
.footer_container {
    width: 100%;

    @media (width >= 1200px) {
        width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }
}


/* @group module
------------------------------------------------------*/

/* SP、PC表示切り替え */
.sp_on {
    display: block; /* SPのみ表示 */

    /* 2カラム用 */
    @media (width >= 768px) {
	    & { /* PCのみ表示 */
            display: none;
        }
    }
}
.pc_on {
    display: none;

    /* 2カラム用 */
    @media (width >= 768px) {
	    & { /* PCのみ表示 */
            display: block;
        }
    }
}

/* ページトップへもどる */
.page_top {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 20px;
    position: fixed;
    background-image: linear-gradient(#333333, #333333);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;

    &::before {
        content: "";
        display: block;
        width: 5px;
        height: 5px;
        border-top: 1px solid #FFFFFF;
        border-right: 1px solid #FFFFFF;
        transform: rotate(-45deg);
    }
}

.wrapper {
    border-top: 5px solid var(--color_primary);
    box-sizing: border-box;
    background-color: #ccc;
}

/* サイドメニューありの場合表示させる影 */
.contents {
    min-height: 1460px;
    position: relative;
    background: #fff;
    padding: 10px 50px 100px;

    &::before,
    &::after {
        content: "";
        position: absolute;
        top: 0;
        width: 10px;
        height: 1460px;
        background-size: cover;
        background-repeat: no-repeat;
        z-index: 3;
        mix-blend-mode: multiply;
    }

    &::before {
        left: 0;
        background-image: url(../images/shadow.png);
        background-position: left top;
    }

    &::after {
        right: 0;
        background-image: url(../images/shadow.png);
        background-position: right top; 
        transform: scaleX(-1); 
    }
}


/* @group フッターエリア
------------------------------------------------------*/

.footer {
    width: 100%;
    min-height: 30px;
    background-color: var(--color_primary);
}

.footer_container {
    width: 100%;
}
@media (width >= 1200px) {
    .footer_container {
        width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }
}
.footer-copyright {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 70px;
    padding-right: 70px;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 1.2;
    text-align: center;
}
@media (width >= 768px) {
    .footer-copyright {
        height: 40px;
    }
}

/* @group ページ共通
------------------------------------------------------*/
.page-contents {
    position: relative;
    min-height: 800px;
    background-color: #FFFFFF;

    @media (width >= 768px) {
        min-height: 1050px;
        margin-top: 30px;
    }
    
    @media (width >= 1200px) {
        min-height: 1140px;
        margin-top: 70px;
    }
}

/* 既存の垂直マージンを削除 */
.page-contents > * {
	margin-top: 0;
	margin-bottom: 0;
}

/* 連続する要素だけに上方向のマージンを適用 */
.page-contents > * + * {
	margin-top: 20px;

    @media (width >= 768px) {
        margin-top: 30px;
    }
}
.page-title {
    width: 94%;
    margin-left: auto;
    margin-right: auto;
    min-height: 42px;
    display: flex;
    align-items: center;
    background-color: var(--color_primary);
    padding: 2px 10px;

    @media (width >= 1200px) {
        width: 810px;
        margin-right: 0;
    }
}
.page-title > span {
	font-size: clamp(1.125rem, 0.375rem + 2.4vi, 1.875rem);
	font-weight: bold;
    font-feature-settings: "palt";
    color: #FFFFFF;
    line-height: 1.4;
}

.page-body {
    padding: 0px 10px 30px 10px;

    @media (width >= 768px) {
        padding: 0px 20px 40px 20px;
    }

    @media (width >= 1200px) {
        padding: 0px 0px 40px 40px;
    }
}

/* 既存の垂直マージンを削除 */
.page-body>* {
    margin-top: 0;
    margin-bottom: 0;
}

/* 連続する要素だけに上方向のマージンを適用 */
.page-body>*+* {
    margin-block-start: 30px;
}
.page-body > section > * + * {
    margin-top: 25px;
}
.page-body > section > section > * + * {
    margin-top: 20px;
}
.heading_h1 {
    display: flex;
    align-items: center;
}
.heading_h1 span {
    display: inline-block;
    position: relative;
    padding: 0 .2em .2em;
    font-size: clamp(1.25rem, 0.909rem + 1.7vw, 2.188rem);
    font-weight: bold;
    color: var(--color_primary);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    line-height: 1.4;
}
.heading_h2 {
    background: var(--color_primary);
    padding: .3em .5em;
}
.heading_h2 span {
    display: inline-block;
    font-size: clamp(1.25rem, 1rem + 0.8vi, 1.5rem);
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    line-height: 1.4;
    padding: 0 .2em .2em;
}

/* アイコン
--------------------------*/
.exlink::after {
    content: "\f360";
    font-family: "Font Awesome 5 Free";
    font-size: 0.85em;
    font-weight: 900;
    margin-left: .5em;
}
.download:before {
    content: '\f019';
    /* ダウンロードのアイコン */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: .5em;
    margin-right: .5em;
}
.pdf:after {
    content: '\f1c1';
    /* PDFファイルの後（fa-file-pdf） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}
.word:after {
    content: '\f1c2';
    /* WORDファイルの後（fa-file-word） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}
.ppt:after {
    content: '\f1c4';
    /* PPTファイルの後（fa-file-powerpoint） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}
.excel:after {
    content: '\f1c3';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}
.mail:after {
    content: '\f003';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}
.cipher a:before {
    content: '\f023';
    /* 暗号通信の前（fa-lock） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: .5em;
}
.check::before {
    content: '\f046';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: .3em;
}

/*罫線*/
hr {
    border: none;
    border-top: 1px solid #ccc;
}

hr.hr-full {
    margin: 0 .75em 1.5em;
    box-shadow: 1px 1px 1px rgba(0, 71, 157, 0.2);
}

/* ハイライト */
.text-highlight {
    background: linear-gradient(transparent 40%, #f6ff5f 40%);;
}
.inline {
    display: inline;
}

/*文字詰め*/
.feature {
    font-feature-settings: "palt";
}

/*囲み*/
.enclosure01 {
    border: 1px;
    border-style: solid;
    padding: 0.75em 1em;
}

.enclosure02 {
    display: inline-block;
    border: 1px;
    border-style: solid;
    padding: .5em 1em;
}

.enclosure-style01 {
    border-color: #DDDDDD;
    background: #FFFFFF;
}

.enclosure-style02 {
    border: 3px solid rgba(245, 200, 200, 0.4);
    background: rgba(245, 200, 200, 0.1);
}
.enclosure-style03 {
	border: 3px solid #ff0000;
	background: #FFFFFF;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;

}
/*囲みピンク*/
.border_pink{
	border: 3px solid rgba(245, 200, 200, 0.4);
	background: rgba(245, 200, 200, 0.1);
	padding: 1em 2em;
}
/*囲み青*/
.border_blue{
	border: 3px solid rgba(199, 222, 245, 0.4);
	background: rgba(199, 222, 245, 0.1);
	padding: 1em 2em;
}

/*リストスタイル*/
.list-style01 {
    margin-left: 2em;
    margin-right: 2em;
    font-size: clamp(0.875rem, 0.818rem + 0.242vw, 1rem);
}

.list-style01 li {
    margin-bottom: .3em;
}

.list-style {
    list-style-position: outside;
    padding-left: 1.8em;
}

.list-style > * + * {
    margin-top: 0.25em;
}

.list-disc {
    list-style-type: disc;
}

.list-num {
    list-style-type: decimal;
}

.list-num2 {
    list-style-type: decimal-leading-zero;
}

/* 方法1: text-indent と padding-left の組み合わせ */
.asterisk {
    padding-left: 1.2em;
    text-indent: -0.9em;
}

/* 方法2: table レイアウトを使用 */
.kome_ja > * {
    display: table;
    width: 100%;
}

.kome_ja > *:before {
    display: table-cell;
    content: "※";
    width: 1em;
}

/*表組み*/
.tbl-sp {
    overflow-x: auto;
}

.tbl-sp table {
    min-width: 690px;
}
.tbl-width100 {
    width: 100%;
}

.tbl-width50 {
    width: 50%;
}

.tbl-style01 thead th {
    background-color: #DDD;
    border: 1px #CCCCCC;
    border-style: solid;
    padding: .5em;
}

.tbl-style01 tbody th,
.tbl-style01 tbody td {
    border: 1px #CCCCCC;
    border-style: solid;
}

.tbl-style01 tbody th {
    background-color: #EEEEEE;
    padding: .5em;
}
.tbl-style01 tbody td {
    background-color: #FFFFFF;
    padding: .5em;
}

.tbl-style02 tbody th,
.tbl-style02 tbody td {
    border: 1px #FFFFFF;
    border-style: solid;
}

.tbl-style02 tbody th {
    background-color: #FFFFFF;
    padding: .5em;
}

.tbl-style02 tbody td {
    background-color: #FFFFFF;
    padding: .5em;
}

.th-c-m th {
    text-align: center;
    vertical-align: middle;
}

.th-l-m th {
    text-align: left;
    vertical-align: middle;
}

.th-l-t th {
    text-align: left;
    vertical-align: top;
}

.td-c-m td {
    text-align: center;
    vertical-align: middle;
}

.td-l-m td {
    text-align: left;
    vertical-align: middle;
}

.td-l-t td {
    text-align: left;
    vertical-align: top;
}

/* ボタンスタイル */
.btn_wrap {
    flex-direction: row;
    gap: 30px;
	text-align: center;
	margin: 20px 0;
	display: flex;
	align-items: center;
    justify-content: center;
}

.btn_style01 {
	display: inline-block;
	background: linear-gradient(
		135deg,
		#3b7d62,
		#178356
	);
		
	width: 420px;
	color: #ffffff;
	text-decoration: none;
	border-radius: 8px;
	font-weight: bold;
	font-size: 1rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(59, 125, 98, 0.3);
	position: relative;
	overflow: hidden;
	text-align: center;
	padding: 15px;
}
.btn_style01::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s;
}

.btn_style01:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(59, 125, 98, 0.4);
	text-decoration: none;
}

.btn_style01:hover::before {
	left: 100%;
}

.btn_style01:active {
	transform: translateY(0);
	box-shadow: 0 2px 10px rgba(59, 125, 98 0.3);
}

.btn_style01 span {
	position: relative;
	z-index: 1;
}
.btn_style01.desable {
    pointer-events: none;
    background: #aaa;
    border: none;
}


/* コンテンツ部分 */
.outline-box {
    width: 100%;
    min-height: 300px;
    position: relative;
    border: 2px solid #3c7d68;
    border-radius: 40px;
    padding: 40px 30px 40px 40px;
    margin: 30px auto;
}
.box-title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 500;
  color: #000;
  font-size: clamp(1.125rem, 1.034rem + 0.45vw, 1.375rem);
  white-space: nowrap;
  background-color: #ffffff; 
  padding: 0 10px; 
}
.outline-box .list-num {
    font-size: 15px;
}

/* チェックして有効化 */
.policy-box {
    border: 1px solid #ccc;
    padding: 1.2em;
}
.button_box{
	display:flex;
}
.check1 ~ .control_with_checkbox > a{
	pointer-events:none;
	background: #ccc;
	position: relative;
	top: -2px;
	padding: 15px 0;
	border-radius: 6px;
	text-align: center;
	display: block;
	text-decoration: none;
	color: #fff;
}
#confirmed_button1:checked + #confirmed_button5:checked ~ .control_with_checkbox > a{
	pointer-events:auto;
	opacity: 1;
}
#confirmed_button1:checked ~ .control_with_checkbox > a:hover{
	pointer-events:auto;
	top: 1px;
}
.check1,
.check2,
.check3,
.check4,
.check5{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 27em;
	font-weight: 500;
	line-height: 1;
	margin:10px auto;
	position: relative;
}
.check1 input,
.check2 input,
.check3 input,
.check4 input,
.check5 input{
	position: absolute;
	top:40%;
	left:1.8em;
	-webkit-transform: translateY(-40%);
	transform: translateY(-40%);
}
.check1 label,
.check2 label,
.check3 label,
.check4 label,
.check5 label{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 90%;
	background-color: #f4f4f4;
	padding: .8em 0;
	border-radius: .2em;
	cursor: pointer;
	transition: .2s;
	padding-left:30px;
}

@media (max-width: 768px) {
    .check1,
    .check2,
    .check3,
    .check4,
    .check5{
        width: 16em;
    }
}