@charset "utf-8";
/* Simple fluid media*/
img, object, embed{
}
*,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,form,fieldset,input,textarea,p,th,td,address,figure{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-left-width: 0;
    border-right-width: 0;
    border-bottom-width: 0;
    vertical-align: baseline;
    line-height: 1;
    background-repeat: no-repeat;
    background-size: contain;
    letter-spacing: 0.2em;
	font-family: 'Noto Sans JP', sans-serif;	
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}
/*font*/
.font_min{
	font-family: 'Noto Serif JP', serif;
}
.font_go{
	font-family: 'Noto Sans JP', sans-serif;
}
.font_jost{
	font-family: 'Jost', sans-serif;
}


.vertical {
    writing-mode: vertical-rl;
}


/*reset */
html, body {
  height:100%;
}
body{
    width: 100%;
}
a{
    transition: all  1.5s ease;
}
.basic-3 {
    background: linear-gradient(#fff 0 0) 
      bottom /var(--d, 0) 1px 
      no-repeat;
    transition: 0.3s;
}
.ft .basic-3 {
    background: linear-gradient(#454139 0 0) 
      bottom /var(--d, 0) 1px 
      no-repeat;
}
.basic-3.basic-b {
    background: linear-gradient(#454139 0 0) 
      bottom /var(--d, 0) 1px 
      no-repeat;
}

.link_up {
    transition: 0.2s;
    transition-duration: .2s;
}

html { 
	font-size:16px;
}

.fluidwidth{
	width: 100%;
}
.pc480{
	visibility:hidden;
	display: none;
}
.pc768{
	visibility:hidden;
	display: none;
}
.pc1200{
	display: none;
}
.op0{
	opacity: 0;
}
::-webkit-scrollbar{
   width: 10px;
}
::-webkit-scrollbar-track{
   background-color: rgba(180,180,180,0)
}
::-webkit-scrollbar-thumb{
   background-color: rgba(184,172,149,0.30);
}



.btn{
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
	overflow: hidden;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
    padding: 10px 30px;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
}

/*ボタン内spanの形状*/
.btn span {
    position: relative;
    z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
    display: block;
}

/*== 背景が流れる（中央から横全体） */
.bgcenterx:before {
	content: '';
    /*絶対配置で位置を指定*/
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
    /*色や形状*/
	background: #969285;
	width: 100%;
	height: 100%;
    /*アニメーション*/
	transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transform: scale(0, 1);
	transform-origin: top;
}
/*-----bntここまで*/

.fade_active{
	animation-duration:2s;
	animation-fill-mode:forwards;
	
}

.fade_active.fadeLeft{
	animation-name:fadeLeftAnime;
}
@keyframes fadeLeftAnime{
  from {
    opacity: 0;
	transform: translateX(-20px);
  }

  to {
    opacity: 1;
	transform: translateX(0);
  }
}

.fade_active.fadeRight{
	animation-name:fadeRightAnime;
}
@keyframes fadeRightAnime{
  from {
    opacity: 0;
	transform: translateX(20px);
  }

  to {
    opacity: 1;
	transform: translateX(0);
  }
}

.fade_active.fadeUp{
	animation-name:fadeUpAnime;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(20px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}
.Trigger{
	opacity: 0;
}



.main_v {
    position: relative;
}

.cr_v {
    top: 0px;
    left: 0px;
    z-index: -1;
    min-width: 100%;
	position: fixed;
    z-index: 0;
    overflow: hidden;
    min-height: 100vh;
	
}
.cr_v img.sp480 {
    /*天地中央配置*/
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 56.25vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 177.77777778vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}
.cr_v img.pc480 {
    /*天地中央配置*/
    position: absolute;
    z-index: -2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}
.cr_v img.v_over{
	opacity: 0;
  	-webkit-filter: blur(5px) brightness(30%) contrast(110%) saturate(70%);
  	filter: blur(5px) brightness(30%) contrast(110%) saturate(70%);
	z-index: -1;
}


/* 画像スライド */

.v_list_box {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.v_list_box .v_list {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slider-1 24s linear infinite;
}

.v_list:nth-child(1) {
  animation-delay: -2s;
}

.v_list:nth-child(2) {
  animation-delay: 6s;
}

.v_list:nth-child(3) {
  animation-delay: 14s;
}

@keyframes slider-1 {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    transform: scale(1.15);
  }
    100% {
  opacity: 0;
  }
}






.wrap {
    position: relative;
	overflow: hidden;
}
.head {
    position: relative;
    z-index: 20;
}
.head_flex {
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
}
.logo {
    width: 200px;
    height: auto;
}
.logo a {
    display: block;
    padding-left: 20px;
    padding-top: 23px;
}


/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: -120%;
    left: 0;
    width: 100%;
    height: 100vh;/*ナビの高さ*/
    background-color: #000000;
    /*動き*/
    transition: all 0.6s;
    background-image: url(../img/nav_bk_sp.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
	visibility: hidden;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
	visibility: visible;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    /*position: fixed;*/
    position: relative;	
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
	margin-top: 20px;
}

/*ナビゲーション*/
.g-navin {
    text-align: center;
    width: 100%;
	transition: 0.1s;
	visibility: hidden;
	opacity: 0;
}
.panelactive .g-navin {
	padding-top: 40px;
	padding-bottom: 200px;
	visibility: visible;
	opacity: 1;
}



/*リストのレイアウト設定*/


.scroll_no{
	overflow-y: hidden;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1{
    position: fixed;
    z-index: 9999;/*ボタンを最前面に*/
    top: 10px;
    right: 13px;
    cursor: pointer;
    width: 50px;
    height: 50px;
}
  
/*×に変化*/  
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    right: 7px;
    height: 1px;
  	background-color: #fff;
    width: 80%;
  }
.openbtn_b span{
	background-color: #454139;
}
.openbtn_b.active span{
	background-color: #fff;
}

.openbtn1 span:nth-of-type(1) {
  top:15px; 
}

.openbtn1 span:nth-of-type(2) {
  top:23px;
}

.openbtn1 span:nth-of-type(3) {
  top:31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 0px;
    transform: translateY(6px) rotate(-45deg);
    width: 100%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 0px;
    transform: translateY(-6px) rotate(45deg);
    width: 100%;
}
.g-navin a {
    color: #FFFFFF;
    display: inline-block;
    padding-bottom: 5px;
    text-align: center;
}
.nav_eng {
    font-size: 9px;
    display: inline-block;
    padding-bottom: 5px;
    font-weight: 300;
}
.g-nav_home {
    text-align: center;
    padding-bottom: 20px;
}

.nav_j01 {
    font-size: 14px;
}

.nav_j02 {
    font-size: 28px;
}
.g-nav_lin {
    padding-bottom: 40px;
}
.nav_j03 {
    font-size: 16px;
}
.g-nav_lin_s {
    padding-bottom: 20px;
}
.g-nav_lin_top {
    padding-bottom: 20px;
}
.g-nav_lin_s_btm {
    padding-bottom: 40px;
}
.g-nav02_l {
    color: #FFFFFF;
    padding-bottom: 20px;
}
.nav02_j {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    padding-bottom: 20px;
}
.nav02_j02 {
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    padding-bottom: 10px;
}
.nav02_ban {
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    padding-bottom: 10px;
}
.nav02_j03 {
    font-size: 11px;
    font-weight: 400;
    padding-bottom: 10px;
    line-height: 32px;
	margin-right: 18px;
	position: relative;
}
.nav02_m::after {
    background-color: #fff;
    content: "";
    display: block;
    height: 11px;
    right: -12px;
    opacity: .5;
    position: absolute;
    top: 4px;
    width: 2px;	
}
.nav02_c {
	position: relative;
	padding-right: 18px;
}
.nav02_c::after {
    font-family: 'FontAwesome';
    content: ' ';
    position: absolute;
    top: 50%;
    right: 0px;
    margin-top: -11px;
    background-image: url("../img/icon_link.png");
    background-repeat: no-repeat;
	background-size: 14px;
    width: 14px;
    height: 100%;
    z-index: 1;
}
.ft .nav02_c::after {
    font-family: 'FontAwesome';
    content: ' ';
    position: absolute;
    top: 50%;
    right: 0px;
    margin-top: -11px;
    background-image: url("../img/icon_link_b.png");
    background-repeat: no-repeat;
	background-size: 14px;
    width: 14px;
    height: 100%;
    z-index: 1;
}


.g-nav_flex {
    padding-bottom: 40px;
}
.v_msg_box01 {
    z-index: 10;
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
	align-items: center;
}
.v_msg_center {
    margin: 0 auto;
    color: #FFFFFF;
}
.v_msg01 {
    color: #FFFFFF;
    font-size: 32px;
    line-height: 2;
    font-weight: 300;
}
.v_msg02 {
    margin: 0 auto;
    width: 80%;
}
.v_p_flex {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 40px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    width: 100%;
}
.v_p_l {
    width: 33.333%;
    padding-left: 10px;
    padding-right: 10px;
}
.v_msg_box02 {
    position: relative;
    z-index: 10;
}
.v_c01_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 80px;
}
.v_c01_img_flex {
    width: 70%;
    display: flex;
	justify-content:flex-start;
	align-items: center;
	flex-wrap: wrap;
}
.v_c01_img_l {
    width: 33.3333%;
}
.v_c01_l02 {
    width: 30%;
    display: flex;
	justify-content: center;
	align-items: center;
}
.v_c01_l02_txt {
    color: #FFFFFF;
    font-size: 32px;
    margin: 0 auto;
    font-weight: 400;
}
.v_c01_l03 {
    margin-top: 80px;
    margin-left: 40px;
}
.v_c02_l01 {
    padding-right: 40px;
    padding-top: 80px;
}
.v_c02_ltxt {
    font-size: 32px;
    text-align: right;
    color: #FFFFFF;
    font-weight: 400;
    padding-bottom: 40px;
}
.v_c02_l02_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
}
.v_c02_l02_l {
    width: 30%;
    display: flex;
	justify-content: center;
	align-items: center;
}
.v_c02_l02txt {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 400;
	margin: 0 auto;
}
.v_c02_l02_img01 {
    width: 70%;
}
.v_c02_l02txt02 {
    font-size: 16px;
    text-align: left;
    color: #FFFFFF;
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 2.5;
}
.c_link {
    text-align: center;
}
.c_link a {
    display: inline-block;
    border-radius: 100px;
    border: 1px solid #FFFFFF;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #FFFFFF;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    min-width: 220px;
    padding-left: 20px;
    padding-right: 20px;
}
.v_c02_flex {
    padding-bottom: 80px;
}
.cnt {
    background-color: #FFFFFF;
    position: relative;
    z-index: 2;
    padding-top: 80px;
}
.cnt02 {
    background-color: #FFFFFF;
    position: relative;
    z-index: 2;
}
.box01_flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 20px;
}
.box01_flex02 {
	flex-direction: row-reverse;
}
.box01_l {
    width: 20%;
    display: flex;
	justify-content: center;
	align-items: flex-start;
}
.v_c02_l02txt_b {
    color: #454139;
    font-size: 32px;
    font-weight: 400;
    margin-left: auto;
	white-space: nowrap	
}
.v_c02_l02txt_w {
    color: #FFFFFF;
}

.box01_flex02 .v_c02_l02txt_b {
    margin-left: 10px;
}
.box01_eng {
    color: #454139;
    font-size: 9px;
    margin-left: 5px;
    margin-right: 10px;
}
.box01_eng_w {
    color: #FFFFFF;
}

.box01_flex02 .box01_eng {
    margin-left: 10px;
    margin-right: auto;
}
.box01_l02 {
    flex: 1;
    overflow-y: hidden;
    width: 80%;
}
.box01_l02_l {
    width: 260px;
}
.box01_l02_list_works .box01_l02_l {
    width: 100%;
}
.box01_l02_list {
    width: 1100px;
    display: flex;
	justify-content:space-between;
	align-items: flex-start;
}
.box01_l02_list_works {
    display: flex;
	justify-content:space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}
.box01_l02_img{
	overflow: hidden;
	display: block;
}
.box01_l02_img img {
    object-fit: cover;
    height: 60vh;
    transition: 0.3s;
    transition-duration: .3s;
}
.box01_l02_list_works .box01_l02_img img {
	min-width: 100%;
    height: 56.25vw;
}
.box01_l02_l a {
    display: block;
    padding-bottom: 20px;
}


.box01_l02_ttl {
    color: #454139;
    font-size: 18px;
    padding-top: 20px;
    padding-bottom: 10px;
}
.box01_l02_art {
    font-size: 12px;
    color: #969285;
    padding-bottom: 10px;
}
.c_link_b a {
    color: #454139;
    border: 1px solid #969285;
}
.pad-btm80 {
    padding-bottom: 80px;
}

.cr_model {
    position: relative;
	overflow: hidden;
}
.cr_v02{
	overflow: hidden;
	min-width: 100%;
	height: 100vh;
	position: absolute;	
	height: calc(var(--vh, 1vh) * 100);
}

/*.cr_v02 img{
    transition: 0.3s;
    transition-duration: .3s;
}*/
.cr_v02 img.pc768{
	position: absolute;
    z-index: -2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 177.77777778vh;
    height: 56.25vw;
    min-height: 100%;
    min-width: 100%;
}

/*.cr_v02 img.sp768{
	z-index: -2;
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	min-width: 100%;
	width: 56.25vh;
    height: 177.77777778vw;
	min-height: 100%;
	height: calc(var(--vh, 1vh) * 100);
}*/
.cr_v02 img.sp768{
	position: relative;
	z-index: -2;
	object-fit: cover;
	object-position: center center;
	/*min-width: 100%;*/
	min-height: 100%;
/*	height: calc(var(--vh, 1vh) * 100);*/
	width: 110vw;
}


.cr_m_active .cr_v02 {
    position: fixed;
    left: 0px;
	z-index: -1;
	top: 0px;
}

/*.nonfixed .cr_v02 {
    position: absolute;
    left: 0px;
    bottom: 0px;
    top: auto;
}
.nonfixed .cr_v02 img{
	object-position: 0 0;
}*/
.r_msg_box {
    padding-top: 80px;
    padding-bottom: 80px;
}
.r_msg_ttl {
    color: #FFFFFF;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 2;
    padding-top: 60px;
    padding-bottom: 20px;
}
.r_msg_p {
    color: #FFFFFF;
    font-size: 14px;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 3;
    text-align: left;
    padding-top: 40px;
}
.top_info {
    padding-top: 80px;
    padding-bottom: 80px;
}
.top_info_link {
    padding-bottom: 20px;
}
.search_item {
    color: #969285;
    font-size: 16px;
    display: inline-block;
    padding: 4px;
    cursor: pointer;
}
.top_info_item a {
    padding: 20px;
    display: block;
}

.search_item.is-active {
    color: #454139;
    text-decoration: underline;
    font-weight: 600;

}
.list .list_item.is-hide {
  display: none;
}





.top_info_img {
    display: block;
	overflow: hidden;
}

.top_info_item img {
    height: 23vh;
    width: 100%;
    overflow: hidden;
    object-fit: contain;
    background: #d7cfc0;
    transition: 0.3s;
    transition-duration: .3s;
}


.top_info_d01 {
    padding-top: 20px;
    padding-bottom: 10px;
}
.top_info_day {
    color: #454139;
    font-size: 10px;
    font-weight: 200;
    display: inline-block;
    padding-right: 10px;
}
.top_info_tag {
    background-color: #d7cfc0;
    color: #FFFFFF;
    font-size: 9px;
    font-weight: 400;
    padding: 5px;
    display: inline-block;
}
.top_info_d02 {
    color: #454139;
    font-size: 16px;
    font-weight: 400;
    padding-bottom: 10px;
    line-height: 2;
}
.top_info_flex {
    border-right: 1px solid #d7cfc0;
    border-bottom: 1px solid #d7cfc0;
    margin-right: 20px;
}
.top_info_item:nth-child(n + 5) {
	display: none;
}
.top_info_item{
    border-top: 1px solid #d7cfc0;
    border-left: 1px solid #d7cfc0;
}
.top_int_p {
    color: #454139;
    font-size: 16px;
    font-weight: 300;
    margin-top: 0;
    margin-right: auto;
    margin-left: 10px;
    margin-bottom: 0;
    text-align: left;
    line-height: 2.5;
    padding-top: 30px;
}
.top_int_img {
    padding-left: 10px;
}
.top_int_img02 {
    padding-left: 0px;
    padding-right: 10px;	
}
.top_int::after {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    background: url("../img/int_bk.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 80%;
    height: 100vw;
	z-index: -1;
 	display: inline-block;

}
.top_int {
    position: relative;
	padding-top: 80px;
	padding-bottom: 80px;
}

.top_cmp {
    position: relative;
	padding-top: 80px;
	padding-bottom: 80px;
}
.top_cmp::after {
    content: ' ';
    position: absolute;
    top: 0;
    right: 0;
	background-color: #e6ebe4;
    width: 70%;
    height: 90vw;
	z-index: -1;
 	display: inline-block;

}
.top_cmp_img {
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
    padding-bottom: 40px;
    max-width: 400px;
}
.ft_cv {
    position: relative;
    z-index: 2;
}
.cv_ttl {
	position: absolute;
	z-index: 2;
	top: 80px;
	left: 0;	
}
.cr_m_active .cv_ttl {
	position: fixed;
	z-index: 2;
	top: 80px;
	left: 0;
	
}
/*.nonfixed .cv_ttl {
	position: absolute;
	z-index: 2;
	top: auto;
	bottom: calc(100vh*0.65);
	left: 0;
}*/
.cv_l {
    width: 80%;
    margin-left: auto;
    padding-top: 50vh;
}
.cv_l01_txt01 {
    color: #FFFFFF;
    font-size: 12px;
    text-align: center;
    font-weight: 300;
    line-height: 2;
    padding-bottom: 20px;
}
.cv_l01_txt02 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    line-height: 2;
    padding-bottom: 20px;
}
.cv_icon_flex {
    display: flex;
    align-items: center;
    width: 90%;
    margin-top: 0;
    margin-left: auto;
    margin-bottom: 0;
    padding-bottom: 20px;
}
.cv_hcon {
    width: 120px;
	position: relative;
	z-index: 1;
}
.cv_icon_txt {
    background-color: #59554c;
    color: #FFFFFF;
    padding-top: 15px;
    padding-right: 10px;
    padding-left: 20px;
    padding-bottom: 15px;
    text-align: left;
    margin-left: -10px;
    flex: 1;
    position: relative;
    z-index: 0;
}



.cv_cnt_flex {
    background-color: rgba(69,65,57,0.90);
    padding-top: 50px;
    padding-bottom: 0px;
}
.cv_l02 {
    padding-top: 50px;
}
.cv_b_box {
    background-color: #524e48;
    position: relative;
    z-index: 2;
}
.cv_b_link {
    padding-top: 15px;
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
}
.cv_b_l01r {
	flex: 1;
}
.cv_eng {
    color: #FFFFFF;
    font-size: 10px;
    text-align: left;
    padding-bottom: 10px;
    font-weight: 300;
}
.cv_j {
    color: #FFFFFF;
    text-align: left;
    font-size: 30px;
    font-weight: 300;
}
.cv_b_flex {
    padding-top: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid #FFFFFF;
}



.cv_b_l01l {
    width: 50px;
    border-radius: 100px;
    border: 1px solid #FFFFFF;
    height: 50px;
    overflow: hidden;
    padding: 13px;
}
.cv_b_flex02 {
    padding-top: 40px;
    padding-bottom: 30px;

}
.cv_b_l02_txt {
    display: block;
    color: #FFFFFF;
    font-size: 12px;
    text-align: center;
    padding-bottom: 30px;
}
.cv_b_l02 {
    text-align: center;
}
.cv_icon {
    display: inline-block;
    width: 60px;
    padding-left: 10px;
    padding-right: 10px;
}
.cv_b_02r {
    padding-top: 30px;
    padding-bottom: 10px;
    text-align: center;
}
.cv_tel_link {
    border-radius: 100px;
    color: #FFFFFF;
    display: inline-block;
    padding-top: 10px;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 10px;
    font-size: 14px;
    border: 1px solid #FFFFFF;
}
.ft {
    background-color: #FFFFFF;
    position: relative;
    z-index: 2;
    padding-top: 40px;
    padding-bottom: 80px;
    padding-left: 20px;
    padding-right: 20px;
}
.ft a {
    color: #454139;
}
.ft_home {
    padding-bottom: 40px;
}
.ft_home_eng {
    font-size: 16px;
    display: inline-block;
    padding-right: 10px;
}
.ft_home_j {
    font-size: 10px;
}
.ft_link01 {
    font-size: 16px;
    text-align: left;
    display: block;
    padding-bottom: 10px;
    font-weight: 600;
}
.ft_link02 {
    display: inline-block;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 12px;
    font-weight: 200;
}
.ft_l_box {
    padding-bottom: 30px;
}
.ft_logo {
    width: 80%;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 40px;
    max-width: 320px;
}
.ft_cp_name {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    color: #454139;
    padding-bottom: 20px;
}
.ft_cp_post {
    font-size: 10px;
    text-align: center;
    color: #454139;
    padding-bottom: 10px;
    line-height: 1.5;
}
.pad_btm20 {
    padding-bottom: 40px;
}
.ft .cv_icon {
    width: 45px;
    padding-left: 5px;
    padding-right: 5px;
}
.ft_cp {
    text-align: center;
}
.ft_sub_link {
    padding-top: 20px;
    text-align: center;
    padding-bottom: 40px;
}
.ft_copy {
    border-top: 1px solid #454139;
    color: #454139;
    font-size: 10px;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
    line-height: 2;
}


 .submenu {
    display: none;
 }
.open .submenu {
    display:block;
 }

.ft i.btm_menu {
    position: absolute;
    top: 13px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
	right: 12px;
	transform: rotate(90deg);
	color: 000;
}


.ft.open .link {
    color: #fff;
    background-color: #E9E9E9;
}

.ft.open i.btm_menu {
    color: #fff;
	top: 7px;
}
.ft.open i.btm_menu {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(-90deg);
}
.foot_menu_btn {
    display: inline;
}
.foot_close_btn {
    display: none;
}
.open .foot_menu_btn {
    display: none;
}
.open .foot_close_btn {
    display: inline;
}
.foo_link_menu .link {
    cursor: pointer;
    text-align: center;
    padding: 15px;
    display: block;
    font-size: 0.8em;
    border-radius: 100px;
    border: 1px solid #454139;
    color: #454139;
    position: relative;
	max-width: 400px;
	margin: 0 auto;
}
/* topへ戻る */
.pagetop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    width: 80px;
    height: 80px;
	visibility: hidden;
}
.link_navi_flex {
    padding-top: 0px;
    padding-bottom: 80px;
    text-align: center;
}
.arrow {
  position: relative;
  display: inline-block;
  padding: 30px;
}

