@charset "utf-8";

/* --------------------------------------------- */
/* ▼ 全体を通して共通箇所のスタイル　/
/* --------------------------------------------- */

main {

}


.Inner {
    width: 1000px;
    margin:0 auto;
}
.Inner768 {
    width: 768px;
    margin:0 auto;
}
@media screen and (max-width: 1000px){
   .Inner{
	    width: 100%;
	    padding: 0px 10px;
	    box-sizing: border-box;
    }
}/*max-width: 768px*/
@media screen and (max-width: 768px){
   .Inner768{
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }
}/*max-width: 768px*/

article {
    padding: 50px 0px;
}

section{margin-bottom: 40px;}

@media screen and (max-width: 1000px){
   article{
    padding: 40px 0px;
    }
}/*max-width: 1000*/



.flexbetween {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 20px 0px;
}
article.colum_Left {
    width: 70%;
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    margin-bottom: 20px;
    padding: 0px;
}
aside{
    width: 27%;
    margin-left: 3%;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px){
    .flexbetween{display: block;padding:0px 10px;}
    article.colum_Left{width: 100%;}
    aside{width: 100%;margin-left:0;}
}/*max-width: 768px*/

@media screen and (max-width: 480px){
    .flexbetween{padding:5px 15px;}
}/*480px*/


/* --------------------------------------------- */
/* ▼ 文字 */
/* --------------------------------------------- */

h2{
    font-size: 2.0em;
}
h3{
    font-size: 1.2em;
}
.page h2 {
    font-size: 2.0em;
    border-color: #b2384e;
    position: relative;
    overflow: hidden;
    line-height: 1.5;
    margin-bottom: 30px;
}
.page h2:before{
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    border-bottom: 4px solid #a83f3f;
}
.page h2:after{
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    border-bottom: 4px solid #D8D8D8;
}
.page h3 {
    font-size: 1.5em;
    border-left: 5px solid #c1272d;
    padding-left: 8px;
    margin-bottom: 10px;
    line-height: 1.25em;
}
h4,h5 {
    font-size: 1.0em;
    font-weight: bold;
    /*margin-bottom: 5px;*/
}
.impact {
    text-align: center;
    margin: 0px auto 30px;
    color: #c1272d;
}
.impact h2 {
    font-size: 2.5em;
    font-family: 'Anton', sans-serif;
    font-weight: normal;
    border-bottom: solid 2px #c1272d;
    display: inline-block;
    padding: 0px 20px 10px 20px;
}
.impact p {
	font-size: 13px;
}
.impact ul.term {
    display: inline-flex;
}
.page_title{
    font-size: 2.0em;
    color: #fff;
    background: #c1272d;
    text-align: left;
    padding: 30px;
}
.page_title h1 {
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
    line-height: 1.2em;
}
.page_title p.slug {
    text-transform: uppercase;
}

/*テキスト前矢印*/
/*.arrow:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0da";
    font-weight: 900;
    font-size: 1.5em;
    margin-right: 5px;
    color: #c1272d;
    vertical-align: middle;
}*/

@media screen and (max-width: 768px){
    .impact {
	    margin: 0px auto 10px;
	}
	.page_title{
	    padding: 20px;
	}
}/*max-width: 768px*/





/* --------------------------------------------- */
/* ▼ header */
/* --------------------------------------------- */
header {
    background: #fff;
    position: relative;
}
header #h1title {
    color: #fff;
    background: #c1272d;
    text-align: left;
}
header #h1title h1{
    font-size: 12px;
    font-weight: normal;
    line-height: 20px;
    padding-left: 10px;
}
header #heder_logo {
    width: 250px;
    margin: 15px 0px;
    float: left;
}
header #header_btn {
    margin: 15px 0px;
    float: right;
}

@media screen and (max-width: 768px){
    header #header_btn{display: none;}
    header #heder_logo {
        width: 250px;
        margin: 10px auto;
        float: none;
    }
}/*max-width: 768px*/


/* --------------------------------------------- */
/* ▼ navメニュー */
/* --------------------------------------------- */
nav {
    font-size: 13px;
    line-height: 13px;
}
nav#pcmenu {
    float: right;
    margin-right: 10px;
}

#dropmenu li {
    position: relative;
    padding: 32px 15px;
    text-align: center;
    margin-bottom: 0px;
}

#dropmenu li a {
    position: relative;
    display: block;
    text-decoration: none;
}
#dropmenu li a span {
    display: block;
    font-size: 11px;
    font-family: initial;
    font-weight: normal;
    opacity: 0.6;
    margin-top: 3px;
}
#dropmenu li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  background-color: #d26e24;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
#dropmenu li a:hover{
    /*background: #ffe9be;*/
}
/*#dropmenu li a:hover:after {
    color: #d26e24;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}*/
#dropmenu li a:before{
	content: "";
	position: absolute;
	right: 0;
	left: 0;
	bottom: -12px;
	width: 0px;
	height: 0px;
	margin: auto;
	border-style: solid;
	border-color: #c1272d transparent transparent transparent;
	border-width: 6px 6px 0 6px;
}

