@charset "UTF-8";

/* base */

html { font-size: 1px; }

@media ( max-width: 1220px ) { html { font-size: 0.081967213vw; /*w1220のときの1px*/ } }

html {
    height: 100vh;
}
body {
    min-width:1220rem;
    height: 100vh;
    font-size: 17rem;
    letter-spacing: 0;
}

.br_sp,
.text_sp,
.block_sp{
    display:none;
}
.br_pc,
.text_pc{
    display:inline;
}
.block_pc{
    display:block;
}

a[href^="tel:"] { pointer-events: none !important; }

a,a > *,a::before,a::after,
button,button::before,button::after {
  transition-property: none;
  transition-duration: .5s;
  transition-timing-function: ease-in-out;
}

/****************************************************************************
header
****************************************************************************/

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-width:1210rem;
    height: 98rem;
    z-index: 500;
    background-color: rgba(var(--COL-WHT-rgb), 1);
    filter: drop-shadow(0 3rem 3rem rgba(var(--COL-BLK-rgb),0));
    transition: all .5s ease-out;
}
.header.header_fix_pc{
    background-color: rgba(var(--COL-WHT-rgb), .95);
    filter: drop-shadow(0 3rem 3rem rgba(var(--COL-BLK-rgb),0.1));
}

.header_inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
	gap: 16rem;
	height: 100%;
    padding: 0 2.5%;
}

.header_logo{
	display: block;
    width: 567rem;
    height: 74rem;
	font-size: 0%;
	line-height: 0%;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
    background-repeat: no-repeat;
	background-image: url("../../img/common/logo_tohokujapan.jpg"), url("../../img/common/site_title.svg");
	background-position:  0 50%, 100% 50%;
    background-size: 35.27% auto, 63.32% auto;
}

.btn_menu,
.bg_menu{
    display: none;
}



/* .global_nav *************************************/

.global_nav{
    display: flex;
    justify-content: flex-end;
    align-items: center;
	gap: 16rem;
    line-height: 1;
}

.global_nav .gnav_list{
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
	gap: 8rem;
}

.global_nav .gnav_list > li{
}
.global_nav .gnav_list a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 128rem;
	height: 100%;
	padding: 0 8rem 3rem 0;
	gap: 8rem;
	border-radius: 6rem;
	border: 2rem solid var(--COL-ORA-01);
	background: var(--COL-ORA-01);
	filter: drop-shadow(2px 3px 2px rgba(var(--COL-BLK-rgb),0));
	transition: all 0.4s ease-out;
}
.global_nav .gnav_list a:hover{
	filter: drop-shadow(2px 3px 2px rgba(var(--COL-BLK-rgb),0.2));
}
.global_nav .gnav_list a.is-selected:hover{
	cursor: default;
	filter: drop-shadow(2px 3px 2px rgba(var(--COL-BLK-rgb),0));
}

.global_nav .gnav_list a > svg {
	width: 12rem;
	height: 12rem;
	fill: var(--COL-WHT);
}
.global_nav .gnav_list a:hover > svg {
}
.global_nav .gnav_list a.is-selected > svg {
    transform: rotate(90deg);
}
.global_nav .gnav_list a.is-selected:hover > svg {
}

.global_nav .gnav_list a > .label{
    font-size: 16rem;
	font-weight: var(--WGT-B);
    color: var(--COL-WHT);
    letter-spacing: 0.1em;
    line-height: 1.5;
    text-align: center;
	position: relative;
}
.global_nav .gnav_list a > .label::after{
	position: absolute;
	top: 100%;
	left: 0;
	content: "";
	display: block;
    width: 100%;
    height: 2rem;
    background-color: var(--COL-WHT);
    transform: scale(0, 1);
    transform-origin: right top;
    transition-property: transform;
    transition-duration: .2s;
}
.global_nav .gnav_list a:hover > .label::after {
    transform: scale(1, 1);
    transform-origin: left top;
}
.global_nav .gnav_list a.is-selected > .label::after {
    transform: scale(1, 1);
    transform-origin: left top;
}
.global_nav .gnav_list a.is-selected:hover > .label::after {
}

