
html {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	touch-action: manipulation; //ios ダブルタップでの拡大防止
}


body{
	color: var(--text-color);
	font-family: "Noto Sans JP", verdana, -apple-system,  "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
	-webkit-text-size-adjust: 100%; /*iPhoneで画面横にすると文字が大きくなるの防止 */
	line-height: 1.6;
	
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100vh;
	font-weight: 300;
}




/* fonts */
.rich-font {
  font-weight: 500;
  font-family: "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , 
  "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , 
  "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
}

/* COLOR */
:root {
	--base-color: #fff;
	--main-color: #221815;
	--sub-color: #dcdddd;
	--accent-color: #a2d7dd;
	--text-color: #383c3c;
	--link-color: #0068b7;
	--silver-color: #afafb0;
	--header-height: 69px; /* jsが効くまで */
}

/* fontello 調整 */
[class^="fa-"]:before, [class*=" fa-"]:before {
	width: auto;
	margin-right: 0;
	margin-left: 0;
}




/* パララックス */
.parallax {
	min-height: 300px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 100vw;
	background-size: auto 100vmax;
}

.parallax.bg-01 {
	background-image: url(../../img/back.jpg);
}
.parallax.bg-02 {
	background-image: url(../../img/TOP3.jpg);
}

/* 可視範囲に入ったら下からフェードイン */
.fadein {
	opacity: 0;
	transform-origin: 0 0;
}
@media screen and (min-width: 768px) {
	.fadein_pc {
		opacity: 0;
		transform-origin: 0 0;
	}
}

/* Swiper */

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

.swiper_header .swiper-slide-active img,
.swiper_header .swiper-slide-duplicate-active img,
.swiper_header .swiper-slide-prev img,
.swiper_header .slick-move img {
  animation: zoomUp 12s linear 0s 1 normal both;
}
.swiper-slide img{
  display: block;
}





* {
	box-sizing: border-box;	
}
img{
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}
ul, ol, li{
	list-style: none;
	padding: 0;
}
a {
	color: inherit;
	text-decoration: none;
}


::selection {
	background: rgba(132, 185, 203, 0.6);
	color: #fff;
}
::-moz-selection {
	background: rgba(104, 169, 207, 0.6);
	color: #fff;
}



/* 設定 */
.mg-top0     { margon-top: 0; }
.mg-top10    { margon-top: 10px; }
.mg-top30    { margon-top: 30px; }
.mg-top60    { margon-top: 60px; }
.mg-bottom0  { margon-bottom: 0; }
.mg-bottom10 { margon-bottom: 10px; }
.mg-bottom30 { margon-bottom: 30px; }
.mg-bottom60 { margon-bottom: 60px; }

.ac {
  text-align: center;
}