/*展開メニュー*/
#submenu {
    width: 150px;
    background: #c1272d;
    position: absolute;
    left: -50%;
    right: -50%;
    margin: auto;
    top: 62px;
    /* padding-top: 50px; */
    /* border-left: 1px solid #000; */
    /* border-right: 1px solid #000; */
    z-index: 1;
}
#submenu li{
  border:none;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding:0px;
  -moz-transition: .2s;
  -webkit-transition: .2s;
  -o-transition: .2s;
  -ms-transition: .2s;
  transition: .2s;
}
#submenu li a {
    color: #fff;*/
    text-align: left;
    padding: 12px 0px;
    font-size: 12px;
    font-weight: normal;
    border-top: 1px dotted #fff;
}
#submenu li a:hover {
    background: rgba(0,0,0,0.15);
}
#submenu li a span {
    display: inline-block;
}
#submenu li:first-child {
    border:none;
}
#submenu .webicon.svg-webicon {
    color: #E3007F;
}
#dropmenu li:hover ul#submenu li {
    height: 35px;
    position: initial;
}




/* --------------------------------------------- */
/* ▼ footer */
/* --------------------------------------------- */

/*footerPCメニュー*/
@media screen and (max-width: 768px){
    nav#footer-PCmenu{display: none;}
}/*768px以下は非表示*/
nav#footer-PCmenu li {
    border-right: 1px solid #555;
    padding: 0px 15px;
}




/*footerスマホ固定メニュー*/
@media screen and (min-width: 768px){
    nav#footer-SPmenu{display: none;}
}/*768px以上は非表示*/

nav#footer-SPmenu {
    position: fixed;
    bottom: 0;
    z-index: 1000;
}
nav#footer-SPmenu ul {
    position: fixed;
    left:0;
    bottom:0;
    width: 100%;
    height:60px;/*高さ*/
    margin:0;
    padding:0;
    z-index:30;
}
nav#footer-SPmenu ul li {
    float: left;
    width: 25%;
    background-color: #c1272d;
    list-style-type: none;
    text-align: center;
    font-size: 22px;
    /*border-left: 1px solid #d8d8d8;*/
    border-right: 1px solid #d2787c;
    box-sizing: border-box;
}
nav#footer-SPmenu ul li:last-child{
    border-right: none;
}
nav#footer-SPmenu li a {
    display: block;
    color:#fff;/*アイコン＆文字の色*/
    padding-top:10px;
    padding-bottom:15px;
    line-height:10px;
    text-decoration:none;
}
nav#footer-SPmenu li a:hover {
    color:#a9a9a9;/*マウスオーバー時の色*/
}
nav#footer-SPmenu .mini-text{
  font-size:9px;
}


footer article.info {
    background: #f5f5f5;
}
footer .info dl {
    border-bottom: 1px dotted #555;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

footer .about {
    text-align: center;
    border-top: 3px solid #c1272d;
}
footer p.tel, footer p.mail {
    font-family: 'Anton', sans-serif;
    font-size: 2em;
    font-weight: normal;
    margin: 10px 0px 5px 0px;
}
footer p.tel, footer p.mail {
    font-family: 'Anton', sans-serif;
    font-size: 2em;
    font-weight: normal;
    margin: 10px 0px 5px 0px;
}
footer p.line {
    border-bottom: 1px solid #555;
    margin-bottom: 20px;
    display: inline-block;
    padding: 0px 50px;
}
footer #copyright {
    background: #c1272d;
    color: #fff;
    margin-top: 20px;
}

@media screen and (min-width: 480px){
    footer p.tel, footer p.mail {
	    font-size: 1.8em;
	}
}/*480px*/

footer .works {
    background: #c1272d;
}
footer .works .impact {
    color:#fff;
}
footer .works .impact h2{
    border-color:#fff;
}
footer .works .category {
    position: absolute;
    top: 5px;
}
footer .works time{color: #fff;}
footer .works .slideBox a{color: #fff;}
footer .works .slideBox {
    margin: 10px;
}
@media screen and (max-width: 480px){
    footer .works {
        padding: 40px 10px;
    }
    footer dt,footer dd{
        display: block;
        width: 100%;
    }
}/*480px*/


/* --------------------------------------------- */
/* ▼ パーツ　ボタン */
/* --------------------------------------------- */
.btn {
    width: 280px;
    margin: 20px auto 0px;
}

a.btnRed {
    background: #c1272d;
    border: 2px solid #c1272d;
    color: #fff;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 5px;
    display: block;
    margin: 0 auto;
    text-align: center;
}
a.btnRed:hover {
    background: #fff;
    border: 2px solid #c1272d;
    color: #c1272d;
    opacity: 1;
}
a.btnWhite {
    border: 2px solid #fff;
    color: #fff;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 5px;
    display: block;
    margin: 0 auto;
    text-align: center;
}
a.btnWhite:hover {
    background: #fff;
    border: 2px solid #c1272d;
    color: #c1272d;
    opacity: 1;
}
a.btnRedL {
    border: 2px solid #c1272d;
    color: #c1272d;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 5px;
    display: block;
    margin: 0 auto;
    text-align: center;
}
a.btnRedL:hover {
    background: #c1272d;
    border: 2px solid #c1272d;
    color: #fff;
    opacity: 1;
}
/*a.contact:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0e0";
    font-weight: 900;
    margin-right: 10px;
}*/

/*.btn a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    font-weight: bold;
    margin-left: 15px;
}*/


.Box {
    margin-bottom: 20px;
}
@media screen and (max-width: 480px){
    .Box {
        margin-bottom: 5px;
    }
}/*480px*/


/* --------------------------------------------- */
/* ▼ 動的アニメーション */
/* --------------------------------------------- */

/*エフェクト　フェードインでふんわり表示*/
#contents{
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}