.global_nav .gnav_list .gnav_item_schedule{
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 2rem;
}
.global_nav .gnav_list .gnav_item_schedule .label_schedule{
	display: flex;
	padding: 3rem 8rem;
	justify-content: center;
	align-items: center;
    font-size: 12rem;
	line-height: 1;
    color: var(--COL-WHT);
	border-radius: 6rem 6rem 0 0;
	background: var(--COL-ORA-02);
}
.global_nav .gnav_list .gnav_item_schedule .gnav_list_schedule{
    display: flex;
    align-items: stretch;
	gap: 2rem;
}

.global_nav .gnav_list .gnav_list_schedule a {
	width: 136rem;
	height: 100%;
	padding: 0 4rem 3rem 0;
	gap: 4rem;
	border-radius: 0;
}
.global_nav .gnav_list .gnav_list_schedule >li:first-child a {
	border-bottom-left-radius: 6rem;
}
.global_nav .gnav_list .gnav_list_schedule >li:last-child a {
	border-bottom-right-radius: 6rem;
}
.global_nav .gnav_list .gnav_list_schedule a > svg {
	width: 10rem;
	height: 10rem;
}
.global_nav .gnav_list .gnav_list_schedule a > .label{
    font-size: 14rem;
	border-bottom: none;
}
.global_nav .gnav_list .gnav_list_schedule >li.gnav_item_schedule01 a > .label {
	letter-spacing: 0;
}

.global_nav .gnav_login a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 232rem;
	height: auto;
	padding: 0 8rem 0 0;
	gap: 8rem;
	border-radius: 6rem;
	border: 2rem solid var(--COL-ORA-01);
	background: var(--COL-WHT);
	filter: drop-shadow(2px 3px 2px rgba(var(--COL-BLK-rgb),0));
	transition: all 0.4s ease-out;
}
.global_nav .gnav_login a:hover{
	filter: drop-shadow(2px 3px 2px rgba(var(--COL-BLK-rgb),0.2));
}
.global_nav .gnav_login a.is-selected:hover{
	cursor: default;
	filter: drop-shadow(2px 3px 2px rgba(var(--COL-BLK-rgb),0));
}


.global_nav .gnav_login a > .label_dmp {
	display: block;
	width: 100rem;
	height: 58rem;
	font-size: 0%;
	line-height: 0%;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	background: url("../../img/common/logo_dmp.png") 50% 50% no-repeat;
	background-size: cover;
}
.global_nav .gnav_login a > svg {
	width: 18rem;
	height: 18rem;
	fill: var(--COL-ORA-01);
	transition: fill 0.4s ease-out;
}
.global_nav .gnav_login a > .label{
    font-size: 16rem;
	font-weight: var(--WGT-B);
    color: var(--COL-ORA-01);
    letter-spacing: 0.1em;
    line-height: 1.5;
    text-align: center;
	position: relative;
}
.global_nav .gnav_login a > .label::after{
	position: absolute;
	top: 100%;
	left: 0;
	content: "";
	display: block;
    width: 100%;
    height: 2rem;
    background-color: var(--COL-ORA-01);
    transform: scale(0, 1);
    transform-origin: right top;
    transition-property: transform;
    transition-duration: .2s;
}
.global_nav .gnav_login a:hover > .label::after {
    transform: scale(1, 1);
    transform-origin: left top;
}




/****************************************************************************
.contents
****************************************************************************/

.contents{
	width: 95%;
	max-width: 1300rem;
	margin: 150rem auto 40rem;
    overflow-x: hidden;
	line-height: 1.5;
}

.contents.contents_home {
	display: flex;
	flex-wrap: wrap;
	gap: 16rem;
}


/****************************************************************************
.contents_header
****************************************************************************/




/****************************************************************************
.page_header
****************************************************************************/




/****************************************************************************
.section
****************************************************************************/

/* .section ********************/

.section{
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 24rem;
	padding: 32rem 80rem 40rem;
	border-radius: 16rem;
	background: var(--COL-WHT);
}

.contents.contents_home .section{
	width: calc(50% - 8rem);
	padding: 32rem 40rem 40rem;
	gap: 24rem;
}
.contents.contents_home .section_wrap_column{
	display: flex;
	flex-direction: column;
	gap: 16rem;
	width: calc(50% - 8rem);
}
.contents.contents_home .section_wrap_column .section{
	width: 100%;
}
.contents.contents_home .section_wrap_column .section:last-child{
	flex-grow: 1;
}


/* .section_header .contents_label ********************/

.contents_label{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding-bottom: 12rem;
	gap: 12rem;
	border-bottom: 3rem solid var(--COL-ORA-01);
}

