@charset "UTF-8";

    /**
    * html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/)
    * Richard Clark (http://richclarkdesign.com)
    * http://cssreset.com
    */
    html, body, div, span, object, iframe,
    h1, h2, h3, h4, h5, h6, p, blockquote, pre,
    abbr, address, cite, code,
    del, dfn, em, img, ins, kbd, q, samp,
    small, strong, sub, sup, var,
    b, i,
    dl, dt, dd, ol, ul, li,
    fieldset, form, label, legend,
    table, caption, tbody, tfoot, thead, tr, th, td,
    article, aside, canvas, details, figcaption, figure,
    footer, header, hgroup, menu, nav, section, summary,
    time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    background:transparent;
    }
    body {
    line-height:1;
    }
    article,aside,details,figcaption,figure,
    footer,header,hgroup,menu,nav,section {
    display:block;
    }
    nav ul {
    list-style:none;
    }
    blockquote, q {
    quotes:none;
    }
    blockquote:before, blockquote:after,
    q:before, q:after {
    content:'';
    content:none;
    }
    a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    }
    /* change colours to suit your needs */
    ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
    }
    /* change colours to suit your needs */
    mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
    }
    del {
    text-decoration: line-through;
    }
    abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
    }
    table {
    border-collapse:collapse;
    border-spacing:0;
    }
    /* change border colour to suit your needs */
    hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
    }
    input, select {
    vertical-align:middle;
    }
				
				li{
					list-style: none;
				}
				
				h1,h2,h3,h4,h5,h6{
	font-weight:normal;
}


html {
overflow-y:scroll; /*中央配置ズレ回避*/
height: 100%;
scroll-behavior: smooth;
}
table {
	font-size: inherit;
}
pre,code,kbd,samp,tt {
	font-family: monospace;
	line-height: 100%;
}
ul ol,
ol ul {
	font-size: 100% !important;
}
sup {
	vertical-align: top;
}
sub {
	vertical-align: baseline;
	font-size: 77%;
}
img {
	vertical-align: top;
}
.clear{clear: both;}
.img_center{text-align: center;}
.img_right{float: right;}
.img_left{float: left;}

/* テキスト位置 */	
.t-aR{text-align:right !important;}
.t-aC{text-align:center;}
.t-aL{text-align:left !important;}
	
/* マージン設定 */
.mbSS{margin-bottom:0.5em !important;}
.mbS {margin-bottom:1em !important;}
.mbM {margin-bottom:2em !important;}
.mbL{margin-bottom:3em !important;}
.mbLL{margin-bottom:4em !important;}
.mtLL{margin-top:4em !important;}
.mtSS{margin-top:0.5em !important;}
	
/******** Basic XHTML */

body {
	font-family: "Noto Serif JP", serif;
  font-weight: 500;
	text-align: left;
	line-height: 1.8;
	color: #323232;
	font-size: 15px;
  overflow-x: clip;
	}

a{
	color: #323232;
}

a:hover{
	color: #3495d3;
}

img{
  max-width: 100%;
  height: auto;
}

@font-face {
  font-family: 'CopperplateGothicBold2'; 
  src: url('../fonts/copperplate-gothic-bold2.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'copperplate-gothic-light'; 
  src: url('../fonts/copperplate-gothic-light.ttf') format('truetype');
  font-style: normal;
}


/* container */


.inner{
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width:1px) and (max-width:1364px){
.inner{
  width: 90%;
  max-width: inherit;
}
}

.inner_in{
  max-width: 1100px;
  margin: 0 auto;
}
@media only screen and (min-width:1px) and (max-width:1210px){
.inner_in{
  width: 90%;
}
}



#main_visual{
    background: url("../images/bg_main.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    position: relative;
    padding: 0 7% 2.5%;
    box-sizing: border-box;
  }
  
@supports (-webkit-touch-callout: none) {
  #main_visual{
    background-attachment: scroll; /* iOSはfixedを無効化して表示安定 */
  }
}
#main_visual iframe {
    width: 90%;
    height: auto;
    aspect-ratio: 16/9;
}


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