.flex{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.flex.wrap{
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex.nowrap{
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flex.between{
  justify-content: space-between;
  align-content: space-between;
  -webkit-align-content: space-between;
}
.flex.around {
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
.flex.start{
  justify-content: start;
  align-content: flex-start;
  -webkit-align-content: flex-start;
}
.flex.center{
  justify-content: center;
  align-content: center;
  -webkit-align-content: center;
}

.flex.align-center{
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex.align-end{
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}


.bg_silver {
	background-color: var(--silver-color);
}

.bg_gray {
	background-color: #eee;
}




/* 共通パーツ */
.main_heading {
	font-family: 'Pompiere', sans-serif;
	font-size: 2rem;;
	text-align: center;
	margin: 40px auto;
	line-height: 1.4;
	letter-spacing: .2em;
}
.main_heading .sub_heading {
	font-size: .9rem;
	vertical-align: middle;
	margin-left: 1em;
	font-weight: normal;
	letter-spacing: .1em;
}






/*** トップページ ***/

.main_image {
	position: relative;
	width: 100%;
	height: 100vmin;
	height: calc(100vmin - 69px );/* IE */
	height: calc(100vmin - var(--header-height) );
	overflow: hidden;
}
.main_image .swiper_header img {
	min-width: 100%;
	min-height: calc(100vmin - 69px );/* IE */
	min-height: calc(100vmin - var(--header-height) );
	object-fit: cover;
}
.main_image_inner {
	text-align: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 100%;
}
.main_image img {
	width: 40vw;
	max-width: 500px;
	min-width: 180px;
}


.main_image h1 {
	letter-spacing: .1em;
	color: #fff;
	font-size: 4.5em;
	font-family: 'Nunito', sans-serif;
}
.main_image p {
	letter-spacing: .1em;
	color: #fff;
	transform: translateY(20vh);
	font-size: 20px;
}

/* IE用 */
.main_image .swiper-container,
.main_image .swiper-container .slick-slider,
.main_image .swiper-container .slick-slider .slick-list,
.main_image .swiper-container .slick-slider .slick-list .slick-track {
	height: 100%;
	overflow: hidden;
}



section.contact {
	padding: 60px 30px;
}

.contact_wrap {
	text-align: center;
	width: 960px;
	max-width: 90%;
	margin: 0 auto;
	padding: 30px 50px;
	background-color: rgba(255,255,255,.8);

}


/* レグシアとは */
.home_about {
	width: 90%;
	max-width: 960px;
	margin: 15vmin auto;
}

.home_about .catch {
	font-size: 4vw;
	text-align: center;
	letter-spacing: 0.3vmin;
	line-height: 1.5;
}

.home_about .catch .mark {
	font-size: 2.5vw;
	margin: 0 1em;
	transform: rotate(90deg);
}

.home_about .catch span {
	display: block;
}



.home_about p {
	text-align: center;
	line-height: 2.2;
	letter-spacing: 0.2vmin;
}
.home_about p span {
	display: block;
}


.home_about a {
	text-align: right;
	position: relative;
	display: block;
	width: 70%;
	margin: 3vmin auto 0;
	padding: .7em 0;

}

.home_about a:before {
	position: absolute;
	content: '';
	display: block;
	bottom: 0;
	width: 100%;
	height: 1px;
	left: 0;
	background-color: var(--text-color);
	transition: all .2s ease;
}
.home_about a:after {
	position: absolute;
	content: '';
	display: block;
	bottom: 0;
	right: 0;
	width: 1em;
	height: 1px;
	background-color: var(--text-color);
	transform: rotate(33deg) translate(-0.05em,-0.28em);
	transition: all .2s ease;
}

.home_about a:hover:before {
	width: 103%;
}
.home_about a:hover:after {
	right: -3%;
	width: 1em;
}

/* バナー */

.top_banner_wrap {
	width: 90%;
	max-width: 1080px;
	margin: 5vmin auto 10vmin;
}

.top_banner {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0 auto;
}
.top_banner img {
	width: 100%;
	display: block;
	transform: scale(1);
}
.top_banner_inner {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	color: #fff;
	text-align: center;
	width: 100%;
	font-size: 1rem;
}


.top_banner_inner .more_btn {
	display: block;
	width: 250px;
	max-width: 70%;
	border: solid 1px #fff;
	margin: 1vw auto;
	padding: .6em;
	font-size: .8em;
}

.top_banner a {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


.top_banner img,
.top_banner .top_banner_inner .more_btn {
	transition: background-color 0.3s ease,
				transform 0.3s ease;
}
.top_banner:hover .top_banner_inner .more_btn {
	background-color: #fff;
	color: #000;
}
.top_banner:hover img {
	transform: scale(1.2);
}


/* インフォメーション */
.home_info {
	margin: 15vmin auto;
}




/*** ローディング ***/
.loader-bg {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: #fff;
	z-index: 200;
}
.loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 30vmin;
	height: auto;
	text-align: center;
	color: #fff;
	z-index: 201;
}







/*** 記事一覧 ***/

.post_list li {
	padding: .5em;
}

.post_list .title,
.post_list .cat,
.post_list .date {
	display: inline-block;
	
}

.post_list .date {
	font-size: .9em;
}

.post_list .cat {
	margin: 0 1em;
	padding: 0 1em;
	width: 7em;
	text-align: center;
	background-color: var(--sub-color);
	line-height: 1.6;
	font-size: .8em;
}

.post_list li a {
	transition: color .2s ease;
}


.post_list li a:hover {
	opacity: .6;
}


/* 記事ページ */
.post_content {
	width: 960px;
	max-width: 90%;
	margin: 0 auto;
	padding: 3%;
}

.post_label {
	font-size: .95em;
	line-height: 1.6;
}

.post_label .time {
	margin-right: 2em;
}

.post_label .cat {
	background-color: var(--sub-color);
	line-height: 1.5;
	font-size: .9em;
}

.post_label .cat a {
	padding: 0 1em;
}


.post_title {
	margin: 1em 0;
}


.post_content .content a {
	text-decoration: underline;
}
.post_content .content a:hover {
	opacity: .7;
}


/* 固定ページ */

.page_content {
	width: 960px;
	max-width: 90%;
	margin: 0 auto;
	padding: 3%;
	text-align: justify;
}

.page_content p {
	margin: 1em 0;
}


.page_content a {
	text-decoration: underline;
}
.page_content a:hover {
	opacity: .7;
}



/* 会社概要 */

.company_content dl {
	display: block;
}

.company_content dt {
}






/* ヘッダー */
header {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	
	position: sticky;
	top: 0;
	left: 0;
	z-index: 30;
	background-color: rgba(255,255,255,.9);
	width: 100%;
	font-family: 'Nunito', sans-serif;
	letter-spacing: 1px;
	box-shadow: 0 1px 2px 0 rgba(100,100,100,.3);
	color: #555;
	transition: all .3s ease;
}
header.change {
	background-color: rgba(255,255,255,0);
	color: #fff;
	box-shadow: 0 0 0 0 rgba(100,100,100,0);
}
.header_inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 1200px;
	padding: 10px 20px;
	margin: 0 auto;
	font-size: 14px;
}

.header_inner .logo {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.header_inner .logo img {
	height: 3.5em;
	width: auto;
}

.navi_menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.navi_menu li:not(.world) {
	margin-right: 2em;
	position: relative;
}
.navi_menu li:not(.world)::after {
	position: absolute;
	bottom: -3px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #555;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}
header.change .navi_menu li:not(.world)::after {
	background: #fff;
}
.navi_menu li:not(.world):hover::after {
	transform: scale(1, 1);
}
.navi_menu li.world {
	width: 3em;
	height: auto;
}


.navi_menu li.current-menu-item:after,
.navi_menu li.current_page_item:after {
	transform: scale(1, 1);
}




#body-wrapper,
.menu-trigger {
	display: none;
}

/*** ショップメニュー ***/


header .shop-menu a {
	display: inline-block;
	text-align: center;
	vertical-align: text-bottom;
	margin-right: 5px;
	position: relative;
	width: 40px;
	height: 40px;
}

header .shop-menu a p  {
	font-size: 10px;
	transform: scale(.6) translateX(-33%);
	line-height: 1;
	position: absolute;
	display: block;
	bottom: 3px;
	left: 0;
	text-align: center;
	white-space: nowrap;
	width: 66.7px;
}

header .shop-menu a i:before {
	line-height: 34px;
	font-size: 20px;
}

header .shop-menu a .cart_total  {
	position: absolute;
	top: 2px;
	right: 0;
	line-height: 16px;
	background-color: #f08300;
	color: #fff;
	display: inline-block;
	width: 16px;
	height: 16px;
	border-radius: 8px;
	font-size: 10px;
	text-align: center;
	letter-spacing: 0;
}









/* メイン */
main {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	min-height: 1px; /* IE */
}
/*
main:not(#top_page) {
	margin-top: 70px; * IE *
	margin-top: var(--header-height);
}
*/




/* フッター */

footer {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-top: 7vmin;
}

.footer_inner {
	background-color: #433d3c;
	text-align: center;
	padding: 5vmin 0;
	letter-spacing: 0.1em;
}


footer .copyright {
	font-size: 12px;
	color: #aaa;
}

footer .privacy {
	font-size: 12px;
	color: #aaa;
	margin-bottom: 2vmin;
}



.home footer {
	margin-top: 0;
}


/* パンくずリスト */
.breadcrumb {
	line-height: 2;
	background-color: #f3f3f4;
	font-size: 12px;
}
.breadcrumb ul {
	margin: 0;
}
.breadcrumb li {
	display: inline-block;
	position: relative;
}

.breadcrumb li.top {
	background-color: var(--sub-color);
	position: relative;
	margin-right: 1em;
}

.breadcrumb li:not(.top):not(:last-of-type):after {
	position: absolute;
	content: '\f105';
	font-family: 'fontello';
	display: block;
	top: 50%;
	transform :translateY(-50%);
	right: -0.25em;
	color: var(--sub-color);
	font-size: 2em;
}


.breadcrumb li.top:after {
	position: absolute;
	content: '';
	display: block;
	top: 0;
	right: -2em;
	height: 0;
	width: 0;
	border: solid 1em transparent;
	border-left: solid 1em var(--sub-color);
}

.breadcrumb li a,
.breadcrumb li span {
	padding: 0 1.2em;
	display: block;
}



/*  トップに戻るボタン  */
#scroll-top {
	position: fixed;
	height: 4rem;
	width: 4rem;
	color: #fff;
	text-align: center;
	right: 20px;
	bottom: 50px;
	display: none;
	margin: 0;
	cursor: pointer;
	background-color: var(--main-color);
	border-radius: 100%;
	line-height: 4rem;
	font-size: 1.5em;
	z-index: 100;
}




/* お問い合わせ */


/* フォーム */


.form_content {
	width: 960px;
	max-width: 84%;
	margin: 0 auto;
	padding: 30px 50px;
}



.page_content form p {
	margin: 0;
}



.element_wrap {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	padding: 1em 0;
}
.element_wrap > label {
	width: 25%;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	letter-spacing: 1px;
	margin-top: .5em;
}
.confirm .element_wrap > label {
	margin-top: 0;
}


.element_wrap > div {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}



.element_wrap div label {
	-ms-flex-item-align: center;
	align-self: center;
	margin-right: 1em;
}

.element_wrap div.flex {
	margin-bottom: 1em;
}


.element_wrap .error {
	color: #e8383d;
	position: relative;
	font-size: .9em;
}
/*
.element_wrap .error:after {
	content: '!';
	position: absolute;
	background-color: #f25b5b;
	border-radius: 50%;
	top: -2.2em;
	right: 1em;
	color: #fff;
	font-weight: bold;
	width: 1.4em;
	height: 1.4em;
	text-align: center;
	line-height: 1.45em;
}
*/





/* チェックボックス */
input[type=checkbox] {
    display: none;
}
.checkbox {
	margin-right: 2em;
	display: inline-block;
	padding: .2em 0;
}
.checkbox span {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    position: relative;
    width: 2em;
    height: 2em;
    vertical-align: middle;
    margin-right: .5em;
}
.checkbox span:before {
	position: absolute;
	background: #f3f3f3;
	content: '';
	display: block;
	width: 2em;
	height: 2em;
	top: 0;
	left: 0;
	border-radius: 5px;
}
.checkbox span:after {
    position: absolute;
    border-right: .3em solid var(--text-color);
    border-bottom: .3em solid var(--text-color);
    content: '';
    display: block;
    width: .8em;
    height: 1.2em;
    left: 30%;
    top: 10%;
    opacity: 0;
    transform: rotate(45deg);
    transition:all 0s ease;
}
input[type=checkbox]:checked + span:after {
    opacity: 1;
    transition:all 0.2s ease;
}

/* セレクトボックス */
select {
	height: 2em;
	padding: 0 3em 0 1em;
	font-size: 1em;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 5px;
	background-color: #f3f3f3;
}
.selectbox {
	position: relative;
	display: inline;
}

.selectbox:after {
	position: absolute;
    top: 50%;
    right: 1em;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: '';
    border-left: .4em solid transparent;
    border-right: .4em solid transparent;
    border-top: .6em solid #333;
    pointer-events: none;
}


select::-ms-expand {
    display: none;
}
select:-moz-focusring { 
	color: transparent; 
	text-shadow: 0 0 0 #828c9a;
}


/* テキストボックス */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
	width: 100%;
	background-color: #f3f3f3;
	border-radius: 5px;
	padding: .5em 1em;
	color: inherit;
}





/* テキストエリア */
textarea {
	resize: vertical;
}


/* 送信ボタン */

.submit_wrap {
	text-align: center;
	margin-top: 1em;
}
.submit_wrap > div {
	display: inline-block;
	position: relative;
}
.submit_wrap > div.back {
	margin-right: 3em;
}


.submit_btn {
	background: none;
	border: none;
	position: relative;
	letter-spacing: .1em;
	width: 250px;
	max-width: 80%;
	margin: 50px auto;
	text-align: center;
}


.submit_btn:after,
.submit_btn:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	transition: transform .2s;
}
.submit_btn:after {
	transform: translate(3px, 3px);
	border: 1px solid #524e4d;
}
.submit_btn:before {
	transform: translate(-3px, -3px);
	background-color: var(--accent-color);
}
.submit_btn.back:before {
	background-color: #ccc;
}
.submit_btn:hover:after,
.submit_btn:hover:before {
	transform: translate(0);
}

.submit_btn input[type="submit"],
.submit_btn a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 20px;
	z-index: 2;
	position: relative;
}


/* 送信完了メッセージ */
.complete {
	text-align: center;
	margin: 4em 0;
	font-size: 1.1em;
}



.mw_wp_form_input .submit_btn.back {
	display: none;
}




/***** デザインページ *****/
/* 切り替えタブ */
.design_menu {
	width: 100%;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-bottom: solid 1px var(--silver-color);
}
.design_menu li {
	width: 250px;
	max-width: 30%;
	display: inline-block;
	border: solid 1px var(--silver-color);
	border-bottom: none;
	border-radius: .7em .7em 0 0;
	text-align: center;
	margin: 0 2px;
	margin-bottom: -1px;
	background-color: var(--silver-color);
	color: #fff;
	font-family: 'Pompiere', sans-serif;
	font-size: 24px;
	cursor: pointer;
}
.design_menu li.active {
	background-color: #fff;
	color: var(--silver-color);
	cursor: initial;
}


.design_menu li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: .3rem;
	border-radius: .7em .7em 0 0;
}


.design_content:not(.active) {
	display: none;
}



.grid_wrap {
	width: 1080px;
	max-width: 90%;
	margin: 30px auto;
}
.grid_item {
	width: 33.3%;
	width: cals(100% / 3);
	padding: 5px;
}

.grid_item .grid_inner {
	position: relative;
	width: 100%;
	height: 100%;
}



.grid_item .design_comment {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.4);
	color: #fff;
	transition: all .3s ease;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	opacity: 0;
}