.arrow::before {
  content: '';
  width: 30px;
  height: 30px;
  border-top: solid 1px #454139;
  border-right: solid 1px #454139;
  position: absolute;
  left: 15px;
  top: 38px;
}

.arrow.arrow-left::before {
  transform: rotate(-135deg);
}

.arrow.arrow-right::before {
  transform: rotate(45deg);
}
.link_navi_flex a {

}
.link_l {
    border: 1px solid #454139;
    color: #454139;
    display: inline-block;
    font-size: 15px;
    height: 44px;
    line-height: 42px;
    margin: 0px;
    min-width: 44px;
    padding: 0 10px;
    text-align: center;
    width: auto;
}
.link_l.link_active {
    color: #fff;
	background-color: #454139;
}
.link_l.btn{
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
	overflow: hidden;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
    /*padding: 10px 30px;*/
	padding: 0px;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
	top:16px;
}

/*ボタン内spanの形状*/
.link_l.btn span {
    position: relative;
    z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
    /*display: block;*/
	display: inline-block;
}
.link_l.bgcenterx:before {
	content: '';
    /*絶対配置で位置を指定*/
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
    /*色や形状*/
	background: #969285;
	width: 100%;
	height: 100%;
    /*アニメーション*/
	transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transform: scale(0, 1);
	transform-origin: top;
}
.sub_ttl01 {
    text-align: center;
    padding-bottom: 40px;
}

