﻿/* ##############################################################################

    KEYFRAMES

############################################################################## */


/* ##############################################################################

    COMMON

############################################################################## */

html {
  height: 100%;
  overflow-y: scroll;
}

body {
  height: 100%;
}

/* layout
**************************************** */

/* --- inner --- */
.inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.inner-sm {
  max-width: 920px;
}

.inner-lg {
  max-width: calc(100% - 112px);
}

/* --- section_pdg --- */
.section_pdg {
  padding-top: 140px;
  padding-bottom: 140px;
}

/* --- float --- */
.flt-rgt {
  float: right;
}

.flt-lft {
  float: left;
}

/* --- position --- */
.pos_rel {
  position: relative;
  z-index: 0;
}

/* --- margin --- */
.mgn-btm8 {
  margin-bottom: 8px;
}

.mgn-btm16 {
  margin-bottom: 16px;
}

.mgn-btm24 {
  margin-bottom: 24px;
}

.mgn-btm32 {
  margin-bottom: 32px;
}

.mgn-btm40 {
  margin-bottom: 40px;
}

.mgn-btm48 {
  margin-bottom: 48px;
}

.mgn-btm56 {
  margin-bottom: 56px;
}

.mgn-btm64 {
  margin-bottom: 64px;
}

.mgn-btm72 {
  margin-bottom: 72px;
}

.mgn-btm80 {
  margin-bottom: 80px;
}

.mgn-btm100 {
  margin-bottom: 100px;
}

/* --- pc or sp --- */
.pc-none,
.pc-none-inline,
.pc-none-table,
.pc-none-flex {
  display: none;
}

.sp-none {
  display: block;
}

.sp-none-inline {
  display: inline;
}

.sp-none-table {
  display: table;
}

