@charset "UTF-8";
@import url(reset.css);


* html body {
	background: url(null) fixed;
}
html, body {
	width: 100%;
}
body {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans Japanese',sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: .1em;
    color: #222;
    overflow: hidden;
    background-color: #E5E5E5;
    -webkit-text-size-adjust: 100%;
}
html {
	overflow-x: hidden;
}
img{
  width: 100%;
  height: auto;
	-webkit-backface-visibility: hidden;
}
*:focus {
	outline: none;
}
input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}
a {
    display: block;
    color: #222;
    text-decoration: none;
    transition: 0.6s;
}
a:hover {
	text-decoration: none;
	opacity: 0.8;
	transition: 0.4s;
}
/*
a img:hover {
	text-decoration: none;
	opacity: 0.6;
	transition: 0.4s;
}
*/
.pcnone {
  display: none!important;
}

main {
    max-width: calc(100% - 100px);
    width: 95%;
    height: auto;
    background: #E5E5E5;
}
.flex {
    display: flex;
}

/*---------TOPページ　サブタイトル----------*/
.title h2 {
    font-size: 24px;
    font-weight: bold;
    color: #F73310;
    letter-spacing: 3px;
}
.title h2 p {
    display: inline;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 1px;
}
h3 {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 3px;
}
h3 span {
    margin-right: 5px;
    color: #F73310;
}
p {
    letter-spacing: 2px;
    line-height: 1.5;
}
.more_btn {
    position: absolute;
    width: 205px;
    height: 35px;
}
.more_btn a {
    width: 100%;
    height: 100%;
}

.u-flex_space-between {
	display: flex;
	justify-content: space-between;
	flex-flow: row wrap;
}
.c-inner {
	margin: 0 auto;
	max-width: 1060px;
	width: 90%;
	height: auto;
}
/*-------------色切り替え----------------------*/

.red {
  color: #F73310;
}
.black {
  color: #000000;
}
/*------------------------------------------
	header
-------------------------------------------*/
#fixedHeader {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 20;
    transition: background 0.3s, color 0.3s;
}
header .header_bar {
    width: 100px;
    height: 100vh;
    color: #fff;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0 20px;
}
header .header_bar .contact_btn {
    margin-bottom: 40px;
    width: 120px;
    height: 60px;
    cursor: pointer;
    writing-mode: horizontal-tb;  /* ← 横書きに戻す */
    transform: rotate(-90deg);    /* ← 見た目を縦配置に調整（必要に応じて） */
    transform-origin: center;
    display: inline-block;
/*	z-index: 2;*/
}
header.red .header_bar .contact_btn .black_img {
    display: none;
}
header.black .header_bar .contact_btn .red_img {
    display: none;
}
header .header_bar .copyright {
    writing-mode: sideways-lr;
    text-orientation: mixed;
    font-size: 12px;
    text-align: center;
}
header.red .header_bar .copyright {
    color: #F73310;
}
header.black .header_bar .copyright {
    color: #000000;
}
/* 通常セクション（グレー背景・黒文字） */
#header .light {
  background-color: #E5E5E5;
  color: #000000;
}
/*----------------ハンバーガーメニュー---------------*/
.mgn_b-40 {
	margin-bottom: 40px;
}

header .header_bar #h_btn {
	width: 24px;
	height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 999;
}
#h_btn .h_bar,
#h_btn .h_bar span {
  display: block;
  transition: all .4s;
  box-sizing: border-box;
}
header #h_btn .h_bar {
  position: relative;
  width: 100%;
  height: 100%;
}
header #h_btn .h_bar span {
  position: absolute;
  width: 2px;
  height: 30px;