.sub_ttl01_eng {
    font-size: 26px;
    font-weight: 600;
    margin-right: 10px;
}
.sub_ttl01_j {
    font-size: 14px;
    font-weight: 400;
}
.works_ttl_box {
    padding-left: 30px;
    padding-right: 20px;
    padding-bottom: 30px;
}
.works_ttl {
    font-size: 22px;
    color: #454139;
    line-height: 1.7;
    font-weight: 600;
    text-align: left;
    padding-bottom: 10px;
}
.works_art {
    color: #454139;
    font-size: 12px;
    font-weight: 400;
    text-align: left;
}
.works_detail {
    padding-top: 30px;
    padding-left: 0px;
    padding-bottom: 30px;
}
.works_d_flex {
    display: flex;
	justify-content: center;
	align-items: flex-end;
}
.works_d {
    width: 33.333%;
    text-align: left;
    margin-left: 10px;
    margin-right: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #c1bdb6;
}
.works_d01 {
    color: #454139;
    font-size: 10px;
    padding-bottom: 10px;
}
.works_d02   {
    color: #454139;
    font-size: 12px;
    font-weight: 600;
}
.works_d_p {
    padding-left: 20px;
    padding-right: 60px;
    padding-top: 30px;
    font-size: 14px;
    line-height: 2.5;
    color: #454139;
}
.works_img {
    padding-right: 78px;
    margin-left: 0px;
    margin-right: auto;
    padding-bottom: 30px;
}
.works_img_list {
    padding-bottom: 5px;
}
.arrow_img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    object-position: center center;
    display: inline-block;
    margin-left: -20px;
}
.arrow_img_right {
    margin-left: 0px;
    margin-right: -20px;
}
.works_link_top {
    display: inline-block;
    width: 88px;
    height: 88px;
    margin-left: 40px;
    padding: 0px;
    margin-right: 40px;
    position: relative;
    margin-top: 0px;
    margin-bottom: -40px;
    border: 1px solid #454139;
    color: #454139;
	
}
.works_link_top span {
	transform:translateY(85%);
}













































































