.contents_label i{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40rem;
	height: 40rem;
	background-color: var(--COL-ORA-01);
	border-radius: 8rem;
}
.contents_label svg{
	width: 20rem;
	height: 20rem;
	fill: var(--COL-WHT);
}

.contents_label .label{
	color: var(--COL-TXT);
	font-size: 22rem;
	font-weight: var(--WGT-B);
	line-height: 1.5;
	letter-spacing: 0.1em;
}

.contents_label.contents_label_topic{
	border-bottom-color: var(--COL-AQU-01);
}
.contents_label.contents_label_topic i{
	background-color: var(--COL-AQU-01);
}

.contents_label.contents_label_manual{
	border-bottom-color: var(--COL-PNK-01);
}
.contents_label.contents_label_manual i{
	background-color: var(--COL-PNK-01);
}

.contents_label.contents_label_update{
	border-bottom-color: var(--COL-YEL-01);
}
.contents_label.contents_label_update i{
	background-color: var(--COL-YEL-01);
}



/* .section_body ********************/


.section_body{
}

.section_body + .section_body{
    padding-top: 40rem;
}



/* .section_footer ********************/



.section_footer{
}



/* .section_body の中 ********************/

.section_body_label{
}
.section_body_label_s{
}

.sbody_text{
    line-height: 2.0;
}
.sbody_text p + p{
    padding-top: 1.0em;
}

.section_body_lead .sbody_text{
}


/* .section_body.sbody_2clm ********************/

.sbody_2clm,
.sbody_3clm,
.sbody_4clm{
	display: flex;
	justify-content:space-between;
	align-items: stretch;
}
.sbody_2clm.sbody_sp_floatr{/* SPで画像 float:right; のとき */
	flex-direction: row-reverse;
}
.sbody_2clm > div{
	width: 47%;
}
.sbody_3clm > div{
	width: 29%;
}
.sbody_4clm > div{
	width: 23.6843%;
}


.sbody_1clm > div + div{
    padding-top: 30rem;
}

.sbody_2clm > .section_body + .section_body,
.sbody_3clm > .section_body + .section_body,
.sbody_4clm > .section_body + .section_body{
    padding-top: 0;
}

.sbody_floatr:before,
.sbody_floatr:after,
.sbody_floatl:before,
.sbody_floatl:after{
    content:"\0020";
    display:block;
    height:0;
    overflow:hidden;
}
.sbody_floatr:after,
.sbody_floatl:after{
    clear:both;
}
.sbody_floatr,
.sbody_floatl{
    zoom:1;
}
.sbody_floatr .sbody_img{
    width: auto;
    max-width: calc(500rem + 5%);
    float: right;
    padding-left: 5%;
    padding-bottom: 1em;
}
.sbody_floatl .sbody_img{
    width: auto;
    max-width: calc(500rem + 5%);
    float: left;
    padding-right: 5%;
    padding-bottom: 1em;
}
.sbody_floatr .sbody_text,
.sbody_floatl .sbody_text{
    display: inline;
}


/* 　コンテンツ枠　 */

.box_iframe iframe{
    width: 100%;
    height: 710rem;
    background-color: var(--COL-WHT);
}

.img_caption{
    padding-top: 0.5em;
    line-height: 1.3;
    text-align: left;
}

.text-center{
    text-align:center;
}



/* 　ボタンの入れ物　 */

.btn_center{
	display: flex;
	justify-content: center;
	gap: 2em;
}
.btn_left{
	display: flex;
	justify-content: flex-start;
	gap: 2em;
}
.btn_right{
	display: flex;
	justify-content: flex-end;
	gap: 2em;
}

.btn_space_between{
	display: flex;
	justify-content: space-between;
	gap: 2em;
}

.btn_column{
	flex-direction: column;
	align-items: center;
	gap: 0.5em;
}

.btn_center,
.btn_left,
.btn_right,
.btn_space_between,
.btn_column{
    margin-top: 0.5em;
}


/* 四角 ボタン 矢印つき */

.btn_box_arrow{ 
	display: flex;
	justify-content: center;
	align-items: center;
	width: auto;
	padding: 0;
	gap: 6rem;
}

.btn_box_arrow > svg {
	width: 12rem;
	height: 12rem;
	fill: var(--COL-TXT-02);
}