/*  left: 0;*/
  right: 0;
  font-weight: bold;
  border-radius: 1px;
}
header.red #h_btn .h_bar span {
    background-color: #F73310;
}
header.black #h_btn .h_bar span {
    background-color: #000000;
}
header #h_btn .h_bar span:first-child {
	bottom: 0;
	left: 0;
}
header #h_btn .h_bar span:nth-child(2) {
	margin: 0 auto;
	top: 50%;
	right: 0;
	left: 0;
	transform: translateY(-50%);
}
header #h_btn .h_bar span:last-child {
	top: 0;
	right: 0;
}
header #h_btn.active .h_bar span {
  height: 40px;
  background: #F73310;
}
header #h_btn.active .h_bar span:first-child {
  transform: translate(11px, -6px) rotate(45deg);
}
header #h_btn.active .h_bar span:nth-child(2) {
  opacity: 0;
}
header #h_btn.active .h_bar span:last-child {
  transform: translate(-11px, 5px) rotate(-45deg);
}
header #h_content {
	position: fixed;
	right: 0;
	top: 0;
	width: auto;
	height: 100vh;
	overflow-x: hidden;
	pointer-events: auto;
	transition: all 0.4s;
	transform: translateX(100%);
	opacity: 0;
	background: #E5E5E5;
	z-index: auto;
}
header #h_content::before {
	content: '';
	position: absolute;
	top: calc(50% + 0px);
	right: 0;
	width: 65%;
	height: 85%;
	background: #9A9393;
	transform: translateY(-50%) skewY(-20deg);
	z-index: -2;
}
header #h_content.active {
  transform: translateX(0px);
  transition: all 0.8s;
  opacity: 1;
}
header #h_content .sp_inner {
	position: relative;
	padding: 20% 60px 0;
}
header #h_content .nav_logo {
	position: absolute;
	bottom: 30px;
	right: 30px;
	width: 20%;
	height: auto;
}
header #h_content .sp_inner li {
	display: flex;
	z-index: 50;
}
header #h_content .sp_inner li .main {
	position: relative;
	margin-right: 5%;
	min-width: 96px;
	height: 80px;
	z-index: auto;
}
header #h_content .sp_inner li .main::before,
header #h_content .sp_inner li .main::after {
	content: "";
	position: absolute;
	background: #F73310;
}
header #h_content .sp_inner li.sub_none .main::before,
header #h_content .sp_inner li.sub_none .main::after {
	display: none;
}
header #h_content .sp_inner li .main::before {
	margin: 0 auto;
	height: 100%;
	width: 2px;
	top: 0;
	right: 0;
	left: -8%;
	z-index: -1;
}
header #h_content .sp_inner li .main::after {
	height: 2px;
	width: 52%;
	bottom: 0;
	right: 0;
	left: 45%;
}
header #h_content .sp_inner li .main a {
	position: relative;
	color: #F73310;
	background: #E5E5E5;
	line-height: 26px;
	opacity: 1;
	transition: .8s all;
}
header #h_content .sp_inner li .main a:hover {
	color: #000;
	transition: .4s all;
}
header #h_content .sp_inner li .main a::before {
	position: absolute;
	content: "";
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 2px;
	background: #F73310;
	transform: scale(0, 1);
	transition: transform .8s;
    transform-origin: left;
}
header #h_content .sp_inner li .main a:hover::before {
    transform: scale(1, 1);
    transition: all 0.4s ease;
}
header #h_content .sp_inner li .sub {
	padding: 0 0 0 40px;
	display: flex;
	min-width: 300px;
	transform: translateY(10px);
}
header #h_content .sp_inner li .sub > li {
	margin: 0;
	align-items: flex-end;
	
}
header #h_content .sp_inner li .sub a {
	position: relative;
	color: #fff;
	line-height: 26px;
	z-index: 999;
}
header #h_content .sp_inner li .sub a:hover {
	color: #000;
}
header #h_content .sp_inner li .sub a::before {
	position: absolute;
	content: "";
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 2px;
	background: #F73310;
	transform: scale(0, 1);
	transition: transform .8s;
    transform-origin: left;
}
header #h_content .sp_inner li .sub a:hover::before {
    transform: scale(1, 1);
    transition: all 0.4s ease;
}