/* Tablet Layout: 481px to 767px. Inherits styles from: Mobile Layout. */
@media only screen and (min-width: 481px) {
.sp480{
	visibility: hidden;
	display: none;
}
.pc480{
	visibility:visible;
	display: block;
}
a:hover{
    text-decoration: none;
}
.link_up:hover {
	transform: translate(0px, -5px);
}
.basic-3:hover {
  --d: 100%;
}
.box01_l02_l a:hover img{
	transform: scale(1.1);
}
.top_info_item a:hover img{
	transform: scale(1.1);
}	

	
/*hoverした際の形状*/	
.bgcenterx:hover span{
	color:#fff;
	z-index: 5;
	display: block;
}
.bgcenterx:hover:before{
	transform:scale(1, 1);
}
.link_l.bgcenterx:hover span{
	color:#fff;
	z-index: 5;
	display: inline-block;
}
.link_l.bgcenterx:hover:before{
	transform:scale(1, 1);
}	
	
	
}



@media only screen and (min-width:768px){
.sp768{
	visibility:hidden;
	display: none;
}
.pc768{
    visibility: visible;
    display: block;
}	
.head_i {
    display: inline-block;
}
.head_icon01 {
    width: 20px;
    display: inline-block;
    margin-right: 5px;
}
.head_i_txt {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 14px;
}
.basic-b .head_i_txt {
    color: #454139;
}
	
.head_l02 {
    margin-right: 150px;
    margin-top: 56px;

}
.logo {
    width: 320px;
}
.openbtn1 {
    width: 90px;
    height: 70px;
    top: 40px;
    right: 33px;
}
.logo a {
    padding-top: 50px;
    padding-left: 40px;
}
.head_i a {
    padding-bottom: 5px;
}
.head_i_pad {
    padding-right: 20px;
}

/*========= ナビゲーションのためのCSS ===============*/	
#g-nav {
    background-image: url(../img/nav_bk_pc.jpg);
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    /*position: fixed;*/
    position: relative;	
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
.g-navin {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 0%;
    left: 50%;
    transform: translate(-50%,0%);
    text-align: center;
    width: 100%;
}
.panelactive .g-navin {
	padding-top: 10vh;
	padding-bottom: 80px;
}
.g-nav_flex {
    display: flex;
	justify-content: center;
	align-content: flex-start;
	align-items: flex-start;
	padding-bottom: 20px;
}
.g-nav_l {
    min-width: 380px;
}
.g-nav02_flex {
    display: flex;
    justify-content: space-between;
    align-content: stretch;
    left: 0px;
    bottom: 0px;
}
.g-nav02_lin_l {
    padding-left: 40px;
    padding-bottom: 0px;
    width: 100%;
}
.g-nav02_lin_r {
    padding-right: 40px;
    padding-bottom: 20px;
}
.nav02_j {
    text-align: left;
}
.nav02_j02 {
    text-align: left;
}
.nav02_ban {
    text-align: left;
}
.nav02_j03 {
	margin-left: 18px;
}
.nav02_m::before {
    background-color: #fff;
    content: "";
    display: block;
    height: 11px;
    left: -22px;
    opacity: .5;
    position: absolute;
    top: 4px;
    width: 2px;	
}
.nav02_m::after {
    right: -22px;
}	
.g-nav02_l02 {
    display: flex;
	align-items: flex-end;
}
.nav_j02 {
    font-size: 36px;
}
.g-nav_lin {
    padding-bottom: 50px;
}
.nav_j03 {
    font-size: 20px;
}
.nav_eng {
    padding-bottom: 10px;
}
.g-nav_lin_top {
    padding-bottom: 30px;
}
.g-nav_lin_s_btm {
    padding-bottom: 60px;
}
.g-nav_lin_btm_no {
    padding-bottom: 0px;
}
.v_msg01 {
    font-size: 45px;
}
.v_msg02 {
    width: 700px;
}
.v_p_flex {
    width: 700px;
}
.v_c01_flex {
    padding-top: 160px;
}
.v_c01_l02_txt {
    font-size: 52px;
}
.v_c01_l03 {
    margin-top: 160px;
}
.v_c02_ltxt {
    font-size: 52px;
}
.v_c02_l01 {
    padding-top: 160px;
}
.v_c02_l02txt {
    font-size: 52px;
}
.v_c02_l02txt_b {
    font-size: 52px;
}	
.v_c02_l02_flex {
    margin-top: 160px;
}
.v_c02_flex {
    padding-bottom: 160px;
}
.c_link a {
    padding-top: 15px;
    padding-bottom: 15px;
}
.cnt {
    padding-top: 160px;

}
.box01_flex {
    padding-bottom: 40px;
}
.box01_eng {
    margin-left: 15px;
    margin-right: 40px;
}
.pad-btm80 {
    padding-bottom: 160px;
}
.nonfixed .cr_v02 {
    position: absolute;
    left: 0px;
    bottom: 0px;
    top: auto;
}
.nonfixed .cr_v02 img{
	object-position: 0 0;
}	
	
.r_msg_box {
    padding-top: 160px;
    padding-bottom: 160px;
}
.r_msg_ttl {
    font-size: 30px;
    padding-top: 80px;
    padding-bottom: 40px;
}
.r_msg_p {
    font-size: 16px;
    text-align: center;
    line-height: 4;
    padding-top: 60px;
}
.top_info {
    padding-top: 160px;
    padding-bottom: 160px;
}
.top_info_flex {
    display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-content: stretch;
}
.top_info_item {
    width: 50%;
}
.top_info_item:nth-child(n + 5) {
	display:block;
}
.top_int_flex {
    display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items:flex-start;
}
.top_int_l01 {
	flex: 1;
}
.top_int_l02 {
	width: 230px;
}

	
.top_int_p {
    font-size: 16px;
    margin-left: 0px;
    line-height: 3;
    padding-top: 0px;
}
.top_int_img {
    padding-left: 10px;
    max-width: 900px;
}
.top_int_img02 {
    padding-left: 0px;
    padding-right: 10px;	
    max-width: 900px;
	margin-left: auto;
}	
.top_int::after {
    height: 50vw;

}
.top_int {
    position: relative;
	padding-top: 160px;
	padding-bottom: 160px;
}
.top_cmp {
    position: relative;
	padding-top: 160px;
	padding-bottom: 160px;
}
.top_cmp::after {
    height: 60vw;
    width: 90%;

}
.nonfixed .cv_ttl {
	position: absolute;
	z-index: 2;
	top: auto;
	bottom: calc(100vh*0.65);
	left: 0;
}
.cv_ttl {
    top: 160px;
}
.cv_l01_txt01 {
    font-size: 18px;
}
.cv_l01_txt02 {
    font-size: 36px;
}
.cv_cnt_flex {
    padding-top: 100px;
}
.cv_l02 {
    padding-top: 100px;
}
.cv_icon_txt {
    padding-left: 30px;
    padding-top: 25px;
    padding-bottom: 25px;
    font-size: 18px;
}
.cv_hcon {
    width: 140px;
}
.cv_b_flex {
    padding-top: 40px;
    padding-bottom: 50px;
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.cv_b_l01 {
    width: 50%;
}
.cv_b_link {
    padding-left: 50px;
    padding-right: 50px;
}
.r_sen {
    border-right: 1px solid #FFFFFF;
}
.cv_j {
    font-size: 40px;
}
.cv_b_l01l {
    width: 80px;
    padding: 23px;
    height: 80px;
}
.cv_b_flex02 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    max-width: 1400px;
}
.cv_b_l02 {
    width: 50%;
    text-align: left;
}
.cv_b_02r {
    width: 50%;
    text-align: right;
    padding-top: 0px;
    padding-bottom: 0px;
}
.cv_b_l02_txt {
    display: inline-block;
    padding-right: 10px;
    padding-left: 0px;
}
.cv_b_l02_txt_l {
    padding-left: 50px;
}

.cv_icon {
    width: 40px;
    padding-left: 5px;
    padding-right: 5px;
}
.cv_tel_waku {
    color: #FFFFFF;
    font-size: 10px;
    display: inline-block;
    padding-top: 6px;
    padding-right: 5px;
    padding-left: 5px;
    padding-bottom: 5px;
    border: 1px solid #FFFFFF;
    margin-left: 5px;
    margin-right: 13px;
}
.cv_tel {
    color: #FFFFFF;
    display: inline-block;
    padding-right: 50px;
	transform: translateY(2px);
}
.ft {
    padding-top: 60px;
    padding-bottom: 60px;
}
.pagetop{
	visibility: visible;		
}
.pagetop a {
    display: flex;
    text-align: center;
    text-decoration: none;
    padding: 25px;
    opacity: 1;
    border-radius: 150px;
    border: 1px solid #bcbbb9;
    overflow: hidden;
    width: 80px;
    height: 80px;
    align-items: center;
}
.box01_l02_list_works  .box01_l02_l {
    width: 50%;
}
.box01_l02_list_works .box01_l02_img img {
	min-width: 100%;
	height: 25vw;
}
.link_navi_flex {
    padding-bottom: 160px;
}
.works_ttl {
    font-size: 36px;
}
.works_ttl_box {
    padding-left: 60px;
    padding-right: 40px;
    padding-bottom: 50px;
}
.works_detail {
    padding-left: 60px;
    padding-right: 114px;
    padding-top: 60px;
    padding-bottom: 50px;
}
.works_d_p {
    padding-bottom: 30px;
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
}
.works_img {
    padding-right: 122px;
}
.works_wrap {
    padding-bottom: 60px;
}
.works_new {
    padding-bottom: 160px;
}















 








































































	

}