/*アクティブになったエリア*/
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
	top: 0;
  left: 0;
	width:100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
	z-index:3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #e9e9e9;
    /*丸のスタート位置と形状*/
	transform: scale(0);/*scaleをはじめは0に*/
	top:-50px;
    left:calc(50% - 50px);/*50%から円の半径を引いた値*/
    transition: all .6s;/*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive{
	transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 9990; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
     display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav-list-in{
	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive #g-nav-list-in {
  opacity:1;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt"; /* プロポーショナル幅 */
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive #g-nav-list-in li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}

#g-nav.panelactive #g-nav-list-in .inner_in{
  opacity:1;
  display: flex;
  justify-content: space-between;
}


/*リストのレイアウト設定*/
#g-nav .logo{
  width: 30%;
  margin-right: 10%;
  margin-top: -6em;
animation-name:gnaviAnime;
animation-duration:3s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;

}
#g-nav ul{
  margin-left: 3em;
}
#g-nav li{
  white-space: nowrap;
  margin-bottom: 1.5em;
  font-weight: bold;
  font-size: 20px;
}
#g-nav li ul{
  margin-left: 0;
}
#g-nav li ul li,
#g-nav ul.sub_nav li{
  font-weight: normal;
  margin-bottom: 0;
  margin-top: 0.5em;
  font-size: 14px;
}


#g-nav li a{
  text-decoration: none;
}


/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top: 1.5em;
	right: 2em;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0;
    height: 2px;
    border-radius: 2px;
	  background-color: #231815;
  }

#top .openbtn span{
  background-color: #F0F0F0;
}


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

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



#top .openbtn.active span{
  background-color: #323232;
}

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

.openbtn.active span:nth-of-type(2){
    top: 30px;
    left: 0;
    transform: translateY(-6px) rotate(45deg);
    width: 30px;
}




#top_copy{
  position: absolute;
  font-size: 14px;
  font-family: 'copperplate-gothic-light', sans-serif;
  font-kerning: normal; /* カーニングを有効化 */
  font-feature-settings: "kern"; /* 念のため指定 */
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  left: 5%;
  top: 50%;;
  transform: translateY(-50%);
  color: #fff;
}

.scroll{
  position: absolute;
  font-size: 14px;
  font-family: 'copperplate-gothic-light', sans-serif;
  font-kerning: normal; /* カーニングを有効化 */
  font-feature-settings: "kern"; /* 念のため指定 */
  writing-mode: vertical-rl;
  letter-spacing: 0.05em;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

.scroll::after{
  content: "→";
  margin-top: 1em;
  font-size: 2em;
  position: absolute;
  right: -11px;
  bottom: -1.5em;;
}






/* header */


header{
  text-align: center;
  padding: 1.5em 0;
  border-bottom: 1px #f0f0f0 solid;
  background: #fff;
}
#top header{
  padding-bottom: 2em;
  border-bottom: none;
  background: none;
}
#logo{
  line-height: 1;
  margin: 0;
  padding: 0;
}
#logo a{
  display: block;
}

#logo img{
  max-width: 175px;
}

#top_contents{
  position: relative;
  background: #fff url("../images/bg_top.png") repeat-y center top;
  background-size: 1100px;
}


#adminLayoutBox{
  display: none;
}


/* news */

#news{
  margin-bottom: 10em;
  position: relative;
  display: flex;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt"; /* プロポーショナル幅 */
}

#news .col{
  width: 50%;
  padding: 2em;
  box-sizing: border-box;
  border-bottom: 1px #e9e9e9 solid;
  display: flex;
  justify-content: space-between;
  background: #fff;
  border-left: 1px #f0f0f0 solid;
}

#news .col:first-child{
  border-left: none;
}

#news .thumbnail{
  width: 80px;
}
#news dl{
  width: calc(100% - 100px);
  line-height: 1.4;
}
#news dt{
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
#news dt span{
  margin-left: 1em;
  display: inline-block;
  font-weight: normal;
  font-size: 10px;
  border: 1px #323232 solid;
  border-radius: 20px;
  padding: 0 2em;
}
#news a{
  text-decoration: none;
}



#introduction{
  padding-bottom: 10em;
}
#introduction .col{
 padding-bottom: 10em;
 display: flex;
 justify-content: space-between;
 overflow-x: visible;
}
#introduction .col.reverse{
  flex-direction: row-reverse;
}
#introduction .col .txt{
  width: 50%;
  padding-right: 8%;
  box-sizing: border-box;
}
#introduction .col.reverse .txt{
  padding-left: 8%;
  padding-right: 0;
}