/*------------------------------------------
	footer
-------------------------------------------*/
footer {
	position: relative;
    width: 100%;
    height: 100vh;
    background: #333333;   
}
footer #footer_inner {
	position: absolute;
	margin: 0 auto;
	max-width: 595px;
	width: 100%;
	display: flex;
	top: 50%;
	right: 0;
	left: 0;
	transform: translateY(-50%);
}
footer #footer_inner .footer_logo {
    width: 250px;
    height: 91px;
}
footer #footer_inner .footer_add {
    margin-left: 95px;
    color: #FFFFFF;
    font-family: '小塚ゴシック Pro','Kozuka Gothic Pro';
}
footer #footer_inner .footer_add .name {
    font-weight: bold;
    font-size: 18px;
}
footer #footer_inner .footer_add .name span {
    margin-left: 5px;
    font-size: 24px;
}
footer #footer_inner .footer_add .add {
    margin-top: 15px;
    font-size: 14px;
}
footer #footer_inner .footer_add .phone {
    margin-top: 15px;
    font-size: 14px;
}
footer #footer_inner .footer_add .fax {
    margin-top: 5px;
    font-size: 14px;
}

/*------------------------------------------
	Firstview
-------------------------------------------*/
#firstview {
    position: relative;
    width: 100%;
    height: 100vh;
	z-index: auto;
}
#firstview .overlay {
	position: absolute;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.40);
	z-index: 1;
}
.home #firstview .overlay {
	display: none;
}
#firstview::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: rgba(34,34,34,0.80);
    z-index: 1;
}
#firstview video,
#firstview img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
#firstview .firstview_logo {
    position: absolute;
    top: 20px;
    left: 25px;
    width: 162px;
    height: 60px;
	z-index: 2;
}
#firstview .firstview_logo img {
    width: 100%;
    height: 100%;
    filter: none;
}
#page_title {
    position: absolute;
/*    width: 390px;*/
    height: 55px;
    top: 50%;
    left: calc(50% - 0px);
    transform: translate(-50%, -50%);
    z-index: 2;
}
.home #page_title {
    display: none;
}
#page_title >h2 {
    color: #ffffff;
    font-size: clamp(20px, 3.0vw, 30px);
    font-weight: bold;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "sans-serif";
    letter-spacing: 5px;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 5px;
}
.title {
    margin: 0 auto;
    width: 185px;
    border-bottom: 1px solid #F73310;
    padding-bottom: 5px;
}
/*------------------------------------------
	TOPページ
-------------------------------------------*/
#works {
    margin: 140px auto 0;
    max-width: 1060px; 
}
#works .left_photo_area {
    margin: 70px auto 0;
    display: flex;
    justify-content: space-between; 
}
#works .left_photo_area .photo {
    width: 533px;
    height: 310px;   
}
#works .left_photo_area .photo img {
    object-fit: cover;   
}
#works .left_photo_area .explain {
    width: 470px;
}
#works .left_photo_area .explain p {
    margin-top: 30px;
    font-size: 16px;
    font-weight: normal;
}
#works .center_area {
    margin: 140px auto 0;
}
#works .center_area .center_title {
    margin: 0 auto;
    width: 250px;
}
#works .center_area p {
    margin-top: 15px;
    font-size: 16px;
    text-align: center;
}
#works .center_area .photo_contener {
    margin-top: 35px;
    display: flex;
    justify-content: space-between;
}
#works .right_photo_area {
    margin: 125px auto 0;
    display: flex;
    justify-content: space-between;
}
#works .right_photo_area .explain {
    position: relative;
    width: 500px;
}
#works .right_photo_area .explain p {
    margin-top: 15px;
    font-size: 16px;
    font-weight: normal;
}
#works .right_photo_area .explain .more_btn {
    bottom: 0;
    right: 0;
}
#works .right_photo_area .photo {
    width: 505px;
    height: 270px;
}
#works .right_photo_area .photo img {
    object-fit: cover;
}
/*----------------COMPANY-------------------*/
#company {
    max-width: 1060px;
    margin: 180px auto 0;
    position: relative;
}
#company >.title {
    width: 230px;
}
#company .company_photo_area {
    margin: 65px auto 0;
    max-width: 100%;
    width: 95%;
    display: flex;
}
#company .company_photo_area .photo {
    width: 510px;
    height: 295px;
}
#company .company_photo_area .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#company .company_photo_area .company_address {
    margin-left: 65px;
    font-family: '小塚ゴシック Pro','Kozuka Gothic Pro';
}
#company .company_photo_area .company_address .name {
    font-weight: bold;
    font-size:14px;
    font-family: '小塚ゴシック Pro','Kozuka Gothic Pro';
}
#company .company_photo_area .company_address .name span {
    margin-left: 5px;
    font-size: 20px;
}
#company .company_photo_area .company_address .add {
    margin-top: 35px;
    font-family: 'dnp-shuei-gothic-kin-std', sans-serif;
    font-size: 16px; 
}
#company .company_photo_area .company_address .phone {
    margin-top: 10px;
    font-family: 'dnp-shuei-gothic-kin-std', sans-serif;
    font-size: 16px;
}
#company .company_photo_area .company_address .fax {
    margin-top: 10px;
    font-family: 'dnp-shuei-gothic-kin-std', sans-serif;
    font-size: 16px;
}
#company .company_photo_area .company_address .nomber {
    margin-top: 25px;
    font-family: '小塚ゴシック Pro','Kozuka Gothic Pro';
}
#company .company_photo_area >.more_btn {
    right: 0;
    bottom: -30px;
}
/*----------------ACCESS-------------------*/
#access {
    max-width: 1060px;
    margin: 150px auto 0; 
}
#access >.title {
    width: 200px;
    margin: 0; 
}
#access .map {
    margin: 50px auto 300px;
    filter: grayscale(0.8);
}
#access .map iframe {
    width: 1060px;
    height: 400px;
}