@media only screen and (min-width: 900px) {

}

@media only screen and (min-width: 1000px) {
.v_c01_img_flex {
    width: 30%;
}
.v_c01_l02 {
    width: 20%;
}
.v_c01_l03 {
    margin: 0px;
    width: 50%;
}
.v_c02_flex {
    display: flex;
	justify-content: space-between;
	align-items: center;
}
.v_c02_l01 {
    width: 45%;
    padding-right: 0px;
}
.v_c02_l02_flex {
    width: 55%;
}
.v_c02_l02txt02 {
    padding-top: 40px;
}
.works_flex {
    position: relative;
}
.works_img_main {
    width: 60%;
    margin-left: 0px;
    margin-right: auto;
    padding-bottom: 5px;
}
.works_detail {
    padding: 0px;
    width: 40%;
    position: absolute;
    top: 0px;
    right: 0px;
}
.works_d_flex {
    display: block;
}
.works_d {
    margin-left: 80px;
    margin-right: 40px;
    width: auto;
    margin-bottom: 30px;
}
.works_d_p {
    padding-left: 80px;
    padding-right: 40px;
}
.works_img {
    padding-right: 0px;
    margin-left: 0px;
    margin-right: auto;
    width: 60%;
}
.works_ttl_box {
    padding-left: 100px;
    padding-bottom: 100px;
    padding-right: 40px;
    padding-top: 40px;
}
.works_ttl {
    font-size: 46px;
}
.works_d02 {
    font-size: 18px;
}



















}


