@charset "utf-8";
/* CSS Document */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	border: none;
}
body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.4;
}
.sp{
	display: none;
}
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 16px 80px;
    overflow: hidden;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.logo_area {
    float: left;
    width: 95px;
}
nav.hd_nv {
}
a {
    transition: 0.4s;
}

/*ハンバーガーメニュー＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
*/
.el_humburger {
    position: fixed;
    top: 30px;
    right: 80px;
    width: 46px;
    height: 25px;
    padding-top: 1px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 0px;
    z-index: 20;
    cursor: pointer;
    pointer-events: auto;
    color: #000;
    text-align: center;
}

@media screen and (max-width: 840px) {
  .el_humburger {
    display: block;
    right: 0;
    top: 0;
    padding-top: 20px;
    width: 70px;
    height: 70px;
  }
  #factory .el_humburger {
    display: none;
  }
}

.el_humburger_wrapper {
  margin-bottom: 5px;
  width: 42px;
  display: inline-block;
}

@media screen and (max-width: 840px) {
  .el_humburger_wrapper {
    margin-bottom: 5px;
    width: 30px;
  }
}

.el_humburger_text {
  font-size: 12px;
  letter-spacing: 0.1em;
  font-family: "游ゴシック Medium", YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

.js_humburgerOpen .el_humburger_text.el_humburger_text__menu {
  display: none;
}

.el_humburger_text.el_humburger_text__close {
  display: none;
}

.js_humburgerOpen .el_humburger_text.el_humburger_text__close {
  display: block;
}
.sns {
    margin-top: 40px;
}
.sns img {
    width: 30px;
}
.sns a {
    display: inline-block;
    float: right;
}
@media screen and (max-width: 840px) {
  .el_humburger_text {
    font-size: 10px;
    padding-top: 2px;
  }
}

@media screen and (max-width: 840px) {
  .el_humburger_text svg path {
    -webkit-transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
    -o-transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
    transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
    fill: #000;
  }
}

@media screen and (max-width: 840px) {
  .js_humburgerOpen .el_humburger_text svg path {
    fill: #000;
  }
}

.el_humburger span.el_humburger_bar {
  display: block;
  width: 100%;
  margin: 0 auto 9px;
  height: 1px;
  background: #000;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.el_humburger span.el_humburger_bar:last-child {
  margin-bottom: 0;
}

.js_humburgerOpen .el_humburger span.el_humburger_bar {
  background: #000;
}

@media screen and (max-width: 840px) {
  .el_humburger span.el_humburger_bar {
    left: 0;
    top: 0;
    background: #000;
  }
}

.js_humburgerOpen .el_humburger span.el_humburger_bar.top {
  -webkit-transform: translateY(9px) rotate(-45deg);
  -ms-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}

.js_humburgerOpen .el_humburger span.el_humburger_bar.middle {
  opacity: 0;
}

.js_humburgerOpen .el_humburger span.el_humburger_bar.bottom {
  -webkit-transform: translateY(-11px) rotate(45deg);
  -ms-transform: translateY(-11px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
}

.el_humburgerButton.el_humburgerButton__close {
  top: 2%;
  right: 2%;
}

.el_humburgerButton__close span.el_humburger_bar {
  display: block;
  width: 35px;
  margin: 0 auto;
  height: 4px;
  background: #000;
}

.el_humburgerButton__close span.el_humburger_bar.top {
  -webkit-transform: translateY(5px) rotate(-45deg);
  -ms-transform: translateY(5px) rotate(-45deg);
  transform: translateY(5px) rotate(-45deg);
}

.el_humburgerButton__close span.el_humburger_bar.bottom {
  -webkit-transform: translateY(-6px) rotate(45deg);
  -ms-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
}

.navi {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    width: 30%;
    z-index: 3;
    padding: 80px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 600ms ease-out;
    -o-transition: all 600ms ease-out;
    transition: all 600ms ease-out;
    transform: translateZ(0) translateX(100%);
    overflow: auto;
}

.js_humburgerOpen .navi {
  transform: translateZ(0) translateX(0);
}

@media screen and (max-width: 840px) {
  .navi {
    padding: 100px 5% 0;
  }
  .js_humburgerOpen .navi {
    width: 100%;
  }
}
.navi_item {
    position: relative;
    font-family: "Cinzel", serif;
    font-size: 20px;
    padding: 16px 0;
    border-bottom: 1px solid #ddd;
    line-height: 24px;
}
.navi_item.op_innerLink {
  cursor: pointer;
}

@media screen and (max-width: 840px) {
  .navi_item {
    margin-left: 0;
    font-size: 18px;
  }
}

.el_spChildNavOpen {
    position: absolute;
    top: 10px;
    right: 0;
    z-index: 20;
    -webkit-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    padding: 10px;
}

.js_openParent.js_fire>.el_spChildNavOpen {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.js_openParent.js_fire>.el_spChildNavOpen>.el_spChildNavOpen_wrapper:after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  opacity: 0;
}

.el_spChildNavOpen_wrapper {
  position: relative;
  width: 15px;
  height: 15px;
  -webkit-transition: all 200ms ease-out;
  -o-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.el_spChildNavOpen_wrapper:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #111;
  position: absolute;
  top: calc(50% - 1px);
}

.el_spChildNavOpen_wrapper:after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #111;
  position: absolute;
  left: calc(50% - 1px);
  -webkit-transition: all 200ms ease-out;
  -o-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

.nav_child {
  padding-top: 20px;
}

.nav_child_item {
  position: relative;
  font-size: 16px;
  padding-left: 20px;
  margin-bottom: 10px;
}

.nav_child_item > a {
    /* position: absolute; */
    /* left: 0; */
    /* right: 0; */
    /* bottom: 0; */
    /* top: 0; */
}

.nav_child_item:last-child {
  margin-bottom: 0px;
}

.js_openSwitch {
  cursor: pointer;
}

.js_openTarget {
  display: none;
}
article.tax-construction_cat .page_header_img {
    background-position: left;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
section.about_area h2.ttl {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
section.about_area h2.ttl span.en {
    margin-right: 20px;
}
section.about_area h2.ttl span.jp {
    margin-right: 100px;
}
.flex_bx {
    display: flex;
}
section.about_area .flex_bx_low:first-child {
    width: 10%;
}
section.about_area .flex_bx_low:nth-child(2) {
    width: 90%;
}
h3.ttl {
    font-family: "Noto Serif JP", serif;
    font-size: 22px;
    line-height: 40px;
    letter-spacing: 4px;
}
.h2_txt {
    line-height: 30px;
    margin-top: 80px;
    font-size: 14px;
    letter-spacing: 2px;
}
section.about_area .h2_txt {
    width: 70%;
    float: left;
}

section.about_area .btn_area {
    position: absolute;
    bottom: 0;
    right: 80px;
    width: 300px;
}
section.right_img_area {
    padding-right: 0;
    overflow: hidden;
}
section.right_img_area img {
    max-width: 70%;
    height: 552px;
    object-fit: cover;
    object-position: center;
    float: right;
}
section.construction_area {
    overflow: hidden;
}
section.construction_area .btn_area {
    width: 510px;
    float: right;
    position: relative;
    z-index: 100;
}
.construction_list ul li a {
    padding: 80px;
    display: block;
    transition: 1s;
    background-color: #fff;
    border: 1px solid #f0f0f0;
}

.construction_list ul li a:hover {
    background-color: #f0f0f0;
}
section.construction_list.other_list {
    padding: 80px 80px 0;
}
section.single_page_view {
    padding-bottom: 80px;
}
_list ul li a:hover {
    background-color: #f0f0f0;
}
.construction_list ul li a img {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    aspect-ratio: 16 / 13;
    object-fit: cover;
}
.construction_list ul {
    justify-content: flex-start;
    display: flex;
    flex-wrap: wrap;
}
.construction_list ul li {
    max-width: 33.33333%;
    flex: 33.33333%;
    /* border: 1px solid #f0f0f0; */
    padding: 4px;
}
.construction_list ul li:first-child,
.construction_list ul li:nth-child(4),
.construction_list ul li:nth-child(7),
.construction_list ul li:nth-child(10){
}
.construction_list ul li:nth-child(2),
.construction_list ul li:nth-child(5),
.construction_list ul li:nth-child(8),
.construction_list ul li:nth-child(11){
    animation-delay: 0.2s
}
.construction_list ul li:nth-child(3),
.construction_list ul li:nth-child(6),
.construction_list ul li:nth-child(9),
.construction_list ul li:nth-child(12){
    animation-delay: 0.5s
}
.construction_list {
}
.construction_list ul li:nth-child(2) {
}
.construction_list ul li:nth-child(5) {
}
.construction_list ul li:nth-child(4) {
}
.construction_list ul li:nth-child(6) {
}
section.construction_list {
    padding: 80px 0 0;
}
.single-construction .page_header_img {
    background-image: none !important;
}
.single-construction h1.page_ttl {
    padding: 80px 8% 40px 8%;
}
.single-construction h1.page_ttl span.pg_en {
    height: auto;
}
.single-construction h1.page_ttl span.pg_en img {
    width: 210px;
}
section.construction_list.other_list {
    padding: 80px 80px 0;
}
section.single_page_view {
    padding-bottom: 80px;
}
section.single_page_view .lbx, section.single_page_view .rbx {
    border-bottom: 1px solid;
    width: 40%;
    text-align: center;
    padding-bottom: 20px;
}
.place {
    letter-spacing: 4px;
    line-height: 22px;
    margin: 10px 0 20px 0;
}
.place:before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 20px;
    vertical-align: bottom;
    margin-right: 8px;
    background-image: url(img/pin_red.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
.const_cat span {
    color: #e1002a;
    border: 1px solid;
    padding: 4px 16px;
    border-radius: 30px;
    display: inline-block;
    font-family: "Cinzel", serif;
    font-weight: 500;
    font-size: 12px;
    margin-right: 4px;
    margin-bottom: 4px;
}
section.left_img_area {
    padding-left: 0;
    overflow: hidden;
    padding-bottom: 80px;
}
section.left_img_area img {
    max-width: 70%;
    height: 552px;
    object-fit: cover;
    object-position: center;
    float: left;
}
section.left_img_area .btn_area {
    position: absolute;
    bottom: 80px;
    right: 80px;
    width: 300px;
}
section.news_area h2.ttl {
    text-align: center;
    margin-bottom: 80px;
}
section.news_area h2.ttl span{
    color: #fff;
}
section.news_area a {
    color: #fff;
}
section.news_area {
    background-color: #222;
    padding-bottom: 80px;
}
section.news_area ul {
    display: flex;
    margin-bottom: 60px;
    justify-content: start;
}
section.news_area ul li {
    max-width: 31.33333%;
    flex: 31.33333%;
    margin-right: 4%;
}
section.news_area ul li:last-child{
    margin-right: 0;
}
section.news_area ul li a {
    display: block;
    border: 1px solid #f0f0f0;
    padding: 40px;
}
section.news_area ul li a:hover {
    background-color: #ccc;
}
time {
    font-size: 14px;
}
section.news_area ul li a h3.ttl {
    font-size: 16px;
    line-height: 24px;
    margin: 16px 0;
    font-family: 'Noto Sans JP', sans-serif;
}
section.news_area ul li a span {
    vertical-align: text-bottom;
    display: inline-block;
    font-family: "Cinzel", serif;
    /* font-weight: 500; */
    font-size: 12px;
}
section.news_area ul li a .btn_area:before {
    content: '';
    display: inline-block;
    width: 50%;
    height: 1px;
    border-bottom: 1px solid #ddd;
    vertical-align: middle;
    margin-top: 2px;
    margin-right: 4px;
}
section.news_area ul li a .btn_area {
    text-align: right;
}
section.news_area ul li a .btn_area span:first-letter {
    color: #e1002a;
}
section.news_area .btn_area:last-of-type {
    width: 300px;
    overflow: hidden;
    float: right;
}

section.news_area ul li:first-child,
section.news_area ul li:nth-child(4),
section.news_area ul li:nth-child(7),
section.news_area ul li:nth-child(10){
}
section.news_area ul li:nth-child(2),
section.news_area ul li:nth-child(5),
section.news_area ul li:nth-child(8),
section.news_area ul li:nth-child(11){
    animation-delay: 0.2s
}
section.news_area ul li:nth-child(3),
section.news_area ul li:nth-child(6),
section.news_area ul li:nth-child(9),
section.news_area ul li:nth-child(12){
    animation-delay: 0.5s
}
img {
    width: 100%;
    position: relative;
    display: block;
}
section {
    padding: 80px 80px 0;
    display: block;
    background-color: #fff;
    position: relative;
}
.inn01 {
    max-width: 1080px;
    margin: 0 auto;
}
.bx {
    overflow: hidden;
}
.rbx{
	float:right;
}
.lbx{
	float:left;
}
.btn_area {
    overflow: hidden;
    text-align: right;
}
.btn_area a {
    display: inline-block;
}
.btn_area2 {
    margin-top: 60px;
}
.btn_area2 a {
    color: #d90a23;
    border: 1px solid;
    width: 300px;
    display: block;
    text-align: center;
    padding: 24px;
    border-radius: 10px;
}
.inn02 {
    max-width: 800px;
    margin: 0 auto;
}
h2.ttl span {
    display: block;
}
h2.ttl span.en {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 16px;
    font-family: "Cinzel", serif;
    font-weight: 500;
}
h2.ttl span.en:first-letter {
    color: #e1002a;
}
h2.ttl span.jp {
    color: #222;
    letter-spacing: 10px;
    font-size: 40px;
    line-height: 40px;
    font-family: "Noto Serif JP", serif;
}
.btn_area:before {
    content: '';
    display: inline-block;
    width: 50%;
    height: 1px;
    border-bottom: 1px solid #ddd;
    vertical-align: middle;
    margin-top: -12px;
}

/*リンクボタンアニメーション==================================================================================================*/
.btn {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    outline: none;
    transition: ease .2s;
}

/*ボタン内spanの形状*/
.btn span {
    position: relative;
    z-index: 3;
    transition: 0.3s;
    vertical-align: text-bottom;
    margin-right: 8px;
}
.btn:hover span {
    /* color: #fff; */
}
.btn_area a {
    display: inline-block;
    font-family: "Cinzel", serif;
    font-weight: 500;
}
.btn_area a:first-letter {
    color: #e1002a;
}
.btn_area a:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 12px;
    height: 12px;
    background-image: url(img/link_arrow.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

/*== 背景が流れる（左から右） */
.bgleft:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    border-bottom: 1px solid #e1002a;
    width: 100%;
    height: 100%;
    transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;
}
.btn_area2 .bgleft:before {
    background: #d90a23;
}
.btn_area2 .btn:hover span {
    color: #ffffff;
}
/*hoverした際の形状*/
.bgleft:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
}
.home .breadcrumbs {
    display: none;
}
.breadcrumbs {
    font-size: 12px;
    font-weight: 400;
    margin: 0 auto;
    padding: 8px 20px;
}
/*TOP=================================================================================================*/
section.kv {
    padding: 0;
    margin: 0;
    height: 100vh;
}
span.bk_transparent {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0000005c;
    z-index: 50;
}
section.kv img.kv_img {
    position: relative;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.kv_txt_area {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 590px;
    left: 0;
    z-index: 100;
    text-align: center;
    right: 0;
}
.kv_txt01 {
    width: 100%;
}
.kv_txt01 img {
    width: 350px;
    margin: 0 auto;
}
.kv_txt01 span {
    font-size: 100px;
    font-family: "Homemade Apple", cursive;
    background: linear-gradient(180deg, #afe7ff 0%, #ffb9c1 100%);
    background: -webkit-linear-gradient(180deg, #afe7ff 0%, #ffb9c1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.kv_txt02 {
    font-size: 18px;
    line-height: 50px;
    padding: 0;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    letter-spacing: 12px;
    margin-top: 40px;
}

section.column_area .lbx {
    width: 35%;
    padding-right: 5%;
}
section.column_area .rbx {
    width: 65%;
}
section.column_area .lbx .btn_area {
    margin-top: 80px;
}

}
.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin: 0 50px;
}

/* Slider ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slider .slick-slide {
    margin: 0 25px;
}
.slick-slide
{
    float: right;
}
.slick-slide h3.ttl {
    font-family: 'Noto Sans JP';
    font-size: 14px;
}
.slick-slide img {
    display: block;
    height: 550px;
    object-fit: cover;
    margin-bottom: 40px;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
    position: relative;
    height: auto;
}
li.blurTrigger.blur.slick-slide a:hover {
    opacity: 0.4;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
.slick-slide .btn_area span {
    vertical-align: text-bottom;
    display: inline-block;
    font-family: "Cinzel", serif;
    font-size: 12px;
}
.slick-slide .btn_area {
    text-align: right;
}
.btn_area:before {
    content: '';
    display: inline-block;
    width: 30%;
    height: 1px;
    border-bottom: 1px solid #ddd;
    vertical-align: middle;
    margin-top: -15px;
    margin-right: 4px;
}
section.ft_content_area ul {
    display: flex;
}
section.ft_content_area{
    padding: 80px 0 0;
}

section.ft_content_area ul li {
    max-width: 33.33333%;
    flex: 33.33333%;
}
section.ft_content_area ul li a {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
}

section.ft_content_area ul li a img.ft_content_img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 30;
    object-fit: cover;
}
section.ft_content_area ul li:first-child a img.ft_content_img{
        object-position: left;
}
section.ft_content_area ul li h2.ttl {
    position: absolute;
    z-index: 100;
    margin: auto;
    top: 14%;
    right: 0;
    left: 0;
}
section.ft_content_area ul li h2.ttl span.jp {
    text-align: center;
    font-size: 18px;
    color: #fff;
    line-height: 18px;
}
section.ft_content_area ul li h2.ttl span.en.blue {
    text-align: center;
    color: #fff;
}
span.bg_trance {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #2222226b;
    position: absolute;
    top: 0;
    z-index: 50;
    transition: 0.4s;
}
section.ft_content_area ul li img.ft_content_icon {
    position: absolute;
    z-index: 100;
    width: 30%;
    aspect-ratio: 1 / 1;
    padding: 10%;
    border: 1px solid #fff;
    margin: auto;
    top: 60px;
    bottom: 0;
    right: 0;
    left: 0;
}
section.ft_content_area ul li a:hover span.bg_trance {
    background-color: #000000a6;
}
.slick-slide .btn_area:before {
    margin-top: 3px;
}
footer {
    background-color: #fff;
    color: #000;
    padding: 80px;
    position: relative;
}
footer .lbx {
    width: 25%;
}
footer .rbx {
    margin-top: 0;
    width: 75%;
}
img.logo_ft {
    max-width: max-content;
    margin-bottom: 20px;
    width: 250px;
}
.ft_logo_under {
    font-size: 12px;
    line-height: 20px;
    font-family: "Noto Serif JP", serif;
}
.ft_logo_under span {
    display: block;
}
.ft_logo_under span.red {
    display: inline-block;
    margin-right: 4px;
    color: #e1002a;
    font-family: "Cinzel", serif;
}
ul.ft_nav {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
ul.ft_nav li {
    flex: 18%;
    max-width: 18%;
    margin-bottom: 16px;
    text-align: left;
}
ul.ft_nav li a {
    padding: 0 16px;
    font-size: 14px;
    font-family: "Cinzel", serif;
}
ul.ft_nav {
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 48px 0;
}
section.contact .bx a {
    margin: 0 auto;
    width: 90%;
}
small {
    /* font-family: 'Noto Sans JP', sans-serif; */
    text-align: center;
    display: block;
    margin: 0;
    padding: 4px 0;
    position: relative;
    background-color: #fff;
    font-family: "Cinzel", serif;
}
/*news===========================================================================================================*/
h1.page_ttl {
    color: #046da1;
    padding: 150px 8%;
}
h1.page_ttl span.pg_en img {
    width: auto;
    margin-bottom: 16px;
}
span.pg_jp {
    color: #fff;
    letter-spacing: 2px;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
}
.page_header_img {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
section.page_header {
    position: relative;
    padding: 0;
}
section.page_header .ttl_area {
    background-color: #0000005c;
}
h1.page_ttl span.pg_en {
    width: auto;
    height: 190px;
    display: block;
}
.list_high ul li {
    border-bottom: 1px solid #ccc;
}
.list_high ul li a {
    padding: 16px 0px;
    display: block;
}
span.date {
    font-size: 14px;
    color: #e1002a;
    margin-bottom: 8px;
    display: block;
}
.wp-pagenavi a, .wp-pagenavi span {
    display: inline-block;
}
.list_high ul {
    margin-bottom: 24px;
}
.single h2.ttl_s {
    font-size: 24px;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
    padding: 0 0 24px;
    margin-bottom: 24px;
    line-height: 32px;
}
.single h3 {
    border-top: 2px solid #e1002a;
    border-bottom: 1px solid #222222;
    padding: 16px 0;
    margin: 24px 0 16px 0;
    font-size: 18px;
}
.content_s {
    line-height: 32px;
}
.single h4 {
    padding: 16px 0;
    /* margin: 24px 0 16px 0; */
    font-weight: bold;
}
.single h4:first-letter {
    color: #e1002a;
}


/*固定ページ===========================================================================================================*/
/*service*/
section.service02 {
}
.txt {
    line-height: 32px;
    margin-top: 50px;
}
h3.title_sub {
    font-size: 18px;
}
h2.ttl:after {
    right: 30%;
    top: 0px;
}
.page-template-page-service section.service .lbx {
    height: 570px;
}
.page-template-page-service section.service .rbx {
    height: 570px;
}
.page-template-page-service section.service02 .rbx {
    width: 50%;
    position: absolute;
    right: 0;
    float: none;
    height: 570px;
}
.page-template-page-service section.service02 .rbx img {
    object-fit: cover;
    height: 100%;
}
.page-template-page-service section.service02 .lbx {
    height: 610px;
    width: 50%;
    padding-right: 100px;
}
/*COMPANY*/
.page-template-page-company section.company .lbx {
    height: 610px;
    width: 50%;
    padding-right: 100px;
}
.page-template-page-company section.company .rbx {
    width: 50%;
    position: absolute;
    right: 0;
    float: none;
    height: 570px;
}
.page-template-page-company section.company .rbx img {
    object-fit: cover;
    height: 100%;
}
.company table {
    width: 100%;
    margin-top: 50px;
}
.company table th, .company table td {
    padding: 32px 0;
    border-bottom: 1px solid #ccc;
    vertical-align: middle;
    line-height: 30px;
    font-size: 14px;
    letter-spacing: 4px;
}
.company table th{
    width: 30%;
}
.company table td{
    width: 70%;
}
section.company02 {
    background-color: #ebeff3;
    color: #000;
}
section.company02 .rbx {
    width: 50%;
    padding-left: 100px;
}
section.company02 .lbx {
    width: 50%;
    position: absolute;
    left: 0;
    float: none;
    height: 472px;
}
section.company02 .lbx img {
    object-fit: cover;
    height: 100%;
}

/*ACCESS*/
.ac_map {
    position: relative;
    width: 100%;
    height: 450px;
}
.ac_txt {
    margin-bottom: 60px;
}
.ac_map p {
    width: 100%;
    height: auto;
}
.ac_map p iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
/*CONTACT*/
.contact-table {
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.contact-table th {
    text-align: left;
    width: 30%;
    padding: 20px;
}
.required {
    font-size: 12px;
    color: #ffffff;
    background: rgb(195 14 35);
    padding: 2px 5px;
    border-radius: 3px;
    margin-left: 5px;
}
.contact-table td {
    padding: 20px;
}
.contact-table th, .contact-table td {
    border-bottom: 1px solid #ededed;
    vertical-align: middle;
    padding: 32px 24px;
    font-size: 14px;
}
.mw_wp_form .vertical-item {
    display: block;
}
.mwform-checkbox-field label, .mwform-radio-field label {
    font-weight: normal;
    margin-bottom: 0;
}
.mwform-checkbox-field input, .mwform-radio-field input {
    margin-right: 5px;
}
.contact-table td input[type="text"], .contact-table td input[type="email"], .contact-table td textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border-radius: 10px;
    background-color: #ffffff;
}
button, [type="button"], [type="reset"], [type="submit"] {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: bold;
    display: block;
    text-align: center;
    width: 400px;
    margin: 80px auto 0 auto;
    padding: 40px;
    background-color: #e1002a;
    color: #fff;
}

/*recruit*/
.post-type-archive-recruit section.recruit ul li {
    margin-bottom: 40px;
}
/*プライバシーポリシー*/
.privacy-policy p {
    line-height: 32px;
    margin-bottom: 24px;
}
.privacy-policy ol {
    margin-bottom: 40px;
}
.privacy-policy ol li {
    margin-bottom: 16px;
    list-style: square;
    list-style-position: inside;
    line-height: 32px;
}
.privacy-policy h2.ttl {
    font-size: 24px;
    line-height: 1;
    margin: 60px 0 40px 0;
}
.privacy-policy ol li > ol {
    margin: 20px 0 20px 30px;
}
.privacy-policy ol li > ol > li {
    list-style: decimal;
}
.privacy-policy ol li > ol > li > ol {
    padding: 16px;
    background-color: #ddd;
}
.privacy-policy ol li > ol > li > ol > li {
    list-style: none;
}
.privacy-policy ol li > ol > li > ol > li:last-child {
    margin: 0;
}
/*recruit　詳細*/
section.page.recruit_single table {
    width: 100%;
    margin-bottom: 40px;
}
section.page.recruit_single table th {
    width: 30%;
}
section.page.recruit_single table td {
    width: 70%;
}
section.page.recruit_single table td, section.page.recruit_single table th {
    text-align: left;
    padding: 32px 16px;
    border-bottom: 1px solid #ccc;
    vertical-align: middle;
    line-height: 24px;
}
section.page.recruit_single table td iframe {
    width: 100%;
}
section.page.recruit_single h2.ttl {
    font-size: 24px;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
    padding: 0 16px 24px;
    margin-bottom: 24px;
    line-height: 32px;
}
.wp-pagenavi {
    position: relative;
    text-align: center;
    margin: 40px 0;
}

section.philosophy table th {
    width: 30%;
    position: relative;
}
section.philosophy table th span {
    background-color: #046da1;
    color: #fff;
    border-radius: 50px;
    position: absolute;
    top: 0;
    margin: auto;
    left: 0;
    text-align: center;
    display: block;
    z-index: 10;
    width: 81px;
    padding: 30px 10px;
}
section.philosophy table tr {
    display: block;
    margin-bottom: 60px;
}
section.philosophy table tr:last-child {
    margin-bottom: 0;
}

section.philosophy table th img {
    width: 100%;
}
section.philosophy table td {
    width: 70%;
    position: relative;
    padding: 0px 16px 16px 16px;
}
span.py {
    border-top: 3px solid #046da1;
    border-bottom: 1px solid #222222;
    padding: 16px;
    margin: 0 0 16px 0;
    display: block;
    font-size: 18px;
    font-weight: bold;
}
section.philosophy.flow table {
    margin-top: 60px;
}
section.philosophy table th img {
    width: 100%;
    padding: 24px;
}
.recruit_link a.btn {
    margin: 0 auto;
    width: 80%;
}
section.contact_page {
    background-color: #f9f9f9;
    padding-bottom: 80px;
}
/*固定ページ*/
section.bk_blck {
    background-color: #222;
}
section.company {
    padding-bottom: 80px;
}
section.bk_blck h2.ttl {
    color: #fff;
}
section.bk_blck h2.ttl span.jp {
    color: #fff;
}
section.bk_blck table th, section.bk_blck table td {
    color: #fff;
}
section.recruit {
    padding-bottom: 80px;
}
.page-template-page-recruit section.right_img_area {
    padding-bottom: 80px;
}
.t_area table {
    width: 100%;
    margin-top: 50px;
}
.t_area table th, .t_area table td {
    padding: 32px 0;
    border-bottom: 1px solid #ccc;
    vertical-align: middle;
    line-height: 30px;
    font-size: 14px;
    letter-spacing: 4px;
}
.t_area table th {
    width: 30%;
}
.t_area table td {
    width: 70%;
}
/*NEWS*/
.post-type-archive-news section.news_area ul {
    flex-wrap: wrap;
}
.post-type-archive-news section.news_area ul li {
    max-width: 100%;
    flex: 100%;
    margin-right: 0;
    margin-bottom: 24px;
}
.post-type-archive-news section.news_area ul li:nth-child(3), 
.post-type-archive-news section.news_area ul li:nth-child(6), 
.post-type-archive-news section.news_area ul li:nth-child(9), 
.post-type-archive-news section.news_area ul li:nth-child(12) {
    animation-delay: unset;
}
.single h2.ttl span.jp {
    color: #222;
    letter-spacing: 10px;
    font-size: 28px;
    line-height: 40px;
    font-family: "Noto Serif JP", serif;
    margin-bottom: 20px;
}
.single h2.ttl span.jp:first-letter {
    color: #e1002a;
}
.wp-pagenavi a, .wp-pagenavi span {
    text-decoration: none;
    border: 1px solid #ffffff;
    padding: 3px 5px;
    margin: 2px;
    color: #BFBFBF;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current {
    border-color: #fff;
}
.wp-pagenavi span.current {
    font-weight: bold;
    color: #222;
    background-color: #fff;
}

.post-type-archive-column section.column_area ul {
    display: flex;
    margin-bottom: 60px;
    justify-content: start;
    flex-wrap: wrap;
}
.post-type-archive-column section.column_area ul li:nth-child(3),
.post-type-archive-column section.column_area ul li:nth-child(6),
.post-type-archive-column section.column_area ul li:nth-child(9),
.post-type-archive-column section.column_area ul li:nth-child(12) {
    animation-delay: 0.5s;
    margin-right: 0;
}
.post-type-archive-column section.column_area ul li {
    max-width: 31.33333%;
    flex: 31.33333%;
    margin-right: 3%;
    margin-bottom: 32px;
}
.post-type-archive-column section.column_area ul li img {
    height: auto;
    width: 100%;
    object-fit: cover;
    margin-bottom: 40px;
    aspect-ratio: 1 / 1.5;
}
.post-type-archive-column section.column_area {
    background-color: #222;
    padding-bottom: 80px;
}
.post-type-archive-column section.column_area ul li a {
    display: block;
    border: 1px solid #f0f0f0;
    padding: 40px;
    color: #fff;
}
.post-type-archive-column section.column_area ul li a h3.ttl {
    font-size: 14px;
    line-height: 18px;
    margin: 16px 0;
    font-family: 'Noto Sans JP', sans-serif;
}
.post-type-archive-column section.column_area .btn_area:last-of-type {
    width: 300px;
    overflow: hidden;
    float: right;
}
.post-type-archive-column section.column_area ul li a .btn_area:before {
    content: '';
    display: inline-block;
    width: 50%;
    height: 1px;
    border-bottom: 1px solid #ddd;
    vertical-align: middle;
    margin-top: 2px;
    margin-right: 4px;
}
.post-type-archive-column section.column_area ul li a span {
    vertical-align: text-bottom;
    display: inline-block;
    font-family: "Cinzel", serif;
    font-size: 12px;
}
.post-type-archive-column section.column_area ul li a .btn_area span:first-letter {
    color: #e1002a;
}
.post-type-archive-column section.column_area ul li:nth-child(2),
.post-type-archive-column section.column_area ul li:nth-child(5),
.post-type-archive-column section.column_area ul li:nth-child(8),
.post-type-archive-column section.column_area ul li:nth-child(11) {
    animation-delay: 0.2s;
}
/*施工事例*/
.construction_img {
    margin: 40px 0 0 0;
}
.construction .h2_txt {
    margin: 40px 0;
}
.construction_ttl_img.blur {
    margin-bottom: 40px;
}
input.tel {
    width: 29% !important;
}
.cat_list {
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}
.cat_list .cat_list_detail {
    flex: 31.333333%;
    max-width: 31.333333%;
    margin-right: 3%;
    margin-bottom: 16px;
}
.cat_list .cat_list_detail:nth-child(3n){
    margin-right: 0;
}
.cat_list .cat_list_detail a {
    display: block;
    border: 1px solid;
    padding: 24px;
    text-align: center;
    color: #e1002a;
    transition: 0.6s;
}
.cat_list .cat_list_detail a:hover{
    background-color: #e1002a;
    color: #fff;    
}

.h2_txt h3.ttl {
    margin: 40px 0 24px 0;
}
.h2_txt h3.ttl:first-letter{
    font-size: 32px;
    color: #e1002a;
}
h4.ttl {
    font-weight: 700;
    margin: 16px 0 8px 0;
}
section.flow {
    padding-bottom: 80px;
}
section.flow ul {
    margin-top: 80px;
}
section.flow ul li {
    color: #fff;
}
section.flow ul li h3.ttl {
    margin-bottom: 24px;
    text-align: center;
}
section.flow ul li .h3_txt {
    text-align: center;
}
section.flow ul li {
    color: #fff;
    padding: 24px 0;
    margin: 40px 0;
}
section.flow ul li + img {
    width: 60px;
    margin: 0 auto;
}
section.flow ul li:last-of-type + img {
    display: none;
}
section.flow ul li h3.ttl:after {
    content: '';
    width: 100px;
    border-bottom: 1px solid;
    display: block;
    margin: 16px auto 0 auto;
}
section.flow h2.ttl {
    text-align: center;
}

.construction_img ul{
  list-style: none outside none;
  padding-left: 0;
  margin: 0;
}
.construction_img .content-slider li{
  background-color: #666666;
  text-align: center;
  color: #FFF;
}
.construction_img .content-slider h3 {
  font-size: 20px;
  margin: 0;
  padding: 70px 0;
}
.construction_img .demo {
    width: 100%;
    margin: 0 auto;
}
.construction_img .demo ul li img {
    height: 500px;
    width: 100%;
    object-fit: contain;
    background-color: #f7f7f7;
}
.construction_img .lSAction > a.lSPrev {
  background-image: url(img/prev.png);
    background-size: 100%;
}
.construction_img .lSAction > a.lSNext {
    background-image: url(img/next.png);
    background-size: 100%;
}
ul#image-gallery {
    height: auto !important;
}
.lSSlideOuter .lSPager.lSGallery img {
    height: 90px !important;
}
.lSSlideOuter .lSPager.lSGallery{
    width: 100% !important;
}
.lSSlideOuter .lSPager.lSGallery li {
    width: 19% !important;
    margin-right: 1% !important;
}
.construction_img.blurTrigger.blur {
    margin-bottom: 40px;
}

/*追従*/

.ft_bnr {
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 100;
    }
.ft_bnr .lbx, .ft_bnr .rbx {
    width: 50%;
}
.ft_bnr a {
        display: block;
        padding: 16px 0;
        color: #fff;
        text-align: center;
    }
.ft_bnr a span {
    display: block;
    margin: 0;
}
.ft_bnr a span.txt {
    font-size: 10px;
}
span.ttl_mini {
    font-size: 16px;
}
.ft_bnr a span.txt {
    font-size: 10px;
    line-height: 10px;
}
    .ft_bnr a:before {
        content: '';
        display: inline-block;
        width: 30px;
        height: 30px;
        background-position: center;
        background-size: 100%;
        background-repeat: no-repeat;
        vertical-align: text-top;
        margin-right: 8px;
    }
.ft_bnr_summary {
        display: inline-block;
        vertical-align: middle;
        text-align: left;
    }
.ft_bnr .rbx a:before {
    background-image: url(img/icon_mail.png);
}
a.cl_red {
    background-color: #e20730;
    border-radius: 50px;
    margin-right: 16px;
    transition: 0.6s;
    border: 1px solid;
}
a.cl_red:hover{
    background-color: #fff;
    color: #e20730;
}
.ft_bnr .lbx, .ft_bnr .rbx {
    width: 25%;
    margin-bottom: 16px;
}
.page-template-page-contact .ft_bnr {
    display: none;
}
/*============================================================================================

~1366px

===============================================================================================*/
@media screen and (max-width:1366px){
section.about_area .flex_bx_low:first-child {
    width: 15%;
}
section.about_area .flex_bx_low:nth-child(2) {
    width: 85%;
}
}
/*============================================================================================

~1280px

===============================================================================================*/
@media screen and (max-width:1280px){
h2.ttl span.jp {
    font-size: 32px;
}
.btn_area:before {
    width: 80px;
}
.slick-slide img {
    display: block;
    height: 370px;
    object-fit: cover;
    margin-bottom: 40px;
}
section.about_area .flex_bx_low:first-child {
    width: 20%;
}
section.about_area .flex_bx_low:nth-child(2) {
    width: 80%;
}
}
/*============================================================================================

~1080px

===============================================================================================*/
@media screen and (max-width:1080px){
section.about_area .flex_bx_low:first-child {
    width: 20%;
}
section.about_area .flex_bx_low:nth-child(2) {
    width: 80%;
}
.btn_area {
    position: static !important;
    width: 100% !important;
    text-align: right !important;
    margin-top: 80px;
}
.construction_list ul li a {
    padding: 40px;
}
h3.ttl {
    font-size: 18px;
    line-height: 28px;
}
section.news_area ul li a .btn_area:before {
    width: 20%;
}
section.news_area ul li a .btn_area {
    margin-top: 0;
}
section.news_area .btn_area:last-of-type {
    margin-top: 0;
}
section.column_area .lbx {
    float: none;
    width: 100%;
    margin-bottom: 80px;
}
section.column_area .rbx {
    width: 100%;
    float: none;
}
img.logo_ft {
    margin: 0 auto 40px;
}
footer .rbx {
    display: none;
}
section.column_area .btn_area:last-of-type {
    margin-top: 0;
}
section.column_area ul li a .btn_area:before {
    width: 20%;
}
}

/*============================================================================================

~960px

===============================================================================================*/
@media screen and (max-width:960px){
body {
    font-size: 14px;
}
section.about_area .flex_bx_low:first-child {
    width: 30%;
}
section.about_area .flex_bx_low:nth-child(2) {
    width: 70%;
}
}

/*============================================================================================

~768px

===============================================================================================*/
@media screen and (max-width:768px){
.sp{
	display: block;
}
.pc{
	display: none;
}
section {
    padding: 40px 20px 0;
}
header {
    padding: 16px 20px 24px 20px;
}
h2.ttl span.jp {
    font-size: 24px;
    line-height: 32px;
}
h2.ttl span.en {
    font-size: 16px;
    line-height: 16px;
}
section.about_area h2.ttl span.en {
    margin-right: 5%;
}
section.about_area h2.ttl span.jp {
    margin-right: 20%;
}
section.about_area h2.ttl {
    margin-left: 20px;
}
section.about_area .flex_bx_low:first-child {
    width: 30%;
}
section.about_area .flex_bx_low:nth-child(2) {
    width: 70%;
}
.menu-btn {
    position: fixed;
    top: 29px;
    right: 33px;
    display: flex;
    height: auto;
    width: auto;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #ebeff3;
}
section.about_area .h2_txt {
    width: 100%;
    float: none;
}
.h2_txt {
    margin-top: 40px;
}
.btn_area {
    margin-top: 40px;
}
section.right_img_area img {
    max-width: 84%;
    height: 500px;
}
section.construction_list {
    padding: 40px 0 0;
}
.construction_list ul li a {
    padding: 20px;
}
section.left_img_area img {
    max-width: 84%;
    height: 500px;
    float: none;
}
section.left_img_area {
    padding-bottom: 40px;
}
section.news_area {
    padding-bottom: 40px;
}
section.news_area h2.ttl {
    margin-bottom: 40px;
}
section.news_area ul {
    margin-bottom: 40px;
}
section.column_area .lbx .btn_area {
    margin-top: 40px;
}
section.column_area .lbx {
    margin-bottom: 40px;
}
section.ft_content_area ul li h2.ttl span.jp {
    text-align: center;
    font-size: 18px;
    color: #fff;
    line-height: 18px;
    letter-spacing: 3px;
}
footer {
    background-color: #fff;
    color: #000;
    padding: 40px;
    position: relative;
}
footer .lbx {
    width: 100%;
    float: none;
}
.ft_logo_under {
    text-align: center;
}
/*固定ページ*/
h1.page_ttl span.pg_en img {
    width: 70%;
}
.company table th, .company table td {
    display: block;
    width: 100%;
}
section.company {
    padding-bottom: 40px;
}
.company table th {
    border-bottom: none;
    padding-bottom: 0;
}
.t_area table th, .t_area table td {
    display: block;
    width: 100%;
}
.page-template-page-recruit section.right_img_area {
    padding-bottom: 40px;
}
section.recruit {
    padding-bottom: 40px;
}
.post-type-archive-column section.column_area ul li {
    max-width: 100%;
    flex: 100%;
    margin-right: 0;
    margin-bottom: 40px;
}
.post-type-archive-column section.column_area {
    padding-bottom: 40px;
}
.post-type-archive-column section.column_area ul {
    margin-bottom: 40px;
}
.post-type-archive-column section.column_area ul li img {
    aspect-ratio: 16 / 9;
}
section.company.bk_blck {
    margin-top: 20px;
}
.page-template-page-company .page_header_img,
.post-type-archive-news .page_header_img {
    background-position: left;
}
.single h2.ttl span.jp {
    letter-spacing: 8px;
    font-size: 20px;
    line-height: 30px;
}
section.contact_page .t_area table th {
    border-bottom: none;
    padding-bottom: 0;
}
.contact-table td input.tel[type="text"]{
    width: 29%;
}
h3.ttl {
    font-size: 16px;
}
section.construction_area {
    padding-top: 0;
}
section.servce_area + section.left_img_area {
    padding-top: 0;
}
section.ft_content_area {
    padding: 40px 0 0;
}
section.column_area .btn_area.sp {
    margin-top: 40px;
}
article.post-type-archive-construction section.page_header .page_header_img {
    background-position: left;
}
button, [type="button"], [type="reset"], [type="submit"] {
    width: 100%;
}
section.news_area ul li a h3.ttl {
    font-size: 14px;
}
.cat_list .cat_list_detail {
    flex: 49%;
    max-width: 49%;
    margin-right: 2%;
}
.cat_list .cat_list_detail:nth-child(3n) {
    margin-right: 2%;
}
.cat_list .cat_list_detail:nth-child(2n) {
    margin-right: 0;
}
.cat_list .cat_list_detail a {
    font-size: 12px;
    padding: 16px;
}
.cat_list {
    margin-top: 40px;
}
section.flow ul {
    margin-top: 40px;
}
section.flow {
    padding-bottom: 40px;
    margin-top: 40px;
}
.single-construction .page_header_img {
    background-position: left;
}
section.construction_list.other_list {
    padding: 40px 20px 0;
}
h1.page_ttl span.pg_en {
    height: 150px;
}
.ft_bnr {
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 100;
    }
.ft_bnr .lbx, .ft_bnr .rbx {
    width: 50%;
    margin-bottom: 0;
}
    .ft_bnr a {
        display: block;
        padding: 16px 0;
        color: #fff;
        text-align: center;
        border: none;
    }
.ft_bnr a span {
    display: block;
    margin: 0;
}
.ft_bnr a span.txt {
    font-size: 10px;
}
span.ttl_mini {
    font-size: 16px;
}
.ft_bnr a span.txt {
    font-size: 10px;
    line-height: 10px;
}
    .ft_bnr a:before {
        content: '';
        display: inline-block;
        width: 30px;
        height: 30px;
        background-position: center;
        background-size: 100%;
        background-repeat: no-repeat;
        vertical-align: text-top;
        margin-right: 8px;
    }
.ft_bnr_summary {
        display: inline-block;
        vertical-align: middle;
        text-align: left;
    }
.ft_bnr .rbx a:before {
    background-image: url(img/icon_mail.png);
}
.ft_bnr .lbx a:before {
    background-image: url(img/icon_tell.png);
}
a.cl_red {
    background-color: #e20730;
    border-radius: 0;
    margin-right: 0;
}
a.cl_gly {
    background-color: #a0a0a0;
}
small {
    margin-bottom: 60px;
}
}
/*============================================================================================

~480px

===============================================================================================*/
@media screen and (max-width:480px){
section.ft_content_area ul li {
    max-width: 100%;
    flex: 100%;
}
section.ft_content_area ul {
    flex-wrap: wrap;
}
section.news_area ul {
    flex-wrap: wrap;
}
section.news_area ul li {
    max-width: 100%;
    flex: 100%;
    margin-right: 0;
    margin-bottom: 16px;
}
section.news_area ul li a {
    padding: 20px;
}
section.news_area .btn_area:last-of-type {
    float: none;
}
section.news_area ul {
    margin-bottom: 20px;
}
section.left_img_area img {
    max-width: 100%;
    height: 350px;
}
section.right_img_area img {
    max-width: 100%;
    height: 350px;
}
.kv_txt_area {
    top: 0;
    height: 440px;
    left: 20px;
}
.kv_txt02 {
    font-size: 16px;
    line-height: 32px;
    padding: 0;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    letter-spacing: 10px;
    margin-top: 80px;
}
.construction_list ul li {
    max-width: 50%;
    flex: 50%;
}
.const_cat span {
    font-size: 10px;
    padding: 4px 8px;
    margin-right: 2px;
    margin-bottom: 4px;
}
}