.btn_box_arrow > .label{
    font-size: 15rem;
	font-weight: var(--WGT-B);
    color: var(--COL-TXT-02);
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-align: center;
	position: relative;
}
.btn_box_arrow > .label::after{
	position: absolute;
	top: 100%;
	left: 0;
	content: "";
	display: block;
    width: 100%;
    height: 2rem;
    background-color: var(--COL-TXT-02);
    transform: scale(0, 1);
    transform-origin: right top;
    transition-property: transform;
    transition-duration: .2s;
}
.btn_box_arrow:hover > .label::after {
    transform: scale(1, 1);
    transform-origin: left top;
}


/* dl リスト */

.dl_row{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}
.dl_row dt{
    width: 6em;
	text-align: left;
}
.dl_row dd{
    width: calc(100% - 6em);
    padding-left: 1em;
	text-align: left;
}

.dl_row.dl_line{
    border-bottom: solid 1rem var(--COL-WHT);
}
.dl_row.dl_line dt{
    padding: 0.75em 0;
    border-top: solid 1rem var(--COL-WHT);
}
.dl_row.dl_line dd{
    padding: 0.75em 0 0.75em 1em;
    border-top: solid 1rem var(--COL-WHT);
}




/* table 表 */

table {
	width: 100%;
/*	table-layout: fixed;*/
	border-collapse: collapse;
	border-spacing: 0;
}

table.table_line {
	border: 1rem solid var(--COL-GRY-01);
}
table.table_line tr {
}
table.table_line th{
    font-weight: var(--WGT-R);
    color: var(--COL-WHT);
    line-height: 1.5;
	text-align: left;
	vertical-align: top;
	background-color: var(--COL-GRY-01);
	border: 1rem solid var(--COL-GRY-02);
}
table.table_line thead th{
	text-align: center;
	vertical-align: middle;
}
table.table_line thead + tbody th{
    color: var(--COL-TXT); 
	text-align: left;
	vertical-align: top;
	background-color: var(--COL-WHT);
	border: 1rem solid var(--COL-GRY-01);
}
table.table_line td {
    line-height: 1.5;
	text-align: center;
	vertical-align: middle;
	border: 1rem solid var(--COL-GRY-01);
}

table.table_line thead th,
table.table_line tbody th,
table.table_line td{
    padding: 0.5em 1.5em;
}
table.table_line + .note{
    padding-top: 0.5em;
    font-size: 15rem;
}


/****************************************************************************
■ HOME　■
****************************************************************************/





/****************************************************************************
■ 記事　■
****************************************************************************/


/* 記事一覧 共通 ********************/

.entry_list{
	padding: 0 8rem;
}

.entry_listitem{
	border-bottom: 1rem solid var(--COL-GRY-02);
}
.entry_listitem .entry_link{
	display: flex;
	padding-left: 8rem;
	align-items: stretch;
	gap: 16rem;
	align-self: stretch;
	background-color: rgba(var(--COL-BLK-rgb),0);
    transition-property: background;
}
.entry_listitem a.entry_link:hover{
	background-color: rgba(var(--COL-BLK-rgb),0.05);
}

.entry_listitem svg{
	width: 18rem;
	height: 18rem;
	fill: var(--COL-ORA-01);
}
svg.icon-file_pdf{
	fill: var(--COL-RED-01) !important;
}
svg.icon-file_word{
	fill: var(--COL-BLU-01) !important;
}
svg.icon-file_excel{
	fill: var(--COL-GRE-01) !important;
}

.entry_listitem .entry_fileicn svg{
	width: 27rem;
	height: 27rem;
}

.entry_listitem .entry_date{
	color: var(--COL-TXT-02);
	font-size: 14rem;
	line-height: 1.75;
	letter-spacing: 0.05em;
}
.entry_listitem .entry_link > .entry_date{
	padding: 8rem 0;
}

.entry_listitem .entry_text{
	flex-grow: 1;
	padding: 8rem 0;
}

.entry_listitem .entry_title{
	display: inline;
	padding-right: 8rem;
	font-size: 17rem;
	line-height: 1.5;
	letter-spacing: 0.05em;
}
.entry_listitem .entry_text svg{
	vertical-align: middle;
}

