@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;
    /*    font-family: 'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic';*/
    line-height: 1;
    background-repeat: no-repeat;
    background-size: contain;
    letter-spacing: 0.1em;
}
/* 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-family:YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.font_go{
    font-family: 'Noto Sans JP', sans-serif;
}
.font_sofia{
	font-family: sofia-pro, sans-serif;
}


.vertical {
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    width: 100%;
}

/*reset */
html, body {
  height:100%;
}
body{
    width: 100%;
/*	overflow: hidden;*/
}
a{
    transition: all  1.5s ease;
}
html { 
	font-size:1.3333333333vw;
}

.fluidwidth{
	width: 100%;
}
.fluidheight{
	height: 100%;
}
.pc480{
	visibility:hidden;
	display: none;
}
.pc768{
	visibility:hidden;
	display: none;
}
.pc1200{
	display: none;
}


.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: flex;
	justify-content: space-between;
	align-items: center;
}
.btn_cv span {
    display: block;
}

/*== 背景が流れる（中央から横全体） */
.bgcenterx:before {
    content: '';
    /*絶対配置で位置を指定*/
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
	background-image: url("../img/gift_bk.gif");
    /*色や形状*/
  /* background-color:hsla(340,37%,80%,1);
	background-image:
	radial-gradient(at 39% 19%, hsla(92,62%,93%,1) 0px, transparent 50%),
	radial-gradient(at 80% 0%, hsla(64,66%,91%,1) 0px, transparent 50%),
	radial-gradient(at 0% 50%, hsla(355,100%,93%,1) 0px, transparent 50%),
	radial-gradient(at 80% 50%, hsla(68,72%,92%,1) 0px, transparent 50%),
	radial-gradient(at 0% 100%, hsla(55,33%,91%,1) 0px, transparent 50%),
	radial-gradient(at 99% 100%, hsla(57,100%,90%,1) 0px, transparent 50%),
	radial-gradient(at 0% 0%, hsla(68,72%,92%,1) 0px, transparent 50%);*/
    width: 100%;
    height: 100%;
    /*アニメーション*/
    transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: top;
}
.bgcenterx02:before {
    content: '';
    /*絶対配置で位置を指定*/
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    /*色や形状*/
    background: #006f81;
    width: 100%;
    height: 100%;
    /*アニメーション*/
    transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: top;
}

/*-----bntここまで*/

.thankspage #yt_wrap{
    min-height: auto;
}

/*yt_wrap設定*/
#yt_wrap{
    position: relative;/*ローディング画像などを表示す際の基点とするため指定*/
    height: 100vh;/*高さを全画面にあわせる*/
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 667px;
}



/*下のコンテンツ*/
#container{
    position: relative;/*relativeを指定してfixed指定をした#youtube-areaの上に表示*/
    z-index: 3;/*一番上に表示*/
    /*見た目の調整*/
    text-align: center;
    background-color: #FFFFFF;
    background-repeat: repeat;
}







/*左右アニメーション用CSS*/
.updown{
  /* アニメーションの名前 */
  animation-name:UpDown;
  /* アニメーションの１回分の長さ */
  animation-duration: 1.2s;
  /* アニメーションの回数 */
  animation-iteration-count: infinite;
  /* アニメーションの進行具合 */
  animation-timing-function: ease-in-out;
  /* アニメーション再生の向き */
  animation-direction: alternate;
}
  /* アニメーションの設定 */
@keyframes UpDown{
  /* 開始地点 */
  0%{
  /* Y軸0px */
  transform: translateY(0);
  }
  /* 終了地点 */
  100%{
  /* Y軸50px */
  transform: translateY(15px);
  }
}


/*震えるアニメーション用CSS*/
.yureru {
  animation: purupuru_anim 5s infinite;
}

@keyframes purupuru_anim {
  0% {  transform: translate(0, 0);}
  5% {  transform: translate(-5px, -0);}
  10% { transform: translate(5px, 0);}
  15% { transform: translate(-5px, -0);}
  20% { transform: translate(5px, 0);}
  25% { transform: translate(-5px, -0);}
  30% { transform: translate(0, 0);}
  100% {  transform: translate(0, 0);}
}

.head {
    width: 100%;
    position: absolute;
    padding-top: 0px;
    padding-left: 0px;
    z-index: 3;
}
.logo {
    width: 70px;
    margin-top: 30px;
    margin-left: auto;
    position: relative;
    z-index: 3;
    text-align: center;
    margin-right: auto;
}


.top_ttl02 {
    display: flex;
    text-align: center;
    align-items: center;
    width: 45px;
    font-size: 44px;
    margin: 0 auto;
    letter-spacing: 0.4rem;
    color: #FFFFFF;
}

.top_ttl03 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 15px;
}

.marquee {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    gap: 1rem;
}


.marquee-inner {
    animation: marquee 30s linear infinite;
}
@keyframes marquee {
  0%   { translate: 0; }
  100% { translate: calc(-100% - 1rem); }
}


.f_ttl_big {
    font-size: 3em;
    letter-spacing: -1rem;

}
.top_ttl04 {
    font-size: 12px;

}
.top_house {
    background-color: #4e515d;
    padding-top: 90px;
    position: relative;
    padding-bottom: 80px;
    z-index: 15;
}
.top_house_img {
    width: 270px;
    position: absolute;
    left: 50%;
    margin-top: -150px;
    transform: translate(-50%,0)
}
.top_house_no1_log {
    width: 50%;
    float: left;
    text-align: center;
}
.top_house_no1_log img {
    display: block;
    margin: 0 auto;
    width: 90%;
}

.top_house_no1_txt {
    width: 50%;
    float: right;
}
.top_house_txt01 {
    font-size: 3.5rem;
    line-height: 2;
    font-weight: 600;
    color: #FFFFFF;
    padding-bottom: 5%;
    padding-top: 2%;
}
.top_house_txt02 {
    font-size: 2rem;
    color: #FFFFFF;
    font-weight: 100;
}
.msg {
    line-height: 2;
    word-spacing: 0.2em;
    padding-top: 90px;
    padding-bottom: 90px;
}
.msg01 {
    font-size: 14px;
    padding-bottom: 6rem;
}
.msg02 {
    font-size: 20px;
    padding-bottom: 6rem;
    font-weight: 400;
}
.msg03 {
    line-height: 3;
    font-size: 12px;
    font-weight: 100;
}
.top_ttl_w {
    position: absolute;
    top: 50%;
    left: 0px;
    width: 100%;
    height: 100vh;
    z-index: 2;
}
.top_ttl_wrap {
    position: relative;
    z-index: 3;
}
.cv_wrap {
    display: flex;
    padding-left: 0px;
    z-index: 10;
    left: 0px;
    bottom: 0px;
    flex: 1;
    text-align: left;
}
.cv_wrap .cv_btn {
    width: 100%;
    position: relative;
}
.blend{
	mix-blend-mode: difference;
}
.cv_wrap a {
    padding: 20px;
    display: block;
    text-align: center;
    color: #333333;
    vertical-align: middle;
    font-size: 2.6em;
    letter-spacing: 0.1em;
    font-weight: 600;
}
.cv_btn01 a {
    background-color: #e6552a;
    color: #FFFFFF;
}
.cv_btn02 a {
    background-color: #ffffff;
}
.cv_wrap img  {
    width: 27px;
    height: auto;
    margin-right: 5px;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-145%);
    z-index: 10;
}
.m_box {
    position: relative;
    overflow-x: hidden;
    height: 100%;
    overflow-y: hidden;
}
.tab {
    width: 20px;
    height: 150px;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 10;
}
.tab_deleat .tab{
	display: none;
}

.tab_img {
    padding-top: 0px;
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 5px;
    margin-top: 0px;
}
.m_p {
    padding-top: 70px;
    padding-left: 60px;
    text-align: left;
    padding-right: 20px;
    padding-bottom: 10px;
}

.msg04 {
    font-size: 20px;
    font-weight: 300;
    padding-bottom: 20px;
}
.m_sec {
    position: relative;
    padding-bottom: 60px;
}


.tab_fix #tab_img01,.tab_fix02 #tab_img02,.tab_fix03 #tab_img03,.tab_fix04 #tab_img04{
  position: fixed;
  top: 0px;
  left: 0px;
}

.m_coco {
    z-index: 10;
}
.m_glr {
    background-color: #f3f3f3;
    padding-top: 8em;
    position: relative;
    z-index: 15;
    overflow-x: hidden;
    overflow-y: hidden;
}
.land_info_ttl {
    font-size: 24px;
    font-weight: 300;
    padding-bottom: 20px;
    letter-spacing: 0.2rem;
}


.land_info_ttl02 {
    font-size: 12px;
    font-weight: 100;
    padding-bottom: 35px;
}

.m_glr_bk {
    position: absolute;
    top: 20px;
    left: 20px;
}













@keyframes displayAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cv_box {
    position: relative;
    z-index: 10;
    background-color: #7F7B71;
}
.cv_waku {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    z-index: 11;
}
.cv_ttl {
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 20px;
    text-align: center;
}
.cv_txt {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.2rem;
    text-align: left;
    line-height: 2.5;
    padding-bottom: 20px;
}
.cv_right {
    margin: 0 auto;
    width: 50%;
}
.cv_link {
    background-color: #bc9a7a;
    color: #FFFFFF;
    display: block;
    font-size: 14px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: -50px;
    margin-right: 20%;
    margin-left: 20%;
    margin-bottom: 0;
    text-align: center;
    position: relative;
    z-index: 11;
    letter-spacing: 0.2rem;
}
.cv_in {
    margin: 20px;
    border: 1px solid #FFFFFF;
    padding-top: 30px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 40px;
    color: #FFFFFF;
    position: relative;
}
.tec_wrap {
    /*    background-color: #4e515d;*/
    position: relative;
    -webkit-transition: all 5s ease;
    -moz-transition: all 5s ease;
    -o-transition: all 5s ease;
    transition: all  5s ease;
    padding-bottom: 10em;
}
.tec_wrap.tec_active{
    background-image: url("../img/prms_bk.jpg");
    background-repeat: repeat;
	background-color: #fff;
}
.ev_wrap {
    /*    background-color: #4e515d;*/
    position: relative;
    z-index: 10;
    -webkit-transition: all 5s ease;
    -moz-transition: all 5s ease;
    -o-transition: all 5s ease;
    transition: all  5s ease;
    padding-top: 90px;
    padding-bottom: 90px;
}
.ev_wrap.tec_active{
    background-color: #d0a658;	
}



.tec_ttl01 {
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 0.2rem;
    padding-bottom: 20px;
}
.tec_ttl02 {
    font-size: 17px;
    color: #FFFFFF;
    letter-spacing: 0.2rem;
    margin-bottom: 60px;
    padding-bottom: 15px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #d9d9d9;
    width: 80%;
    margin-left: auto;
    margin-right: auto;

}
.tec_ttl02:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 50%;
  height: inherit;
  border-bottom: 1px solid #ff3d00;
}






.bk_w {
    background-color: #FFFFFF;
}

.land_main {
    position: relative;
    z-index: 10;
    overflow-y: hidden;
    overflow-x: hidden;
}
.land_txt_box {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 11;
    width: 100%;
}
.land_ttl {
    font-size: 25px;
    font-weight: 300;
    letter-spacing: 0.2rem;
    color: #FFFFFF;
    padding-bottom: 10px;
}
.land_ttl02 {
    color: #c49f7c;
    font-size: 9px;
    padding-bottom: 20px;
}
.land_ttl03 {
    font-size: 18px;
    line-height: 2.5;
    font-weight: 600;
    letter-spacing: 0.2rem;
    color: #FFFFFF;
}
.land_logo {
    width: 100px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 11;
}
.land_star {
    width: 150px;
    z-index: 100;
    position: absolute;
    top: 30%;
    left: 5%;
    transform: translateY(-50%);

}
.land_wrap {
    position: relative;
    background-color: #FFFFFF;
    padding-bottom: 0px;
}
.land_grad {
	position: relative;
	max-width: 100%;
}

/*.land_grad::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(180deg, transparent 0 60%, #FFF 100%);
}*/
.font_big {
    font-size: 36px;
	letter-spacing: -0.1rem;
}
.land_ttl04 {
    font-size: 330%;
    font-weight: 600;
    line-height: 2.5;
    letter-spacing: 0.2rem;
    padding-top: 30px;
    padding-bottom: 60px;
}
.land_info_flex {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-left: 20px;
    margin-right: 20px;

}
.land_l {
    width: 48%;
    display: block;
}
.land_l:nth-child(3) {
	display: none;
}
.land_info_img img {
    width: 100%;
    height: 25vw;
    object-fit: cover;
}
.land_l_ttl {
    font-size: 12px;
    text-align: left;
    font-weight: 200;
    letter-spacing: 0.2rem;
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 2.5;
}
.land_l_p {
    font-size: 10px;
    line-height: 2;
    font-weight: 100;
    letter-spacing: 0.2rem;
    text-align: left;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 20px;
}
.land_l_p01 {
    padding-top: 20px;
    display: flex;
}
.land_l_tab {
    text-align: left;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.2rem;
    width: 6em;
    line-height: 2;
    padding-bottom: 20px;
    border-bottom: 1px solid #a6978a;
}
.land_l_detail {
    font-weight: 500;
    font-size: 12px;
    text-align: left;
    letter-spacing: 0.2rem;
    line-height: 2;
    flex: 1;
    width: 65%;
    padding-bottom: 20px;
    border-bottom: 1px solid #333333;
}
.land_info {
    position: relative;
}
.access {
    background-color: #f5f5f5;
    position: relative;
    padding-top: 90px;
    padding-bottom: 90px;
}
.access_l {
    padding-left: 20px;
    padding-right: 20px;
}
.contact {
    background-color: #FFFFFF;
    padding-bottom: 80px;
    position: relative;
}
.contact_msg {
    color: #3d404b;
    font-size: 20px;
    letter-spacing: 0.2rem;
    font-weight: 300;
    padding-top: 120px;
    padding-bottom: 120px;
}