#introduction .col .photo{
  width: 50vw;
  margin-right: calc(50% - 50vw);
  text-align: right;
}
#introduction .col.reverse .photo{
  margin-left: calc(50% - 50vw);
  margin-right: 0;
  text-align: left;
}
#introduction .col .photo img{
  width: 100%;
}
#introduction .col .photo .message02 img{
  width: 70%;
}
#introduction .col .photo .sphoto{
  text-align: left;
}
#introduction .col .photo .sphoto img{
  width: 65%;
}
#introduction .col .photo .ssphoto img{
  width: 45%;
}
#introduction .col.reverse .photo .sphoto,
#introduction .col.reverse .photo .ssphoto{
  text-align: right;
}
#introduction .col .photo figure{
  margin-bottom: 1.5em;
}

.sp_photo{
  display: none;
}
.pc_photo{
  display: block;
}




#introduction h2{
  font-family: 'CopperplateGothicBold2', sans-serif;
  font-weight: bold;
  font-size: 2em;
  margin-bottom: 2em;
  letter-spacing: 0.08em;
}
#introduction h2::first-letter {
  font-size: 1.2em; /* 1文字目だけ1.2倍 */
}
.headline{
  margin-left: 58%;
}

#introduction h3{
  margin-top: -0.2em;
  line-height: 1.2;
  font-size: 2.8vw;
  margin-bottom: 1em;
  font-kerning: normal;/* 自動カーニング */
  font-feature-settings: "kern";
}
#introduction h3 span{
  margin-bottom: 0.5em;
  display: block;
  font-size: 1.8em;
  font-family: 'CopperplateGothicBold2', sans-serif;
  font-feature-settings: "kern";
  letter-spacing: 0.08em;
}
#introduction h3 em{
  font-style: normal;
  }

#introduction h4{
  font-weight: bold;
  margin-bottom: 0.5em;
  font-size: 1.3em;
}

#introduction p{
  margin-bottom: 5em;
}


.linkBtn a{
  line-height: 1;
  padding: 1em 4em 1em 2em;
  font-size: 1.3em;
  color: #fff;
  display: inline-block;
  background: #1a1a1a url("../images/arrow01.png") no-repeat 90% center;
  border-radius: 30px;
  text-decoration: none;
}

.column3{
  display: flex;
  flex-wrap: wrap;
}

.column3 .col{
  width: 30%;
  margin-right: 5%;
  margin-bottom: 2em;
}
.column3 .col:nth-child(3n){
  margin-right: 0;
}


.column4{
  display: flex;
  flex-wrap: wrap;
}

.column4 .col{
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 2.5%;
}
.column4 .col:nth-child(4n){
  margin-right: 0;
}


figcaption{
  margin-top: 10px;
}


.column1-2{
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.column1-2 .sub{
  width: 38.5%;
}

.column1-2 .main{
  width: 50%;
  margin-right: 5%;
}



.headline01{
  font-family: 'CopperplateGothicBold2', sans-serif;
  font-weight: bold;
  font-size: 1.6em;
  margin-bottom: 6rem;
  letter-spacing: 0.08em;
}

.headline01 span{
  font-weight: normal;
  font-size: 1rem;
  font-family: "Noto Serif JP", serif;
}



.initial-cap {
    font-size: 1.2em; /* 拡大率 */
    font-weight: bold; /* 必要に応じて */
    line-height: 1;    /* デザイン次第で調整 */
  }
.headline02{
  font-size: 1.6em;
  margin-bottom: 1em;
}
.headline02 span{
  font-family: 'CopperplateGothicBold2', sans-serif;
  font-weight: bold;
  font-size: 1.6em;
  display: block;
  line-height: 1.4;
  margin-bottom: 0.5em;
  letter-spacing: 0.07em;
}
.headline02 em{
  font-family: 'CopperplateGothicBold2', sans-serif;
  font-weight: bold;
  font-size: 1rem;
  font-style: normal;
  letter-spacing: 0;
}



.table_style dl{
  display: flex;
  padding: 1em 0;
  border-top: 1px #e0e6e8 solid;
}
.table_style dl:last-child{
  border-bottom: 1px #e0e6e8 solid;
}
.table_style dt{
  width: 23%;
  white-space: nowrap;
  padding-right: 2em;
  font-weight: bold;
}







#delivert{
  color: #fff;
  background: #1a1a1a;
  padding: 8rem 0;
}
#delivert .inner{
  position: relative;
}
#delivert .column4{
  align-items: center;
  text-align: center;
}
#delivert .linkBtn{
  width: 23.5%;
  position: absolute;
  right: 0;
  top: 72%;
  text-align: center;

}
#delivert .linkBtn a{
  border: 1px #fff solid;
}