.grid_item:hover .design_comment {
	opacity: 1;
}

.grid_item .design_comment p {
	margin-top: auto;
	-ms-flex-item-align: end;
	align-self: flex-end;
	padding: .5em 1em;
}




/* ページャー */

.pager {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 2em;
}

.pager li {
	width: 2em;
	height: 2em;
	text-align: center;
	background-color: #fff;
	border: solid 1px #808080;
	margin-right: .3em;
	border-radius: 2px;
	color: #808080;
	box-sizing: border-box;
}
.pager li:last-child {
	margin-right: 0;
}


.pager li.current {
	background-color: #808080;
	border: solid 1px #808080;
	color: #fff;
}

.pager li a,
.pager li span {
	line-height: 1.8;
	display: block;
	width: 100%;
	height: 100%;
}



/* もっと見る */
.view_more {
	line-height: 3;
	display: block;
	margin: 2em auto;
	width: 250px;
	max-width: 70%;
	text-align: center;
	letter-spacing: 2px;
	color: #fff;
	padding-bottom: 2px;
	position: relative;
}

.view_more:before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
	left: 0;
	background: linear-gradient( 120deg, #ccc 0%, #888 80% );
	transition: opacity .2s ease;
}
.view_more:hover:before {
	opacity: 0;
}
.view_more:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -2;
	left: 0;
	background: linear-gradient( 120deg, #ccc 20%, #888 100% );
}