.crn {
    border: 15px solid #6d7078;
    padding-top: 30px;
    cursor: pointer;

}

.crn_ttl02 {
    padding-bottom: 10px;
    color: #3d404b;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2rem;
    line-height: 2;
    padding-left: 20px;
    text-align: left;
    padding-right: 20px;
}
.crn_p02 {
    color: #3d404b;
    font-size: 10px;
    font-weight: 100;
    line-height: 2.5;
    letter-spacing: 0.2rem;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
}
.crn_img img {
    width: 100%;
    height: 55vw;
    object-fit: cover;
    padding-bottom: 25px;
	
}
.crn_ttl02big {
    font-size: 16px;
    text-align: center;
}
.contact_pre {
    position: relative;
    background-image: url(../img/contact_bk.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 90px;
    padding-bottom: 90px;
}
.contact_flex {
    padding-left: 20px;
    padding-right: 20px;
    z-index: 11;
}
.contact_img {
    display: flex;
	align-content: center;
	align-items: center;
    position: relative;
    z-index: 12;
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: -20px;
    width: 80%;
}
.contact_img_l {
    width: 30%;
    position: relative;
}
.contact_img_l02 {
    width: 70%;
    position: relative;
    margin-left: 10px;
}
.contact_lead {
    padding: 30px;
    background-color: #2b2f35;
}
.contact_bk {
    position: relative;
    z-index: 10;
}
.contact_lead02 {
    color: #FFFFFF;
    text-align: left;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.2rem;
    padding-bottom: 20px;
}
.contact_lead03 {
    color: #FFFFFF;
    text-align: left;
    font-size: 12px;
    line-height: 2.5;
    letter-spacing: 0.2rem;
	
}
.contact_lead04 {
    color: #3d404b;
    font-size: 10px;
    font-weight: 100;
    text-align: left;
    line-height: 2;
    letter-spacing: 0.2rem;
    padding-left: 30px;
    padding-top: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
}
.contact_form {
    background-color: #FFFFFF;
    padding: 10px;
    margin-bottom: 40px;
}



.thanks {
    width: 80vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 30px;
    background-color: rgba(255,255,255,0.80);
    z-index: 11;
    letter-spacing: 0.2rem;
    line-height: 2.5;
    display: flex;
    align-items: center;
    max-width: 800px;
    text-align: center;
}
.thanks_ttl_sub {
    font-size: 10px;
    color: #050505;
    padding-bottom: 20px;
}
.thanks_ttl {
    font-size: 18px;
    padding-bottom: 30px;
    line-height: 2.5;
}
.thanks_p {
    font-size: 12px;
    text-align: left;
    line-height: 2.5;
    padding-bottom: 20px;
}
.thanks_p02 {
    background-color: rgba(255,255,255,1.00);
    font-size: 12px;
    padding: 40px;
    line-height: 2.5;
    text-align: left;
}
.thanks_box {
    width: 100%;
}
.thanks_tel01 {
    color: rgba(0,0,0,1.00);
    font-size: 15px;
    padding-bottom: 20px;
    line-height: 2;
}
.thanks_tel02 {
    color: #050505;
    font-size: 30px;
    padding-bottom: 20px;
}
.thanks_tel03 {
    color: rgba(0,0,0,1.00);
    font-weight: 100;
    font-size: 10px;
}
.foot_fix {
    width: 100%;
    bottom: 59px;
    opacity: 0;
    left: 50%;
}

.foot_fix.tag_active{
    position: fixed;
    z-index: 200;
	opacity: 1;
	animation-name:fadeUpbnr;
	animation-duration:0.5s;
	animation-fill-mode:forwards;	
}
	@keyframes fadeUpbnr{
	  from {
		opacity: 0;
		transform: translate(-50%,100px);
	  }

	  to {
		opacity: 1;
		transform: translate(-50%,0);
	  }
	}

.top_bnr_flex {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
    z-index: 200;
    width: 250px;
    margin-right: 0px;
    margin-left: auto;
}
.top_bnr_pick_wrap02 {
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.top_bnr_img_wrap02 {
    width: 15%;
}
.top_bnr_txt_wrap02 {
	flex: 1;
    display: flex;
    align-items: center;
}
.top_bnr_close {
    width: 50px;
    font-size: 20px;
    z-index: 300;
    position: relative;
    min-height: 100%;
    cursor: pointer;
    background-color: #FFFFFF;
    color: #061d3c;
}
.top_bnr_pick02 {
    margin: 0px;
    font-size: 9px;
    padding-top: 0px;
    padding-right: 5px;
    padding-left: 0px;
    padding-bottom: 0px;
    line-height: 1;
}
.top_bnr_txt01_02 {
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    padding-bottom: 2px;
}
.top_bnr_txt02_02 {
    text-align: left;
    font-size: 9px;
    padding-bottom: 5px;
    line-height: 1;
}
.top_bnr_txt_box {

}
.bnr_close_btn {
    transform:translate(-50%,-50%);
    position: absolute;
    top: 50%;
    left: 50%;

}
.bnr_a {
    display: flex;
    flex: 1;
    align-items: stretch;
    justify-content: space-between;
	
}

.arrow{
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.arrow::before{
  content: '';
  width: 12px;
  height: 12px;
  border: 0px;
  border-top: solid 1px #3d404b;
  border-right: solid 1px #3d404b;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -15px;
}
.crn_btn {
    padding-bottom: 20px;
	display: block;
}
.close .crn_box {
    display: none;
}
.close .arrow::before{
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
	
}


.tec_k_ttl {
    font-size: 14px;
    font-weight: 900;
}
.tec_k_st{
	background:linear-gradient(transparent 60%, #C8A17E 60%);
}
.zumen_box {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #FFFFFF;
    margin-left: 50px;
    margin-right: 10px;
    margin-bottom: 20px;
    border: 1px solid #000000;
    position: relative;
}
.zumen_l {
    width: 48%;
}
.zumen_row {
    display: flex;
	justify-content: space-between;
}
.zumen_label {
    width: 30%;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #000000;
    font-size: 12px;
    font-weight: 600;
}
.zumen_val {
    border-bottom: 1px solid #BCBCBC;
    padding-top: 20px;
    padding-bottom: 20px;
    flex: 1;
    font-size: 12px;
}
.zumen_t {
    margin-left: 50px;
    margin-right: 10px;
}
.zumen_f {
    display: block;
    text-align: center;
    padding-top: 10px;
}
.zumen_flex {
    margin-bottom: 5%;
}
.megane {
    display: flex;
    width: 40px;
    height: 40px;
    text-align: center;
    background-color: #000000;
    position: absolute;
    right: 0px;
    bottom: 0px;
    justify-content: center;
    align-items: center;
    z-index: 3;
}
.megane img{
    width: 60%;
    display: block;
}
.vr {
    margin-top: 0px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 50px;
    padding-right: 10px;
	
}
.vr iframe {
    height: 400px;
	width: 100%;
}
.bnr01 {
    background-color: #17345C;
    text-decoration: underline;
}
.bnr_link {
    padding: 20px;
    display: inline-block;
    background-color: #0B2241;
    color: #FDEF9E;
    font-size: 18px;
    font-weight: 900;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.md_yoyaku.nondisp{
	display: none;
}
.news {
    margin-top: 10%;
    margin-left: 2%;
    margin-right: 2%;
    padding: 5%;
    background-color: #F4F4F4;
}

.news_title {
    font-size: 2rem;
    font-weight: 900;
    padding-bottom: 3%;
}
.news_p {
    line-height: 2.5;
    text-align: left;
}
.news_p strong {
    font-size: 1.5rem;
    font-weight: 900;

}
.v_main_img {
    object-fit: cover;
    min-height: 667px;
}
.top_bnr a {
    background-color: #dcdbdb;
}
.top_bnr_txt02_02.top_bnr_txt02_03 {
    padding-left: 10px;
}
.kaeru_md {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #FFFFFF;
}
.kaeru_ttl {
    color: #d0a658;
    font-size: 26px;
    font-weight: 900;
    padding-bottom: 20px;
}
.kaeru_ttl02 {
    color: #A4A4A4;
    font-size: 14px;
    padding-bottom: 20px;

}
.kaeru_l_box {
    margin-left: auto;
    margin-right: auto;
    padding-top: 2%;
}
.kaeru_l_in {
    position: relative;
}
.kaeru_tab {
    position: absolute;
    top: 20px;
    left: 0px;
}
.kaeru_tab02 {
    position: absolute;
    bottom: 20px;
    left: 0px;
}
.kaeru_title03 {
    color: #515862;
    text-align: left;
    line-height: 1.8;
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.1rem;
}


.kaeru_tabin {
    position: relative;
    display: inline-block;
    margin-right: 30px;
    padding-top: 9px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 0px;
    color: #fff;
    background: #5bb262;
    height: 32px;
    line-height: 1;
    vertical-align: middle;
    font-size: 12px;
    letter-spacing: 0.1rem;
}

.kaeru_tabin:before {
  position: absolute;
  top: 0;
  right: -30px;
  content: '';
  border-width: 16px 15px 16px 15px;
  border-style: solid;
  border-color: transparent transparent transparent #5bb262;
}
.kaeru_tabin02 {
    position: relative;
    display: inline-block;
    padding-top: 9px;
    padding-right: 10px;
    padding-left: 10px;
    color: #fff;
    background: #2e3540;
    height: 32px;
    line-height: 1;
    vertical-align: middle;
    font-size: 12px;
    letter-spacing: 0.1rem;
}
.kaeru_tabin02 {
    color: #fff;
    background-color: #515862;
}
.kaeru_tabin02:before {
  border-color: transparent transparent transparent #577c64;
}



.kaeru_dl {
    margin-left: 30px;
    margin-right: 30px;
    display: flex;
    align-content: space-between;
    justify-content: space-between;
    margin-top: 15px;
}
.kaeru_dt {
    color: #515862;
    font-weight: 600;
    font-size: 14px;
    width: 70px;
    text-align: left;
    letter-spacing: 0.1rem;
}
.kaeru_dd {
    font-size: 14px;
    color: #515862;
    font-weight: 400;
    flex: 1;
    text-align: left;
    letter-spacing: 0.1rem;
}
.kaeru_dl02 {
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-content: space-between;
    color: #515862;
    padding-top: 15px;
    margin-left: 30px;
}
.kaeru_dt02 {
    width: 49%;
}
.kaeru_dt02txt {
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 10px;
}
.kaeru_dt02txt02 {
    display: flex;
}
.kaeru_dt02price {
    width: 60%;
    color: #e85555;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 0.2rem;
}
.kaeru_dt02price02 {
    width: 40%;
}
.kaeru_dt02ptxt01 {
    text-align: right;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.1rem;
}
.kaeru_dt02ptxt02 {
    text-align: right;
    font-size: 18px;
    font-weight: 600;
    padding-right: 14px;
    letter-spacing: 0.1rem;
}
.kaeru_hensai {
    border: 1px solid #515862;
}
.kaeru_hensai_ttl {
    padding-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
    background-color: #515862;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 10px;
    letter-spacing: 0.1rem;
}
.kaeru_hensai_dd {
    padding-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 10px;
}
.kaeru_btn {
    display: flex;
    margin-top: 20px;
	justify-content: space-between;
	align-content: space-between;
}


.kaeru_hensai_dd01 {
    font-size: 12px;
    font-weight: 600;
    text-align: left;
}
.kaeru_hensai_dd02 {
    color: #e85555;
    font-size: 14px;
    font-weight: 900;
    text-align: left;
}
.kaeru_hensai_dd03 {
    font-size: 10px;
    font-weight: 400;
    text-align: left;
}
.kaeru_btn01 {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    display: block;
    width: 50%;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    letter-spacing: 0.2rem;
}
.kaeru_btn_gold {
    background-color: #c3936a;
}
.kaeru_btn_gray {
    background-color: #9a9eac;
}


/* モーダルボタン */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color:rgba(132,103,78,0.50);
  width: 100%;
  height: 100%;
  z-index: 10;
}

.modal-window {
    display: none;
    position: fixed;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    background-color: #fff;
    z-index: 11;
    padding: 30px;
    height: 80%;
    max-width: 400px;
}

.button-close {
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    padding: 15px;
    background-color: #9a9eac;
    color: #eaeaea;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}


.section-title {
  text-align: center;
  margin: 2em;
  font-size: 20px;
}

.button-open {
  display: block;
  margin: 0 auto;
  cursor: pointer;
}

/* 表示領域外へはスクロールさせない */
.no_scroll {
  overflow: hidden;
}
.kaeru_d_ttl {
    color: #515862;
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 15px;
    text-align: left;
    line-height: 1.5;
}
.kaeru_d_photo {
    display: flex;
    padding-bottom: 15px;
	justify-content: space-between;
	align-content: space-between;
}
.kaeru_d_l {
    width: 49%;
}
.kaeru_d_p {
    padding-bottom: 10px;
}
.kaeru_d_ttl02 {
    color: #515862;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    padding-bottom: 15px;
}
.kaeru_d_tbl {
    display: flex;
    justify-content: space-between;
    align-content: space-between;
    padding-bottom: 10px;
}
.kaeru_d_dt {
    width: 100px;
    color: #515862;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    line-height: 1.5;
}
.kaeru_d_dd {
    color: #515862;
    text-align: left;
    font-size: 14px;
    font-weight: 200;
    flex: 1;
    line-height: 1.5;
}
.kaeru_win {
    height: 87%;
    overflow-y: scroll;
}
.kaeru_sold {
    padding: 20px;
    background-color: #dcdbdb;
    text-align: center;
    color: #797d83;
    font-size: 16px;
    font-weight: 600;
    margin-top: 27px;
    margin-left: 30px;
    margin-right: 30px;
    letter-spacing: 0.1rem;
}
.kaeru_btn02 {
    width: 100%;
}
.kaeru_l {
    padding-left: 20px;
    padding-right: 20px;

}
.kaeru_non_ttl {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 0px;
    left: 0px;
}
.kaeru_non_ttl01 {
    background-color: #dcdbdb;
    color: #515862;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    margin-top: 40%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 50%;
}
.kaeru_non_ttl02 {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding-top: 20px;
}
.kaeru_nonopen {
    background-color: #dcdbdb;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 258px;
}
.kaeru_non_txt {
    color: #515862;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.1rem;
}
.cr_model {
    position: relative;
	overflow: hidden;
}
.cr_ttl {
    z-index: 1;
    position: relative;
}
.cr_ttl01 {
    color: #d0a658;
    font-size: 42px;
    font-weight: 500;
    text-align: center;
    padding-bottom: 20px;
}
.cr_ttl02 {
    color: #d0a658;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}



.cr_v {
    top: 0px;
    left: 0px;
    z-index: -1;
    min-width: 100%;
	position: fixed;
    z-index: 0;
    overflow: hidden;
    min-height: 100vh;
	
}
.cr_v:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/bgMask.png);
    z-index: 100;
}


.cr_ttl_tate {
    position: absolute;
    top: 0px;
    z-index: 1;
    text-align: left;
    left: 0px;
    width: 100%;
}
.crttl01_tate {
    text-align: left;
    font-size: 16px;
    padding: 20px;
    color: #303030;
    background-color: #FFFFFF;
    margin-left: 15px;
    display: inline-block;
    letter-spacing: 0.2rem;
}
.cr_ttl_tate_in {
    padding-right: 20px;
    text-align: left;
}
.cr_bk {
    background-color: #2e3540;
    padding-top: 90px;
    padding-bottom: 0px;
}
.cr_box01 {
}
.cr_b01_01ttl01 {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 0.1rem;
}
.cr_b01_01ttl02 {
    color: #d0a658;
    font-size: 30px;
    font-weight: 600;
}
.cr_b01_01ttl {
    padding-bottom: 30px;
}
.cr_b01_01link {
    padding-bottom: 20px;
}
.cr_b01_01link a {
    color: #d0a658;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    padding-right: 20px;
    letter-spacing: 0.2rem;
    display: inline-block;
    padding-bottom: 20px;
}
.cr_b01_01link a strong {
    color: #FFFFFF;
    font-weight: 900;
    padding-left: 5px;
}
.cr_b01_01img {
    margin: 0 auto;
    width: 90%;
    padding-bottom: 30px;
}
.cr_box01new {
    padding-top: 40px;
}
.cr_b01num {
    margin: 0 auto;
    padding-bottom: 20px;
    height: 80px;
}
.cr_b01ttl {
    color: #FFFFFF;
    font-size: 20px;
    line-height: 2;
    padding-bottom: 20px;
    font-weight: 600;
    text-align: left;
}
.cr_b01p {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 300;
    text-align: left;
    line-height: 2.5;
    padding-bottom: 30px;
}
.cr_b01txt {
    padding-left: 20px;
    padding-right: 20px;
}
.cr_img_r {
    padding-left: 20px;
}
.cr_img_both {
    padding-left: 20px;
    padding-right: 20px;
}

.cr_img_r02 {
    padding-left: 0px;
}
.cr_img_l {
    padding-right: 20px;
}
.cr_b01_l {
    position: relative;
    z-index: 2;
}

.cr_box02 {
    position: relative;
    z-index: 1;
    margin-top: 40px;

}
.cr_box02::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 40px;
    left: 60px;
    right: 0;
    background-color: #d0a658;
    z-index: 0;
}
.cr_box04 {
    position: relative;
    z-index: 1;
    margin-top: 40px;

}
.cr_box04::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0px;
    left: 0px;
    right: 0;
    background-color: #fff;
    z-index: 0;
}
.cr_box05::before {
    background-color:#D9DCEB;
 }

.cr_b04ttl {
    color: #2e3540;
}
.cr_b04p {
    color: #2e3540;
}
.cr_land {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 100px;
    padding-top: 20px;
    padding-right: 60px;
    padding-left: 60px;
    padding-bottom: 20px;
    background-color: #c3936a;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    margin-bottom: 30px;
}
.cr_box05 {
    margin-top: 0px;
}
.cr_b05subttl {
    font-size: 14px;
    font-weight: 300;
    color: #000000;
    letter-spacing: 0.2rem;
    padding-bottom: 15px;
}
.cr_b05_a {
    color: #5bb262;
    font-weight: 600;
    font-size: 30px;
}
.cr_b05_b {
    font-size: 30px;
    color: #e2ae00;
    font-weight: 600;
}
.cr_b05_c {
    color: #c3936a;
    font-weight: 600;
    font-size: 30px;
}
.cr_b05_img {
    display: none;
}
.cr_b05_house {
    display: none;
}
.works {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #FFFFFF;

}
.works_img_flex {
    padding-left: 20px;
    padding-right: 20px;
}
.works_img01 {
    padding-bottom: 20px;
}
.works_img02 {
    padding-bottom: 20px;
}
.works_img_l02 {
    display: flex;
    padding-bottom: 20px;
}
.works_img03 {
    width: 50%;
}
.works_img04 {
    width: 50%;
}
.cr_b03_s {
    padding-bottom: 30px;
}
.cr_v .video{
	-webkit-backface-visibility: hidden; /* チラつき防止用 */
  	-webkit-filter: brightness(100%);
  	filter: brightness(100%);	
/*  	-webkit-filter: blur(10px) brightness(120%) opacity(60%);
  	filter: blur(10px) brightness(120%) opacity(60%);	*/
}
.cr_v .video.v_over{
	opacity: 0;
  	-webkit-filter: blur(15px) brightness(70%);
  	filter: blur(15px) brightness(70%);
	z-index: -1;
}


.cr_v img{
	min-height: 950px;
	object-fit: cover;	
}
.cr_ttl img.op0 {
	opacity: 0;
}
.cr_maru_flex {
    display: flex;
	justify-content: center;
	align-content: center;
}
.cr_maru_l {
    width: 33.333%;
}
.cr_left {
    margin-right: -10px;
}
.cr_right {
    margin-left: -10px;
}
.cr_btm {
    margin-bottom: -40px;
}


.kaeru_map_btn {
    margin-top: -30px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
    width: 80%;
    position: relative;
    z-index: 5;
}
.kaeru_map_btn a {
    display: block;
    border-radius: 100px;
    padding: 10px;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0px 0px 3px 0px #1A1A1A;
    box-shadow: 0px 0px 3px 0px #1A1A1A;
    text-align: center;
    color: #528AC4;
    font-size: 12px;
    font-weight: 600;
}
.kaeru_map_icon {
    width: 20px;
    display: inline-block;
    margin-right: 5px;

}
.kaeru_map_txt_sp {
    display: inline-block;
}
.kaeru_map_txt_pc {
    display: none;
}
.foot_menkyo {
    border-top: 1px solid #E8E8E8;
    padding-top: 10px;
    margin-top: 10px;
}
.foot_p02 {
    padding-bottom: 20px;
}
.kaeru_p_box {
    position: relative;
}
.kaeru_tbl_btm {
    padding-bottom: 30px;
}
.kaeru_bn {
    font-size: 9px;
    line-height: 1.1;
    padding-left: 30px;
    text-align: right;
    padding-top: 5px;
    color: #5E5E5E;
}
.kaeru_ttil03box {
    position: relative;
}
.kaeru_ttl_tab {
    position: absolute;
    left: 30px;
    top: 10px;
    display: inline-block;
    font-size: 10px;
    color: #676d74;
    font-weight: 600;
    background-color: #dcdbdb;
    padding: 5px;
    text-align: left;
}
.crm01 {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 20px;
    color: #2e3540;
}
.crm02 {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    line-height: 2;
    padding-bottom: 20px;
    color: #2e3540;
}
.crm03 {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 2.5;
    color: #2e3540;
    padding-bottom: 20px;
}
.crm_b_flex {
    text-align: center;
    padding-bottom: 60px;
    padding-top: 20px;
}
.crm_b {
    width: 32%;
    padding-left: 0px;
    padding-right: 0px;
    display: inline-block;
}


.crm_wrap {
    position: relative;
}
.crm_t01 {
    color: #3d404b;
    font-size: 14px;
    font-weight: 400;
}





.crm_v02 {
    position: relative;
    z-index: 1;
    padding-left: 60px;
}
.crm_w02 {
    border-top: 1px solid #dcdbdb;
}
.crm_tag {
    color: #2e3540;
    font-size: 16px;
    padding-top: 15px;
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 15px;
    font-weight: 100;
    position: absolute;
    right: 20px;
    top: -20px;
    z-index: 1;
    display: inline-block;
    background-color: #FFFFFF;
    letter-spacing: 0.1em;
}
.crm_tag.crm_tag_l {
    position: absolute;
    right: auto;
	left: 20px;
    top: -20px;
    z-index: 1;
    display: inline-block;
}

.crm_v03 {
    margin-left: 60px;
    margin-right: 60px;
    padding-bottom: 60px;
}


/*
右から左へ
----------------------------*/
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/*---
IE11対策
----------------------------*/
_:-ms-lang(x)::-ms-backdrop,
.d-demo {
  display: -ms-grid;
  overflow: hidden;
}
/*----------------------------*/

.d-demo__wrap {
    display: flex;
    overflow: hidden;
}

.d-demo__list {
  display: flex;
  list-style: none;
}

.d-demo__list--left{
animation :infinity-scroll-left 95s infinite linear 0.5s both;
}

.d-demo__item {
  width: calc(100vw / 2);
}
.crm_f_flex {
    margin-top: 10px;
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 4em;
    padding: 20px;
    background-color: #FFFFFF;
    position: relative;
    z-index: 3;
}
.crm_f_flex02 {
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 40px;
    position: relative;
    z-index: 3;
}
.crm_fd_flex {
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.crm_fd_ttl {
    color: #000000;
    font-size: 14px;
    width: 100px;
    text-align: left;
    border-bottom: 1px solid #a6978a;
    padding-bottom: 20px;
}
.crm_fd_dd {
    color: #000000;
    font-size: 14px;
    text-align: left;
    flex: 1;
    border-bottom: 1px solid #333333;
    padding-bottom: 20px;
}
.crm_t01w {
    color: #FFFFFF;
}
.top_msg_box {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    padding-right: 0px;
    padding-left: 0px;
    margin-top: 0px;
    padding-bottom: 40px;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    padding-top: 15em;
    background-color: #FFFFFF;
}

.cmr_day01 {
    font-size: 70px;
    text-align: center;
    display: inline-block;
    padding-bottom: 20px;
    color: #FFFFFF;
}
.ev_box_flex {
    margin-top: -50px;
    position: relative;
}
.ev_dayin {
    margin-right: 40px;
    padding-top: 60px;
    padding-left: 40px;
    padding-bottom: 120px;
    background-color: #FFFFFF;
    position: relative;
    z-index: -1;
}
.ev_ttl01 {
    color: #2e3540;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 30px;
}
.ev_ttl02 {
    color: #c3936a;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 30px;
}
.ev_p {
    color: #2e3540;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    line-height: 2;
}
.ev_p strong {
    color: #c3936a;
}
.ev_daybox02 {
    margin-left: 40px;
    margin-top: -40px;
    position: relative;
    z-index: 0;
}
.ev_img {
    position: relative;
    z-index: 0;
}
.ev_img02 {
    position: absolute;
    z-index: 1;
    top: -60px;
    width: 200px;
    left: 50%;
    margin-left: -120px;
}

.top_msg_box_ttl {
    margin-bottom: 5px;
    margin-top: 0px;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #FFFFFF;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    background-color: #2e3540;
    display: inline-block;
    position: absolute;
    top: -80px;
    left: 15px;
    padding-right: 12px;
    width: 40px;
}
.v_img {
    margin-bottom: -5em;
    position: relative;
    z-index: 2;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5px;
    padding-right: 5px;
    width: 80%;
	max-width: 500px;
}
.ev_img_b {
    padding-top: 20px;
}
.crm_day03 {
    font-size: 20px;
    font-weight: 400;
}
.crm_day03m {
    margin-right: 10px;
}
.crm_day03mr {
    margin-left: -5px;
}
.f_c {
    padding-left: 10px;
    color: #535353;
    font-size: 10px;
    line-height: 1.7;
}
.txt_free {
    width: 80px;
    position: absolute;
    top: 0px;
    left: 4%;
    z-index: 1;
}
.ev_san {
    font-size: 12px;
    color: #000000;
}

.actions.margin0 a {
    margin: 0 auto;
}
.cv_telp {
    font-size: 14px;
    text-align: center;
    font-weight: 600;
    color: #3d404b;
    line-height: 1.7;
    padding-bottom: 10px;
}
.c_book_ttl {
    color: #000000;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    padding-bottom: 70px;
    padding-top: 20px;
    position: relative;
}
.c_book_ttl:after{
    bottom: 0px;
    left: 50%;
    margin-left: -25px;
    width: 50px;
    height: 50px;
    border-top: 1px solid #7f7d79;
}
.c_book_ttl:after {
    position: absolute;
    content: '';
}


.c_book_flex {
}
.c_book_p {
    text-align: left;
    color: #000000;
    padding-top: 10px;
}
.c_book_lead {
    font-size: 14px;
    color: #000000;
    text-align: left;
    line-height: 2;
    padding-top: 20px;
    padding-bottom: 20px;
}
.access_l02 {
    color: #FFFFFF;
    padding-left: 5em;
    padding-right: 5em;
}
.ctg_eng {
    padding-top: 20px;
}

.c_book {
    background-color: #FFFFFF;
    margin: 20px;
    padding: 30px;
    border: 10px solid #2B2F35;
}
.c_book_img_flex {
    display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.c_book_img img {
    display: block;
}
.price {
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
.pd_btm80 {
    padding-bottom: 80px;
}
.price01 {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
}
.price02 {
    font-size: 50px;
    color: #FFFFFF;
    margin-left: 10px;
    margin-right: 5px;
    letter-spacing: 3px;
    font-style: italic;
}
.price_tx {
    color: rgba(255,255,255,0.08);
    font-size: 80px;
    position: absolute;
    top: 0px;
    left: 20px;
}
.prt_ttl {
    background-color: #2E3540;
    color: #FFFFFF;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
}
.prt_box {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 0px;
}
.prt_lead {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #A60F12;
}
.prt_list {
    font-size: 14px;
    color: #000000;
    text-align: left;
    font-weight: 600;
    line-height: 1.3;
    padding-bottom: 10px;
}
.prt_lead2 {
    font-size: 10px;
    line-height: 1.5;
    text-align: center;
}
.cmp_box {
    background-color: #FFFFFF;
    padding-bottom: 80px;
    background-image: url(../img/bnr1420_350bk.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.cmp_box02{
    background-color: #013354;
    background-image: none;
}
.balloon1 {
    position: relative;
    display: inline-block;
    margin: 1.5em 0;
    padding: 14px 10px;
    max-width: 100%;
    color: #FFFFFF;
    font-size: 12px;
    background-color: #050505;
    font-weight: 600;
}

.balloon1:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top: 5px solid #050505;
}
.ank_more_lead {
    font-size: 16px;
    color: #2E3540;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
}
.ank_lst {
    padding-bottom: 10px;
}
.ank01 {
    padding-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid #2E3540;
    margin-top: 30px;
}
.ank_flex {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 40px;
}
.ank_btn {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
}
.ank_btn_close,.ank_btn_open {
	display: none;
}
.close .ank_btn_close {
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
    border: 1px solid #ad8258;
    color: #ad8258;
}
.open .ank_btn_open {
    display: block;
}
.ank_form {
    display: none;
    padding-top: 20px;

}
.ank_box {
    padding-top: 20px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.ank_ttl {
    font-size: 20px;
    font-weight: 500;
    color: #515862;
    text-align: center;
    padding-top: 40px;
}
.ank_br {
    padding-bottom: 10px;
}
.ank_row {
    line-height: 1.7;
    text-align: left;
}
.ank_kome {
    padding-bottom: 20px;
}
.mv_box_lead {
    line-height: 2;
    font-size: 12px;
    text-align: left;
    padding-top: 20px;
    color: #FFFFFF;
    padding-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
}
.mv_box {
    padding-left: 0px;
    padding-right: 0px;
}

.top_logo {
    text-align: center;
    position: relative;
    z-index: 10;
    margin-top: 70px;
}



.no_line {
    border: none;
}
.actions.actions02 a {
    background-color: #006f81;
    color: #FFFFFF;
}





.quo_bnr_wrap {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;

	
}
.quo_bnr_box {
    padding-top: 0px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 0px;
}
.quo_bnr {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 0%;
    padding-top: 0px;
    margin-top: 0px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10em;
}
.quo_bnr.quo_bnr_k {
    position: relative;
    box-shadow: none;
    -webkit-box-shadow: none;
    max-width: 1000px;
    margin-top: 0px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0px;
}

.actions02 {
    padding-bottom: 30px;
}



.tec_wrap_bk {
    background-color: #EFEAD7;
}



.mgn_btm10 {
    margin-bottom: 10px;
}
.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;
	
}


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

.fade_active{
	animation-duration:2s;
	animation-fill-mode:forwards;
	transition-timing-function:ease-out ;
}
.fade_active_short{
	animation-duration:0.5s;
	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);
  }
}
.fade_active.fadeIn{
	animation-name:fadeInAnime;
}
@keyframes fadeInAnime{
  from {
    opacity: 0;
	transform: translateY(0px);
  }

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


.fade_active.fadeFit{
	animation-name:fadeFitAnime;
}
@keyframes fadeFitAnime{
  from {
    opacity: 0;
	transform: translateY(0px);
	transform: scale(1.3);
	filter: blur(1.5rem);  
  }

  to {
    opacity: 1;
	transform: translateY(0);
	transform: scale(1);
	filter: blur(0);  
  }
}


.fade_active.fade_active_short.fadeOut{
	animation-name:fadeOutAnime;
}
@keyframes fadeOutAnime{
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    z-index: -10;
  }
}

.Trigger{
	opacity: 0;
}
.Trigger.fade_active_short {
	opacity: 1;
}


.toku_ul {
    padding-right: 1em;
    padding-left: 2.3em;
    padding-bottom: 0.5em;
    position: relative;
    color: #050505;
    font-size: 14px;
    font-weight: 500;
}

.toku_ul li {
    line-height: 2;
    padding: 0.5em 0;
    list-style-type: none!important;
    text-align: left;
}

.toku_ul li:before {
  font-family: "FontAwesome";
  content: "\f0da";
  position: absolute;
  left : 0.7em; /*左端からのアイコンまで*/
  color: #FF3E00; /*アイコン色*/
  font-size: 12px;	
}
.toku_box {
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
    margin-top: 60px;
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 20px;
    border-left-color: #050505;
    border-right-color: #050505;
    border-top-color: #050505;
    border-left-style: solid;
    border-right-style: solid;
    border-top-style: solid;
    border-left-width: 1px;
    border-right-width: 1px;
    border-top-width: 1px;
}
.toku_ttl {
    color: #050505;
    font-size: 20px;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    background-color: #FFFFFF;
    font-weight: 600;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 1.5;
}
.toku_ttl_wrap {
    margin-top: -30px;
}
.toku_tyui {
    color: #c45555;
    font-size: 14px;
    font-weight: 600;
    padding-top: 30px;
    padding-bottom: 20px;
}
.toku_kome {
    font-size: 10px;
    line-height: 2;
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
}
.cv_ttl02 {
    color: #ffef72;
    font-size: 28px;
    font-weight: 900;
    padding-top: 30px;
    padding-bottom: 30px;
}
.radio_input.radio_input_k {
    margin-left: auto;
    margin-right: auto;
    width: 49%;
}
.toku_box.toku_box02 {
    margin-left: 0px;
    margin-right: 0px;
    border-left-style: none;
    border-right-style: none;
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 10px;
}
.ank_btn_open {
    background-color: #E5E5E5;
    padding-top: 15px;
    padding-bottom: 15px;
}
.actions.actions_form a {
    background-color: #FFFFFF;
    color: #333333;
    max-width: 550px;
    font-size: 20px;
    width: 80%;
    border: 1px solid #333333;
}

.foot_wrap {
    padding-top: 12em;
    background-color: #FFFFFF;
    border-top: 1px solid #231815;



}
.top_logo_wrap {
    align-items: center;
    padding-bottom: 50px;
}



.quo_tyui {
    color: #FFFFFF;
    font-size: 10px;
    text-align: left;
    font-weight: 400;
    line-height: 2;
    padding-bottom: 30px;
    padding-top: 10px;
}






.txt_gray {
    color: #d9d9d9;
}



.mdl_ttl02{
	font-size: 28px;
    font-weight: 300;
    padding-bottom: 20px;
    letter-spacing: 0.2em;	
}









.plan_ttl {
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 0.3em;
    padding-bottom: 10px;
}
.plan_ttl02 {
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 40px;
}
.madori_label {
    display: inline-block;
    padding-top: 15px;
    padding-right: 25px;
    padding-left: 15px;
    padding-bottom: 15px;
    font-size: 5em;
    font-weight: 400;
    margin-bottom: 20px;
}
.margin-top30 {
    margin-top: 50px;
}

.midle_cv_bk {
    background-image: url(../img/midle_cv_bk.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 14em;
    padding-bottom: 14em;
    text-align: center;
    position: relative;
    z-index: 20;
}




.midle_cv_box {
    max-width: 1200px;
    margin-left: 20px;
    margin-right: 20px;
    background-color: #FFFFFF;
    padding-bottom: 5em;
    padding-top: 8em;
}
.glr_ttl_box {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
}
.m_glr_ttl {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 0.2em;
    padding-bottom: 20px;
}
.txt_black {
    color: #050505;
    text-align: left;
}
.m_glr_ttl02 {
    width: 80%;
    margin-right: 0px;
    margin-left: auto;
    position: relative;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
}
.m_glr_ttl02:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background: #050505;
}

.m_glr_ttl02 span {
  position: relative;
  padding: 0 1em;
  background: #fff;
}









.contact_quo {
    padding-top: 0px;
    background-color: #FFFFFF;
}

.cv_tel_bk {
    padding-right: 20px;
    padding-left: 20px;
    background-size: cover;
    padding-bottom: 10em;
}
.cv_tel_box {
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    background-size: cover;
}
.cv_tel_ttl {
    font-size: 3.5em;
    font-weight: 400;
    padding-bottom: 20px;
    text-align: center;
}
.cv_tel_num {
    font-size: 7em;
    font-weight: 400;
    padding-bottom: 0.4em;
    padding-top: 0.1em;
    color: #c6b972;
}
.cv_tel_p {
    font-size: 3em;
    font-weight: 300;
    text-align: center;
}
.cv_tel_p02 {
    font-size: 2em;
    font-weight: 100;
    text-align: center;
    padding-bottom: 1em;
}

.md_tyui .md_visit_p, .md_tyui .md_stay_p{
    font-size: 10px;
    font-weight: 600;
    text-align: left;
    line-height: 2;
    display: none;
}
.md_tyui.md_stay .md_stay_p{
	display: block;
}
.md_tyui.md_visit .md_visit_p{
	display: block;
}
.top_logo_img {
    width: 80%;
    margin-bottom: 3em;
    max-width: 1200px;
}
.start_img{
    opacity: 0;
    visibility: hidden;
}
.start_img.active{
    opacity: 1;
    visibility: visible;
}



.cv_tel_sp {
    background-color: #c6b972;
    color: #FFFFFF;
    text-align: center;
    border-radius: 100px;
    padding-top: 0.7em;
    padding-bottom: 0.5em;
    font-size: 5em;
    display: inline-block;
    padding-left: 1.5em;
    padding-right: 1.5em;
    margin-bottom: 20px;
}
.land_l_detail_noborder {
    border: none;
}
.gmap iframe {
         -webkit-filter: grayscale(100%);
     -moz-filter: grayscale(100%);
     -o-filter: grayscale(100%);
     -ms-filter: grayscale(100%);
     filter: grayscale(100%);
    margin-bottom: 20px;
}

.mdl_ttl01 .mdl_ttl01-02 {
    font-weight: 500;
}







.color_green {
    color: #006f81;
}
.color_white {
    color: #FFFFFF;
}


.gift_wrap {
    padding-top: 1em;
    padding-right: 3em;
    padding-left: 3em;
    padding-bottom: 40px;
}




.md_bk_box {
    position: relative;
    padding-top: 12em;
    background-size: cover;
}

.md_bk_box_madori::before {
	width: 50%;
	height: 80%;
}
.md_bk_box02::before {
    top: 0;
    left: auto;
	right: 0;
}







.md_main{
    display: inline-block;
    position: relative;
    width: 100%;
    margin-bottom: 6em;
    }





.md_txt03 {
    font-size: 3em;
    padding-bottom: 1em;
}


.quo_tyui_k {
    color: #FFFFFF;
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
    padding-top: 2em;
    font-size: 10px;
    line-height: 2.3;
    text-align: left;
}
.tel_time {
    font-size: 2.5em;
    padding-bottom: 1em;
}
.tel_time {
    font-size: 12px;
}
.catalog_row.nondisp {
    display: none;
}
.foot_logo {
    width: 30em;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 2em;
}
.foot_lead {
    font-size: 2em;
    text-align: center;
    padding-bottom: 5em;
}

.foot_cp_post {
    font-size: 14px;
    padding-bottom: 2.5em;
    padding-left: 5em;
    padding-right: 5em;
    line-height: 2;
    text-align: center;
    font-weight: 600;
}
.foot_lead02 {
    font-size: 10px;
    padding-bottom: 2em;
    line-height: 2;
}
.foot_btm {
    padding-top: 2.5em;
    padding-bottom: 10em;
}
.foot_link a {
    font-size: 10px;
    margin-right: 2em;
}
.foot_c {
    padding-top: 2em;
    font-size: 0.8em;
    color: #384655;
}
.msg_q_btn .btn_cv {
    color: #73685F;
}

.head_logo_wrap {
    width: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 3;
    text-align: center;
    padding-top: 20px;
}

.head_logo {
    width: 140px;
}

.color_gray {
    color: #333333;
}
















.md_cnt {
    position: relative;
}
.md_flex {
    padding-left: 5em;
    padding-right: 5em;
}

.md_ttl {
    font-size: 4em;
    padding-bottom: 1em;
    text-align: left;
    font-weight: 500;
    line-height: 2;
}
.md_lead {
    font-size: 14px;
    text-align: left;
    line-height: 2.5;
    padding-bottom: 3em;
}


.md_flex02 {
    padding-left: 5em;
    padding-right: 5em;
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px;
}
.md_l_img02 {
    padding-bottom: 5em;
}

.md_l_img03 {
    padding-bottom: 5em;
}
.md_l_img04 {
}
.md_l_img01 {
    padding-bottom: 5em;
}

.md_flex03 {
    padding-left: 5em;
    padding-right: 5em;
}
.md_l_img05 {
    padding-bottom: 5em;
}
.md_l_img06 {
    padding-bottom: 5em;
}
.md_bk_box_madori {
    background-size: cover;
    position: relative;
    padding-bottom: 5em;
    margin-top: 10em;
}


.mdl_txt01 {
    font-size: 4em;
    text-align: center;
    font-weight: 400;
    padding-bottom: 1.5em;
    margin-top: -1.7em;
}


.prms_ttl03 {
    font-size: 2.4em;
    text-align: center;
    font-weight: 300;
}
.prms_ttl_wrap {
    margin-top: -11em;
    margin-bottom: 10em;
    position: relative;
}
.prms_ttl_wrap02 {
    margin-top: -8em;
    margin-bottom: 10em;
}






.color_org {
    color: #f15a24;
}


.prms_l_lead_mini {
    font-size: 10px;
    padding-top: 10px;
    line-height: 1.5;
}

.prms_flex02 {
    padding-left: 5em;
    padding-right: 5em;
    padding-bottom: 10em;
}
.prms_img03 {
    padding-bottom: 3em;
}
.prms_list02 {
    padding-bottom: 1em;
}
.prms_l_ttl {
    font-size: 3em;
    text-align: left;
    padding-bottom: 0.7em;
    line-height: 1.5;
}
.prms_l_ul {
    text-align: left;
    font-size: 2em;
}
.prms_l_ul li {
    line-height: 1.5;
    padding-bottom: 0.4em;
    margin-left: 2.1em;
}
.prms_l_lead02 {
    font-size: 2em;
    padding-bottom: 0.5em;
    text-align: left;
    line-height: 2;
}
.prms_flex03 {
    padding-left: 2.5em;
    padding-right: 2.5em;
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.prms_ttl03 strong {
    color: #ebcba7;
}
.prms_list03 {
    padding-bottom: 5em;
    flex-wrap: wrap;
    width: 50%;
    display: flex;
	align-content: stretch;
}
.prms_l_box {
    margin-left: 2.5em;
    margin-right: 2.5em;
    background-color: #31281e;

}
.prms_l_txtbox {
    padding: 2em;
}
.prms_l_ttl02 {
    text-align: left;
    font-size: 14px;
    padding-bottom: 0.5em;
    line-height: 1.5;
    font-weight: 500;
}
.prms_l_lead02a {
    font-size: 12px;
    text-align: left;
    line-height: 2;
    font-weight: 400;
}
.int_box {
    padding-top: 15em;
    overflow-x: hidden;
}
.int_ttl {
    font-size: 4em;
    padding-bottom: 0.5em;
    font-weight: 300;
}
.int_google_img {
    width: 20em;
    margin-left: auto;
    margin-right: auto;
}
.google_gold {
    width: 15em;
    position: absolute;
    right: 5em;
    top: 50%;
	transform: translateY(-9em);
}
.google_voice {
    width: 15em;
    position: absolute;
    left: 5em;
    top: 50%;
	transform: translateY(-9em);
}
.md_tag {
    padding-top: 20px;
    padding-bottom: 20px;
    color: #FFFFFF;
    font-style: italic;
    margin-bottom: 30px;
    margin-top: 0px;
    font-size: 2em;
    border-bottom: 1px solid rgba(255,255,255,0.20);
}

.well_flex {
    padding-top: 40px;
    padding-right: 40px;
    padding-left: 40px;
}
.merit {
    width: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 20px;
}
.merit_ttl {
    font-size: 3em;
    font-weight: 600;
    text-align: center;
    padding-bottom: 20px;
    line-height: 1.7;
}
.well_list {
    padding-bottom: 10em;
}
.merit_p {
    color: #050505;
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    line-height: 2;
    padding-top: 15px;
}
.cv_bar {
    width: 15em;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10em;
}
.ank_hissu {
    text-align: left;
    font-size: 10px;
    line-height: 1.5;
}
.well_box {
    overflow-x: hidden;
    background-color: #FFFFFF;
    padding-top: 10em;
}
.qu_ul li {
    line-height: 1.5;
    padding-bottom: 0.5em;
}
.prms_l_ttl03 {
    text-align: left;
    padding-bottom: 0.5em;
    font-size: 2em;
}
.kuchi_foot {
    font-size: 1.8em;
    color: #606060;
    line-height: 1.7;
}
.merit_ttl02 {
    font-size: 10px;
}
.head_logo_txt {
    font-size: 10px;
    font-weight: 100;
    padding-bottom: 10px;
}
.pop_ttl_bk {
    position: relative;
    z-index: 1;
}
.pop_ttl {
    z-index: 3;
    position: relative;
    font-weight: 400;
    font-size: 4em;
    text-align: center;
    margin-top: -1.2em;
}
.pop_h_box {
    padding-bottom: 3em;

}
.pop_list_img {
    padding-top: 5em;
    padding-left: 5em;
    padding-right: 5em;
}
.quo_box {
    background-image: url(../img/gift_bk.gif);
    background-size: cover;
    background-repeat: no-repeat;
    margin-left: auto;
    margin-right: auto;
    max-width: 1600px;
}


.pop_ttl_bk img {
    height: 9em;
    width: auto;
}
.pop_ttl_bk {
    text-align: center;
}

.cp_box {
    padding-top: 10em;
    position: relative;
    padding-bottom: 8em;
}



.md_icon {
    text-align: center;
    padding-bottom: 5em;
}

.md_icon img {
    height: 15em;
    width: auto;
}
.color_blue {
    color: #061d3c;
}
.md_icon_txt {
    font-size: 3em;
    text-align: center;
    line-height: 2;
    padding-bottom: 3em;
}




.md_list03_in {
    margin-left: auto;
    margin-right: 0px;
}
.md_photo_txt01 {
    font-size: 12px;
    line-height: 2.5;
    text-align: left;
    padding-left: 1.5em;
    padding-top: 0.8em;
    position: relative;
}
.md_photo_txt01::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 0px;
  border-top: solid 1px #353535;
  position: absolute;
  top: 27px;
  left: 0;
}

.midle_img {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 5em;
    max-width: 800px;
}
.mdl_txt02 {
    font-size: 2em;
    text-align: center;
    padding-bottom: 2em;
    line-height: 2;
}


.well_ttl02 {
    color: #c6b972;
    font-size: 2.5em;
}
.well_ttl {
    font-size: 5em;
    padding-bottom: 0.5em;
}
.well_in {
    padding-top: 5em;
}
.tel_icon {
    width: 40px;
    position: absolute;
    bottom: 0px;
    right: 0px;
}
.ank_toku li {
    color: #393939;
}
.foot_tel {
    font-size: 5em;
    padding-bottom: 0.5em;
}
.foot_link {

}



.cr_ttl_k {
    padding-top: 10em;
}
.kibou_txt {
    display: block;
    padding-bottom: 1em;
}
.check_flex {
    display: flex;
}
.quo_btm {
    padding-bottom: 0px;
}
.land_b {
    font-size: 1.5em;
    display: inline-block;
    line-height: 1.5;
}
.land_lbl {
    background-color: #FFFFFF;
    color: #061D3C;
    display: inline-block;
    padding: 0.2em;
    margin-bottom: 1em;
}
.v_tate_bk {
    max-height: 720px;
}
.md_flex02k {
    padding-left: 5em;
    padding-right: 5em;
    padding-top: 1em;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
}
.md_l_img_k {
    padding-bottom: 5em;

}
.color_black {
    color: #231815;
}
.top_logo_mark {
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 4em;
    display: block;
    width: 20%;
    max-width: 85px;
}
.main_ttl02 {
    margin-top: 5em;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 3em;
    width: 80%;
    max-width: 1000px;
}
.pop_ttl_bk02 {
    position: relative;
    margin-bottom: -13em;
    z-index: 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.cp_flex {
    padding-top: 5em;
    margin-left: auto;
    margin-right: auto;
    max-width: 1600px;
}

.cp_ttl {
    font-size: 3em;
    text-align: left;
    line-height: 2;
    padding-left: 2em;
    position: relative;
    z-index: 2;
    margin-bottom: -1em;
    font-weight: 300;
}
.cp_img01 {
    display: block;
    padding-right: 5em;
}
.cp_img02 {
    padding-top: 5em;
    padding-left: 5em;
    display: block;
}
.cp_ttl02 {
    margin-top: -1.2em;
    margin-bottom: 0px;
    text-align: right;
    padding-right: 2em;
}
.cp_img03 {
    display: block;
    padding-right: 5em;
    padding-top: 5em;
}
.cp_ttl03 {
    margin-top: -1em;
    padding-left: 6em;
}
.md_list04 {
    padding-bottom: 5em;
}
.md_madori_icon {
    position: relative;
    z-index: 2;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 40%;
    margin-bottom: -2em;
    max-width: 250px;
}
.mdl_st {
    color: #e6552a;
    font-weight: 600;
    font-size: 1.5em;
}
.midle_ttl_bk {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}
.work_ttl {
    font-size: 3em;
    text-align: center;
    padding-bottom: 0.5em;
    font-weight: 600;
}
.work_lead {
    font-size: 14px;
    text-align: left;
    line-height: 2;
}
.work_list {
    padding-right: 2em;
    padding-left: 2em;
    padding-bottom: 8em;
	margin-bottom: 8em;
	position: relative;
}
.work_list::before {
  background-color: #231815; /* 線の色 */
  border-radius: 5px; /* 線の両端を丸く */
  bottom: 0px; /* 線の位置 */
  content: "";
  height: 1px; /* 線の高さ */
  left: 50%; /* 線の中央寄せ */
  position: absolute;
  transform: translateX(-50%); /* 線の中央寄せ */
  width: 100px; /* 線の長さ */
}

.ex_ttl_bk img {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    height: 8em;
    width: auto;
}
.md_ttl_txt {
    font-size: 5em;
    text-align: center;
    margin-top: -1.2em;
    position: relative;
    z-index: 2;
    padding-bottom: 2em;
}
.reason_flex {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    transform: translateY(-15em);
    margin-bottom: -15em;
    padding-bottom: 5em;
}
.reason_ttl {
    width: 20%;
    font-size: 2.8em;
	display: flex;
	align-items: center;
	justify-content: center;
}
.reason0_main {
    width: 80%;
    object-fit: cover;
    max-height: 700px;
}
.tec_wrap02 {
    padding-top: 30em;
	overflow: hidden;
}
.reason0_list {
    padding-right: 6em;
    padding-left: 6em;
    padding-bottom: 2em;
}
.reason0_ttl {
    font-size: 3.5em;
    text-align: left;
    font-weight: 500;
    padding-bottom: 1em;
}
.reason0_lead {
    font-size: 14px;
    line-height: 2;
    text-align: left;
    padding-bottom: 1em;
}
.reason0_img {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2em;
    padding-right: 2em;
}
.reason0_flex {
    padding-bottom: 5em;
}
.reason0_p {
    font-size: 14px;
    text-align: left;
    padding-right: 1em;
    padding-left: 1em;
    padding-bottom: 1em;
    line-height: 2;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    padding-top: 1em;
}
.reason1_ttl {
    font-size: 10em;
    color: rgba(69,65,57,0.10);
    text-align: center;
    font-weight: 900;
}
.reason1_ttl02 {
    background-color: #282828;
    font-size: 2.8em;
    padding: 1em;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    max-width: 400px;
}
.reason1_ttlbox {
    padding-top: 8em;
    position: relative;
    z-index: 2;
    margin-bottom: -2em;
}
.reason1_img .slider_l {
    padding-left: 2em;
    padding-right: 2em;
}
.reason1_img {
    padding-bottom: 5em;
}
.reason1_ttl_lead {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
    margin-top: -3em;
    padding-bottom: 1em;
}
.reason_st {
    padding-top: 2em;
    padding-bottom: 2em;
    border: 1px solid #231815;
    font-size: 3em;
    font-weight: 900;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
}
.reason_logo {
    position: relative;
    z-index: 2;
    width: 40%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 200px;
    margin-bottom: -22px;
}
.pad_btm {
    padding-bottom: 3em;
}
.md_ttl_txt02 {
    font-size: 4em;
}
















































































































































































































































































.tec_01_img::-webkit-scrollbar {
  height: 14px; /* スクロールバーの高さ */
}
 
.tec_01_img::-webkit-scrollbar-thumb {
  background: #cabfa4; /* ツマミの色 */
  border-radius: 7px; /* ツマミ両端の丸み */
}
 
.tec_01_img::-webkit-scrollbar-track {
  background: #061d3c; /* トラックの色 */
  border-radius: 7px; /* トラック両端の丸み */
}































































.owl_flow_step::-webkit-scrollbar {
  height: 14px; /* スクロールバーの高さ */
}
 
.owl_flow_step::-webkit-scrollbar-thumb {
  background: #0E3C7E; /* ツマミの色 */
  border-radius: 7px; /* ツマミ両端の丸み */
}
 
.owl_flow_step::-webkit-scrollbar-track {
  background: #9eb8dd; /* トラックの色 */
  border-radius: 7px; /* トラック両端の丸み */
}




















































































































































































































































/* 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;
}
.btn_big{
	transition: 0.3s;
	transition-duration: .4s;	
}
.btn_big:hover {
	transform: scale(1.1);
	z-index: 5;
}
.cr_maru_l a img:hover {
	filter: opacity(0.2) drop-shadow(0 0 0 #d0a658); 
}	
	
/*hoverした際の形状*/	
.bgcenterx:hover span{
    color: #fff;
    z-index: 5;
    text-shadow: 0px 0px 5px rgba(0,0,0,0.40);
}
.bgcenterx:hover:before{
	transform:scale(1, 1);
}
.bgcenterx02:hover span{
    color: #fff;
    z-index: 5;
}
.bgcenterx02:hover:before{
	transform:scale(1, 1);
}	

	
	

.top_house_img {
    width: 350px;
    margin-top: -200px;
}
.msg01 {
    font-size: 2.2rem;
}
.msg02 {
    font-size: 3.8rem;
}
.msg03 {
    font-size: 1.8rem;
}

.cv_wrap a {
    padding: 15px;
    font-size: 2.2em;
}


.crn_flex {
    display: flex;
}
.crn_img {
    width: 30%;
}
.crn_lead {
	flex: 1;
}
#yt_wrap {
    min-height: 850px;
}
.foot_fix {
    bottom: 44px;
}
.top_bnr_txt02_02 {
    font-size: 12px;
}
.top_bnr_txt01_02 {
    font-size: 18px;
}
.v_main_img {
    min-height: 850px;
    height: 100vh;
}
.kaeru_map_txt_sp {
    display: none;
}
.kaeru_map_txt_pc {
    display: inline-block;
}
.crm01 {
    font-size: 20px;
}
.crm02 {
    font-size: 32px;
}
.crm03 {
    font-size: 18px;
}
.txt_free {
    width: 100px;
    top: 0px;
    left: 6%;
}
.balloon1-right {
    position: relative;
    display: inline-block;
    margin-top: 1.5em;
    margin-right: 15px;
    margin-left: 0;





    margin-bottom: 5.em;
    padding: 14px 10px;
    max-width: 100%;
    color: #fff;
    font-size: 16px;
    background-color: #050505;
    font-weight: 300;
    margin-bottom: 0.5em;
}

.balloon1-right:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border: 5px solid transparent;
  border-left: 5px solid #050505;
}	
.ank_more_lead {
    text-align: center;
}
.prt_bnr {
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
}
.ank_btn {
    font-size: 20px;
}

.top_logo {


}


.v_img {

}

.land_l_tab {
    font-size: 14px;
}
.land_l_detail {
    font-size: 14px;
}

.pita_txt {
    font-size: 16px;
}

#form .actions.actions_form a {
    font-size: 28px;
}



.cv_wrap img {
    width: 30px;
    transform: translateY(-125%);
}
.well_flex {
    margin-left: auto;
    margin-right: auto;
    width: 480px;
}	
.merit_ttl {
    font-size: 18px;
}
































	

















	
}



@media only screen and (min-width:768px){
.sp768{
	visibility:hidden;
	display: none;
}
.pc768{
    visibility: visible;
    display: block;
}
	
	
.logo {
    width: 100px;
}

.top_ttl03 {
    font-size: 1.8rem;


}

.midle_cv_bk {
    padding-top: 12em;
    padding-bottom: 10em;

}








.top_ttl04 {
    font-size: 1em;
}
.top_house_no1_sp {
    width: 200px;
    position: absolute;
    left: 5%;
    top: 200px;
    border-top: 1px solid #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
    padding-top: 40px;
    padding-bottom: 40px;
}
.top_house_no1_log {
    width: 100%;
    float: none;
    clear: none;
}
.top_house_no1_txt {
    width: 100%;
    float: none;
    clear: none;
}
.top_house_txt01 {
    font-size: 20px;
    font-weight: 400;
}
.top_house_txt02 {
    font-size: 10px;
}





.top_house_img {
    width: 570px;
    transform: translate(-50%,0);
    margin-top: -200px;
}
.top_house {
    background-color: transparent;
}
.msg03 {
    font-size: 14px;
}
.cv_wrap {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    display: inline-block;
    left: auto;
}
.cv_wrap a {
    writing-mode: vertical-rl;
    width: auto;
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 1.6em;
}
.cv_wrap .cv_btn {
    width: auto;
    margin-right: 0px;
    margin-left: auto;
}
.cv_wrap img {
    margin-right: 0px;
    margin-bottom: 5px;
    top: -10px;
    left: 50%;
    width: 30px;
    transform: translateX(-50%)
}
.tab {
    width: 60px;
}
.tab_img {
    padding-top: 20px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
}
.m_p {
    background-color: #FFFFFF;
    padding: 50px;
    display: flex;
    position: relative;
    z-index: 4;
}
.vertical768 {
    writing-mode: vertical-rl;
}
.m_txt {
    flex: 1;
    margin-left: 40px;
}
.m_p_right01 {
    margin-top: -40vh;
    margin-left: 50%;
}
.m_p_left01 {
    margin-top: -40vh;
    margin-right: 50%;
}	
.msg04l {
    padding-left: 30px;
}

.cv_in {
    display: flex;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    width: 80%;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 40px;
    padding-bottom: 50px;
}
.cv_left {
	flex: 1;
}
.cv_ttl {
    text-align: left;
    font-size: 1.8rem;
}
.cv_txt {
    font-size: 1rem;
}
.cv_right {
    margin-right: 0px;
    margin-left: 20px;
    width: 300px;
}
.cv_link {
    font-size: 1.7rem;
    padding-top: 30px;
    padding-bottom: 30px;
}


	

.tec_ttl01 {
    font-size: 1.5rem;
    padding-bottom: 30px;
}
.tec_ttl02 {
    font-size: 2.5rem;
    padding-bottom: 30px;
    width: 60%;
    margin-bottom: 120px;
}

	


	
.sub40 {
    width: 40%;
}
.tec_sub80 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.tec_sub3_flex {
    display: flex;
	align-items: stretch;
	justify-content: space-between;
}
.tec_sub3b_flex {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-left: 0px;
    margin-right: 0px;
    border-top: 1px solid #4e515d;
    padding-top: 4.5%;
}

.tec_sub3_l {
    margin-top: 60px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    width: 30%;
}
.tec_sub3 {
    padding-bottom: 0px;
    margin-top: 50px;
    padding-top: 70px;
    margin-bottom: 0px;
}
.tec_sub3b {
    padding-top: 4.5%;
    padding-bottom: 40px;
}

.tec_sub3_tk_img {
    width: 50%;
    margin-top: -3.3vw;
}
.tec_sub3_ttl {
    font-size: 22px;
    padding-bottom: 50px;
}
.tec_sub3_ttl02 {
    font-size: 18px;
    padding-bottom: 30px;
    padding-left: 70px;
    padding-right: 70px;
    text-align: center;
}
.tec_sub3_txt01 {
    font-size: 14px;
    padding-bottom: 0px;
    padding-left: 70px;
    padding-right: 70px;
}
.tec_sub3_ttl03 {
    padding-top: 40px;
}
.tec_sub3b_l {
    width: 30%;
}
.tec_sub3b_txt_l {
    padding-left: 30px;
    font-weight: 500;
    font-size: 14px;
}
.tec_sub3b_img_r {
    padding-right: 20px;
}
.land_l:nth-child(3) {
	display: block;
}
.land_l {
    width: 32%;
}
.land_info_img img {
    height: 20vw;
}
.land_ttl {
    font-size: 50px;
    padding-bottom: 30px;
}
.land_ttl02 {
    font-size: 14px;
}
.land_ttl03 {
    font-size: 36px;
}
.font_big {
    font-size: 70px;
}
.land_logo {
    width: 150px;
    bottom: 5%;
}
.land_star {
    width: 240px;
    left: 5%;
}
.land_ttl04 {
    font-size: 220%;
}
.land_l_ttl {
    font-size: 18px;
    font-weight: 500;
}
.land_l_p {
    font-size: 14px;
}

.land_l_tab {
    font-size: 16px;
}
.land_l_detail {
    font-size: 16px;
}
.access_flex {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
.access_l {
    width: 50%;
}
.access_r {
    width: 50%;
    padding-top: 20px;
}
.access {
    padding-top: 120px;
    padding-bottom: 120px;
}
.btntextchange:hover{
  background:#4e515d;
  opacity: 0.9;	
  color:#fff;
}
.btntextchange:hover .btntextchange_a{
	opacity:0.1;/*透過0に*/
}

.btntextchange:hover .btntextchange_b{
	opacity:1;/*不透明に*/
}
.crn_img {
    width: 20%;
    padding-right: 20px;
}
.crn_flex02 {
    display: flex;
}
.crn_l {
    width: 50%;
}
.crn_img img {
    height: 35vw;
}
.contact_msg {
    font-size: 34px;
}
.contact_img {
    display: block;
    width: 240px;
    margin-top: -20px;
    margin-right: -20px;
    padding-left: 20px;
}
.contact_img_mozi {
    position: relative;
    z-index: 12;
    margin-bottom: -15%;
}
.contact_lead {
    padding: 60px;
    flex: 1;
}
.contact_lead02 {
    font-size: 29px;
}
.contact_lead03 {
    font-size: 14px;
}
.contact_lead04 {
    font-size: 12px;
}
.contact_img_l {
    width: 100%;
}
.contact_flex {
    display: flex;
    padding-left: 0px;
}
.contact_big {
    font-size: 50px;
}
.thanks_ttl_sub {
    font-size: 12px;
}
.thanks_ttl {
    font-size: 24px;
}
.thanks_p {
    font-size: 14px;
}
.thanks_p02 {
    font-size: 14px;
}
.foot_fix.tag_active {
    width: 668px;
    bottom: 10px;
    left: 50%;
	transform: translateX(-50%);

}
.npala_img01 {
    width: 60%;
}
.npala_img02 {
    width: 50%;
}
.npala_l_min {
    margin-right: auto;
    margin-left: 10%;
}
.npala_r_min {
    margin-right: 10%;
    margin-left: auto;
}

.tec_sub3b_txt_r {
    font-weight: 500;
    font-size: 14px;
}
.zumen_flex {
    margin-left: 80px;
    margin-right: 20px;
}
.zumen_box {
    margin-left: 0px;
    margin-right: 0px;
}
.zumen_detail {
    margin-left: 0px;
}
.zumen_t {
    margin-left: 0px;
    margin-right: 0px;
}
.top_ttl01 {
    font-weight: 600;
}
.msg04 {
    font-size: 24px;
    font-weight: 400;
}
.vr {
    margin-top: 0px;
    padding-left: 70px;
    padding-right: 20px;
    padding-bottom: 5%;
    max-width: 1340px;
	
}
.vr iframe {
    height: 500px;
}
.bnr_link {
    padding: 25px;
    font-size: 20px;
}
.kaeru_ttl {
    font-size: 50px;
}
.kaeru_md {
    padding-top: 140px;
    padding-bottom: 140px;
}
.kaeru_ttl {
    padding-bottom: 30px;
}
.kaeru_ttl02 {
    padding-bottom: 30px;
}
.cr_bk {
    padding-top: 140px;
    padding-bottom: 0px;
}
.cr_box01 {
    display: flex;
	justify-content: space-between;
	align-content: space-between;
}
.cr_b01_l {
    width: 50%;
}
.cr_b01_01ttl01 {
    font-size: 40px;
}
.cr_b01_01ttl02 {
    font-size: 60px;
}
.cr_b01_01ttl {
    padding-bottom: 50px;
}
.cr_img_r {
    padding-left: 0px;
}
.cr_img_both {
    padding-left: 0px;
    padding-right: 0px;
}

.cr_img_l {
    padding-right: 0px;
}	
.cr_b01num {
    height: 90px;

}
.cr_box02 {
	flex-direction:row-reverse;
}
.cr_box04 {
	flex-direction:row-reverse;
}
.cr_box05 {
	flex-direction:row;
}		
.cr_b02ttl {
    color: #2e3540;
}
.cr_b02p {
    color: #2e3540;
}
.cr_box01new {
    padding-top: 90px;
}
.cr_b05_img {
    width: 200px;
    margin-left: 0px;
    margin-right: auto;
    margin-top: 20px;
    display: block;
}
.works {
    padding-top: 140px;
    padding-bottom: 140px;
}
.works_ttl {
}
.works_img_flex {
    padding: 0px;
    display: flex;
}
.works_img_flex02 {
	flex-direction : row-reverse;
}	
.works_img_l01 {
    width: 65%;
    padding-bottom: 0px;
}
.works_img_l02 {
    width: 35%;
    display: block;
	padding-bottom: 0;
}
.works_img02 {
    width: 60%;
    margin-left: auto;
    margin-right: 0px;
}
.works_img03 {
    padding-left: 20px;
    width: auto;
    padding-bottom: 20px;
}
.works_img03b {
    padding-left: 0px;
    padding-right: 20px;	
    padding-bottom: 20px;
}	
.works_img04 {
    padding-left: 20px;
    width: auto;
}
.works_img04b {
    padding-left: 0px;
    padding-right: 20px;
    width: auto;
}	
.cr_ttl_tate {
    position: absolute;
    top: 0px;
    z-index: 1;
    text-align: left;
    left: 0px;
    width: 100%;
}
.crttl01_tate {
    text-align: left;
    font-size: 16px;
    padding: 20px;
    color: #303030;
    background-color: #FFFFFF;
    margin-left: 15px;
    display: inline-block;
    letter-spacing: 0.2rem;
}
.cr_ttl_tate_in {
    padding-right: 100px;
}
.cr_ttl01 {
    text-align: center;
    font-size: 70px;
    padding-right: 0px;
    padding-left: 0px;
}
.cr_ttl02 {
    text-align: center;
    font-size: 40px;
    padding-right: 0px;
    padding-left: 0px;
}
.crm_b {
    width: 210px;
}
.crm_b_flex {
    padding-bottom: 140px;
}
.crm_wrap {

}

	

.crm_t03_l {
    right: none;
	left: 3%;
    text-align: left;
    width: auto;
    font-size: 20px;

}	

.crm_t04_l {
    text-align: left;
    font-size: 140px;
    padding-right: 0;
    padding-left: 3%;	
}	


	
	

	
.crm_t01 {
    font-size: 20px;
}
.crm_v02 {
	padding-left: 20%;	
}
.d-demo__item {
  width: calc(100vw / 4);
}
.tec_wrap {


}
.crm_f_flex {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 0px;
    margin-left: 40px;
    margin-right: 40px;
}
.crm_f_l {
    padding-left: 4em;
    padding-right: 2em;
    position: relative;
}
.crm_f_flex02 .crm_f_l {
    width: 32%;
}	
.crm_f_flex02 {
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;
}
.crm_f02_l {
    width: 48%;
}
.crm_fd_ttl {
    font-size: 16px;
}
.crm_fd_dd {
    font-size: 16px;
}
.crm_fd_flex {
    margin-bottom: 30px;
}

.top_msg_box {
    margin-bottom: 0px;

}

.ev_wrap {
    padding-top: 140px;
    padding-bottom: 140px;
}
.ev_box_flex {
    display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
}
.ev_daybox {
    width: 50%;
    position: relative;
    z-index: 0;
}
.ev_daybox02 {
    width: 50%;
    margin-top: 0px;
    margin-left: 0px;
}
.ev_img {
    margin-left: -40px;
}
.ev_dayin {
    margin-right: 0px;
    padding-top: 90px;
    padding-left: 40px;
    padding-bottom: 90px;
    background-color: #FFFFFF;
    position: relative;
    z-index: -1;
}
.ev_ttl01 {
    font-size: 20px;
}
.ev_ttl02 {
    font-size: 32px;
}
.ev_p {
    font-size: 18px;
}
.ev_img02 {
    width: 250px;
    margin-left: 0px;
    bottom: -60px;
    right: 10%;
    left: auto;
    top: auto;
}
.contact_pre {
    padding-top: 140px;
    padding-bottom: 140px;
}
.cmr_day01 {
    font-size: 140px;
	
}
.v_img {
}

.top_msg_box_ttl {
    width: 60px;
    padding-top: 30px;
    padding-right: 24px;
    padding-bottom: 30px;
    left: 10%;
    letter-spacing: 0.2rem;
}
.crm_day03 {
    font-size: 40px;
}
.txt_free {
    left: 30px;
    top: 0px;
    width: 90px;
}
.cv_telp {
    font-size: 20px;
}
.c_book_flex {
    padding-bottom: 40px;
    padding-top: 40px;
}
.c_book_img {
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    align-items: center;
}
.c_book_p {
    padding-top: 40px;
}
.c_book_lead {
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
}
.c_book_ttl {
    font-size: 30px;
}
.access_l02 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0px;
}
.c_book {
    padding: 80px;
    max-width: 1000px;
}
.price {
    margin: 0 auto;
    padding: 60px;
    width: 700px;
}
.price01 {
    font-size: 20px;
}

.price02 {
    font-size: 100px;
    margin-left: 15px;
    margin-right: 5px;
}
.price_tx {
    font-size: 150px;
}
.prt_ttl {
    font-size: 40px;
    padding-top: 30px;
    padding-bottom: 30px;
}
.prt_lead {
    font-size: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
}
.prt_list {
    font-size: 20px;
    text-align: center;
    padding-bottom: 20px;
}
.prt_lead2 {
    font-size: 14px;
}
.cmp_box {
    padding-bottom: 120px;
}
.ank_flex {
    max-width: none;
    display: flex;
	justify-content: space-between;
}
.ank_lst {
    width: 32%;
}
.ank_btn {
    font-size: 26px;
    font-weight: 500;
}
.ank_ttl {
    font-size: 30px;
    padding-bottom: 20px;
}
.mv_box_lead {
    padding-top: 60px;
    font-size: 20px;

}
.mv_box {
    margin-left: auto;
    margin-right: auto;
    width: 80%;

}


.top_logo {


}


.msg_btn_box {
    padding-bottom: 20px;
    padding-top: 20px;
}
.actions a{
    width: 400px;
    font-size: 30px;
		
}	
.quo_bnr_box {
    padding-left: 40px;
    padding-right: 40px;

}
.quo_bnr_wrap {

}
.quo_bnr_wrap_contact {
    padding-bottom: 40px;
    padding-top: 20px;
}	



.tec_ttl03box_r {
    position: absolute;
    top: 5%;
    right: 5%;
    z-index: 1;
	text-align: right;
}	
.nonfixed .cr_v02 {
    position: absolute;
    left: 0px;
    bottom: 0px;
    top: auto;
}
.nonfixed .cr_v02 img{
	object-position: 0 0;
}	
	


.toku_ttl {
    font-size: 40px;
}
.toku_ttl_wrap {
    margin-top: -40px;
}
.toku_tyui {
    font-size: 24px;
    padding-top: 50px;
    padding-bottom: 40px;
}
.toku_ul {
    font-size: 24px;
    margin-left: auto;
    width: 740px;
    margin-right: auto;
}
.toku_box {
    margin-left: 60px;
    margin-right: 60px;
    margin-top: 120px;
    padding-bottom: 20px;
}
.toku_kome {
    padding-left: 30px;
    padding-right: 30px;
    width: 740px;
    margin-left: auto;
    margin-right: auto;
}

.contact {
    padding-bottom: 140px;

}
.cv_ttl02 {
    font-size: 60px;
    padding-top: 50px;
    padding-bottom: 50px;
}
.close .ank_btn_close {
    padding-top: 25px;
    padding-bottom: 25px;
}
.ank_btn_open {
    padding-top: 25px;
    padding-bottom: 25px;
}






.mdl_ttl02 {
    font-size: 50px;
}	




.mdl_cnt_flex_rev .mdl_c_left {
    margin-right: 20px;
    margin-left: 2em;
}
.mdl_cnt_flex_rev .mdl_c_right {
    margin-right: 2em;
    margin-left: 20px;
}
	
	
.mdl_c_right_k {
    margin-top: -10em;
}	
.margin-top30 {
    margin-top: 0px;
}
.plan_ttl {
    font-size: 100px;
}
.plan_ttl02 {
    font-size: 20px;
}
.m_glr_ttl {
    font-size: 100px;
}
.m_glr_ttl02 {
    font-size: 20px;
}




.cv_tel_box {
    border: 1px solid #cccccc;
    padding-bottom: 7em;
    padding-top: 7em;

}
.cv_tel_ttl {
    font-size: 23px;
}
.cv_tel_num {
    font-size: 80px;

}
.cv_tel_p {
    font-size: 20px;
    font-weight: 400;
    padding-top: 20px;
}

.top_logo_img {
    margin-bottom: 40px;
}

.top_bnr_flex {
    width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.toku_ul li:before {
  font-size: 14px;
  line-height: 47px;
  left:1.7em;
}
.gmap iframe {
    margin-bottom: 30px;
}
.vh100 {
    height: 100vh;
    min-height: 750px;
}




.top_msg_img02 {
    padding-left: 3em;
}






.md_main{
      display: block;
      position: relative;
      width: 100%;
    }
    .md_main::before{
      content: "";
      display: none;
      padding-top: 0%;
    }
    .md_main img{
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: auto;
    max-height: 900px;
    }


.md_main_ttl_k {
    right: 4.3em;
    left: auto;
}	
.md_bk_box::before {
	height: 80%;
}
.madori_label {
    font-size: 2.5em;
}



.foot_logo {
    width: 26em;
}
.foot_lead {
    font-size: 1.1em;
}

.foot_cp_post {
    font-size: 0.9em;
    text-align: center;
}
.foot_lead02 {
    font-size: 0.9em;
}
.foot_link a {
    font-size: 0.8em;
}
.foot_btm {


}

.mdl_cnt_flex_rev {
	flex-direction: row-reverse;
}
.head_logo {
    width: 220px;
}
.head_logo_wrap {
    text-align: left;
    padding-top: 0px;

}
.head_logo_wrap a {
    display: block;
    margin-left: 1.5em;
    margin-top: 1.5em;
    margin-right: auto;
    width: 320px;
}


.md_flex {
    display: flex;
    justify-content: space-between;
    padding-left: 10em;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.md_list {
    width: 50%;
    padding-right: 5em;
}
.md_list02 {
	flex: 1;
}
.md_l_img02 {
    margin-top: -14em;
}

.md_ttl {
    font-size: 23px;
}
.md_lead {
    font-size: 16px;
}
.md_flex02 {
    display: flex;
    justify-content: space-between;
    padding-right: 0px;
    padding-left: 0px;
	flex-direction:row-reverse;
}
.md_flex02_k2 {
    padding-right: 5em;
}	
	
.md_list03 {
    width: 50%;
    padding-right: 5em;
}
.md_list03k {
    padding-left: 2.5em;
    padding-right: 7.5em;

}	
.md_list04 {
    width: 50%;
    padding-right: 2.5em;
}
.md_l_img03 {
    margin-right: 0px;
    margin-left: auto;
}
.md_flex03 {
    display: flex;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px;
}
.md_list05 {
    width: 50%;
    padding-right: 2.5em;
}
.md_list06 {
    flex: 1;
    padding-left: 2.5em;
}
.madori_link {
    display: block;
}



.mdl_txt01 {
    font-size: 4em;
}





.prms_l_lead_mini {
    font-size: 12px;
}



.prms_img02 {
    padding-left: 2.5em;
}


.prms_l_ttl {
    font-size: 32px;
}
.prms_l_lead02 {
    font-size: 16px;
    padding-bottom: 1.5em;
}
.prms_l_ul {
    font-size: 16px;
}
.prms_flex02 {
    display: flex;
    padding-bottom: 5em;
}
.prms_list02 {
    width: 50%;
    padding-bottom: 0px;
}
.prms_img03 {
    padding-right: 2.5em;
    padding-bottom: 0px;
}
.prms_lead01 {
    padding-left: 2.5em;
}
.prms_l_ttl02 {
    font-size: 16px;
}
.prms_l_lead02a {
    font-size: 16px;
}
.int_ttl {
    font-size: 44px;
}
.int_google_img {
    width: 200px;
}
.md_tag {
    font-size: 16px;
}
.well_flex {
    width: 100%;
    display: flex;
    max-width: 1200px;
    padding-bottom: 80px;
}
.well_list {
    padding-left: 10px;
    padding-right: 10px;
    width: 33.333%;
}
.well_ttl {
    font-size: 80px;
}
.well_ttl02 {
    font-size: 20px;
}
.merit_p {
    font-size: 16px;
}
.foot_c {
    font-size: 0.8em;
}
.prms_l_ttl03 {
    font-size: 16px;
}
.kuchi_foot {
    font-size: 12px;
}
.pop_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
}
.pop_list_img {
    width: 45%;
    padding-right: 3em;
    padding-top: 0px;
}
.pop_list {
	flex: 1;
}
.pop_ttl {
    margin-top: -1.5em;
}



.md_list03_k {
    padding-right: 2.5em;
}
.md_list04_k {
    padding-left: 2.5em;
}
.md_photo_txt01 {
    font-size: 14px;
}
.md_photo_txt01::before {
  top: 31px;
}	

.md_photo_txt_left {
    max-width: 500px;
    margin-left: auto;
    margin-right: 0px;
}
.md_photo_txt_right {
    max-width: 500px;
    margin-right: auto;
    margin-left: 0px;
}	
.midle_cv_box {
    margin-left: 40px;
    margin-right: 40px;
}
.tel_icon {
    width: 7em;
    right: 8em;
}
.foot_tel {
    font-size: 3em;
}
.cv_tel_p02 {
    font-size: 14px;
}
.md_icon_txt {
    font-size: 30px;

}

.label-pp {
    font-size: 12px;
}
.md_l_img01k02 {
    margin-right: auto;
    width: 10em;


}
.md_flex02k {
    display: flex;
    padding-left: 0px;
    padding-right: 0px;
	flex-wrap: wrap;
}
.md_l_img_k {
    width: 50%;
}
.md_l01 {
    padding-right: 2.5em;
}
.md_l02 {
    padding-left: 2.5em;
}
.cr_ttl_k {
    padding-top: 5em;
}
.work_ttl {
    font-size: 20px;
}
.work_lead {
    font-size: 16px;
}
.ex_ttl_bk img {
    height: 10em;
}
.md_ttl_txt {
    margin-top: -2.1em;
    font-size: 3em;
}
.reason_ttl {
    font-size: 30px;
    max-height: 500px;
}
.reason0_ttl {
    font-size: 30px;
}
.reason0_lead {
    font-size: 16px;
    line-height: 3;
}
.reason0_p {
    font-size: 16px;
    padding-top: 3em;
}
.reason1_img .slider {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
	overflow: visible;
}
.reason1_ttl02 {
    padding: 0.7em;
    font-size: 30px;
}
.reason1_ttl_lead {
    margin-top: -3.5em;
    padding-bottom: 3em;
    font-size: 16px;
}
















































































































































































































































































































































































































	














































































}


@media only screen and (min-width: 900px) {
html { 
		width:100%;
}

.thanks {
    padding: 60px;
}
.thankspage #yt_wrap {
    min-height: 620px;
}
.cr_b02_img {
    margin-right: 0px;
    margin-left: auto;
}
.top_msg_box {
    padding-left: 80px;
    padding-right: 80px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 80px;
}
.txt_free {
    top: 0px;
    left: 20px;
    width: 100px;
}
.quo_bnr {
}













}

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



.cv_in {
    padding-top: 60px;
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 60px;
}
.cv_link {
    margin-top: -40px;
}
.crn_ttl02big {
    font-size: 18px;
}
.crn_p02 {
    font-size: 12px;
    padding-right: 40px;
}
.crn_ttl02 {
    font-size: 14px;
    padding-right: 40px;
}
.crn {
    padding-top: 50px;
    padding-bottom: 30px;
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}
.crn_img {
    padding-right: 40px;
}

.crn_img img {
    height: 280px;
}
.contact_lead04 {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 50px;
    padding-bottom: 40px;
}
.contact_form {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
}




.zumen_flex {
    display: flex;
    justify-content: space-between;
	align-content: center;
	align-items: center;
}
.zumen_box {
    width: 65%;
}
.zumen_detail {
    width: 35%;
}
.vr iframe {
    height: 600px;

}
.cnt1000 {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.foot_p02 {
    padding-bottom: 0px;
}
.txt_free {
    top: 8%;
    left: 3%;
}
.c_book {
    margin-left: auto;
    margin-right: auto;
}
.prt_box {
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
}
.balloon1-right {
    font-size: 30px;
}
.ank_more_lead {
    font-size: 20px;
}
.quo_bnr {
    margin-left: auto;
    margin-right: auto;
}
.foot_c {
    font-size: 0.6em;

}
.cv_wrap a {
    padding-top: 60px;
    padding-right: 25px;
    padding-left: 25px;
    padding-bottom: 60px;
    font-size: 20px;
}


.foot_link_flex a {
    display: inline-block;
    padding-right: 10px;
    width: auto;
}
.cv_wrap img {
    width: 50px;
    top: -5%;
}





.tec_01_img img {
    min-width:0;
}
.cp_flex {
    display: flex;
	align-items: flex-start;
	justify-content: space-evenly;
}
.cp_list01 {
    width: 48%;
}
.cp_list02 {
    width: 39%;
    position: relative;
}
.cp_img01 {
    padding: 0px;
}
.cp_img02 {
    padding: 0px;

}
.cp_ttl02 {
    position: absolute;
    bottom: -2em;
    right: 10em;
    width: 100vw;
}
.cp_ttl {
    font-size: 2em;
}
.cp_flex02 {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding-top: 10em;
    margin-left: auto;
    margin-right: auto;
    max-width: 1700px;
}
.cp_img03 {
    margin: 0px;
    padding: 0px;
    width: 55%;
}
.cp_ttl03 {
    width: 43%;
    padding-left: 1em;
    margin-left: 0px;
}
.md_list04 {
    width: 60%;
    padding-right: 0px;
}
.md_list03k {
    width: 40%;
    padding-left: 5em;
    background-color: #FFFFFF;
    position: relative;
    z-index: 2;
    margin-top: -10em;
    padding-top: 5em;
}
.work_flex {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    max-width: 1600px;
    padding-top: 2em;
}

.work_list {
    width: 50%;
}
.work_ttl {
    padding-top: 1.3em;
}
.reason0_flex {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}
.reason0_list {
    width: 50%;
    padding-right: 2em;
}
.reason0_img {
    width: 50%;
}
.reason1_ttl_lead {
    margin-top: -4.4em;
    padding-bottom: 4em;
}





































































































}


@media only screen and (min-width: 1100px) {
.prt_bnr {
    padding-top: 80px;

}
.md_flex02k {
    padding-top: 5em;
}


	
}
@media only screen and (min-width: 1200px) {
html {
    font-size: 16px;
}
.pc1200{
	display: block;
}	
.top_bnr_wrap {
    width: 100%;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 20;
}
.top_bnr {
    width: 500px;
    margin-right: 0px;
    margin-left: auto;
    transform: translate(0, -50%);
}
.top_bnr a {
    display: block;
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 10px;
    padding-bottom: 20px;
    -webkit-box-shadow: 0 0px 20px rgba(61,61,61,0.25);
    box-shadow: 0 0px 20px rgba(61,61,61,0.25);
}

.top_bnr_pick_wrap {
    width: 5%;
    float: left;
    vertical-align: middle;
}
.top_bnr_img_wrap {
    width: 15%;
    float: left;
}
.top_bnr_txt_wrap {
    width: 80%;
    float: left;
}
.top_bnr_pick {
    text-align: left;
    font-size: 9px;
    padding-right: 5px;
}
.top_bnr_txt01 {
    font-size: 16px;
    text-align: left;
    padding-left: 10px;
    font-weight: 400;
    padding-bottom: 5px;
}
.top_bnr_txt02 {
    font-size: 12px;
    font-weight: 100;
    text-align: left;
    line-height: 1.7;
    padding-left: 10px;
}
.m_p_right01 {
    margin-top: -27vh;
    margin-left: 60%;
}
.m_p_left01 {
    margin-top: -15vh;
    margin-right: 50%;
    padding-left: 18vw;
}	
.m_txt {
    padding-right: 6vw;
}
.m_txt02 {
    padding-right: 0px;
}

.land_info_ttl {
    writing-mode: vertical-rl;
    position: absolute;
    left: 50%;
    top: 45px;
    font-size: 34px;
    z-index: 11;
	transform: translateX(-50%);
	margin-left: -550px;
}
	
.m_glr {
    padding-bottom: 10em;
}
.cv_1200 {
    margin: 0 auto;
    width: 1200px;
}
.tec_sub80 {
    width: 1100px;
}
.sub40 {
    width: 45%;
}
.tec_sub3 {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.tec_sub3b {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
	
.tec_sub3_tk_img {
    margin-top: -42px;
}
.tec_sub3_ttl03 {
    font-size: 14px;
}
.tec_sub3b_txt_l {
    padding-left: 70px;
}
.tec_sub3b_txt_r {
    padding-right: 50px;
}
.land_info_flex {
    width: 1000px;
    margin-right: auto;
    margin-left: auto;
}
.land_logo {
    bottom: auto;
    top: 50%;
    right: 1%;
    left: auto;
}
.land_ttl {
    padding-top: 40px;
}
.land_info_img img {
    height: 200px;
}
.access_flex {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.access_ttl {
    top: 185px;
}
.contact_flex {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.npala_img01 {
    width: 80%;
}
.npala_l_min {
}
.npala_img02 {
    width: 600px;
}
.npala_r_min {
	margin-top: -30%;
}
.zumen_flex {
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    width: 88%;
    max-width: 1200px;
}
.cr_ttl01 {
    font-size: 90px;
    text-align: center;
}
.cr_ttl02 {
    font-size: 40px;
}
.crttl01_tate {
    font-size: 20px;
}
.cr_b01_01 {
    width: 600px;
    margin-right: 0px;
    margin-left: auto;
}
.cr_img01_fit {
    height: 330px;
	object-fit: cover;
}
.cr_b01_flex {
    display: flex;
	justify-content: space-between;
	align-content: space-between;
}
.cr_b01txt {
    width: 400px;
    padding-right: 40px;
    padding-left: 0px;
}
.cr_b01num {
    padding-top: 10px;
    height: 100px;
    width: auto;
}
.cr_b02_01 {
    margin-left: 0px;
    margin-right: auto;
}
.cr_b02_img {
    width: 600px;
}
.cr_img_r600 {
    width: 600px;
    margin-left: 0px;
    margin-right: auto;
}

.cr_box02::before {
    bottom: 230px;
}
.cr_box04::before {
    bottom: 0px;
}		
.cr_b05_house {
    display: block;
    padding-top: 30px;
}
		

.crm_tag {
    padding-top: 30px;
    padding-right: 50px;
    padding-left: 50px;
    padding-bottom: 30px;
    top: -40px;
    right: 68px;
    font-size: 22px;
}
.crm_v03 {
    margin: 0 auto;
    width: 1200px;
}
.crm_v03 img {
    padding-left: 440px;
}
.crm_v03l img {
	padding-left: 0;
    padding-right: 440px;
}
.d-demo__item {
    width: calc(100vw / 6);
}

.crm_f_flex {
    margin-left: auto;
    padding: 0px;
    margin-right: auto;
    max-width: 1120px;
}
.crm_f_flex02 {
    width: 1120px;
    padding-left: 0px;
    padding-right: 0px;
    margin-left: auto;
    margin-right: auto;
}
.ev_dayin {
    padding-top: 140px;
    padding-bottom: 140px;
}
.ev_ttl01 {
    font-size: 24px;
    padding-bottom: 50px;
}
.ev_ttl02 {
    font-size: 42px;
    padding-bottom: 50px;
}
.ev_img {
    width: 90%;
}
.txt_free {
    width: 150px;
}

	



.mdl_ttl02 {
    font-size: 84px;
}


.md_main_ttl_k {
    right: 22vw;
    left: auto;
}
.google_gold {
    right: 15%;
}
.google_voice {
    left: 15%;
}	

.midle_cv_box {
    margin-left: auto;
    margin-right: auto;
}

.md_main_k01 img{
    max-width: 1600px;
    display: block;
    margin: 0 auto;
}	
.md_main_k02 img{
	max-width: 1600px;
	display: block;
	margin: 0 auto;
}	



















}



@media only screen and (min-width:1300px){
.tab01,.tab02 {
}

.tab01::before,.tab02::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    background-color: #061d3c;
    transform: skewY(-45deg);
    z-index: -1;
}	
.md_bk_box::before {
	height: 80em;
}
.prms_list03 {
    width: 25%;
}
.md_bk_box_madori {
    border: 1px solid #231815;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 2em;
    padding-top: 8em;
    margin-top: 4em;
}
.line_bk03 {
    padding-bottom: 10em;
    padding-left: 20px;
    padding-right: 20px;
}




	
	
	
}


@media only screen and (min-width:1400px){
.top_bnr {
    width: 35%;
}
.top_bnr a {
    padding-top: 30px;
    padding-right: 30px;
    padding-left: 10px;
    padding-bottom: 30px;
}
.m_txt {
}
.land_logo {
    width: 220px;
}
.slide.kaeru_l_box {
    width: 1400px;
}
.works_img_flex {
    width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.prt_bnr {
    width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.md_list03k {
    padding-left: 7.5em;
    padding-top: 7.5em;

}

.sp1400 {
    display: none;
}











}
@media only screen and (min-width:1600px){
.no1 {
	width: 200px;
    position: absolute;
    right: 100px;
    bottom: 52%;
}	
}