@media only screen and (min-width:1px) and (max-width:10250px){
#delivert .linkBtn a{
  font-size: 1.1em;
  white-space: nowrap;
}
}


#attached{
  padding: 14em 0;
}


#about{
  color: #fff;
  padding: 12em 10%;
  box-sizing: border-box;
  text-align: center;
  background: url("../images/bg_about.jpg") no-repeat center center;
  background-size: cover;
}
#about p{
  max-width: 540px;
  padding: 0;
  margin: 0 auto;
  text-align: left;
}


#flow{
  padding: 12em 0;
}
.flow_column{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flow_column .col{
  width: 50%;
  margin-bottom: 2.5%;
}

.step{
  display: flex;
  margin-bottom: 5em;
  position: relative;
}
.step:before{
  position: absolute;
  left: 11%;
  bottom: -3em;
  content: '';
  display: inline-block;
  width: 24px;
  height: 14px;
  background-image: url("../images/arrow02.png");
  background-size: contain;
  vertical-align: middle;
}
/*.step:last-child:before{
  background: none;
}
*/
.flow_column .col .step:last-child::before{
    background-image: none;
}

.step .no{
  width: 27%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8%;
  font-family: 'CopperplateGothicBold2', sans-serif;
  letter-spacing: 0.08em;
  font-weight: bold;
  font-size: 2.6vw;
  color: #fff;
  background: #1a1a1a;
  border-radius: 10px;

}

.step dl{
  width: 56%;
  margin-right: 9%;
}

.step dt{
  font-size: 1.6em;
  margin-bottom: 0.3em;
}



#delivery{
  padding-bottom: 10em;
}
#delivery h2{
  margin-bottom: 1em;
}
#delivery p{
  margin-bottom: 4em;
}







#showRoom{
  padding: 10em 0; 
  background: #f0f0f0;
}
#showRoom .inner_in{
  display: flex;
  justify-content: space-between;
}
#showRoom .txt{
  width: 50%;
}
#showRoom .linkBtn a{
  font-size: 14px;
  margin: 1em 0;
}
#showRoom .photo{
  width: 45%;
}
#showRoom .photo li{
  margin-bottom: 2em;
}


#info{
  padding: 10em 0;
  display: flex;
  justify-content: space-between;
}
#info h2{
  text-align: center;
}

#coporate{
  width: 45%;
}

#contact{
  width: 42%;
  margin-right: 2%;
}

#contact dt{
  margin-bottom: 5px;
}
#contact dt span{
  color: #cb4343;
  margin-left: 10px;
}
#contact dd{
  margin-bottom: 2em;
}

#contact .table_style dd{
  margin-bottom: 0;
}
#contact .table_style{
  margin-bottom: 3em;
}

#contact input[type=text] ,
#contact input[type=email] ,
#contact textarea {
  width: 100%;
  border: none;
  background: #f0f0f0;
  padding: 1.2em;
  box-sizing: border-box;
}
.formBtn{
  text-align: center;
}
.formBtn input{
  line-height: 1;
  padding: 1em 8em 1em 1.5em;
  color: #fff;
  display: inline-block;
  background: #1a1a1a url("../images/arrow01.png") no-repeat 85% center;
  border-radius: 30px;
  text-decoration: none;
  border: none;
  margin-bottom: 1em;
}





#professional{
  display: flex;
  align-items: center;
  color: #fff;
  background: #1a1a1a;
}

#professional .professional_photo{
  width: 50%;
}
#professional .professional_txt{
  width: 50%;
  padding: 5% 10%;
  box-sizing: border-box;
}
#professional .professional_txt p{
  margin-bottom: 3em;
}
#professional .professional_txt .headline02{
  margin-bottom: 0.5em;
}






