<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*
サイト上の構成の大枠としてページ内に1度しか出てこないものと、グリッドレイアウトについてを記述します。
We will write about thing the only comes out once on the page as a frame and grid(column) layout.

接頭辞はLayoutの頭文字を取って【l_】とします。
Prefix will take the "Layout" first letter and use it as "l_".

ここで指定するのは以下の様なものと予想されます。
You might use the following.
.l_wrap/.l_container/.l_header/
.l_nav/.l_main/.l_contents/.l_footer

モディファイヤを使用する場合は接頭辞【has_】をつけ、各レイアウトの下に記述します。
When using modifier put the prefix "has_" and write it under each layout.

フォントサイズはremで指定します。
"rem" will be used for font-size.

↓↓↓↓↓↓コメントアウト表記サンプル Comment out sample ↓↓↓↓↓↓
*/
/*----------------------------------------------
	大くくりコメントアウト large part
---------------------------------------------*/

/*  中くくりコメントアウト middle part
------------------------------------- */

/* 小くくりコメントアウト small part */
/*
↑↑↑↑↑↑コメントアウト表記サンプル Comment out sample ↑↑↑↑↑↑
*/
/*----------------------------------------------
	.l_wrap
---------------------------------------------*/
.l_wrap {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width:767px) {
    .l_wrap {
        min-width: 90%;
    }
}

/*----------------------------------------------
	.l_container
---------------------------------------------*/

/*----------------------------------------------
	.l_header_area
---------------------------------------------*/

.l_detail{
	position: absolute;
	bottom: 20px;
	left: 30px;
}

/*----------------------------------------------
	.l_info
---------------------------------------------*/
.l_info{
	position: absolute;
	top: 330px;
	right: 0;
	left: 0;
}
.l_info02{
	position: absolute;
	top: 510px;
	right: 0;
	left: 0;
}

.l_info03{
	position: absolute;
	top: 240px;
	left: 30px;
}

.l_info04{
	position: absolute;
	top: 240px;
	right: 40px;
}
/*----------------------------------------------
	.l_nav_area
---------------------------------------------*/
.l_nav {
    width: 240px;
}

/*----------------------------------------------
	.l_main_contents
---------------------------------------------*/
.l_main_contents {
    width: 720px;
}

/*----------------------------------------------
	.l_content
---------------------------------------------*/
.l_content {
    width: 720px;
    margin-top: 130px;
    background-color: #ffffff;
}

/*----------------------------------------------
	.l_inner_content
---------------------------------------------*/
.l_inner_content {
    padding: 30px;
}

.l_double {
    display: inline-block;
    margin: 20px;
}

.l_double:nth-child(1) {
    margin-left: 0;
}

.l_double:nth-child(2) {
    margin-right: 0;
}

/*----------------------------------------------
	.l_modal
---------------------------------------------*/
.l_modal{
    display: none;
    position: fixed;
    top: calc(50vh - (415px / 2));
    right: 0;
    left: 0;
    width: 50vw;
    margin:  0 auto;
}


/*----------------------------------------------
  .l_footer_area
---------------------------------------------*/

/*----------------------------------------------
  .l_copyright
---------------------------------------------*/

/*----------------------------------------------
  .l_pagetop
---------------------------------------------*/</pre></body></html>