/*--------グループ関連会社 ----*/
#group {
	margin: 0 auto 180px;
}
#group .title {
	margin: 0 0 50px;
}
#group .group_banner .banner {
	max-width: calc(100%/2 - 10px);
}
/*------------------------------------------
	産業廃棄物処理関連情報ページ
-------------------------------------------*/
#top {
    max-width: 1060px;
    margin: 165px auto 0;
}
#top .top_title {
    margin: 0 auto;
    width: 190px;
}
#top .top_title h3 {
    font-size: 16px;
    font-weight: bold;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "sans-serif";
}
#top .top_explain {
    width: 70%;
    margin: 20px auto 0;
}
#top .top_explain p {
    font-size: 16px;
    font-weight: normal;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "sans-serif";
    text-align: center;
}
#top .photo_contener {
    margin: 45px auto 0;
    position: relative;
    display: flex;
    justify-content: space-between;
}
#top .photo_contener .photo {
    width: 340px;
    height: 220px;
}
#top .photo_contener .photo img {
    object-fit: cover;
}
#center {
    margin: 165px auto 0;
    max-width: 1060px; 
}
#center .center_title {
    margin: 0 auto 30px;
    width: 280px;
}
#center .center_title h3 {
    font-size: 18px;
    font-weight: bold;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "sans-serif";
}
#center .center_photo {
    margin: 0 auto;
    width: 675px;
    height: 360px;
}
#center .center_explain {
    margin: 50px auto 0;
    width: 675px;
}
#center .center_explain p {
    font-size: 16px;
    font-weight: normal;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "sans-serif";
    letter-spacing: 3px;
}
#bottom {
    margin: 110px auto 0;
    max-width: 1060px;
}
#bottom .bottom_title {
    margin: 0 auto 30px;
    width: 240px;
}
#bottom .bottom_title h3 {
    font-size: 18px;
    font-weight: bold;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "sans-serif";
}