/*========================================================
                      ここからPC用 
=========================================================*/
@media screen and (min-width: 768px) {



/*** パンくずリスト ***/
.breadcrumb {
	line-height: 3;
	font-size: 14px;
}

.breadcrumb li {
}

.breadcrumb li.top {
	margin-right: 1.5em;
}

.breadcrumb li:not(.top):not(:last-of-type):after {
	font-size: 2em;
}


.breadcrumb li.top:after {
	right: -3em;
	border: solid 1.5em transparent;
	border-left: solid 1.5em var(--sub-color);
}

.breadcrumb li a,
.breadcrumb li span {
	padding: 0 2em;
}





/*** トップページ ***/

.top_banner_wrap {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.top_banner {
	width: 49%;
}


/* レグシアとは */
.home_about {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.home_about .catch {
	-webkit-box-ordinal-group: 1;
	-ms-flex-order: 1;
	order: 1;
	font-size: 32px;
}

.home_about .catch {
	width: 40%;
}

.home_about div {
	width: 60%;
}




/*** 固定ページ ***/


.page_content .main_heading {
	margin: 40px auto;
}
.page_content .main_heading .sub_heading {
	font-size: 14px;
	vertical-align: middle;
	margin-left: 1em;
}




/* 会社概要 */
.company_content dl {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	margin-bottom: 1.6em;
}

.company_content dt {
	-ms-flex-preferred-size: 20%;
	flex-basis: 20%;
}


.company_content dd span {
	margin-right: 1em;

}








}

/*========================================================
                      ここからSP用 
=========================================================*/
@media screen and (max-width: 767px) {


:root {
	--header-height: 52px; /* jsが効くまで */
}

html {
	font-size: 14px;
}

h2 {
}
.main_heading .sub_heading {
	display: block;
	margin-left: 0;
}


/* パララックス */
.parallax:not(.main_image) {
	min-height: 200px;
}
/* 可視範囲に入ったら下からフェードイン */
.fadein_sp {
	opacity: 0;
	transform-origin: 0 0;
}


/*** トップページ ***/
.main_image {
	height: calc(100vmin - 52px );/* IE */
	height: calc(100vmin - var(--header-height) );
}
.main_image .swiper_header img {
	min-height: calc(100vmin - 52px );/* IE */
	min-height: calc(100vmin - var(--header-height) );
}


.main_image h1 {
	font-size: 12vw;
}
.main_image p {
	transform: translateY(20vh);
	font-size: 14px;
}
.main_image p span {
	display: block;
}

.main_image_inner {
	top: 50%;
	transform: translateY(-30%);
}




main {
	margin-top: 52px; /* IE */
	margin-top: var(--header-height);
}

.home main {
	margin-top: 0;
}


section.contact {
	padding: 10% 7%;
}

.contact_wrap {
	padding: 5%;

}


/* レグシアとは */
.home_about {
}


.home_about .catch {
	font-size: 8vmin;
	letter-spacing: 0.3vmin;
}

.home_about .catch .mark {
	font-size: 5vw;
	margin: 0 1em;
}


.home_about p {
	margin-top: 10vmin;
}


.home_about a {
	width: 70%;
	margin: 5vmin auto;
	padding-right: 1em;
}

.home_about a:before {
	width: 100%;
	height: 1px;
	left: 0;
}
.home_about a:after {
	right: 0;
	width: 1em;
	height: 1px;
}






.top_banner {
	margin-bottom: 5vmin;
	max-width: 380px;
}


.top_banner_inner .more_btn {
	margin: 5vw auto;
}









/* 固定ページ */


/* 会社概要 */

.company_content dl {
	margin-bottom: 2em;
}

.company_content dt {
	border-bottom: solid 1px #c9caca;
	padding-bottom: 2px;
}
.company_content dd {
	padding-top: 2px;
	line-height: 1.4;
}
.company_content dd span {
	display: block;
}




/*** 記事一覧 ***/
.post_list li {
	border-bottom: dashed 1px #ccc;
}
.post_list li:last-child {
	border-bottom: none;
}
.post_list .title {
	display: block;
}







/* ヘッダー */

header {
	position: fixed;
	color: #333;
}
header.change {
	color: #333;
	
}




.header_inner .logo {
	z-index: 31;
}
.header_inner .logo img {
	height: 42px;
}

/*
header.change .logo img {
	transform: scale(1.5) translate(25%,25%);
}
*/

.header_inner {
	position: relative;
	padding: 5px 10px;
	height: 52px;
}

.navi_menu li {
	font-size: 1.1rem;
}

.navi_menu li:not(.world) {
	margin: 0 0 2em;
}
.navi_menu li.world {
	width: auto;
}




/* ドロワーメニュー */

.navi_menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: auto;
	background-color: #f3f3f4;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%); 
	z-index: 30; 
	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
  	padding: 100px 0 20px;
}

.navi_menu a {
	display: block;
}


/* ボタン部分 */
.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all ease .3s;
}
.menu-trigger {
	position: relative;
	top: 0;
	right: 0;
	width: 42px;
	height: 42px;
	z-index: 31; 
	text-align: center;
}
.menu-trigger span {
	position: absolute;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	width: 50%; 
	height: 2.5px; 
	/* background-color: #702d41; */
	background-color: var(--main-color);
	border-radius: 1px; 
}
.menu-trigger span:nth-of-type(1) {
	top: 35%; /* 1本目の線の位置 */
}
.menu-trigger span:nth-of-type(2) {
	top: 50%; /* 2本目の線の位置 */
}
.menu-trigger span:nth-of-type(3) {
	top: 65%; /* 3本目の線の位置 */
}

/* ドロワーメニューをOPENにしたとき */
/* メニュー部分 */
.navi_menu.action {
	-webkit-transform: translateY(0);
	transform: translateY(0); /* 元の位置に戻す */
}

/* ボタン部分 */
/* ハンバーガーボタンを「×」に変える */
.menu-trigger.action span:nth-of-type(1) { /* 1本目 */
	top: 50%;
	-webkit-transform: translate(-50%,-50%) rotate(45deg);
	transform: translate(-50%,-50%) rotate(45deg); 
}
.menu-trigger.action span:nth-of-type(2) { /* 2本目 */
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	opacity: 0;
}
.menu-trigger.action span:nth-of-type(3) { /* 3本目 */
	top: 50%;
	-webkit-transform: translate(-50%,-50%) rotate(-45deg);
	transform: translate(-50%,-50%) rotate(-45deg);
}



#body-wrapper.action {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(243,243,244,.3);
	overflow: hidden;
	z-index: 29;
}