.entry_listitem .entry_filelink{
	display: flex;
	align-items: center;
}
.entry_listitem .entry_filelink a{
	display: block;
	padding: 8rem 6rem;
	line-height: 1;
	border-radius: 4rem;
	background-color: rgba(var(--COL-BLK-rgb),0);
	transition: background 0.3s ease-out;
}
.entry_listitem .entry_filelink a:hover{
	background-color: rgba(var(--COL-BLK-rgb),0.05);
}

/* マニュアル、文書ダウンロード*/

.entry_listitem.manual_listitem .entry_link{
	gap: 12rem;
}
.entry_listitem.manual_listitem .entry_fileicn{
	padding: 7rem 0;
	line-height: 1;
}
.entry_listitem.manual_listitem .entry_text{
	line-height: 1.25;
}
.entry_listitem.manual_listitem .entry_date{
	display: inline;
	font-size: 12rem;
	line-height: 1.25;
}

/* リンク Web・SNS */

.entry_listitem.link_listitem .entry_date{
	white-space: nowrap;
}

.entry_listitem.link_listitem .entry_lang{
	display: inline-block;
	margin-left: 10rem;
	padding: 0 8rem;
	font-size: 13rem;
	font-weight: var(--WGT-B);
	line-height: 1.75;
	color: var(--COL-WHT);
	border-radius: 5rem;
	background-color: var(--COL-TXT);
}


/* wp-pagenavi ********************/

.wp-pagenavi{
	display: flex;
	justify-content: center;
	align-items: center;
    padding-top: 64rem;
}
.wp-pagenavi a,
.wp-pagenavi .current{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.25em;
    height: 2.25em;
	margin:0 0.25em;
    font-size: 16rem;
	color: var(--COL-ORA-01);
	background-color: var(--COL-WHT);
    border: solid 2rem var(--COL-ORA-01);
    border-radius: 8rem;
}
.wp-pagenavi .current{
	color: var(--COL-WHT);
	background-color: var(--COL-ORA-01);
}
.wp-pagenavi .pages{
	display:none;
}

.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.previouspostslink{
}
/*.wp-pagenavi a.previouspostslink{
    transform: rotate(180deg);
}*/

.wp-pagenavi .wp-pagenavi_prev,
.wp-pagenavi .wp-pagenavi_next{
	min-width: 8em;
	text-align: center;
}
.wp-pagenavi .wp-pagenavi_prev a,
.wp-pagenavi .wp-pagenavi_next a{
}
.wp-pagenavi .wp-pagenavi_prev a::before,
.wp-pagenavi .wp-pagenavi_next a::after{
}
.wp-pagenavi .wp-pagenavi_prev a::before{

}
.wp-pagenavi .wp-pagenavi_next a::after{
}

/* 個別ページ 共通 ********************/


.entry{
	width: 100%;
    max-width: 980rem;
    margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 56rem;
}

.entry .entry_header{
	display: flex;
	padding: 24rem 8rem;
	flex-direction: column;
	align-items: flex-start;
	gap: 16rem;
	border-bottom: 3rem solid var(--COL-ORA-01);
}
.entry.entry_topic .entry_header{
	border-bottom-color: var(--COL-AQU-01);
}
.entry.entry_manual .entry_header{
	border-bottom-color: var(--COL-PNK-01);
}
.entry.entry_update .entry_header{
	border-bottom-color: var(--COL-YEL-01);
}

.entry .entry_header .entry_label{
	display: flex;
	align-items: center;
	gap: 16rem;
}

.entry .entry_header .content_label{
	width: auto;
	min-width: 140rem;
	padding: 0 0.5em;
	text-align: center;
	border-radius: 5rem;
	background: var(--COL-ORA-01);
}
.entry.entry_topic .entry_header .content_label{
	background: var(--COL-AQU-01);
}
.entry.entry_manual .entry_header .content_label{
	background: var(--COL-PNK-01);
}
.entry.entry_update .entry_header .content_label{
	background: var(--COL-YEL-01);
}
.entry .entry_header .content_label .label{
	color: var(--COL-WHT);
	font-size: 16rem;
	font-weight: var(--WGT-B);
	line-height: 1.75;
}

.entry .entry_header .entry_date{
	color: var(--COL-TXT-02);
	font-size: 14rem;
	line-height: 1.75;
	letter-spacing: 0.05em;
}

.entry .entry_header .entry_title{
	color: var(--COL-TXT);
	font-size: 24rem;
	font-weight: var(--WGT-B);
	line-height: 1.5;
	letter-spacing: 0.05em;
}