/*-------------------投稿記事表示----------------------*/
#contener {
	margin: 0 auto;
	max-width: 95%;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start
}
#contener .contener_inner {
    position: relative;
	margin: 0 40px 90px 0;
	width: calc(100%/4 - 30px);
   /* min-width: 240px;*/
    height: auto;
}
#contener .contener_inner:nth-of-type(4n) {
	margin-right: 0;
}
@media screen and (max-width: 1140px) {
	#contener .contener_inner {
		position: relative;
		margin: 0 30px 60px 0;
		width: calc(100% / 3 - 20px);
	   /* min-width: 240px;*/
		height: auto;
	}
	#contener .contener_inner:nth-of-type(4n) {
		margin-right: 30px;
	}
	#contener .contener_inner:nth-of-type(3n) {
		margin-right: 0;
	}
}
#contener .contener_inner .thumnail {
	margin-bottom: 20px;
    width: 100%;
    height: auto;
}
#contener .contener_inner .thumnail img {
	width: 100%;
	height: auto;
    object-fit: cover;
  	aspect-ratio:16/9;
	object-position: top;
}
#contener .contener_inner .sub_title {
}
#contener .contener_inner .sub_title p {
    font-size: clamp(14px, 2.0vw, 16px);
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "sans-serif";
    text-align: start;
}
#contener .contener_inner .sub_more_btn {
    margin-top: 10px;
	padding-bottom: 4px;
    width: 120px;
    float: right;
    display: inline-block;
    text-align: left;
    text-decoration: none;
    color: #F73310;
    position: relative;
    transition: color 0.5s ease;
	border-bottom: 1px dashed #F73310;
}
#contener .contener_inner .sub_more_btn::before {
	position: absolute;
	content: "";
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 1px;
	background: #F73310;
	transform: scale(0, 1);
	transition: transform .8s;
    transform-origin: left;
}
#contener .contener_inner a:hover .sub_more_btn::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
	height: 1px;
	background: #F73310;
    transform: scale(1, 1);
    transition: all 0.4s ease;
}
/*-------------------end------------------------*/

#more_btn {
    margin: 90px auto 110px;
    position: relative;
    width: 203px;
    height: 35px;
}

/*------------------------------------------
	産業廃棄物処理関連情報一覧
-------------------------------------------*/
main.list {
	padding-top: 180px;
}
#contener {
	
}
#contener .contener_inner {
	position: relative;
}
#contener .contener_inner a {
    width: 100%;
    height: 100%;
}


/*------------------------------------------
	pagination
-------------------------------------------*/
.pagination {
	margin: 0 auto 100px;
	width: fit-content;
	height: auto;
	display: flex;
}
.pagination .page-numbers {
	margin: 0 10px;
	width: 20px;
	text-align: center;
	color: #F74525;
	line-height: 20px;
}
.pagination .page-numbers.current {
	padding-left: 2px;
	color: #fff;
	background: #F74525;
	box-sizing: border-box;
}
.pagination .page-numbers.prev, 
.pagination .page-numbers.next {
	position: relative;
	width: 40px;
	height: auto;
}
.pagination .page-numbers.prev img, 
.pagination .page-numbers.next img {
	position: absolute;
	top: calc(50%);
	left: 0;
	width: 40px;
	height: 8px;
	transform: translateY(-50%);
}

/*------------------------------------------
	会社紹介
-------------------------------------------*/
#company_vision {
    margin: 0 auto;
    padding-bottom: 60px;
    max-width: 1030px;
    width: 100%;
    position: relative;
}
#company_vision .title {
    margin: 195px 0 0 0;
    width: 300px;
}
#company_vision .explain {
    margin-top: 65px;
}
#company_vision .explain p {
    font-size: 16px;
    font-weight: Medium;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic JP", "sans-serif";
}
#company_vision .explain p:nth-of-type(2),
#company_vision .explain p:nth-of-type(3) {
    margin-top: 20px;
}
#company_vision .sign {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 210px;
    height: 45px;
}
#history {
    margin: 115px auto 0;
    max-width: 1030px;
    width: 100%;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic JP", "sans-serif";
}
#history .history_subtitle {
    margin: 0 auto;
	width: fit-content;
    font-size: 21px;
    font-weight: bold;
    border-bottom: 1px solid #F73310;
    padding-bottom: 5px;
    text-align: center;
}
#history .history_subtitle:nth-of-type(1) {
    width: 50px;
}
#history .sub_02 {
    margin-top: 150px;
    width: 95px;
}
/*----------------table 共通---------------*/
#history .table_title {
    margin: 40px 0 0 20px;
    font-size: 20px;
    font-weight: bold;
}
#history table {
    margin: 15px auto 150px;
    max-width: 100%;
    width: 100%;
    border: 1px solid #707070;
}
#history table tr {
    width: 100%;
    height: 80px;
    border-bottom: 1px solid #707070;
}
#history table tr th,td {
    vertical-align: middle;
}
#history table tr th {
    width: 15%;
    border-right: 1px solid #707070;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}