@media only screen and (min-width: 1100px) {
.cv_cnt_flex {
    display: flex;
    justify-content: space-between;
    align-items:flex-start;
    padding-bottom: 100px;
    padding-top: 100px;
	background: none;
}
	
.cv_cnt_flex::after {
    content: ' ';
    position: absolute;
    top: 550px;
    left: 0;
    background-color: rgba(69,65,57,0.90);
    background-size: cover;
    background-repeat: no-repeat;
    width: 85%;
    height: 800px;
	z-index: -1;
 	display: inline-block;

}	
	
.cv_l01 {
    width: 550px;
}
.cv_l02 {
	flex: 1;
}
.ft_cv .r_msg_box {
    padding-top: 200px;
}




	
}
@media only screen and (min-width: 1200px) {
.pc1200{
	display: block;
}	
.top_info_item {
    width: 25%;
}
.sp1200 {
	display: none;
}
.submenu {
    display: block;
	flex: 1;
}
.ft_flex {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: flex-start;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.ft_cp {
    width: 40%;
    padding-top: 0px;
    text-align: left;
}
.ft_logo {
    padding-top: 0px;
    margin-left: 0px;
}
.ft_menu_flex {
    display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.ft_l {
    width: 33.333%;
    margin-left: 20px;
    margin-right: 20px;
}
.ft_cp_name {
    text-align: left;
}
.ft_cp_post {
    text-align: left;
}
.ft_sub_link {
    text-align: left;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.ft {
    padding-top: 160px;
}
.nav02_j03 {
    margin-left: 0px;
    margin-right: 18px;
}
.ft_home {
    padding-left: 20px;
}
.box01_l02_list_works .box01_l02_l {
    width: 33.3333%;
}
.box01_l02_list_works .box01_l02_img img {
	min-width: 100%;
	height: 20vw;
}
.works_detail {
    width: 480px;
    top: 0px;
    right: auto;
    left: 60%;
}















}


@media only screen and (min-width:1400px){
.box01_l02_list {
    width: 100%;
}
.box01_l02_l {
    width: 23%;
}





}