/*footer{
  color: #fff;
  padding-top: 20em;
  padding-bottom: 5em;
  background: url("../images/ft_bg.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
*/


.footer{ 
  position: relative; 
  color:#fff; 
  padding:20em 0 5em; 
}
.footer .bg-fixed{
  position: fixed; inset: 0;    /* 画面に固定 */
  background: url("../images/ft_bg.jpg") no-repeat center/cover;
  z-index: -1; 
  pointer-events: none;
}


.ft_logo{
  text-align: center;
  margin-bottom: 17em;
}

footer .inner{
  display: flex;
  justify-content: space-between;
}
footer ul{
  display: flex;
}
footer li{
  margin-right: 2em;
}
footer a{
  color: #fff;
  text-decoration: none;
}





#contents{
  padding: 7em 0;
  background: #fff url("../images/bg_base.png") repeat-y center top;
  background-size: 1100px;
}
#contents section{
  padding-bottom: 8em;
}

#contents h1{
  font-family: 'CopperplateGothicBold2', sans-serif;
  font-weight: bold;
  font-size: 2em;
  margin-bottom: 2.5em;
  letter-spacing: 0.08em;
}

#contents h2{
  line-height: 1.2;
  font-size: 2.6rem;
  margin-bottom: 1em;
  font-kerning: normal;/* 自動カーニング */
  font-feature-settings: "kern";
}

#top_contents h3,
#contents h3{
  line-height: 1.2;
  font-size: 1.6rem;
  margin-bottom: 1em;
  font-kerning: normal;/* 自動カーニング */
  font-feature-settings: "kern";
}

#contents p{
  margin-bottom: 2em;
}






.column_horizontal{
  display: flex;
  justify-content: space-between;
}

.column_horizontal .main{
  width: 50%;
}

.column_horizontal .sub{
  width: 45%;
}

.column_horizontal .column_headline{
  width: 32%;
}

.column_horizontal .column_contents{
  width: 63%;
}



.moreBtn{
  margin-bottom: 1.5em;
  text-align: center;
}

.moreBtn a{
  display: inline-block;
  font-size: 1.3rem;
  text-decoration: none;
  color: #fff;
  background: #1a1a1a;
  padding: 0.5em 2em;
  border-radius: 2em;
}

.moreBtn a:after{
  content: '';
  display: inline-block;
  width: 29px;
  height: 15px;
  background-image: url("../images/arrow03.png");
  background-size: contain;
  vertical-align: middle;
  margin-left: 30px;
}

.moreBtn a:hover{
  background: #58c3e0;
}



/*全て共通：hideエリアをはじめは非表示*/
.hide-area{
	display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after, 
.modaal-close:before{
	background:#ccc;	
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#666;
}

/*確認を促すモーダル：タイトルの色を変更したい場合*/
#modaal-title{
	font-size:1.2rem;
	text-align: center;
	margin: 0 0 20px 0;
}

/*動画表示のモーダル：余白を変更したい場合*/
.modaal-video .modaal-inner-wrapper{
	padding:0;
}

 .gallery-links { display:none; }


/* キャプションのデザイン */
.modaal-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6); /* 半透明の黒帯 */
  color: #fff;
  padding: 10px 15px;
  font-size: 14px;
  line-height: 1.4;
  box-sizing: border-box;
  text-align: left;
  z-index: 100;
}

/* モーダル内のレイアウト調整（はみ出し防止） */
.modaal-content-container {
  position: relative;
  overflow: hidden;
  padding-bottom: 40px; /* キャプション分の余白 */
}

.modaal-gallery-label{
  display: block!important;
}








.column_summary .col{
  display: flex;
  justify-content: space-between;
  margin-bottom: 3em;
  padding-bottom: 3em;
  border-bottom: 1px #eee solid;
}

.column_summary .thumbnail{
  width: 30%;
}

.column_summary .txt{
  width: 65%;
}

.column_summary .txt .linkBtn{
  text-align: right;
}




.entry-header-info{
  margin-bottom: 4em;
}




/* エラーメッセージは初期状態では隠す */
[data-validator-label] {
  display: none;
}

/* JSバリデータでエラーになったとき（.invalidが付いたとき）だけ表示 */
[data-validator-label].validator-result-0 {
  display: block;
}
[data-validator-label].error { display:block; }