.entry .entry_body{
	padding: 0 8rem;
    line-height: 1.75;
}

/* WP本文欄の中 */

.entry .entry_body h2{
    margin: 1em 0;
    font-size: 1.3em;
    font-weight: var(--WGT-B);
}
.entry .entry_body h3{
    margin: 1em 0;
    font-size: 1.1em;
    font-weight: var(--WGT-B);
}

.entry .entry_body p + p{
	padding-top: 1.0em;
}

.entry .entry_body img{
    display: block;
    width: 100%;
    max-width: 600rem;
    max-height: 600rem;
    margin: 2em auto;
    object-fit: contain;
}

.entry .entry_body blockquote{
    margin: 1.5em 0;
    padding: 1.5em;
	font-size: 0.9em;
    background-color: rgba(var(--COL-BLK-rgb), .05);
}

.entry .entry_body ul{
    margin: 1.5em 0;
    padding-left: 2em;
    list-style: disc;
}
.entry .entry_body ol{
    margin: 1.5em 0;
    padding-left: 2em;
}

.entry .entry_body p > a{
    text-decoration: underline;
}


/* WP画像キャプション */
.entry .entry_body .wp-caption{
    width: 100% !important;
    max-width: 600rem;
    margin: 2em auto;
}
.entry .entry_body .wp-caption img{
    margin-bottom: 0.5em;
}
.entry .entry_body .wp-caption-text{
    font-size: 0.9em;
    text-align: center;
}

/* 情報エリア */

.entry .entry_info{
    margin: 1.5em 0;
	display: flex;
	padding: 40rem;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	background: var(--COL-GRY-01);
}

.entry .entry_info_link{
	display: flex;
	align-items: flex-start;
	gap: 24px;
}
.entry .entry_info_link .label{
	white-space: nowrap;
}
.entry .entry_info_link a{
	word-break: break-all;
}
.entry .entry_info_link a svg{
	width: 18rem;
	height: 18rem;
	margin-left: 8rem;
	fill: var(--COL-ORA-01);
	vertical-align: middle;
}

.entry .btn_file{
	padding-top: 8rem;
}
.entry .btn_file a{
	display: flex;
	height: 44rem;
	padding: 0 24rem;
	align-items: center;
	gap: 12rem;
	border-radius: 8rem;
	border: 2px solid var(--COL-TXT-02);
	background: var(--COL-WHT);
}
.entry .btn_file a svg{
	width: 27rem;
	height: 27rem;
}





/****************************************************************************
■ ページごとの設定　■
****************************************************************************/





/****************************************************************************
.page-top
****************************************************************************/

.page-top{
    position: fixed;
    right: 20rem;
    bottom: 20rem;
    width: 48rem;
    height: 48rem;
    z-index: 300;
    opacity: 0;
    transition: opacity .5s ease-in-out;
}
.page-top.active{
    opacity: 1;
}

.page-top a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
	font-size: 0%;
	line-height: 0%;
	text-indent: 100%;
    background-color: rgba(var(--COL-WHT-rgb),0.9);
    border: solid 2rem var(--COL-ORA-01);
    border-radius: 8rem;
    position: relative;
    transition-property: background, border;
}
.page-top a::before{
    display: block;
    width: 16rem;
    height: 16rem;
	content: "";
	border-left: 2rem solid var(--COL-ORA-01);
	border-top: 2rem solid var(--COL-ORA-01);
	-webkit-transform: rotate(45deg);
	transform: translate(0, 20%) rotate(45deg);
    transition-property: border;
}

.page-top a:hover{
    background-color: var(--COL-ORA-01);
}
.page-top a:hover::before{
    border-color: var(--COL-WHT);
}



/****************************************************************************
footer
****************************************************************************/

.footer{
    width: 100%;
}

.footer_copy{
    width: 100%;
    padding: 2em;
    font-size: 16rem;
	letter-spacing: 0.1em;
    text-align: center;
}



/****************************************************************************
汎用クラス
****************************************************************************/


	.small{
		font-size: 16rem;
	}
	.x-small{
		font-size: 14rem;
	}
	.xx-small{
		font-size: 12rem;
	}

	.normal{
		font-size: 17rem;
	}

	.large{
		font-size: 19rem;
	}
	.x-large{
		font-size: 22rem;
	}
	.xx-large{
		font-size: 38rem;
	}