.form_content {
	padding: 30px 0;
}


form {
}

.element_wrap {
	display: block;
	padding: 1em 0;
}
.element_wrap > label {
}


.element_wrap div label {
	display: block;
}






/* チェックボックス */
.checkbox span {
    width: 2em;
    height: 2em;
}
.checkbox span::before {
	width: 2em;
	height: 2em;
}
.checkbox span::after {
    border-right: .2em solid var(--text-color);
    border-bottom: .2em solid var(--text-color);
    width: .7em;
    height: 1em;
}

/* テキストボックス */
input[type="text"],
input[type="email"],
input[type="password"] {
	height: 2.2em;
	font-size: 16px;
	min-width: 14em;
}



/* セレクトボックス */
select {
	font-size: 16px;
	height: 2em;
}
select {
	line-height: 2;
}

/* テキストエリア */

textarea {
	font-size: 16px;
}



/* 送信ボタン */

.submit_wrap {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.submit_wrap > div {
	margin: 1em 0;
}

.submit_btn {
	width: 200px;
	max-width: 80%;
	margin: 50px auto;
}




/***** デザインページ *****/
/* 切り替えタブ */
.design_menu {
	width: 100%;
}
.design_menu li {
	width: 250px;
	max-width: 30%;
	border-radius: .7em .7em 0 0;
	margin: 0 2px;
	color: #fff;
	font-size: 5vmin;
	padding-top: 1vw;
}
.design_menu li a {
	padding: .3rem;
	border-radius: .7em .7em 0 0;
}





/* グリッド */
.grid_wrap {
	width: 1080px;
	max-width: 90%;
	margin: 30px auto;
}
.grid_item {
	width: 50%;
	padding: .5vw;
}











}