#history table tr td {
    padding-left: 50px;
    font-size: 16px;
}
/*----------------table 個別---------------*/
#history .tb02 {
    margin-top: 150px;
}
#history table:nth-of-type(2) tr td,
#history table:nth-of-type(3) tr td {
    font-size: 18px;
    font-weight: bold;
}
/*-------------------------------------------*/
#company_access {
    margin: 170px auto 155px;
    max-width: 1030px;
    width: 100%;
}
#company_access .map_title {
    width: 100px;
    border-bottom: 1px solid #F73310;
    padding-bottom: 5px;
}
#company_access .map {
    margin: 45px auto 0;
    filter: grayscale(0.8);
}
#company_access .map iframe {
    width: 1025px;
    height: 530px;
}

/*------------------------------------------
	お問い合わせ
-------------------------------------------*/
#form {
    margin: 165px auto 150px;
}
#form .form_innner {
    margin: 0 auto;
    max-width: 900px;
    width: 100%;
}
.wpcf7 {
    min-height: 750px;
    position: relative;
    /*  overflow: visible;  隠れ防止 */
    }
.form_flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
    }
.flex-start {
    margin-bottom: 60px;
    align-items: start;
    }

.form_flex > div:first-child {
    position: relative;
    width: 270px;
    line-height: 60px;
    font-weight: bold;
    text-align: center;
}
.form_flex > div:first-child span {
    margin-left: 15px;
    position: absolute;
    right: 10px;
    font-size: 16px;
    font-weight: normal;
}
.form_flex:last-child > div:first-child {
    text-align: top;
}
.text_area {
    width: 580px;
    height: 60px;
    }
.form-textarea {
    width: 580px;
    height: 200px;
    background-color: #aaa;
    border: none;
    padding: 10px;
    }

.form-input {
  width: 100%;
  height: 60px;
  background: rgb(26,26,26,.3);
  border: none;
  padding: 8px;
}



/* 送信ボタンのスタイル */
.form-submit-wrap {
    margin-top: 30px;
    position: absolute;
    left: 50%;
    right: 50%;
    text-align: center;
    color: #F73310;
    z-index: 9;
}
.form-submit {
    width: 203px;
    height: 35px;
    background-image: url(../img/contact_submit.svg);
    background-repeat: no-repeat;
    cursor: pointer;
    transition: 0.3s ease;
}

/*---------------エラー表示-------------------*/
/* エラー個所をわかりやすく表示 */
.wpcf7 .wpcf7-not-valid {
  background: #ffb6c1;
}
.wpcf7 span.wpcf7-not-valid-tip {
  font-size: 80%;
}
.wpcf7 .wpcf7-response-output {
  margin: 10px 0 0;
  padding: 8px 35px 8px 14px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.wpcf7 .wpcf7-validation-errors {
  color: #B94A48;
  background-color: #F2DEDE;
  border: 1px solid #EED3D7;
}
.wpcf7 .wpcf7-mail-sent-ok {
  color: #3A87AD;
  background-color: #D9EDF7;
  border: 1px solid #BCE8F1;
}
 
/* 必須赤色表示 */
.wpcf7 .required {
  color: #f00000;
}
/* 任意緑色表示 */
.wpcf7 .any {
  color: #080;
}

/*------------------------------------------
	more btn
-------------------------------------------*/
.more_btn a {
	position: relative;
}
#more_btn a::before,
.more_btn a::before {
	position: absolute;
	content: "";
	bottom: 0px;
	left: 0px;
	width: 205px;
	height: 100%;
	background: #F73310;
	transform: skewX(45deg) scale(0, 1);
	transition: all 0.8s ease;
    transform-origin: left;
}
#more_btn a:hover::before,
.more_btn a:hover::before {
    transform: skewX(45deg) scale(1, 1);
    transition: all 0.4s ease;
}
#more_btn a:hover::after,
.more_btn a:hover::after {
	position: absolute;
	content: "Read more";
	line-height: 35px;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translateX(-25%);
	color: #fff;
	transition: all 0.4s ease;
}