.sp-none-flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .inner {
    width: 86%;
  }

  .mgn-btm16 {
    margin-bottom: 8px;
  }

  .mgn-btm24 {
    margin-bottom: 16px;
  }

  .mgn-btm32 {
    margin-bottom: 16px;
  }

  .mgn-btm40 {
    margin-bottom: 24px;
  }

  .mgn-btm48 {
    margin-bottom: 24px;
  }

  .mgn-btm56 {
    margin-bottom: 32px;
  }

  .mgn-btm64 {
    margin-bottom: 32px;
  }

  .mgn-btm72 {
    margin-bottom: 40px;
  }

  .mgn-btm80 {
    margin-bottom: 40px;
  }

  .sp-none,
  .sp-none-inline,
  .sp-none-table,
  .sp-none-flex {
    display: none;
  }

  .pc-none {
    display: block;
  }

  .pc-none-inline {
    display: inline;
  }

  .pc-none-table {
    display: table;
  }

  .pc-none-flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  /* --- section_pdg --- */
  .section_pdg {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* flex
**************************************** */

/* --- ブロック要素 --- */
.flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

/* --- インライン要素 --- */
.flex-inline {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/* --- 逆向き --- */
.flex-reverse {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

/* --- 縦並び --- */
.flex-column {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* --- 水平方向揃え --- */
.flex-j-start {
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-j-end {
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-j-ctr {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-j-between {
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-j-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

/* --- 垂直方向揃え --- */
.flex-a-start {
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-a-end {
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-a-ctr {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-a-baseline {
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.flex-a-stretch {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

/* --- 子要素の折り返し設定 --- */
.flex-c-nowrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.flex-c-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* --- 子要素の複数行設定 --- */
.flex-c-reverse {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.flex-c-start {
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.flex-c-start {
  -webkit-align-items: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.flex-c-end {
  -webkit-align-content: flex-end;
  -ms-flex-line-pack: end;
  align-content: flex-end;
}

.flex-c-ctr {
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

.flex-c-baseline {
  -webkit-align-content: baseline;
  -ms-flex-line-pack: baseline;
  align-content: baseline;
}

.flex-c-stretch {
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

/* --- ざっくりflexレイアウト --- */
.flex-col2,
.flex-col3,
.flex-col4 {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-col2>* {
  margin-right: 3%;
  margin-bottom: 3%;
}

.flex-col2 .txtarea {
  flex: 1;
  max-width: none;
  padding-left: 6%;
  padding-right: 4%;
  padding: 4% 6% 4% 8%;
}

.flex-col2.flex-reverse .txtarea {
  padding: 4% 8% 4% 6%;
}

.flex-col2 .imgarea {
  width: 50%;
}

.flex-col2>*:nth-child(even) {
  margin-right: 0;
}

.flex-col3>* {
  width: 31.33%;
  margin-right: 3%;
  margin-bottom: 3%;
}

.flex-col3>*:nth-child(3n+3) {
  margin-right: 0;
}

.flex-col4>* {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 2%;
}

.flex-col4>*:nth-child(4n+4) {
  margin-right: 0;
}

@media screen and (max-width: 768px) {

  /* --- 縦並び - sp --- */
  .flex-sp-block {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  /* --- ざっくりflexレイアウト - sp --- */
  .flex-sp-col2>*,
  .flex-sp-col2.flex-col3>*:nth-child(3n+3) {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 3%;
  }

  .flex-sp-col2>*:nth-child(even) {
    margin-right: 0;
  }

  .flex-sp-col3>*,
  .flex-sp-col3.flex-col4>*:nth-child(4n+4) {
    width: 31.33%;
    margin-right: 3%;
    margin-bottom: 3%;
  }

  .flex-sp-col3>*:nth-child(3n+3) {
    margin-right: 0;
  }

}

/* bg
**************************************** */
.bg-gray {
  background-color: #f8f8f8;
}

.bg-wh {
  background-color: #fff;
}

/* ttl
**************************************** */

/* --- page_ttl --- */
.page_ttl {
  position: relative;
  /*padding: 364px 0 240px 0;*/
  text-align: center;
  padding: 200px 0 100px 0;
  background-color: #3F3F3F;
}

.single-works .page_ttl,
.single-blog .page_ttl {
  padding: 224px 0 100px 0;
}

.page_ttl::before {
  content: '';
  position: absolute;
  top: 104px;
  bottom: 0;
  z-index: -1;
  display: block;
  width: 100%;
  background-image: none;
  background-position: center;
  background-size: cover;
}

.page_ttl-jp,
.page_ttl-en {
  display: block;
}

.page_ttl-en {
  /*color: #0d0d0d;*/
  color: #fff;
  font-size: 280%;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.page_ttl-jp {
  /*color: #8c8c8c;*/
  color: #fff;
  font-size: 93%;
  letter-spacing: .09em;
}

/* --- section_ttl --- */
.section_ttl {
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: .11em;
  color: #0d0d0d;
}

.section_ttl-en {
  display: block;
  font-size: 266%;
  letter-spacing: .13em;
}

.section_ttl-jp {
  font-size: 93%;
  letter-spacing: .09em;
}

.section_ttl-sm .section_ttl-en {
  font-size: 240%;
}

.section_ttl-sm .section_ttl-jp {
  font-size: 93%;
}

.section_ttl-lg .section_ttl-en {
  font-size: 280%;
}

.section_ttl-lg .section_ttl-jp {
  font-size: 106%;
}

.section_ttl-line::after {
  content: '';
  display: block;
  width: 16px;
  height: 4px;
  margin-top: 32px;
  background-color: #000;
}

.section_ttl-line.txt-ctr::after {
  margin-left: auto;
  margin-right: auto;
}

.section_catch {
  text-align: center;
  font-size: 120%;
  font-weight: 700;
}

/* --- heading --- */
.heading-1,
.heading-2,
.heading-3,
.heading-4 {
  color: #0d0d0d;
  letter-spacing: .09em;
}

.heading-1 small,
.heading-2 small,
.heading-3 small,
.heading-4 small {
  letter-spacing: .11em;
}

.heading-1 {
  display: flex;
  flex-direction: column-reverse;
  font-size: 266%;
}

.heading-1 small {
  display: block;
  font-size: 37.59%;
  color: #8c8c8c;
}

.heading-2 {
  font-size: 226%;
}

.heading-3 {
  position: relative;
  padding-left: 16px;
  font-size: 160%;
}

.heading-3::before {
  content: '';
  position: absolute;
  left: 0;
  top: .4em;
  bottom: .4em;
  display: block;
  width: 4px;
  background-color: #000;
}

.heading-3 small {
  margin-left: .5em;
  color: #8c8c8c;
  font-size: 53.75%;
}

.heading-4 {
  font-size: 133%;
}

@media screen and (max-width: 767px) {

  /* --- page_ttl --- */
  .page_ttl {
    padding: 144px 0 80px 0;
  }

  .page_ttl::before {
    top: 64px;
  }

  .single-works .page_ttl,
  .single-blog .page_ttl {
    padding: 104px 0 40px 0;
  }

  .page_ttl-en {
    font-size: 221%;
  }

  .page_ttl-jp {
    font-size: 100%;
  }

  /* --- section_ttl --- */
  .section_ttl-en {
    font-size: 214%;
  }

  .section_ttl-jp {
    font-size: 100%;
  }

  .section_ttl-line::after {
    margin-top: 24px;
  }

  /* --- heading --- */
  .heading-1 {
    font-size: 200%;
    line-height: 1.7;
  }

  .heading-1 small {
    font-size: 50%;
  }

  .heading-2 {
    font-size: 185%;
  }

  .heading-3 {
    font-size: 157%;
  }

  .heading-3 small {
    font-size: 54%;
  }

  .heading-4 {
    font-size: 128%;
  }
}

/* txt
**************************************** */
.txt-wh {
  color: #fff;
}

.txt-lg {
  font-size: 113%;
}

.txt-sm {
  font-size: 86%;
}

.txt-ctr {
  text-align: center;
}

.txt-rgt {
  text-align: right;
}

.txt-bold {
  font-weight: bold;
}

.txt-attention {
  font-size: 88%;
  color: #999;
}

.txt-attention-kome {
  position: relative;
  padding-left: 1.4em;
}

.txt-attention-kome::before {
  content: '※';
  position: absolute;
  left: 0;
  top: 0;
}

.txtarea {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.txtarea .txt-lg {
  line-height: 2;
}

.txtarea .txt-sm,
.txtarea .txt-attention {
  line-height: 1.92;
}

.txtarea p {
  line-height: 2.26;
  letter-spacing: .06em;
}

.txtarea p:not(.txt-sm) {
  font-family: こぶりなゴシック W6 JIS2004;
}

.txtarea p:not(:last-child) {
  margin-bottom: 1em;
}

.imgarea {
  background-position: center;
  background-size: cover;
}

.font-jp {
  font-family: こぶりなゴシック W3 JIS2004;
}

strong,
.font-jp-b {
  font-family: こぶりなゴシック W6 JIS2004;
}

.font-en {
  font-family: brandon-grotesque, sans-serif;
  font-weight: normal;
}

.font-en-b {
  font-family: brandon-grotesque, sans-serif;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .txtarea p {
    line-height: 2;
  }
}

/* table & list
**************************************** */
table {
  width: 100%;
}

/* --- table_default --- */
.table_default th,
.table_default td {
  padding: 16px 8px;
  border-bottom: 1px solid #E0E0E0;
}

.table_default th {
  min-width: 160px;
  color: #0d0d0d;
  font-size: 106%;
  font-family: こぶりなゴシック W6 JIS2004;
}

.table_default td {
  padding: 16px 16px;
}

/* --- table_simple --- */
.table_simple th,
.table_simple td {
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 24px;
  padding-right: 24px;
}

.table_simple th {
  font-size: 120%;
}

.table_simple td {}

/* --- list ---- */
.list {
  list-style-type: none;
}

.list li:not(:last-child) {
  margin-bottom: 16px;
}

.list li {
  position: relative;
  padding-left: 1.4em;
  font-family: こぶりなゴシック W6 JIS2004;
}

.list-disc li::before,
.list-square li::before,
.list-circle li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .7em;
  width: 8px;
  height: 8px;
  background-color: #000;
}

/* 数字付きリスト */
.list-num {
  padding-left: 1.4em;
  list-style-type: decimal;
}

.list-num li {
  padding-left: 0;
}

.list-num li::before {
  display: none;
}

/* 白丸付きリスト */
.list-circle li::before {
  border: 1px solid #000;
  background-color: transparent;
}

/* 四角付きリスト */
.list-square li::before {
  border-radius: 0;
  background-color: #000;
}

/* 入れ子のスタイル */
.list li ul {
  margin-top: 16px;
}

.list li ul li::before {
  width: 6px;
  height: 6px;
  top: .8em;
}

/* --- dlリスト --- */
.list-dl {
  position: relative;
  border-top: 1px solid #BFBFBF;
}

.list-dl dt {
  position: absolute;
  padding-top: 16px;
  color: #666;
  font-weight: 700;
}

.list-dl dd {
  padding-left: 140px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #BFBFBF;
}

/* btn
**************************************** */
.btn a {
  position: relative;
  display: inline-block;
  width: 260px;
  min-height: 64px;
  overflow: hidden;
  font-size: 93%;
  font-family: brandon-grotesque, sans-serif;
  text-align: center;
  line-height: 1.92;
  letter-spacing: .23em;
  background-color: #999;
}

.btn a span {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 20px 18px;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
}

.btn a span:nth-child(1) {
  left: 0;
}

.btn a span:nth-child(2) {
  width: 120%;
  background-color: #303030;
  transition: all .2s ease;
  transform: translate(-150%, 0) skewX(-30deg);
}

.btn a span:nth-child(3) {
  left: -100%;
}

.btn a:hover span:nth-child(2) {
  transition: all .5s ease;
  transform: translate(-50%, 0) skewX(-30deg);
}

.btn a:hover span:nth-child(3) {
  left: 0;
  transition: left .30000000000000004s ease;
}

@media all and (-ms-high-contrast:none) {
  .btn a:hover span:nth-child(2) {
    transform: translate(-10%, 0) skewX(-30deg);
  }
}

@media screen and (max-width: 767px) {
  .btn a {
    width: 100%;
  }
}

/* ##############################################################################

    HEADER

############################################################################## */
/* header
**************************************** */
.header {
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 104px;
  padding-left: 60px;
  padding-right: 44px;
}

.header--lft {
  position: relative;
  flex: 1;
  height: 60px;
}

.header--rgt {
  margin-left: 24px;
}

.header--logo {
  position: absolute;
  top: 0;
  left: 0;
}

.header.fixed {
  background-color: #fff;
}

.header.fixed .header--logo {
  opacity: 1;
}

.header.fixed .header--logo.logo-wh {
  opacity: 0;
}

@media screen and (max-width: 1080px) {
  .header {
    padding-left: 48px;
    padding-right: 32px;
  }

  .header--lft,
  .header--logo {
    width: 203px;
    height: 50px;
  }
}

@media screen and (max-width: 880px) {
  .header {
    padding-left: 32px;
    padding-right: 16px;
  }
}

@media screen and (max-width: 767px) {

  .header--lft,
  .header--logo {
    width: 172px;
    height: 40px;
  }

  .header--logo.logo-wh {
    display: none;
  }

  .header--lft {
    position: relative;
    z-index: 10;
  }

  .header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 64px;
    background-color: #fff;
  }
}

/* gnav
**************************************** */
.gnav--list li {
  position: relative;
}

.gnav--list li:not(:last-child) {
  margin-right: 24px;
}

.gnav--list a {
  position: relative;
  display: block;
  color: #fff;
  font-size: 106%;
  letter-spacing: .07em;
  line-height: 1;
  padding: 48px 16px 40px 16px;
}

.header_nav .gnav--link span {
  position: relative;
  display: inline-block;
}

.header_nav .gnav--link i {
  position: absolute;
  top: -20px;
  left: calc(50% - 2px / 2);
  display: block;
  width: 2px;
  height: 8px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

.header_nav .gnav--link i::before {
  content: '';
  display: block;
  width: 100%;
  height: 0;
  background-color: #fff;
  transition: .4s ease-out;
}

.header_nav .gnav--link.current i::before {
  height: 100%;
}

/* hover */
@media screen and (min-width: 1140px) {
  .header_nav .gnav--list a:hover i::before {
    height: 100%;
  }
}

.header.fixed .gnav--list a {
  color: #0d0d0d;
}

.header.fixed .gnav--link i::before {
  background-color: #717171;
}

@media screen and (max-width: 1080px) {
  .gnav--list li:not(:last-child) {
    margin-right: 8px;
  }
}

@media screen and (max-width: 880px) and (min-width: 768px) {
  .header_nav {
    font-size: 90%;
  }
}

@media screen and (max-width: 767px) {
  .header {
    height: 64px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .header_nav {
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    font-size: 128%;
    background-color: #fff;
    transition: .4s ease-out;
    pointer-events: none;
  }

  .header_nav .gnav--list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
  }

  .header_nav .gnav--list li {
    width: 100%;
  }

  .header_nav .gnav--list a {
    padding: 24px 16px 24px 16px;
    color: #0d0d0d;
    text-align: center;
  }

  .header_nav .gnav--link i {
    top: calc(50% - 2px / 2);
    left: -26px;
    display: block;
    width: 8px;
    height: 2px;
  }

  .header_nav .gnav--link i::before {
    width: 0;
    height: 100%;
    background-color: #717171;
  }

  .header_nav .gnav--link.current i::before {
    width: 100%;
  }

  .header.active .header_nav {
    opacity: 1;
    pointer-events: all;
  }

  /* --- header--sns --- */
  .header--sns {
    position: fixed;
    bottom: 0;
    z-index: 10;
    width: 100%;
    border-top: 1px solid #e0e0e0;
  }

  .header--sns li {
    width: 50%;
  }

  .header--sns li:not(:last-child) {
    border-right: 1px solid #e0e0e0;
  }

  .header--sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 19px;
  }

  /* --- gnav_btn --- */
  .gnav_btn {
    position: fixed;
    top: 0;
    right: 0;
    width: 64px;
    height: 64px;
    z-index: 9999;
  }

  .gnav_btn--lines {
    position: relative;
    width: 24px;
    height: 16px;
  }

  .gnav_btn--lines span {
    transition: all .4s;
    box-sizing: border-box;
  }

  .gnav_btn--lines span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
  }

  .gnav_btn--lines span:nth-of-type(1) {
    top: 0;
  }

  .gnav_btn--lines span:nth-of-type(2) {
    top: 7px;
  }

  .gnav_btn--lines span:nth-of-type(3) {
    bottom: 0;
  }

  .header.active .gnav_btn--lines span:nth-of-type(1) {
    transform: translateY(7px) rotate(-45deg);
  }

  .header.active .gnav_btn--lines span:nth-of-type(2) {
    opacity: 0;
  }

  .header.active .gnav_btn--lines span:nth-of-type(3) {
    transform: translateY(-7px) rotate(45deg);
  }
}

/* gnav
**************************************** */
#breadcrumbs {
  padding-top: 40px;
  font-size: 86%;
  letter-spacing: .09em;
}

@media screen and (max-width: 767px) {
  #breadcrumbs {
    padding-top: 16px;
  }
}


/* ##############################################################################

    FOOTER

############################################################################## */

/* contact
*************************************************** */
.contact {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f3f3f3;
}

#contact {
  padding-top: 104px;
  margin-top: -104px;
}

.single-works .contact {
  padding-top: 120px !important;
}

.contact .section_ttl-en {
  font-size: 253%;
}

.contact .section_ttl-jp {
  font-size: 106%;
}

.tel_box {
  font-size: 253%;
}

.contact_form {
  padding: 64px;
}

.pbf {
  margin-top: 8px;
  opacity: .5;
}

.pbf img {
  width: 80px;
}

@media screen and (max-width: 767px) {
  .contact {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  #contact {
    padding-top: 64px;
    margin-top: -64px;
  }

  .single-works .contact {
    padding-top: 56px !important;
  }

  .contact_form {
    padding: 16px 24px;
  }
}

/* footer
*************************************************** */
.footer-simple{
  background:#454545;             /* 深蓝底，接近截图 */
  color:#fff;
  padding:48px 0 28px;
  font-weight:500;
}
.footer-simple a{ color:#fff; text-decoration:none; }
.footer-simple a:hover{ text-decoration:underline; }

.footer-simple__inner{
  max-width:1080px;
  margin:0 auto;
  padding:0 20px;
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr; /* 四栏比例 */
  gap:32px 56px;
  align-items:start;
}

.footer-col{ line-height:1.9; }
.footer-ttl{
  font-size:20px;
  font-weight:700;
  margin:0 0 14px;
}
.footer-txt,
.footer-address{
  font-size:14px;
  opacity:.95;
}
.footer-list{
  list-style:none;
  margin:0;
  padding:0;
}
.footer-list li{
  font-size:14px;
  padding:4px 0;
  opacity:.95;
}

/* 版权行 */
.footer-simple__copy{
  border-top:1px solid rgba(255,255,255,.18);
  margin-top:32px;
  padding-top:16px;
  text-align:center;
  color:#e9f1f5;
  font-size:13px;
}

/* 响应式 */
@media (max-width: 1024px){
  .footer-simple__inner{
    grid-template-columns: 1fr 1fr;
    gap:28px;
  }
}
@media (max-width: 640px){
  .footer-simple{
    padding:36px 0 22px;
  }
  .footer-simple__inner{
    grid-template-columns: 1fr;
    gap:22px;
  }
  .footer-ttl{ font-size:18px; }
  .footer-txt,.footer-address,.footer-list li{ font-size:14px; }
}

/* ##############################################################################

    INDEX

############################################################################## */

/* hero
*************************************************** */
.hero {
  height: 100%;
  overflow: hidden;
}

.hero--ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.hero_slide {
  height: 900px;
}

.hero_slide .slick-list {
  position: relative;
  z-index: 0;
}

.hero_slide .slick-list,
.hero_slide .slick-track,
.hero_slide .slick-slide {
  width: 100%;
  height: 100%;
}

.hero_slide--child {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero_slide .slick-dots {
  position: absolute;
  bottom: 74px;
  z-index: 99;
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero_slide .slick-dots li {
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.hero_slide .slick-dots li:not(:last-child) {
  margin-right: 12px;
}

.hero_slide .slick-dots li.slick-active {
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .hero {
    padding-top: 64px;
  }

  .hero_slide {
    height: 600px;
  }
}


/* home
*************************************************** */
.home .section_pdg {
  padding-top: 160px;
  padding-bottom: 160px;
}

@media screen and (max-width: 767px) {
  .home .section_pdg {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}


/* home_message
*************************************************** */
.home_message .section_ttl-en {
  font-size: 293%;
}

.home_message .section_ttl-jp {
  font-size: 106%;
}

.message_box {
  color: #0d0d0d;
  font-size: 113%;
  line-height: 2;
  letter-spacing: .04em;
}

@media screen and (max-width: 767px) {
  .home_message .section_ttl-en {
    font-size: 253%;
  }

  .home_message .section_ttl-jp {
    font-size: 106%;
  }

  .message_box {
    text-align: left;
  }

  .home_message .txtarea p {
    line-height: 1.8;
  }
}

/* home_concept
*************************************************** */
.home_concept,
.home_design {
  padding-bottom: 160px;
}

.content_box {
  position: relative;
  max-height: 740px;
}

.content_box--txt {
  margin-left: 69%;
  padding: 9% 5%;
  flex: 1;
}

.content_box--img {
  max-width: 1320px;
  width: 69%;
  height: 100%;
  max-height: 740px;
  position: absolute;
  top: 0;
  left: 0;
}

.content_box-reverse .content_box--txt {
  margin-left: auto;
  margin-right: 69%;
}

.content_box-reverse .content_box--img {
  left: auto;
  right: 0;
}

.concept--img {
  background-image: url(../image/main6.jpg);
}

.design--img {
  background-image: url(../image/main7.jpg);
}

.profile--img {
  background-image: url(../image/main8.jpg);
}

@media screen and (max-width: 1650px) {
  .content_box--txt {
    margin-left: 60%;
  }

  .content_box--img {
    width: 60%;
  }

  .content_box-reverse .content_box--txt {
    margin-right: 60%;
  }
}

@media screen and (max-width: 1200px) {
  .content_box--txt {
    margin-left: 50%;
  }

  .content_box--img {
    width: 50%;
  }

  .content_box-reverse .content_box--txt {
    margin-right: 50%;
  }
}

@media screen and (max-width: 767px) {

  .home_concept,
  .home_design {
    padding-bottom: 0;
  }

  .home_concept .content_box,
  .home_profile .content_box {
    display: flex;
    flex-direction: column-reverse;
  }

  .home_design .content_box {
    display: flex;
    flex-direction: column-reverse;
  }

  .content_box--txt {
    margin-left: 0;
    max-width: 100%;
  }

  .content_box-reverse .content_box--txt {
    margin-right: 0;
    flex: auto;
    width: 100%;
  }

  .content_box--img {
    position: relative;
    width: 100%;
    height: 54vw;
  }
}

/* home_works
*************************************************** */
.home_works {
  overflow: hidden;
}

.home_works .posts-works .post--txtarea {
  background-color: #fff;
  padding: 40px 0;
  width: 100%;
}

.home_works .posts-works .post--ttl {
  font-size: 120%;
  font-family: brandon-grotesque, こぶりなゴシック W6 JIS2004, sans-serif;
}

.home_works .posts-works .post--img {
  width: 100%;
  height: 700px;
  background-position: center;
  background-size: cover;
}

/* --- works_slide --- */
.works_slide--wrap {
  position: relative;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.works_slide .slick-list {
  margin-left: -160px;
  overflow: visible !important;
}

.works_slide .slick-slide {
  margin-left: 160px;
}

.works_slide--arrows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.works_slide--arrows .slick-arrow {
  position: absolute;
  width: 70px;
  height: 100%;
  pointer-events: auto;
}

.works_slide--arrows .slick-prev {
  left: -70px;
}

.works_slide--arrows .slick-next {
  right: -70px;
}

.works_slide--arrows .slick-arrow::before {
  content: '';
  position: absolute;
  top: calc(50% - 30px / 2);
  display: block;
  width: 30px;
  height: 30px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}

.works_slide--arrows .slick-prev::before {
  left: 14px;
  transform: rotate(225deg);
}

.works_slide--arrows .slick-next::before {
  right: 14px;
  transform: rotate(45deg);
}

@media screen and (max-width: 1600px) {
  .home_works {
    width: 100%;
    padding-left: 7%;
    padding-right: 7%;
  }

  .works_slide--wrap {
    width: calc(100% - 10%);
    margin-bottom: 0;
  }

  .home_works .posts-works .post--img {
    height: 480px;
  }

  .works_slide .slick-list {
    margin-left: -100px;
  }

  .works_slide .slick-slide {
    margin-left: 100px;
  }

  .works_slide--arrows .slick-arrow::before {
    top: calc(50% - 20px / 2);
    width: 20px;
    height: 20px;
  }

  /* --- works_slide --- */
  .home_works .posts-works .post {
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .home_works .section_ttl-en {
    font-size: 253%;
  }

  .home_works .section_ttl-jp {
    font-size: 106%;
  }

  .home_works .posts-works .post--img {
    height: 50vw;
  }

  .works_slide--arrows .slick-prev {
    left: -40px;
  }

  .works_slide--arrows .slick-next {
    right: -40px;
  }
}

/* home_blog
*************************************************** */
.home_blog {
  padding-bottom: 200px;
}

.home_blog .posts-blog .post {
  width: calc(50% - 32px);
  padding-bottom: 24px;
  padding-top: 24px;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}

.home_blog .posts-blog .post:not(:first-child) {
  padding-top: 24px;
}

.home_blog .posts-blog .post--img {
  width: 160px;
  height: 160px;
  margin-right: 24px;
  padding-left: 40px;
}

.home_blog .posts-blog {
  margin-bottom: 14px;
}

.home_blog .posts-blog .post {
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}

.home_blog .posts-blog .post--date {
  margin-bottom: 0;
}

.home_blog .posts-blog .post--sep {
  display: none;
}

.home_blog .posts-blog .cat_list {
  display: none;
}

@media screen and (max-width: 767px) {
  .home_blog {
    padding-bottom: 56px;
  }

  .home_blog .section_ttl-en {
    font-size: 253%;
  }

  .home_blog .section_ttl-jp {
    font-size: 106%;
  }

  .home_blog .posts-blog .post {
    width: 100%;
    padding-bottom: 8px;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .home_blog .posts-blog .post:not(:first-child) {
    padding-top: 8px;
  }

  .home_blog .posts-blog .post--txt {
    display: none;
  }

  .home_blog .posts-blog .post--img {
    width: 100px;
    height: 100px;
  }
}

/* ##############################################################################

    PAGE

############################################################################## */

/* about
*************************************************** */
.about {
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  left: 0;
  top: -64px;
  width: 62.5%;
  height: 100%;
  z-index: -2;
  max-height: 620px;
  background: #f8f8f8;
}

.about .concept_txt,
.about .about_design p {
  color: #4a4a4a;
}

.inner_concept {
  width: calc(100% - 256px);
  max-width: 1387px;
  margin: 0 auto;
}

.concept_lst li {
  width: calc(100% / 3.1);
}

.concept_lst li:nth-child(n + 2) {
  margin-left: 56px;
}

.concept_ttl {
  color: #0D0D0D;
  font-size: 254%;
  line-height: 1.4;
}

.concept_img {
  margin-left: auto;
  margin-right: auto;
  display: table;
}

.about .content_box {
  max-height: 620px;
  margin-bottom: 160px;
  position: relative;
}

.about_design .content_box--txt {
  margin-left: 56%;
}

.about_design .content_box--img {
  max-width: 1080px;
  width: 56%;
  max-height: 620px;
}

.about_design .content_box-reverse .content_box--txt {
  margin-left: auto;
  margin-right: 56%;
  flex: 1;
}

.about_design .content_box-reverse .content_box--img {
  left: auto;
  right: 0;
}

.point01--img {
  background-image: url(../image/about_design_point01.jpg);
}

.point02--img {
  background-image: url(../image/about_design_point02.jpg);
}

.point03--img {
  background-image: url(../image/about_design_point03.jpg);
}

.point04--img {
  background-image: url(../image/about_design_point04.jpg);
}

.about .content_box:last-child {
  margin-bottom: 0;
}

.about_design .img_lst {
  max-width: 1400px;
  margin: 0 auto;
}

.about_design .img_lst li:nth-child(n + 2) {
  margin-left: 10px;
}

.about_design .container {
  max-width: 1400px;
  margin: 0 auto;
}

.about_design .container .txtarea {
  max-width: 800px;
}

.about_design .container .txtarea .heading-1,
.about_design .container .txtarea>div,
.about_design .container .txtarea .heading-4 {
  text-align: center;
}

.about_passive {
  background: #EFEFEF;
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about_passive li {
  margin-right: 16px;
  counter-increment: title;
  font-size: 105%;
}

.about_passive li::before {
  content: ""counter(title);
  margin-right: 4px;
  font-family: brandon-grotesque, sans-serif;
  font-weight: bold;
  border-radius: 50%;
  border: 1px solid #4a4a4a;
  width: 15px;
  letter-spacing: .01em;
  line-height: 1.2em;
  display: inline-block;
  height: 15px;
  font-size: 70%;
}

@media all and (-ms-high-contrast: none) {
  .about_passive li::before {
    line-height: 1.3em;
  }
}

.about_passive li:last-child {
  margin-right: 0;
}

.section--bg {
  background: url(../image/img_office.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 50vw;
}

.about_office .section_pdg {
  padding-bottom: 0;
}

.table_office {
  max-width: 800px;
  margin: 0 auto 80px;
}

.table_office th,
.table_office td {
  text-align: left;
}

.table_office th {
  padding: 24px 78px;
}

.table_office td {
  color: #4a4a4a;
  padding: 24px 8px;
}

.table_office tr:last-child th,
.table_office tr:last-child td {
  border-bottom: none;
}

.table_office td a {
  text-decoration: underline;
}

.map {
  margin: 0 auto;
  position: relative;
}

.map iframe {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  width: 100%;
}

#about_feature4 {
  padding-top: 104px;
  margin-top: -104px;
}

.inner_profile {
  max-width: 1300px;
}

.inner_profile .section_ttl {
  margin-bottom: 128px;
}

.profile_content>div {
  width: 50%;
}

.profile_content--img {
  background-image: url(../image/img_profile.jpg);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center center;
  max-width: 600px;
  max-height: 574px;
}

.profile_content--txt {
  padding-left: 120px;
  flex: 1;
}

.profile--name {
  font-size: 270%;
  color: #0D0D0D;
  line-height: 1.65;
}

.profile--name small {
  display: block;
  font-size: 36%;
  color: #8C8C8C;
}

.about_profile .heading-3 {
  padding-left: 28px;
}

.about_profile .heading-3 small {
  margin-left: 1.5em;
}

.dl-office,
.dl-profile {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  max-width: 580px;
}

.dl-profile dt {
  width: 26%;
  padding: 2px 4px;
  font-size: 120%;
  color: #0D0D0D;
  line-height: 48px;
}

.dl-profile dd {
  width: 74%;
  padding: 10px 4px;
  color: #4a4a4a;
}

@media screen and (min-width: 1650px) {
  .about_design .content_box-reverse .content_box--txt {
    flex: 1 0 auto;
  }
}

@media screen and (max-width: 1650px) {
  .about_design .content_box--txt {
    margin-left: 60%;
  }

  .about_design .content_box--img {
    width: 60%;
  }

  .about_design .content_box-reverse .content_box--txt {
    margin-right: 60%;
  }
}

@media screen and (max-width: 1200px) {
  .concept_lst li:nth-child(n + 2) {
    margin-left: 32px;
  }

  .concept_ttl {
    font-size: 180%;
  }

  .about_design .content_box--txt {
    margin-left: 50%;
  }

  .about_design .content_box--img {
    width: 50%;
  }

  .about_design .content_box-reverse .content_box--txt {
    margin-right: 50%;
  }
}

@media screen and (max-width: 1100px) {
  .inner_concept {
    width: 90%;
  }

  .profile_content {
    flex-direction: column;
    width: 100%;
  }

  .profile_content>div {
    width: 100%;
  }

  .profile_content--img {
    background-image: url(../image/img_profile_sp.jpg);
    margin: 0 auto;
    width: 420px;
    height: 402px;
  }

  .profile_content--txt {
    margin-top: 60px;
    flex: auto;
    padding-left: 0;
  }

  .inner_profile .section_ttl {
    margin-bottom: 48px;
  }
}

@media screen and (max-width: 767px) {
  .concept_lst {
    flex-direction: column;
  }

  .concept_lst li {
    flex-direction: column;
    width: 100%;
    margin-bottom: 56px;
  }

  .concept_lst li:nth-child(n + 2) {
    margin-left: 0;
  }

  .concept_lst li:last-child {
    margin-bottom: 0;
  }

  .concept_ttl {
    text-align: center;
  }

  .concept_txt {
    text-align: center;
  }

  .about .section_pdg {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about .about_design.section_pdg,
  .about .about_office .section_pdg {
    padding-bottom: 0;
  }

  .about .content_box {
    max-height: 740px;
  }

  .about_design .content_box {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 0;
  }

  .about_design .content_box--txt {
    margin-left: 0;
    max-width: 100%;
  }

  .about_design .content_box-reverse .content_box--txt {
    margin-left: 0;
    margin-right: 0;
  }

  .about_design .content_box--img {
    position: relative;
    width: 100%;
    height: 54vw;
  }

  .about_design .container {
    padding: 9% 5%;
    margin-bottom: 0;
  }

  .about_design .container .txtarea {
    max-width: 100%;
  }

  .about_design .img_lst li {
    margin-bottom: 16px;
  }

  .about_design .img_lst li:nth-child(n + 2) {
    margin-left: 0;
  }

  .about_design .img_lst li:last-child {
    margin-bottom: 0;
  }

  .about_design .container .txtarea .heading-1,
  .about_design .container .txtarea>div,
  .about_design .container .txtarea .heading-4 {
    text-align: left;
  }

  .about_passive {
    padding: 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .about_passive li {
    margin-right: 0;
    margin-bottom: 8px;
  }

  .table_office {
    margin: 0 auto 40px;
  }

  .table_office th {
    width: 30%;
    min-width: 120px;
    padding: 24px 8px;
  }

  #about_feature4 {
    padding-top: 64px;
    margin-top: -64px;
  }

  .profile_content--img {
    width: 320px;
    height: 306px;
  }

  .dl-profile dt {
    width: 100%;
  }

  .dl-profile dd {
    width: 100%;
  }

  .about .concept_txt {
    text-align: justify;
  }

  .about_ttl {
    text-align: left;
  }

  .about_ttl br {
    display: none;
  }

}

/* flow
*************************************************** */
.flow_about {
  margin-top: 40px;
}

.flow .content_box {
  max-height: 100%;
  margin-bottom: 48px;
}

.flow .content_box:last-child {
  margin-bottom: 0;
}

.flow .content_box--txt {
  margin-left: 50%;
  padding: 4% 5% 4% 4%;
  max-width: none;
}

.flow .content_box--img {
  width: 50%;
  max-height: 100%;
}

.step01--img {
  background-image: url(../image/flow_img01.jpg);
  background-position: top right;
}

.step02--img {
  background-image: url(../image/flow_img02.jpg);
}

.step03--img {
  background-image: url(../image/flow_img03.jpg);
}

.flow .content_box-reverse .content_box--txt {
  margin-left: auto;
  margin-right: 50%;
  padding: 4% 5% 4% 4%;
}

.flow_lst li {
  position: relative;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  padding-bottom: 40px;
}

.flow_lst li a {
  position: relative;
}

.flow_lst li a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  height: 1px;
  width: 100%;
  background-color: #3F3F3F;
}

.flow_lst li:last-child {
  padding-bottom: 0;
}

.flow_lst li:not(:last-child)::before {
  content: "";
  display: block;
  border-left: 1px solid #eee;
  position: absolute;
  top: 1px;
  left: 20px;
  height: 100%;
  z-index: -2;
}

.flow_lst p {
  padding-left: 56px;
}

.flex-reverse .flow_lst::before {
  left: 20px;
}

.flow_ttl {
  color: #0d0d0d;
  font-size: 134%;
}

.flow_ttl .number {
  position: relative;
  line-height: 40px;
  width: 40px;
  height: 40px;
  text-align: center;
  margin-right: 16px;
}

.flow_ttl .number::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: #eee;
  border-radius: 50%;
  content: "";
  z-index: -2;
}

.step_ttl {
  line-height: 1.6;
}

.flow--fee {
  background: #eee;
  padding: 24px 32px;
  text-align: center;
}

.fee_ttl {
  font-size: 130%;
}

@media screen and (max-width: 1300px) {
  .flow .content_box {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 0;
  }

  .flow .content_box .heading-1 {
    text-align: center;
  }

  .flow .content_box-reverse {
    display: flex;
    flex-direction: column-reverse;
  }

  .flow .content_box--txt,
  .flow .content_box-reverse .content_box--txt {
    margin: 0 auto;
    max-width: 100%;
  }

  .flow .content_box--img {
    position: relative;
    width: 100%;
    height: 50vw;
  }

  .step01--img {
    background-position: center center;
  }

  .step02--img {
    background-position: center bottom;
  }
}

@media screen and (max-width: 787px) {

  .flow .content_box--txt,
  .flow .content_box-reverse .content_box--txt {
    padding: 5%;
  }
}

@media screen and (max-width: 767px) {
  .flow_about {
    margin-top: 16px;
  }

  .flow--fee {
    text-align: left;
  }
}

/* ##############################################################################

    ARCHIVE

############################################################################## */

/* main_column
**************************************** */
.main_column {
  flex: 1;
  margin-right: 80px;
}

.archive-works .main_column,
.single-works .main_column {
  flex: none;
}

/* --- post --- */
.post {
  position: relative;
}

.post--link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: .4s ease-out;
}

.post--link:hover::before {
  background-color: rgba(255, 255, 255, .56);
}

.post .post--img img {
  overflow: hidden;
}

.cat_list {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-left: 8px;
}

.cat_list a {
  display: inline-block;
  float: left;
  margin-right: 4px;
  margin-bottom: 4px;
  color: #999;
  font-size: 86%;
  line-height: 1;
  white-space: nowrap;
}

.cat_list a:not(:last-child)::after {
  content: ',';
}

@media screen and (max-width: 1100px) {
  .main_column {
    width: 100%;
    margin-right: 0;
  }
}

/* side_column
**************************************** */
.side_column {
  width: 264px;
}

.side_section:not(:last-child) {
  margin-bottom: 80px;
}

.side--ttl {
  color: #0d0d0d;
  font-size: 160%;
  letter-spacing: .11em;
  line-height: 1;
  margin-bottom: 32px;
}

.side--ttl::after {
  content: '';
  display: block;
  width: 16px;
  height: 4px;
  margin-top: 24px;
  background-color: #000;
}

.side--ttl small {
  display: block;
  margin-top: 16px;
  color: #0d0d0d;
  font-size: 53.75%;
  line-height: 1;
  letter-spacing: .09em;
}

/* --- post --- */
.posts-side .post:not(:last-child) {
  margin-bottom: 16px;
}

.posts-side .post--img {
  margin-right: 16px;
  width: 64px;
  height: 64px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(https://fu-design.jp/wp/wp-content/themes/original_theme/images/common/no_image.png);
}

.posts-side .txtarea {
  flex: 1;
}

.posts-side .post--date {
  margin-bottom: 0;
}

.posts-side .post--ttl {
  line-height: 1.4;
  color: #0d0d0d;
}

.archive-works .side_column {
  padding-top: 80px;
}

/* --- archive --- */
.side_column .archive_list--ttl::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(135deg);
  transition: .4s ease-out;
}

.side_column .archive_list--ttl.active::after {
  transform: rotate(315deg);
}

.side_column .archive_month {
  display: none;
}

@media screen and (max-width: 1100px) {
  .side_column {
    width: 100%;
    padding-top: 80px;
  }

  .posts-side .txtarea {
    max-width: 100%;
  }
}

/* --- side--list --- */
.side--list a {
  color: #0d0d0d;
  display: block;
  padding-bottom: 8px;
}

/* blog
**************************************** */
.posts-blog .post {
  padding-bottom: 64px;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.posts-blog .post:not(:first-child) {
  padding-top: 64px;
}

.posts-blog .post--txtarea {
  flex: 1;
}

.posts-blog .post--ttl {
  font-size: 120%;
  letter-spacing: .09em;
  line-height: 1.5;
}

.posts-blog .post--date {
  color: #0d0d0d;
  margin-right: 8px;
  font-weight: bold;
  margin-bottom: 4px;
  letter-spacing: .13em;
}

.posts-blog .post--txt {
  color: #6e6e6e;
  line-height: 1.92;
  letter-spacing: .09em;
}

.posts-blog .post--img {
  overflow: hidden;
  flex-shrink: 0;
  background-position: center;
  background-size: cover;
  background-image: url(https://fu-design.jp/wp/wp-content/themes/original_theme/images/common/no_image.png);
}

.posts-blog .post--img img {
  width: 280px;
  height: auto;
}

.home .posts-blog .post--txt {
  font-size: 86%;
}

.home .posts-blog .post--ttl {
  margin-bottom: 24px;
}

.subpage .posts-blog .post {
  border-bottom: 1px solid #eee;
}

.subpage .posts-side .post--date {
  color: #0d0d0d;
}

.subpage .posts-blog .post--ttl,
.subpage .posts-works .post--ttl {
  color: #0d0d0d;
  font-size: 213%;
  font-family: brandon-grotesque, こぶりなゴシック W6 JIS2004, sans-serif;
}

.subpage .posts-blog .post--top {
  margin-bottom: 16px;
}

.subpage .posts-blog .post--img,
.subpage .posts-works .post--img {
  width: 300px;
  height: 300px;
  margin-right: 64px;
}

.single-works .inner_works {
  padding-top: 140px;
}

.single-works .section_pdg {
  padding-top: 0;
}

.archive-works .main_column,
.single-works .main_column {
  margin-right: 0;
}

.archive-works .side_column,
.single-works .side_column {
  width: 100%;
}

.subpage .posts-works .post {
  position: relative;
  width: 50%;
  height: 400px;
  border-left: 8px solid #fff;
  border-right: 8px solid #fff;
  border-bottom: 16px solid #fff;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-image: url(https://fu-design.jp/wp/wp-content/themes/original_theme/images/common/no_image.png);
}

.archive-works .posts-works .post--ttl {
  font-size: 120%;
  font-family: brandon-grotesque, こぶりなゴシック W6 JIS2004, sans-serif;
}

.archive-works side_section,
.single-works side_section {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  font-size: 90%;
}

.archive-works .side--ttl::after,
.single-works .side--ttl::after {
  display: none;
}

.archive-works .side--ttl,
.single-works .side--ttl {
  margin-bottom: 8px;
  position: relative;
}

.archive-works .side--list a,
.single-works .side--list a {
  padding: 10px 40px 8px 0;
  position: relative;
  font-family: brandon-grotesque, こぶりなゴシック W6 JIS2004, sans-serif;
  font-weight: bold;
}

.archive-works .side--list a::before,
.single-works .side--list a::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 1px;
  height: 45%;
  background: #4a4a4a;
  transform: skew(-15deg);
}

.archive-works .side--list li:last-child a::before,
.single-works .side--list li:only-child a::before {
  display: none;
}

.archive-works .posts-works .cat_list a {
  margin-right: 0;
  margin-bottom: 0;
}

.single-works .cat_list {
  margin-left: 0;
}

.single-works .table_default {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.single-blog .wp-pagenavi-single,
.single-works .wp-pagenavi-single {
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-blog .wp-pagenavi-single .txt-ctr,
.single-works .wp-pagenavi-single .txt-ctr {
  font-weight: 700;
  font-family: brandon-grotesque, こぶりなゴシック W6 JIS2004, sans-serif;
}

.single-blog .wp-pagenavi-single>*,
.single-works .wp-pagenavi-single>* {
  width: 120px;
}

.single-blog .wp-pagenavi-single>* a,
.single-works .wp-pagenavi-single>* a {
  max-width: none;
  line-height: 2;
}

.single-blog .wp-pagenavi-single>*:nth-child(1) a small,
.single-works .wp-pagenavi-single>*:nth-child(1) a small {
  padding-left: 8px;
}

.single-blog .wp-pagenavi-single>*:nth-child(3) a small,
.single-works .wp-pagenavi-single>*:nth-child(3) a small {
  padding-right: 8px;
}

.single-blog .wp-pagenavi-single>* a,
.single-works .wp-pagenavi-single>* a {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.single-blog .wp-pagenavi-single>*:nth-child(1) a::before,
.single-blog .wp-pagenavi-single>*:nth-child(3) a::after,
.single-works .wp-pagenavi-single>*:nth-child(1) a::before,
.single-works .wp-pagenavi-single>*:nth-child(3) a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
}

.single-blog .wp-pagenavi-single>*:nth-child(1) a::before,
.single-works .wp-pagenavi-single>*:nth-child(1) a::before {
  left: 12px;
  border-left: 1px solid #303030;
  border-bottom: 1px solid #303030;
}

.single-blog .wp-pagenavi-single>*:nth-child(3) a::after,
.single-works .wp-pagenavi-single>*:nth-child(3) a::after {
  right: 12px;
  border-top: 1px solid #303030;
  border-right: 1px solid #303030;
}

.single-blog .wp-pagenavi-single>*:nth-child(1) a:hover::before,
.single-works .wp-pagenavi-single>*:nth-child(1) a:hover::before {
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.single-blog .wp-pagenavi-single>*:nth-child(3) a:hover::after,
.single-works .wp-pagenavi-single>*:nth-child(3) a:hover::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

@media screen and (max-width: 1100px) {
  .posts-blog {
    margin-bottom: 16px;
  }

  .posts-blog .post--sep {
    display: none;
  }


  .posts-blog .post--info {
    display: block;
    margin-bottom: 16px;
    line-height: 1.4;
  }

  .subpage .posts-blog .post--info::after {
    content: '';
    display: block;
    width: 10px;
    height: 1px;
    background-color: #aaa;
  }

  .posts-blog .cat_list {
    margin-left: 0;
    margin-bottom: 8px;
  }


  .archive-blog .inner.flex,
  .single-blog .inner.flex {
    display: block;
  }

  .single-works .posts-blog {
    margin-bottom: 0;
  }

  .subpage .posts-works .post {
    width: 100%;
    border-left: none;
    height: 54vw;
  }
}

@media screen and (max-width: 768px) {
  .posts-blog .post {
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .home .posts-blog .post:not(:first-child) {
    padding-top: 8px;
  }

  .subpage .posts-blog .post {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .posts-blog .post--img {
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 16px;
    text-align: center;
  }

  .posts-blog .post--img img {
    width: auto;
    max-width: 100%;
  }

  .posts-blog .post--txt {
    display: none;
  }

  .single-works .inner_works {
    padding-top: 56px;
  }

  .subpage .posts-blog .post--img {
    width: 100px;
    height: 100px;
    margin-right: 24px;
    margin-left: 0;
    margin-top: 16px;
  }

  .subpage .posts-works .post--img {
    margin-right: 0;
    margin-left: 0;
  }

  .subpage .posts-blog .post--ttl,
  .subpage .posts-works .post--ttl {
    font-size: 110%;
  }

  .subpage .posts-works .post {
    width: 100%;
    border-left: none;
    border-right: none;
  }

  .single-blog .wp-pagenavi-single>* a,
  .single-works .wp-pagenavi-single>* a {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .section_pdg {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* ##############################################################################

    SINGLE

############################################################################## */
.wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}

.wp-pagenavi .pages {
  display: none;
}

.wp-pagenavi .current,
.wp-pagenavi a:hover {
  color: #fff;
  background-color: #303030;
}

.wp-pagenavi a,
.wp-pagenavi span {
  position: relative;
  max-width: 42%;
  display: inline-block;
  vertical-align: top;
  height: 48px;
  padding: 8px 16px;
  margin: 0 8px 0;
  overflow: hidden;
  color: #303030;
  letter-spacing: .23em;
  text-indent: .23em;
  text-overflow: ellipsis;
  text-align: center;
  white-space: nowrap;
  border: 1px solid #303030;
  line-height: 2;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  width: 80px;
}

@media only screen and (max-width: 767px) {
  .wp-pagenavi {
    margin-bottom: 40px;

  }

  .wp-pagenavi a,
  .wp-pagenavi span {
    padding: 4px 12px;
    margin: 0 8px 4px 0;
    max-width: none;
    height: auto;
    margin-bottom: 8px;
  }
}

/* slick
**************************************** */
.single-works .slick-loading .slick-list {
  background: #fff url(https://fu-design.jp/wp/wp-content/themes/original_theme/css/ajax-loader.gif) center center no-repeat;
}

@font-face {
  font-family: 'slick';
  font-weight: normal;
  font-style: normal;
  src: url(https://fu-design.jp/wp/wp-content/themes/original_theme/css/fonts/slick.eot);
  src: url(https://fu-design.jp/wp/wp-content/themes/original_theme/css/fonts/slick.eot?) format('embedded-opentype'), url(https://fu-design.jp/wp/wp-content/themes/original_theme/css/fonts/slick.woff) format('woff'), url(https://fu-design.jp/fonts/slick.ttf) format('truetype'), url(https://fu-design.jp/wp/wp-content/themes/original_theme/css/fonts/slick.svg) format('svg');
}

.single-works .slick-prev,
.single-works .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 36px;
  height: 36px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 9999;
}

.single-works .slick-prev:hover,
.single-works .slick-prev:focus,
.single-works .slick-next:hover,
.single-works .slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.single-works .slick-prev:hover::before,
.single-works .slick-prev:focus::before,
.single-works .slick-next:hover::before,
.single-works .slick-next:focus::before {
  opacity: 1;
}

.single-works .slick-prev.slick-disabled::before,
.single-works .slick-next.slick-disabled::before {
  opacity: .25;
}

.single-works .slick-prev::before,
.single-works .slick-next::before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  border-left: 1px solid #0d0d0d;
  border-top: 1px solid #0d0d0d;
  line-height: 1;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  z-index: 10000;
}

.single-works .slick-next::before {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.single-works .slick-prev {
  right: 50%;
  margin-right: 672px;
}

.single-works [dir='rtl'] .slick-prev {
  right: 0;
  left: auto;
}

.single-works .slick-next {
  left: 50%;
  margin-left: 672px;
}

.single-works [dir='rtl'] .slick-next {
  right: auto;
  left: 0;
}

.single-works .slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.single-works .slick-dots {
  display: block;
  position: absolute;
  z-index: 999;
  bottom: -72px;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.single-works .slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 4px 0 0;
  padding: 0;
  cursor: pointer;
}

.single-works .slick-dots li button {
  display: block;
  font-size: 120%;
  width: 56px;
  cursor: pointer;
  border: 0;
  outline: none;
  background: transparent;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: italic;
}

.single-works .slick-dots li button:hover,
.single-works .slick-dots li button:focus {
  outline: none;
}

.single-works .slick-dots li.slick-active button {
  opacity: 1;
  color: #DE6800
}

@media screen and (max-width: 767px) {
  .single-works .slick-next {
    left: auto;
    right: 0;
    margin: 0;
  }

  .single-works .slick-prev {
    right: auto;
    left: 0;
    margin: 0;
  }
}

.single-works .slick-gallery .imgarea {
  display: inline-block;
  width: 1315px;
  max-height: 700px;
  height: 50vw;
  object-fit: cover;
  background: #fff center no-repeat;
  margin: 0 40px;
}

.single-works .slick-gallery-thumb {
  max-width: 1024px;
  width: calc(100% - 80px);
  margin-left: auto;
  margin-right: auto;
}

.single-works .slick-gallery-thumb .thumb,
.single-works .slick-gallery-thumb .thumb.slick-active {
  height: 120px;
  margin: 4px;
  background: center no-repeat;
  background-size: cover;
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: .4s ease-out;
}

.single-works .slick-gallery-thumb .thumb.slick-current {
  -ms-filter: grayscale(0%);
  filter: grayscale(0%);
}

@media only screen and (max-width: 1460px) {
  .single-works .slick-gallery .slick-list {
    padding: 0 10% !important;
  }

  .single-works .slick-gallery .slick-next {
    left: auto;
    right: 9.5%;
    margin-left: 0;
  }

  .single-works .slick-gallery .slick-prev {
    right: auto;
    left: 9.5%;
    margin-right: 0;
  }
}

@media only screen and (max-width: 1100px) {
  .single-works .slick-gallery-thumb {
    max-width: 864px;
  }

  .single-works .slick-gallery-thumb .thumb,
  .single-works .slick-gallery-thumb .thumb.slick-active {
    height: 100px;
  }
}

@media screen and (max-width: 767px) {
  .single-works .gallery_mainimage {
    margin-bottom: 48px;
  }

  .single-works .gallery_mainimage {
    margin-bottom: 48px;
  }

  .single-works .slick-gallery .slick-list {
    padding: 0 !important;
  }

  .single-works .slick-gallery .imgarea {
    width: 100%;
    height: 280px;
    margin: 0;
    border-right: 0;
    border-left: 0;
    background-size: cover;
  }

  .single-works .slick-gallery-thumb {
    width: 100%;
  }

  .single-works .slick-gallery-thumb .thumb,
  .single-works .slick-gallery-thumb .thumb.slick-active {
    height: 84px;
  }

  .single-works .gallery_mainimage .slick-prev,
  .single-works .gallery_mainimage .slick-next {
    display: none !important;
  }
}

/* ##############################################################################

    FORMY

############################################################################## */
#formy_form table {
  width: 100%;
}

#formy_form th,
#formy_form td {
  padding: 16px;
  vertical-align: middle;
  border-bottom: solid 1px #eee;
}

#formy_form th {
  font-weight: bold;
  white-space: nowrap;
  text-align: left;
  width: 34%;
}

#formy_form table input[type="text"],
#formy_form table input[type="email"],
#formy_form table input[type="tel"],
#formy_form table input[type="date"],
#formy_form table input[type="password"],
#formy_form table textarea {
  width: 100%;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  vertical-align: bottom;
}

#formy_form table input[type="text"],
#formy_form table input[type="email"],
#formy_form table input[type="tel"],
#formy_form table input[type="date"],
#formy_form table input[type="password"],
#formy_form select,
#formy_form textarea {
  margin: 0;
  padding: 5px 15px;
  border: 1px solid #ccc;
  font: inherit;
  font-size: 100%;
}

#formy_form textarea {
  height: 100px;
}

#formy_form select {
  height: 40px;
}

#formy_form ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#formy_form input:hover {
  opacity: .7;
}

#formy_form textarea:hover {
  opacity: .7;
}

#formy_form input:focus {
  outline: none;
}

#formy_form .parsley-validated {
  background-color: #eee;
}

#formy_form .parsley-error {
  background-color: #fee;
}

#formy_form .parsley-success {
  background-color: #fff;
}

.help_text {
  font-size: 85%;
  color: #999;
}

.hidden_help {
  display: none;
}

.formy_privacy div {
  overflow-y: scroll;
  height: 140px;
  border: solid 1px #ccc;
  font-size: 85%;
  padding: 8px 16px;
}

.requiredIcon {
  background: #f55;
  color: #fff;
  margin: 0 0 0 1em;
  font-size: 70%;
  padding: 2px 5px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  float: right;
}

#formy_btn {
  padding-top: 32px;
  text-align: center;
}

#formy_btn input {
  min-width: 220px;
  padding: 16px 32px;
  margin-right: 4px;
  margin-left: 4px;
  border: none;
  border-radius: 3px;
  color: #fff;
  font-size: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

#formy_form ul li input[type="radio"],
#formy_form ul li input[type="checkbox"] {
  display: none !important;
}

#formy_form ul li label {
  height: 40px;
  line-height: 40px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 0 8px 0 24px;
  cursor: pointer;
}

#formy_form ul li label:hover {
  opacity: .7;
}

#formy_form ul li label::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid #788b93;
  left: 0;
  top: 12px;
}

#formy_form ul li input[type="radio"]+label::before {
  border-radius: 10px;
}

#formy_form ul li input[type="radio"]:checked+label,
#formy_form ul li input[type="checkbox"]:checked+label {
  color: #e75f5f;
  font-weight: bold;
}

#formy_form ul li input[type="radio"]:checked+label::before,
#formy_form ul li input[type="checkbox"]:checked+label::before {
  border-color: #e75f5f;
}

#formy_form ul li input[type="radio"]:checked+label::after,
#formy_form ul li input[type="checkbox"]:checked+label::after {
  content: "";
  width: 10px;
  height: 18px;
  top: 4px;
  left: 4px;
  border-right: 2px solid #e75f5f;
  border-bottom: 2px solid #e75f5f;
  display: block;
  position: absolute;
  z-index: 10;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.formy_confirm {
  background-color: #4dbaff;
}

.formy_submit_disabled {
  background-color: #ccc;
}

#formy_btn .formy_submit_disabled:hover {
  opacity: 1;
  cursor: default;
}

.autoConfirmBack {
  background-color: #aaa;
}

.formy_send {
  background-color: #ff6600;
}

#total_required {
  padding: 16px;
  color: #f55555;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  #formy_form {
    padding: 0;
  }

  #formy_form th,
  #formy_form td {
    display: block;
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }

  #formy_form th {
    border-bottom: none;
    padding-bottom: 4px;
    white-space: normal;
    font-weight: bold;
  }

  #formy_form td {
    padding-top: 0;
  }

  #formy_btn {
    padding-top: 8px;
  }

  #formy_btn input {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    background-size: contain;
    background-position: center;
  }

  #formy_form ul li label {
    font-size: 85%;
  }
}