/* ##############################################################################

    KEYFRAMES

############################################################################## */

  .home .fadein {
    opacity : 0;
    transform : translate(0, 60px);
    transition: all 1.2s cubic-bezier(.165, .84, .44, 1);
  }
  .home .fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
  }


/* ##############################################################################

    COMMON

############################################################################## */

  html {
    height: 100%;
    overflow-y: scroll;
  }
  body {
    height: 100%;
    font-family: 'Koburina Gothic W6 JIS2004';
  }
  body:not(.page-contact):not(.page-estimate):not(.page-entry) {
    padding-top: 136px;
  }
  @media screen and (max-width: 767px) {
    body:not(.page-contact):not(.page-estimate):not(.page-entry) {
      padding-top: 0;
    }
  }

/* layout
**************************************** */

  /* --- inner --- */
  .inner {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .inner-sm { max-width: 950px; }
  .inner-lg { max-width: calc(100% - 112px); }

  /* --- section_pdg --- */
  .section_pdg {
    padding-top: 152px;
    padding-bottom: 152px;
  }
  .archive .section_pdg,
  .single .section_pdg,
  .page-contact .section_pdg,
  .page-estimate .section_pdg,
  .page-entry .section_pdg {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  @media screen and (max-width: 1080px) {
    .inner { width: 90%; }
  }
  @media screen and (max-width: 767px) {
    /* --- section_pdg --- */
    .section_pdg,
    .archive .section_pdg,
    .single .section_pdg,
    .page-contact .section_pdg,
    .page-estimate .section_pdg,
    .page-entry .section_pdg {
      padding-top: 40px;
      padding-bottom: 40px;
    }
  }

/* flex
**************************************** */

  /* --- ざっくりflexレイアウト --- */
  .flex-col1 {
    display: block;
  }
  .flex-col2,
  .flex-col3,
  .flex-col4 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-col2 > * {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flex-col2 > *:nth-child(even) { margin-right: 0; }
  .flex-col2 > *:nth-last-child(-n+2) { margin-bottom: 0; }
  .flex-col3 > * {
    width: 32%;
    margin-right: 1.5%;
    margin-bottom: 1.5%;
  }
  .flex-col3 > *:nth-child(3n) { margin-right: 0; }
  .flex-col3 > *:nth-last-child(-n+3) { margin-bottom: 0; }
  .flex-col4 > * {
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 2%;
  }
  .flex-col4 > *:nth-child(4n) { margin-right: 0; }

  @media screen and (max-width: 767px) {

    /* --- ざっくりflexレイアウト - sp --- */
    .flex-col2.flex-sp-block > *,
    .flex-col3.flex-sp-block > *,
    .flex-col4.flex-sp-block > * {
      width: 100%;
      margin-bottom: 16px;
      margin-right: 0;
    }
    .flex-col2.flex-sp-block > *:last-child,
    .flex-col3.flex-sp-block > *:last-child,
    .flex-col4.flex-sp-block > *:last-child {
      margin-bottom: 0;
    }
    .flex-sp-col2 > *,
    .flex-sp-col2.flex-col3 > *:nth-child(3n) {
      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) {
      width: 31.33%;
      margin-right: 3%;
      margin-bottom: 3%;
    }
    .flex-sp-col3 > *:nth-child(3n) { margin-right: 0; }

  }

/* bg
********************************************** */
  .lps_sec,
  .bg-ptn01 {
    background-image: url(../images/common/ptn_bg01.jpg);
  }
  .lps_sec:nth-child(2n),
  .bg-ptn02 {
    background-image: url(../images/common/ptn_bg02.jpg);
  }
  .bg-ptn03 {
    background-image: url(../images/common/ptn_plan.jpg);
  }

/* ttl
********************************************** */

  /* --- page_ttl --- */
  .page_ttl {
    position: relative;
    height: 340px;
    padding-left: 5%;
    padding-right: 5%;
    z-index: 10;
    line-height: 1.4;
    background-color: #eee;
    background-size: cover;
    background-position: center;
  }
  .page_ttl .page_ttl-jp {
    display: block;
    font-size: 320%;
    letter-spacing: .1em;
  }
  .page_ttl .page_ttl-en {
    display: inline-block;
    font-size: 106%;
    letter-spacing: .035em;
    text-transform: uppercase;
  }
  .page-contact .page_ttl,
  .page-estimate .page_ttl,
  .page-entry .page_ttl {
    height: 200px;
    margin-bottom: -80px;
    background-image: url(../images/common/ptn_bg01.jpg);
    background-size: auto;
  }
  .page-contact .page_ttl-en,
  .page-estimate .page_ttl-en,
  .page-entry .page_ttl-en {
    color: #FFD634;
  }

  /* --- ttl --- */
  .ttl-01,
  .ttl-02,
  .ttl-03 {
    position: relative;
    z-index: 1;
  }
  .ttl-01 {
    margin-bottom: 56px;
    font-size: 320%;
    line-height: 1.29;
    text-align: center;
  }
  .ttl-01::before {
    content: "";
    position: absolute;
    bottom: -24px;
    left: calc(50% - 20px);
    display: block;
    width: 40px;
    height: 4px;
    background-color: #FFBA14;
  }
  .ttl-02 {
    margin-bottom: 32px;
    font-size: 266%;
    line-height: 1.38;
    text-align: center;
  }

  @media screen and (max-width: 767px) {

    /* --- page_ttl --- */
    .page_ttl {
      -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      height: 160px;
      padding-left: 24px;
      padding-right: 24px;
    }
    .page-contact .page_ttl,
    .page-estimate .page_ttl,
    .page-entry .page_ttl {
      height: 100px;
      margin-bottom: -40px;
    }
    .page_ttl .page_ttl-jp {
      font-size: 160%;
    }
    .page_ttl .page_ttl-en {
      font-size: 88%;
    }

    /* --- ttl --- */
    .ttl-01 {
      margin-bottom: 32px;
      font-size: 200%;
    }
    .ttl-01::before {
      bottom: -16px;
      left: calc(50% - 12px);
      width: 24px;
    }
    .ttl-02 {
      margin-bottom: 24px;
      font-size: 180%;
    }
    .ttl-03 {
      margin-bottom: 16px;
      font-size: 144%;
    }

  }

/* breadcrumbs
**************************************** */
  .breadcrumbs {
    padding: 16px 0;
    font-weight: bold;
  }
  .breadcrumbs a {
    text-decoration: underline;
    color: #FE5A21;
  }
  .archive-date .breadcrumbs .inner > span > span > span {
    font-size: 0;
  }
  .archive-date .breadcrumbs .inner > span > span > span > span {
    font-size: 15px;
  }

  @media screen and (max-width: 767px) {
    .breadcrumbs {
      padding: 12px 0;
      font-size: 93%;
    }
    .archive-date .breadcrumbs .inner > span > span > span > span {
      font-size: 13px;
    }
  }

/* font
**************************************** */
  .font-jp,
  .ttl-01,
  .ttl-02,
  .ttl-03,
  .editor-ttl,
  .editor-ttl2,
  .editor-ttl3,
  .btn,
  table:not(.plan_table) th {
    font-family: 'Gothic MB101 Bold';
  }
  .font-en {
    font-family: 'din-2014';
    font-weight: 700;
    font-style: normal;
  }
  .font,
  .wp-pagenavi {
    font-family: 'din-2014','Gothic MB101 Bold';
    font-weight: 700;
    font-style: normal;
  }

/* txt
**************************************** */
  .txt-lg { font-size: 107%; }
  .txt-sm { font-size: 93%; }
  .txt-wh { color: #fff; }
  .txt-attention-kome {
    position: relative;
    padding-left: 1.4em;
  }
  .txt-attention-kome::before {
    content: '※';
    position: absolute;
    left: 0;
    top: 0;
  }
  .txtarea p:not(:last-child) { margin-bottom: 1em; }

/* btn
********************************************** */
  .btn + .btn {
    margin-top: 8px;
  }
  .btn a,
  .btn button {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 18px 56px;
    border-radius: 32px;
    min-width: 240px;
    text-align: center;
    background-color: #FFD234;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all .4s ease-out;
  }
  .btn a::before,
  .btn button::before {
    content: "";
    position: absolute;
    top: calc(50% - 4px);
    right: 32px;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px;
    border-right: solid 2px;
    transform: rotate(45deg);
  }
  .btn-wh a {
    background-color: #fff;
  }
  .btn a.btn-smooth {
    border-radius: 0;
  }
  .btn a.btn-smooth::before {
    top: auto;
    bottom: 10px;
    right: calc(50% - 4px);
    border-color: #FE5A21;
    transform: rotate(135deg);
  }
  .btn svg {
    fill: #282828;
    transition: all .4s ease-out;
  }
  .btn:not(.plan--btn) a[target="_blank"]::before,
  .btn a[href$=".pdf"]::before {
    display: none;
  }
  .btn a:hover,
  .btn button:hover {
    background-color: #FFB034;
  }

  @media screen and (max-width: 767px) {
    .btn a[href$=".pdf"]::after {
      right: 7px;
      width: 20px;
      height: 9px;
    }
  }


/* ##############################################################################

    HEADER

############################################################################## */

  .header {
    position: fixed;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 136px;
    border-bottom: solid 6px #FFD634;
    background-color: #fff;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    transition: all .2s ease-out;
  }
  .header--wrap {
    position: relative;
    width: 100%;
    height: 100%;
    padding-left: 18px;
    padding-right: 304px;
  }
  .header--logo {
    width: 341px;
    margin-right: 92px;
    transform: translateY(-6px);
  }

  @media print, screen and (max-width: 1660px) {
    .header--wrap {
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between;
      padding-left: 12px;
    }
    .header--logo {
      margin-right: 0;
    }
  }
  @media screen and (max-width: 767px) {
    .header {
      position: static;
      top: 0;
      width: 100%;
      padding: 0;
      height: 56px;
      background-color: transparent;
      border-bottom-width: 4px;
    }
    .header--wrap {
      padding-right: 12px;
    }
    .header--logo {
      width: 171px;
      margin-top: 10px;
    }
  }

/* gnav
********************************************** */
  .gnav {
    width: 1010px;
  }
  .gnav--menu li {
    font-size: 107%;
  }
  .gnav--menu > li {
    width: calc(100% / 7);
  }
  .gnav--menu > li:not(:last-child) > a {
    border-right: dotted 2px #d2d2d2;
  }
  .gnav--link {
    display: block;
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
  }
  .gnav--link .img {
    height: 36px;
    margin-bottom: 10px;
  }
  .gnav--link p {
    line-height: 1;
  }
  .gnav--menu > li > a:hover,
  .gnav--menu li.current > .gnav--link {
    color: #fcc724;
  }

  /* --- cta_area --- */
  .header--cta_area {
    position: absolute;
    top: 0;
    right: 0;
  }
  .cta_area {
    width: 304px;
  }
  .cta_area a {
    display: flex!important;
    width: 100%;
    height: 96px;
    white-space: nowrap;
  }
  .cta_area--contact a {
    color: #fff;
    background-color: #FE5A21;
  }
  .cta_area--contact a:hover,
  .cta-list--child .cta-btn01:hover {
    background-color: #FF3829;
  }
  .cta_area--contact .img {
    width: 64px;
    height: 64px;
    margin-right: 16px;
    padding-bottom: 2px;
    border-radius: 50%;
    background-color: #fff;
  }
  .cta_area--contact .txt {
    font-size: 129%;
    line-height: 1;
  }
  .cta_area--contact .txt span {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 73.68%;
  }
  .cta_area--contact .txt span::before,
  .cta_area--contact .txt span::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 20px;
    background-color: #fff;
  }
  .cta_area--contact .txt span::before {
    margin-right: 10px;
    transform: translateY(6px) rotate(-30deg);
  }
  .cta_area--contact .txt span::after {
    margin-left: 8px;
    margin-right: 12px;
    transform: translateY(6px) rotate(30deg);
  }
  .cta_area--tel a {
    color: #2A2A2A;
    background-color: #FFD634;
  }
  .cta_area--tel .num {
    margin-bottom: 4px;
    font-size: 167%;
    line-height: 1;
    letter-spacing: .025em;
  }
  .cta_area--tel .num span {
    font-size: 120%;
  }
  .cta_area--tel .txt {
    font-size: 94%;
    line-height: 1;
  }
.onlysp{
    display: none;
}

  @media print, screen and (max-width: 768px) {
		.onlypc {
			display: none;
		}
        .onlysp{
            display: block;
        }
	}
  @media print, screen and (min-width: 768px) {

    /* ---dropdown_btn --- */
    .dropdown_btn {
      position: absolute;
      left: calc(50% - 4.5px);
      bottom: -12px;
      display: block;
      width: 9px;
      height: 9px;
      border-top: solid 3px;
      border-right:  solid 3px;
      border-color: #FFD234;
      transform: rotate(135deg);
    }
    .none .dropdown_btn,
    .none .gnav--dropdown {
      display: none!important;
    }

    /* ---gnav--dropdown --- */
    .gnav--dropdown-hover {
      position: relative;
    }
    .gnav--dropdown {
      position: absolute;
      left: 0;
      right: 0;
      pointer-events: none;
    }
    .gnav--dropdown li {
      opacity: 0;
      pointer-events: none;
      transition: .2s ease-out;
      transition-delay: 0s;
    }
    .gnav--dropdown .gnav--link {
      padding-top: 7px;
      padding-bottom: 7px;
      margin-bottom: 4px;
      background-color: #FFD234;
      font-size: 94%;
			line-height: 1.2
    }
    .gnav--dropdown .gnav--link:hover {
      color: #d19f07;
    }

    /* hover */
    .gnav--dropdown-hover:hover .gnav--dropdown {
      pointer-events: auto;
    }
    .gnav--dropdown-hover:hover .gnav--dropdown li {
      opacity: 1;
      pointer-events: auto;
      transition: .4s ease-out;
    }
    .gnav--dropdown-hover:hover .gnav--dropdown li:nth-child(2) {
      transition-delay: .1s;
    }
    .gnav--dropdown-hover:hover .gnav--dropdown li:nth-child(3) {
      transition-delay: .2s;
    }
    .gnav--dropdown-hover:hover .gnav--dropdown li:nth-child(4) {
      transition-delay: .3s;
    }
    .gnav--dropdown-hover:hover .gnav--dropdown li:nth-child(5) {
      transition-delay: .4s;
    }
  }
  @media screen and (max-width: 767px) {
    .gnav {
      position: fixed;
      top: 0;
      left: 0;
      bottom: 64px;
      z-index: 300;
      width: 100%;
      margin: 0;
      padding: 64px 5% 24px;
      overflow: scroll;
      background-color: rgba(255, 255, 255, 1);
      opacity: 0;
      pointer-events: none;
      transition: .4s ease-out;
    }
    .gnav.active {
      opacity: 1;
      pointer-events: auto;
    }
    .gnav--menu > li {
      width: 100%;
    }
    .gnav--link {
      position: relative;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      width: 100%;
      padding: 14px 16px;
      margin-bottom: 0;
    }
    .gnav--link::before {
      content: "";
      position: absolute;
      top: calc(50% - 4px);
      right: 16px;
      display: block;
      width: 8px;
      height: 8px;
      border-top: solid 2px;
      border-right: solid 2px;
      transform: rotate(45deg);
    }
    .gnav--menu > li:not(:last-child) > a {
      border-right: none;
    }
    .gnav--menu > li:not(:first-child) > a {
      border-top: dotted 2px #d2d2d2;
    }
    .gnav--link .img {
      width: 18px;
      height: auto;
      margin-right: 12px;
      margin-bottom: 0;
    }
    .gnav--dropdown {
      margin-bottom: 12px;
      font-size: 93%;
    }
    .gnav--dropdown .gnav--link {
      padding: 4px 16px 4px 44px;
    }

    .gnav_btn {
      position: fixed;
      top: 0;
      right: 0;
      width: 52px;
      height: 52px;
      z-index: 9999;
    }
    .gnav_btn--lines {
      position: relative;
      width: 24px;
      height: 18px;
    }
    .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: #FFD634;
    }
    .gnav_btn--lines span:nth-of-type(1) {
      top: 0;
    }
    .gnav_btn--lines span:nth-of-type(2) {
      top: calc(50% - 1px);
    }
    .gnav_btn--lines span:nth-of-type(3) {
      bottom: 0;
    }
    .active .gnav_btn--lines span:nth-of-type(1) {
      -webkit-transform: translateY(8px) rotate(-45deg);
      transform: translateY(8px) rotate(-45deg);
    }
    .active .gnav_btn--lines span:nth-of-type(2) {
      opacity: 0;
    }
    .active .gnav_btn--lines span:nth-of-type(3) {
      -webkit-transform: translateY(-8px) rotate(45deg);
      transform: translateY(-8px) rotate(45deg);
    }

    /* ---gnav--dropdown --- */
    .gnav--recruit .gnav--link {
      border-color: #fff;
      text-align: left;
      padding-right: 30px;
      padding-left: 30px;
    }
    .gnav--recruit > .gnav--link {
      padding-right: 64px;
    }
    .gnav--recruit .gnav--link::after {
      border-color: #fff;
    }
    .gnav--recruit > .gnav--link::after {
      display: none;
    }
    .gnav--recruit .dropdown_btn {
      width: 64px;
      height: 64px;
      background-color: rgba(255,255,255,.2);
    }
    .gnav--recruit .dropdown_btn::before {
      top: calc(50% - 4px);
      right: calc(50% - 6.5px);
      border-width: 8px 6.5px 0 6.5px;
      transition: all .4s;
    }
    .gnav--recruit .dropdown_btn.active::before {
      transform: rotate(-180deg);
    }

    /* --- cta_area --- */
    .cta_area {
      width: 90%;
    }
    .header--cta_area {
      position: fixed;
      top: auto;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 99999;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
    }
    .cta_area li {
      width: 50%;
    }
    .cta_area a {
      height: 64px;
    }
    .header--cta_area a {
      width: 100%;
    }
    .header--cta_area .cta_area--contact .img {
      display: none;
    }
    .header--cta_area .txt {
      font-size: 108%;
    }
    .cta_area--contact .txt span {
      margin-bottom: 4px;
      transform: translateY(-2px);
    }
    .header--cta_area .cta_area--contact .txt span::before,
    .header--cta_area .cta_area--contact .txt span::after {
      width: 1px;
      height: 12px;
    }
    .cta_area--contact .txt span::before {
      margin-right: 6px;
      transform: translateY(2px) rotate(-30deg);
    }
    .cta_area--contact .txt span::after {
      margin-left: 6px;
      margin-right: 0;
      transform: translateY(2px) rotate(30deg);
    }
    .cta_area--tel .num {
      font-size: 150%;
    }
    .header--cta_area .cta_area--tel .num {
      font-size: 120%;
    }
    .cta_area--tel .num span {
      font-size: 108%;
    }
    .cta_area--tel .txt {
      font-size: 86%;
    }
  }


/* ##############################################################################

    FOOTER

############################################################################## */

/* cta
********************************************** */
  .cta {
    padding-top: 120px;
    padding-bottom: 120px;
    overflow: hidden;
  }
  .cta .inner {
    max-width: 1600px;
  }
  .cta-box {
    padding: 56px 40px 88px;
    border: solid 6px #282828;
  }
  .cta-box .ttl-01 {
    margin-bottom: 24px;
    letter-spacing: .08em;
  }
  .cta-box .ttl-01::before {
    display: none;
  }
  .cta-box .ttl-01 span {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
    font-size: 66.7%;
    letter-spacing: .062em;
  }
  .cta-box .ttl-01 span::before,
  .cta-box .ttl-01 span::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 42px;
    background-color: #F2B64F;
  }
  .cta-box .ttl-01 span::before {
    margin-right: 40px;
    transform: translateY(8px) rotate(-30deg);
  }
  .cta-box .ttl-01 span::after {
    margin-left: 40px;
    transform: translateY(8px) rotate(30deg);
  }
  .cta-box > .txt {
    margin-bottom: 50px;
  }

  .cta-list {
    max-width: 1384px;
    margin-right: auto;
    margin-left: auto;
  }
  .cta-list--child {
    width: calc(33.33% - 5px);
    height: 200px;
    background-color: #EDE9DB;
  }

  .cta-list--child .cta-tel .ttl {
    margin-bottom: 16px;
    font-size: 134%;
    line-height: 1;
  }
  .cta-list--child .cta-tel .num {
    margin-bottom: 2px;
    font-size: 280%;
    line-height: 1;
    letter-spacing: .01em;
  }
  .cta-list--child .cta-tel .txt {
    font-size: 94%;
  }

  .cta-list--child .cta-btn {
    position: relative;
    width: 320px;
    height: 80px;
    border-radius: 40px;
    padding-right: 24px;
    font-size: 120%;
  }
  .cta-list--child .cta-btn::before {
    content: "";
    position: absolute;
    top: calc(50% - 4px);
    right: 24px;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px;
    border-right: solid 2px;
    transform: rotate(45deg);
  }
  .cta-list--child .cta-btn svg {
    margin-right: 12px;
    transform: translateY(2px);
  }
  .cta-list--child .cta-btn01 {
    color: #fff;
    background-color: #FF6D2D;
  }
  .cta-list--child .cta-btn01 svg {
    fill: #fff;
  }
  .cta-list--child .cta-btn01 .copy {
    position: absolute;
    top: -36px;
    color: #FF6D2D;
    transform: translateX(12px);
  }
  .cta-list--child .cta-btn01 .copy span {
    position: relative;
    display: inline-block;
    font-size: 111%;
  }
  .cta-list--child .cta-btn01 .copy span::before,
  .cta-list--child .cta-btn01 .copy span::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 20px;
    background-color: #FF6D2D;
  }
  .cta-list--child .cta-btn01 .copy span::before {
    margin-right: 16px;
    transform: translateY(2px) rotate(-30deg);
  }
  .cta-list--child .cta-btn01 .copy span::after {
    margin-left: 16px;
    transform: translateY(2px) rotate(30deg);
  }
  .cta-list--child .cta-btn02 {
    background-color: #FFD234;
  }
  .cta-list--child .cta-btn02:hover {
    background-color: #FFB034;
  }
  .cta-list--child .cta-btn02 svg {
    fill: #282828;
  }

  @media screen and (min-width: 768px) {
    .cta-list--child:nth-child(2) {
      transition-delay: .1s;
    }
    .cta-list--child:nth-child(3) {
      transition-delay: .2s;
    }
  }
  @media print, screen and (max-width: 1240px) {
    .cta-list--child {
      width: calc(50% - 5px);
    }
    .cta-list--child:first-child {
      width: 100%;
      height: 160px;
      margin-bottom: 12px;
    }
  }
  @media screen and (max-width: 767px) {
    .cta {
      padding-top: 60px;
      padding-bottom: 60px;
    }
    .cta-box {
      padding: 16px;
      border: solid 3px #282828;
    }
    .cta-box .ttl-01 {
      margin-bottom: 16px;
      font-size: 180%;
    }
    .cta-box .ttl-01 span {
      margin-bottom: 12px;
      font-size: 13px;
    }
    .cta-box .ttl-01 span::before,
    .cta-box .ttl-01 span::after {
      width: 3px;
      height: 16px;
    }
    .cta-box .ttl-01 span::before {
      margin-right: 16px;
      transform: translateY(2px) rotate(-30deg);
    }
    .cta-box .ttl-01 span::after {
      margin-left: 16px;
      transform: translateY(2px) rotate(30deg);
    }
    .cta-box > .txt {
      margin-bottom: 24px;
    }
    .cta-list--child {
      width: 100%;
      height: auto!important;
      margin-bottom: 12px;
      padding-top: 24px;
      padding-bottom: 24px;
    }
    .cta-list--child .cta-tel .ttl {
      margin-bottom: 8px;
      font-size: 100%;
    }
    .cta-list--child .cta-tel .num {
      font-size: 240%;
    }
    .cta-list--child .cta-btn {
      width: 260px;
      height: 72px;
      padding-right: 0;
      font-size: 114%;
    }
    .cta-list--child .cta-btn::before {
      display: none;
    }
    .cta-list--child .cta-btn svg {
      width: 24px;
      transform: translateY(0);
    }
    .cta-list--child .cta-btn01 {
      margin-top: 20px;
    }
    .cta-list--child .cta-btn01 .copy {
      top: -26px;
      font-size: 14px;
      transform: translateX(0);
    }
    .cta-list--child .cta-btn01 .copy span {
      font-size: 100%;
    }
    .cta-list--child .cta-btn01 .copy span::before,
    .cta-list--child .cta-btn01 .copy span::after {
      height: 14px;
    }
  }
  @media screen and (max-width: 360px) {
    .cta-list--child .cta-btn {
      width: 220px;
    }
    .cta-list--child .cta-tel .num {
      font-size: 200%;
    }
    .cta-list--child .cta-btn {
      font-size: 107%;
    }
    .cta-list--child .cta-btn svg {
      width: 20px;
    }
  }

/* footer
********************************************** */
  .footer {
    padding-top: 96px;
    padding-bottom: 16px;
    background-color: #282828;
  }
  .footer,
  .footer a {
    color: #fff;
  }

  @media screen and (max-width: 767px) {
    .footer {
      padding-top: 48px;
      padding-bottom: 8px;
    }
  }

/* footer_store
********************************************** */
  .footer_store .ttl {
    padding-left: 2px;
    margin-bottom: 16px;
    font-size: 246.66%;
    line-height: 1;
  }
  .footer_store--wrap {
    padding-top: 48px;
    padding-bottom: 48px;
    border-top: solid 3px #fff;
    border-bottom: solid 3px #fff;
  }
  .footer_store--list li {
    width: 48%;
  }
  .footer_store--list .name {
    margin-bottom: 10px!important;
    font-size: 114%;
    line-height: 1;
  }
  .footer_store--list .add {
    margin-bottom: 12px!important;
    line-height: 1.3;
  }
  .footer_store--list .btn-map {
    display: inline-block;
    margin-top: 8px;
    border: solid 1px;
    padding: 3px 14px;
    border-radius: 16px;
    font-size: 11px;
  }
  .footer_store--list .btn-map:hover {
    color: #FFD634;
  }
  .footer_store--list .tel {
    line-height: 1;
  }
  .footer_store--list .name {
    font-size: 127%;
  }

  @media screen and (min-width: 768px) {
    .footer_store--list li:not(:nth-last-child(1)):not(:nth-last-child(2)) {
      padding-bottom: 16px;
      margin-bottom: 24px;
      border-bottom: solid 1px rgba(255,255,255,.1);
    }
  }
  @media screen and (max-width: 767px) {
    .footer_store .ttl {
      margin-bottom: 12px;
      font-size: 160%;
    }
    .footer_store--wrap {
      padding-top: 24px;
      padding-bottom: 24px;
      border-top: solid 2px #fff;
      border-bottom: solid 2px #fff;
    }
    .footer_store--list,
    .footer_store--list li {
      width: 100%;
    }
    .footer_store--list li {
      padding-left: 8px;
      padding-right: 8px;
    }
    .footer_store--list li:not(:nth-last-child(1)) {
      padding-bottom: 20px;
      margin-bottom: 20px;
      border-bottom: solid 1px rgba(255,255,255,.1);
    }
    .footer_store--list .name {
      font-size: 110%;
    }
    .footer_store--list .add {
      font-size: 94%;
    }
    .footer_store--list .tel {
      font-size: 82%;
    }
  }

/* footer_nav
********************************************** */
  .footer_nav {
    font-size: 120%;
  }
  .footer_nav li {
    width: 33.333%;
    padding: 8px;
    text-align: center;
  }
  .footer_nav a:hover {
    color: #FFD634;
  }

  @media screen and (max-width: 767px) {
    .footer_nav {
      font-size: 92%;
    }
    .footer_nav li {
      width: 100%;
      padding: 8px;
      text-align: left;
      border-bottom: solid 1px rgba(255,255,255,.1);
    }
    .footer_nav a {
      position: relative;
      display: block;
    }
    .footer_nav a::before {
      content: "";
      position: absolute;
      top: calc(50% - 3px);
      right: 8px;
      display: block;
      width: 6px;
      height: 6px;
      border-top: solid 2px;
      border-right: solid 2px;
      transform: rotate(45deg);
    }
  }

/* pbll
********************************************** */
  .copyright {
    text-align: center;
    font-size: 86%;
    line-height: 1.3;
  }
  .pbll {
    display: block;
    opacity: .5;
  }
  .pbll:hover { opacity: 1; }


/* ##############################################################################

    INDEX

############################################################################## */

/* hero
********************************************** */
  .hero {
    position: relative;
    height : 800px;
  }
  .hero-slide {
    border-bottom: solid 6px #FFD634;
  }
  .hero-slide--child {
    height: 800px;
    background-position: center;
  }
  .hero-slide--child01 {
    background-image: url(../images/home/hero-img01.jpg);
  }
  .hero-slide--child02 {
    background-image: url(../images/home/hero-img02.jpg);
  }
  .hero-slide--child03 {
    background-image: url(../images/home/hero-img03.jpg);
  }
  .hero-slide .slick-dots {
    position: absolute;
    right: 34px;
    bottom: 22px;
    z-index: 10;
    justify-content: flex-end;
  }
  .hero-slide .slick-dots li {
    width: 8px;
    height: 8px;
    border: none;
  }

  /* --- hero-txtarea --- */
  .hero-txtarea {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
  }
  .hero-txtarea--child {
    height: 100%;
    padding-left: 180px;
  }
  .hero-txtarea--child .ttl {
    margin-bottom: 24px;
    font-size: 306.67%;
    line-height: 1.4;
    text-shadow: 0 0 29px rgba(255,255,255,.16);
  }
  .hero-txtarea--child > div > .txt {
    margin-bottom: 40px;
    font-size: 107%;
    line-height: 1.6875;
  }
  .hero-txtarea--child .cta_area--contact a {
    position: relative;
    width: 348px;
    height: 96px;
    border-radius: 48px;
    padding-left: 16px;
  }
  .hero-txtarea--child .cta_area--contact a::before {
    content: "";
    position: absolute;
    top: calc(50% - 4px);
    right: 32px;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px;
    border-right: solid 2px;
    transform: rotate(45deg);
  }

  /* --- hero-contact --- */
  .hero-contact {
    position: absolute;
    top: 850px;
    left: 0;
    right: 0;
    z-index: 10;
    pointer-events: none;
  }
  .hero-contact--child {
    position: relative;
    width: 576px;
    padding: 92px 40px 43px;
    border-radius: 6px;
   /*box-shadow: 0 0 62px rgba(4,9,21,.1);*/
    pointer-events: auto;
  }
  .hero-contact--child01 {
    background-color: #FFD234;
  }
  .hero-contact--child02 {
    margin-left: 48px;
    background-color: #fff;
    border: solid 6px #FFD234;
  }
  .hero-contact--ttl {
    position: absolute;
    bottom: 228px;
    left: 0;
    right: 0;
    font-size: 160%;
    letter-spacing: .04em;
    line-height: 1;
  }
  .hero-contact--ttl .color {
    color: #FF3829;
    text-shadow:
      #fff 3px 3px 3px,
      #fff -3px 3px 3px,
      #fff 3px -3px 3px,
      #fff -3px -3px 3px;
  }
  .hero-contact--ttl .size {
    margin-right: 8px;
    font-size: 391.67%;
    letter-spacing: -.015em;
    font-style: italic;
    text-shadow:
      #fff 4px 4px 4px,
      #fff -4px 4px 4px,
      #fff 4px -4px 4px,
      #fff -4px -4px 4px;
  }
  .hero-contact--ttl .size2 {
    font-size: 112.5%;
  }
  .hero-contact--box {
    padding: 24px 32px;
    border-radius: 6px;
  }
  .hero-contact--box01 {
    background-color: #fff;
  }
  .hero-contact--box02 {
    background-color: #FFD234;
  }
  .hero-contact--list {
    height: 104px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    letter-spacing: .06em;
  }
  .hero-contact--list li {
    line-height: 1.4;
    margin-bottom: 8px;
  }
  .hero-contact--child01 li:first-child {
    display: none;
  }


  /* スクロールの幅の設定 */
  .hero-contact--list::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  /* スクロールの背景の設定 */
  .hero-contact--list::-webkit-scrollbar-track {
    border-radius: 4px;
    background: #eee;
  }
  /* スクロールのつまみ部分の設定 */
  .hero-contact--list::-webkit-scrollbar-thumb {
    border-radius:45px;
    background: #FE5A21;
  }

  @media print, screen and (max-height: 880px) {
    .hero-contact {
      top: auto;
      bottom: -302px;
    }
  }
  @media print, screen and (max-height: 780px) {
    .hero-contact {
      bottom: -402px;
    }
  }
  @media print, screen and (max-height: 680px) {
    .hero-contact {
      bottom: -502px;
    }
  }
  @media print, screen and (max-height: 580px) {
    .hero-contact {
      bottom: -602px;
    }
  }
  @media print, screen and (max-width: 1300px) {
    .hero-contact--child {
      width: 46%;
    }
    .hero-contact--child02 {
      margin-left: 2%;
    }
  }
  @media print, screen and (max-width: 1200px) {
    .hero-txtarea--child {
      padding-left: 80px;
      padding-right: 80px;
    }
  }
  @media screen and (max-width: 767px) {
    .hero,
    .hero-slide--child {
      height : calc(100vh - 156px);
    }
    .hero-slide {
      border-bottom-width: 4px;
    }
    .hero-slide--child {
      background-size: cover;
    }
    .hero-slide--child01 {
      background-image: url(../images/home/hero-img01_sp.jpg);
    }
    .hero-slide--child02 {
      background-image: url(../images/home/hero-img02_sp.jpg);
    }
    .hero-slide--child03 {
      background-image: url(../images/home/hero-img03_sp.jpg);
    }
    .hero-slide .slick-dots {
      top: -8px;
      right: 12px;
      bottom: auto;
    }

    /* --- hero-txtarea --- */
    .hero-txtarea--child {
      padding-left: 16px;
      padding-right: 16px;
    }
    .hero-txtarea--child .ttl {
      margin-bottom: 24px;
      font-size: 200%;
    }
    .hero-txtarea--child > div {
      width: 100%;
    }
    .hero-txtarea--child > div > .txt {
      margin-bottom: 32px;
    }
    .hero-txtarea--child .cta_area--contact a {
      position: relative;
      width: 90%;
      min-width: 288px;
      height: 80px;
      margin-left: auto;
      margin-right: auto;
    }
    .cta_area--contact .img {
      width: 56px;
      height: 56px;
    }

    /* --- hero-contact --- */
    .hero-contact {
      position: static;
      margin-top: -32px;
      background-image: url(../images/common/ptn_bg01.jpg);
    }
    .hero-contact--child {
      width: 90%;
      margin-left: 5%!important;
      margin-bottom: 16px;
      padding: 64px 16px 20px;
      box-shadow: 0 0 24px rgba(4,9,21,.1);
    }
    .hero-contact--child02 {
      border: solid 3px #FFD234;
    }
    .hero-contact--box {
      padding: 16px;
    }
    .hero-contact--ttl {
      bottom: 176px;
      font-size: 114%;
    }
    .hero-contact--ttl .size {
      font-size: 200%;
    }
  }
  @media screen and (max-width: 374px) {
    .hero-txtarea--child .cta_area--contact a::before {
      display: none;
    }
    .hero-txtarea--child .ttl {
      margin-bottom: 16px;
      font-size: 160%;
    }
    .hero-txtarea--child > div > .txt {
      font-size: 92%;
      margin-bottom: 16px;
    }
  }

/* home_message
********************************************** */
  .home_message {
    position: relative;
    overflow: hidden;
    padding-top: 70px;
    padding-bottom: 142px;
  }
  .home_message .bg {
    width: 100%;
    padding-top: 80px;
    background-image:
      url(../images/home/message-bg01.png),
      url(../images/home/message-bg02.png);
    background-position:
      left top 80px,
      right top 40px;
    background-repeat: no-repeat;
  }
  .home_message .txtarea {
    font-size: 107%;
    line-height: 2;
  }
  .home_message .txtarea p:not(:last-child) {
    margin-bottom: 2em;
  }
  .home_message .btn {
    margin-top: 40px;
  }
  .home_message .btn a {
    width: 340px;
    padding: 16px 24px;
    border: solid 4px ;
    border-radius: 0;
    background-color: transparent;
    font-family: 'Koburina Gothic W6 JIS2004';
  }
  .home_message .btn a:hover {
    color: #FFD234;
  }
  .home_message .btn a::before {
    right: 24px;
  }
  .home_message .deco {
    position: absolute;
  }
  .home_message .deco01 {
    left: 5.5%;
    top: 250px;
  }
  .home_message .deco02 {
    left: 11%;
    top: 720px;
  }
  .home_message .deco03 {
    right: 10.5%;
    top: 450px;
  }
  .home_message .deco04 {
    right: 15%;
    bottom: -88px;
  }

  @media print, screen and (max-width: 1700px) {
    .home_message .deco04 {
      right: 5%;
    }
  }
  @media print, screen and (max-width: 1600px) {
    .home_message .bg {
      background-position:
        left -300px top 80px,
        right -300px top 40px;
    }
    .home_message .deco01 {
      left: 0;
      top: 250px;
    }
    .home_message .deco02 {
      left: .5%;
      top: 720px;
    }
    .home_message .deco03 {
      right: .5%;
      top: 450px;
    }
  }
  @media print, screen and (max-width: 1330px) {
    .home_message .deco04 {
      right: -8%;
    }
  }
  @media print, screen and (max-width: 1230px) {
    .home_message .deco02 {
      display: none;
    }
    .home_message .deco01 {
      left: -10%;
      top: 250px;
    }
    .home_message .deco03 {
      right: -15%;
      top: 450px;
    }
  }
  @media screen and (max-width: 767px) {
    .home_message {
      padding-top: 24px;
      padding-bottom: 72px;
    }
    .home_message .bg {
      background-image: none;
    }
    .home_message .deco01 {
      top: 0;
      left: -7%;
      width: 140px;
    }
    .home_message .deco03 {
      top: 0;
      right: -5%;
      width: 160px;
    }
    .home_message .deco04 {
      display: none;
    }
    .home_message .btn {
      text-align: center;
    }
    .home_message .btn a {
      width: 240px;
    }
  }
  @media screen and (max-width: 320px) {
    .home_message .deco01 {
      left: -15%;
    }
    .home_message .deco03 {
      right: -15%;
    }
  }

/* topMessage
********************************************** */
#topMessage {
	background: url("../images/home/sec01_bg_lft.png") left bottom,url("../images/home/sec01_bg_rht.png") right bottom,url("../images/home/sec01_bg_btm.png") center bottom;
	background-color: #aac469;
	background-size: 30.7291666% auto,33.02083333% auto,100% auto;
	background-repeat: no-repeat;
	padding: 100px 0 120px;
	text-align: center;
	font-size: 10px;
}
.messageArea {
	width: 90%;
	max-width: 1150px;
	margin: 0 auto;
}
.messageArea h2 {
	margin-bottom: 50px;
}
.messageArea .txt {
	font-size: 2em;
	font-weight: 700;
	letter-spacing: -.05em;
	text-shadow: 0 0 3px #aac469,0 0 3px #aac469,0 0 3px #aac469,0 0 3px #aac469;
}
.linkBtn a {
	display: inline-block;
	position: relative;
	color: #fff;
	background: #e76634;
	font-size: 1.6em;
	font-weight: 700;
	padding: 20px 50px 20px 25px;
	margin-top: 30px;
}
.linkBtn a::before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 24px;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px;
  border-right: solid 2px;
  transform: rotate(45deg);
}
.linkBtn a:hover {
	background: #333;
}
.chara {
	position: absolute;
	z-index: 10;
	pointer-events: none;
}
.chara._01 {
	width: 26%;
	right: 0;
	bottom: -10%;
}
@media screen and (max-width: 1760px) {
	#topMessage {
		background-size: 28% auto,30% auto,100% auto;
		font-size: .5681818vw;
	}
	.messageArea h2 img {
		max-height: 15em
	}
	.messageArea .txt {
		font-size: 2.6em
	}
	.linkBtn a {
		font-size: 2.4em
	}
}
@media screen and (max-width: 767px) {
	#topMessage {
		padding: 120px 0 60px;
		font-size: 10px;
		background-size: 24% auto,25% auto,auto 60px;
		background-position: top 40px left,top 40px right,bottom center;
	}
	.messageArea h2 {
		width:53%;
		margin: 0 auto 30px;
	}
	.messageArea .txt {
		font-size: 1.5em;
		text-align: left;
		line-height: 1.5
	}
	.linkBtn a {
		font-size: 1.6em;
		white-space: nowrap;
		padding: 15px 40px 15px 20px;
		display: block;
	}
	.chara._01 {
		width: 48%;
		max-width: 160px;
		top: -110px;
		bottom: auto;
		left: 0;
		right: 0;
		margin: 0 auto;
	}
	
	
}

/* charactor
********************************************** */
#charactor {
	background: url("../images/home/sec01_bg.png") top left repeat;
	padding: 20px 0;
	text-align: center;
	font-size: 10px;
	overflow: hidden;
}
.charaArea {
	width: 90%;
	max-width: 1600px;
	margin: 0 auto;
	z-index: 1;
	padding: 170px 5%;
}
.charaArea::before {
	content: "";
	display: block;
	background: #fff;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	z-index: -1;
}
.charaImg {
	width: 56.5%;
	position: absolute;
	top: 12%;
	right: -8%;
	z-index: 5;
	transition-delay: .6s!important
}
.charaCont {
	width: 60%;
}
.charaCont h2 {
	margin-bottom: 30px;
}
.charaCont .txt {
	font-size: 2.6em;
	line-height: 1.6;
	letter-spacing: -.01em
}
.gocm {
	width: 14.8125%;
	position: absolute;
	top: 5%;
	left: -1%;
	z-index: 5;
	transition: .4s ease-out;
}
.gocm:hover {
	opacity: .8!important
}
.chara._02 {
	width: 25.625%;
	bottom: 0;
	left: -8%;
}
@media screen and (max-width: 1850px) {
	.chara._02 {
		left: -3%;
	}

}
@media screen and (max-width: 1530px) {
	#charactor {
		font-size: .5681818vw;
	}
	.charaCont h2 img {
		max-height: 16em
	}
}
@media screen and (max-width: 767px) {
	#charactor {
		font-size: 10px;
		padding: 40px 0;
	}
	.charaArea {
		padding: 40px 5% 25vw;
	}
	.charaArea::before {
		border-radius: 50px;
	}
	.charaCont {
		width: 100%;
	}
	.charaCont h2 {
		padding-right: 45%;
		margin-bottom: 30px;
	}
	.charaCont .txt {
		text-align: left;
		font-size: 1.4em
	}
	.charaImg {
		width: 46%;
		max-width: 195px;
		top: -6%;
		right: -3%;
	}
	.chara._02 {
		width: 50%;
		left: auto;
		right: 0;
		bottom: -35px;
	}
	.gocm {
		width: 35%;
		left: 8%;
		top: auto;
		bottom: -30px;
	}
	.gocm img {
		max-width: 110px;
	}
}





/* home_points
********************************************** */
  .home_points {
    min-height: 957px;
    padding-top: 154px;
    padding-bottom: 150px;
    border-top: 6px solid #FFBA14;
    border-bottom: 6px solid #FFBA14;
    background-image: url(../images/home/points-01.jpg);
    background-position: center top;
  }
  .home_points .inner {
    padding: 150px 40px 172px;
    max-width: 1600px;
    background-color: #fff;
    box-shadow: 0 0 32px rgba(0,0,0,.1);
  }
.chara._03 {
	bottom: -90px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 42%;
	max-width: 410px;
}
  .home_points .ttl-01 {
    margin-bottom: 40px;
    letter-spacing: .08em;
  }
  .home_points .ttl-01::before {
    top: -32px;
    left: calc(50% - 71px);
    bottom: auto;
    width: 143px;
    height: 27px;
    background-image: url(../images/home/points-ttl-en.png);
    background-color: transparent;
  }
  .points-list--child {
    counter-increment: number;
  }
  .points-list--child:nth-child(2) {
    transition-delay: .1s;
  }
  .points-list--child:nth-child(3) {
    transition-delay: .2s;
  }
  .points-list--child:nth-child(4) {
    transition-delay: .3s;
  }
  .points-list--child:nth-child(5) {
    transition-delay: .4s;
  }
  .points-list--child:nth-child(6) {
    transition-delay: .5s;
  }
  .points-list--child .link {
    display: block;
    width: 192px;
    height: 192px;
    padding-top: 40px;
    margin-right: 4px;
    margin-left: 4px;
    margin-bottom: 8px;
    border-radius: 50%;
    color: #fff;
    background-color: #FE5A21;
    text-align: center;
    font-size: 174%;
    line-height: 1.2;
    letter-spacing: .06em;
  }
  .points-list--child:nth-child(even) .link {
    background-color: #FF3829;
  }
  .points-list--child:nth-child(1) .link {
    letter-spacing: -.02em;
  }
  .points-list--child .link:hover {
    opacity: .7;
  }
  .points-list--child .link::before {
    content: "POINT"counter(number, decimal-leading-zero);
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-family: 'din-2014';
    font-weight: 700;
    font-style: normal;
    letter-spacing: .035em;
  }
  .points-list--child .arrow {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 50%;
    margin-top: 24px;
    background-color: #fff;
  }
  .points-list--child .arrow::before {
    content: "";
    position: absolute;
    top: calc(50% - 4px);
    right: 8px;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px;
    border-right: solid 2px;
    transform: rotate(45deg);
    color: #FE5A21;
  }
  .points-list--child:nth-child(even) .arrow::before {
    color: #FF3829;
  }

  @media print, screen and (max-width: 767px) and (min-width: 370px) {
    .points-list--child .link br {
      display: none;
    }
  }
  @media screen and (max-width: 767px) {
    .home_points {
      min-height: 0;
      padding-top: 77px;
      padding-bottom: 75px;
      border-width: 3px;
      background-size: cover;
      background-image: url(../images/home/points-01_sp.jpg);
    }
    .home_points .ttl-01 {
      margin-bottom: 32px;
    }
    .home_points .ttl-01::before {
      top: -16px;
      left: calc(50% - 35px);
      width: 71px;
      height: 13px;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
    }
    .home_points .inner {
      padding: 90px 24px 50px;
      box-shadow: 0 0 16px rgba(0,0,0,.1);
    }
    .points-list--child:not(:last-child) {
      margin-bottom: 8px;
    }
    .points-list--child .link {
      width: 100%;
      height: auto;
      padding: 16px;
      margin: 0;
      border-radius: 0;
      font-size: 144%;
      text-align: left;
    }
    .points-list--child .arrow {
      position: absolute;
      top: calc(50% - 10px);
      right: 16px;
      margin-top: 0;
    }
		.chara._03 {
			width: 80%;
			max-width: 200px;
			bottom: auto;
			top: -55px;
			padding-left: 3.5%;
		}
  }

/* home_plan
********************************************** */
  .home_plan {
    padding-top: 120px;
    padding-bottom: 128px;
  }
  .home_plan .ttl-01 {
    margin-bottom: 72px;
    letter-spacing: .08em;
  }
  .home_plan .ttl-01 span {
    position: relative;
    display: inline-block;
  }
  .home_plan .ttl-01 span::before,
  .home_plan .ttl-01 span::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 64px;
    background-color: #FFBA14;
  }
  .home_plan .ttl-01 span::before {
    margin-right: 64px;
    transform: translateY(28px) rotate(-30deg);
  }
  .home_plan .ttl-01 span::after {
    margin-left: 64px;
    transform: translateY(28px) rotate(30deg);
  }
  .home_plan .ttl-01::before {
    content: "PLAN";
    bottom: -24px;
    left: 0;
    right: 0;
    width: auto;
    height: auto;
    font-size: 20px;
    letter-spacing: .035em;
    font-family: 'din-2014';
    font-weight: 700;
    font-style: normal;
    text-align: center;
    color: #FFBA14;
    background-color: transparent;
  }
.chara._04 {
	bottom: -72px;
	right: 0;
	margin: 0 auto;
	width: 22%;
	max-width: 260px;
}

  .plan-list--child {
    position: relative;
    margin-bottom: 72px!important;
  }
  .plan-list--child04::before {
    content: "";
    position: absolute;
    top: -24px;
    right: -24px;
    z-index: 10;
    display: block;
    width: 109px;
    height: 109px;
    background-image: url(../images/home/plan-icn.png);
    pointer-events: none;
  }
  .plan-list--child .img {
    position: relative;
    margin-bottom: 20px;
    border: solid 6px #282828;
  }
  .plan-list--child .hover {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(255,210,52,.7);
    font-size: 114%;
    opacity: 0;
    transition: all .4s ease-out;
  }
  .plan-list--child .hover span::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 16px;
    border-top: solid 2px;
    border-right: solid 2px;
    transform: translateY(-2px) rotate(45deg);
  }
  .plan-list--child a:hover .hover {
    opacity: 1;
  }
  .plan-list--child .txt {
    margin-bottom: 8px!important;
  }
  .plan-list--child .ttl {
    font-size: 213.33%;
    line-height: .8;
  }
  .plan-list--child .cost {
    color: #FF3829;
  }
  .plan-list--child .cost--ttl {
    margin-right: 12px;
    margin-bottom: 0;
    padding-top: 8px;
    font-size: 93.33%;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    letter-spacing: .04em;
    color: #fff;
    background-color: #282828;
    border-radius: 18px;
    font-family: 'Koburina Gothic W6 JIS2004';
  }
  .plan-list--child .cost--txt {
    transform: translateY(4px);
    font-size: 373.33%;
    letter-spacing: .01em;
    line-height: 1;
  }
  .plan-list--child .cost--txt small {
    display: inline-block;
    padding-left: 2px;
    font-size: 60%;
  }

  @media print, screen and (max-width: 1250px) {
    .plan-list--child .link > .flex {
      display: block;
    }
    .plan-list--child .link .cost {
      -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
      justify-content: flex-end;
      margin-top: 16px;
    }
  }
  @media screen and (max-width: 767px) {
    .home_plan {
      padding-top: 60px;
      padding-bottom: 64px;
    }
    .home_plan .ttl-01 span::before,
    .home_plan .ttl-01 span::after {
      width: 4px;
      height: 48px;
    }
    .home_plan .ttl-01 span::before {
      margin-right: 24px;
      transform: translateY(28px) rotate(-30deg);
    }
    .home_plan .ttl-01 span::after {
      margin-left: 24px;
      transform: translateY(28px) rotate(30deg);
    }
    .home_plan .ttl-01::before {
      font-size: 13px;
      bottom: -20px;
    }
    .plan-list--child {
      margin-bottom: 36px!important;
    }
    .plan-list--child .img {
      margin-bottom: 12px;
      border: solid 3px #282828;
    }
    .plan-list--child .txt {
      line-height: 1.4;
    }
    .plan-list--child .ttl {
      line-height: 1.2;
      font-size: 144%;
    }
    .plan-list--child .cost--ttl {
      display: none;
    }
    .plan-list--child .cost--txt {
      font-size: 200%;
    }
    .plan-list--child .link .cost {
      margin-top: 0;
    }
    .plan-list--child .hover {
      display: none;
    }
    .plan-list--child04::before {
      top: -12px;
      right: -12px;
      width: 55px;
      height: 55px;
      background-size: cover;
    }
		.home_plan .ttl-01 {
			margin-bottom: 100px;
		}
		.chara._04 {
			width: 45%;
			bottom: -100px;
			max-width: 190px;
		}
  }
  @media screen and (max-width: 370px) {
    .home_plan .ttl-01 {
      font-size: 160%;
    }
  }

/* home_menu
********************************************** */
  .home_menu .inner {
    position: relative;
  }
  .home_menu .deco01 {
    position: absolute;
    top: -176px;
    right: -148px;
    z-index: 1;
  }
  .home_menu .ttl-01 {
    padding-right: 440px;
    text-align: left;
  }
  .home_menu .ttl-01::before {
    content: "MENU";
    top: -32px;
    left: 0;
    width: auto;
    height: auto;
    font-size: 20px;
    letter-spacing: .035em;
    font-family: 'din-2014';
    font-weight: 700;
    font-style: normal;
    color: #FFBA14;
    background-color: transparent;
  }
.chara._05 {
	right: 0;
	bottom: -50px;
	max-width: 407px;
}
  .menu-list--child {
    position: relative;
    z-index: 10;
    width: 33.333%;
    background-position: center;
  }
  .menu-list--child:nth-child(1) {
    background-image: url(../images/home/menu-01.jpg);
  }
  .menu-list--child:nth-child(2) {
    background-image: url(../images/home/menu-02.jpg);
  }
  .menu-list--child:nth-child(3) {
    background-image: url(../images/home/menu-03.jpg);
  }
  .menu-list--child .link {
    display: block;
    width: 100%;
    height: 840px;
    padding-top: 312px;
    color: #fff;
    text-align: center;
  }
  .menu-list--child .link:hover {
    background-color: rgba(0,0,0,.6);
  }
  .menu-list--child .ttl {
    display: block;
    margin-bottom: 232px;
    font-size: 266.67%;
    letter-spacing: .12em;
    line-height: 1.4;
  }
  .menu-list--child .ttl span {
    letter-spacing: .01em;
  }
  .menu-list--child .more {
    display: inline-block;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
    border-bottom: solid 4px #fff;
  }

  @media print, screen and (max-width: 1520px) {
    .home_menu .deco01 {
      right: 0;
    }
  }
  @media screen and (max-width: 767px) {
		#menu {
			padding-top: 40px;
		}
    .home_menu .ttl-01 {
      padding-right: 0;
			margin-bottom: 130px;
			text-align: center;
    }
    .home_menu .ttl-01::before {
      top: -24px;
      font-size: 13px;
			width: 100%;
			text-align: center;
    }
    .home_menu .deco01 {
      display: none;
    }
    .menu-list--child {
      width: 100%;
      background-size: cover;
    }
    .menu-list--child:nth-child(1) {
      background-image: url(../images/home/menu-01_sp.jpg);
    }
    .menu-list--child:nth-child(2) {
      background-image: url(../images/home/menu-02_sp.jpg);
    }
    .menu-list--child:nth-child(3) {
      background-image: url(../images/home/menu-03_sp.jpg);
    }
    .menu-list--child .link {
      height: auto;
      padding: 42px 16px;
    }
    .menu-list--child .ttl {
      margin-bottom: 32px;
      font-size: 200%;
    }
    .menu-list--child .more {
      padding-left: 16px;
      padding-right: 16px;
      border-bottom: solid 2px #fff;
      opacity: .5;
    }
		.chara._05 {
			width: 60%;
			max-width: 205px;
			bottom: -125px;
			right: 0;
			left: 0;
			margin: 0 auto;
		}
  }

/* home_voice
********************************************** */
  .home_voice {
    position: relative;
    padding-top: 108px;
  }
  .home_voice .ttl-01 {
    margin-bottom: 80px;
    letter-spacing: .08em;
  }
  .home_voice .ttl-01::before {
    content: "VOICE";
    bottom: -40px;
    left: 0;
    right: 0;
    width: auto;
    height: auto;
    font-size: 20px;
    letter-spacing: .035em;
    font-family: 'din-2014';
    font-weight: 700;
    font-style: normal;
    text-align: center;
    color: #FFBA14;
    background-color: transparent;
  }
  .home_voice .ttl-01 span {
    position: relative;
    display: inline-block;
    font-size: 66.7%;
    letter-spacing: .062em;
  }
  .home_voice .ttl-01 span::before,
  .home_voice .ttl-01 span::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 42px;
    background-color: #FFBA14;
  }
  .home_voice .ttl-01 span::before {
    margin-right: 24px;
    transform: translateY(12px) rotate(-30deg);
  }
  .home_voice .ttl-01 span::after {
    margin-left: 24px;
    transform: translateY(12px) rotate(30deg);
  }
.chara._06 {
	top: 0;
	right: 0;
	width: 22%;
	max-width: 256px;
}
  @media screen and (max-width: 1100px) {
		.chara._06 {
			top: 80px;
		}
}
  @media screen and (max-width: 767px) {
    .home_voice {
      padding-top: 54px;
    }
    .home_voice .ttl-01 {
      margin-bottom: 60px;
    }
    .home_voice .ttl-01::before {
      font-size: 13px;
      bottom: -20px;
    }
    .home_voice .ttl-01 span::before,
    .home_voice .ttl-01 span::after {
      width: 4px;
      height: 24px;
    }
    .home_voice .ttl-01 span::before {
      margin-right: 20px;
      transform: translateY(8px) rotate(-30deg);
    }
    .home_voice .ttl-01 span::after {
      margin-left: 20px;
      transform: translateY(8px) rotate(30deg);
    }
		.chara._06 {
			width: 32%;
			max-height: 145px;
			top: auto;
			bottom: -60px;
		}
  }

/* home_works
********************************************** */
  .home_works {
    position: relative;
    padding-top: 122px;
    padding-bottom: 84px;
  }
  .home_works::before {
    content: "";
    display: block;
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../images/common/ptn_bg01.jpg);
  }
  .home_works .inner {
    position: relative;
  }
  .home_works .ttl-01 {
    margin-bottom: 0;
    padding-right: 440px;
    text-align: left;
    letter-spacing: .08em;
  }
  .home_works .ttl-01::before {
    content: "WORKS";
    bottom: -18px;
    left: 180px;
    z-index: -1;
    width: auto;
    height: auto;
    font-size: 104px;
    letter-spacing: .035em;
    line-height: 1;
    font-family: 'din-2014';
    font-weight: 700;
    font-style: normal;
    text-align: center;
    color: #FFFFFF;
    background-color: transparent;
  }
  .home_works .link {
    position: relative;
    padding-right: 16px;
    color: #AFA68F;
    font-size: 108%;
  }
  .home_works .link::before {
    content: "";
    position: absolute;
    top: calc(50% - 4px);
    right: 0;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px;
    border-right: solid 2px;
    transform: rotate(45deg);
  }
  .home_works .link:hover {
    opacity: .5;
  }
  .works-slide {
    z-index: 10;
  }
  .works-slide .post {
    padding-left: 12px;
    padding-right: 12px;
    background-color: transparent;
    opacity: .5;
    transition: all .4s ease-out;
  }
  .works-slide .post.slick-active {
    opacity: 1;
  }
  .works-slide.post-box .post--txtarea {
    padding-left: 0;
    padding-right: 0;
  }
  .works-slide .slick-arrow {
    position: absolute;
    top: calc(33% - 28px);
    z-index: 10;
    width: 56px;
    height: 56px;
    border-radius: 28px;
    background-color: #282828;
  }
  .works-slide .slick-arrow::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }
  .works-slide .slick-prev {
    left: 250px;
    transform: rotate(-135deg);
  }
  .works-slide .slick-next {
    right: 250px;
    transform: rotate(45deg);
  }
  .home_works .btn a,
  .home_plan .btn a,
  .home_voice .btn a {
    min-width: 320px;
  }

  @media print, screen and (max-width: 1500px) {
    .home_works .deco01 {
      right: 0;
    }
  }
  @media screen and (max-width: 767px) {
    .home_works {
      padding-top: 61px;
      padding-bottom: 42px;
    }
    .home_works .ttl-01 {
      width: 100%;
      padding-right: 0;
    }
    .home_works .ttl-01::before {
      bottom: -8px;
      left: 104px;
      font-size: 52px;
    }
    .works-slide .slick-prev {
      left: 12px;
    }
    .works-slide .slick-next {
      right: 12px;
    }
    .home_works .btn a,
    .home_plan .btn a,
    .home_voice .btn a {
      min-width: 240px;
    }
  }

/* home_news
********************************************** */
  .home_news {
    padding-top: 24px;
    padding-bottom: 100px;
  }
  .home_news .inner {
    margin-bottom: 24px;
    padding: 40px 120px 80px;
    border-top: solid 6px #EDE9DB;
    border-bottom: solid 6px #EDE9DB;
  }
  .home_news .news_list--ttl {
    margin-bottom: 16px;
    font-size: 266.67%;
    letter-spacing: .035em;
    line-height: 1;
    text-align: center;
  }
  .home_news .news_list {
    flex: 1;
  }
  .home_news .more a {
    display: inline-block;
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 8px;
    border-bottom: solid 4px;
  }
  .home_news .more a:hover {
    color: #FFB034;
  }

  @media screen and (max-width: 767px) {
    .home_news {
      padding-top: 12px;
      padding-bottom: 50px;
    }
    .home_news .inner {
      margin-bottom: 16px;
      padding: 24px 8px;
      border-top: solid 3px #EDE9DB;
      border-bottom: solid 3px #EDE9DB;
    }
    .home_news .news_list--ttl {
      font-size: 160%;
    }
    .home_news .more a {
      padding-left: 16px;
      padding-right: 16px;
      padding-bottom: 4px;
      border-bottom: solid 2px;
    }
  }


/* ##############################################################################

    PAGE

############################################################################## */

/* feature
********************************************** */
  .page-feature #section-02 .ttl-03 {
    color: #FE5A21;
  }
  .page-feature #section-02 .ttl-03 span span {
    display: inline-block;
    padding: 0 8px;
    margin-right: 8px;
    border-radius: 4px;
    color: #fff;
    background-color: #FE5A21;
    font-size: 92%;
  }

/* contact
********************************************** */
  .page-contact .lps_sec.section_pdg:last-of-type,
  .page-estimate .lps_sec.section_pdg:last-of-type,
  .page-entry .lps_sec.section_pdg:last-of-type {
    padding-bottom: 0;
  }
  #form .cta_area {
    position: relative;
    z-index: 10;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: -40px;
  }
  #formy_form {
    padding: 64px;
    background-color: #fff;
    border: solid 3px #FFD634;
  }

  @media screen and (max-width: 767px) {
    #form {
      padding-top: 0;
    }
    #form .cta_area {
      margin-bottom: -16px;
    }
    #formy_form {
      padding: 24px 16px;
      border: solid 2px #FFD634;
    }
    .page-thanks .column_item p {
      text-align: left!important;
    }
  }

/* sitemap
*************************************************** */
  .sitemap--list { width: 49%; }
  .sitemap--list > li {
    position: relative;
    margin-left: 2em;
    margin-bottom: 16px;
  }
  .sitemap--list > li::before {
    content: "";
    position: absolute;
    top: .7em;
    left: -1.5em;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background-color: #FFBA14;
  }
  .sitemap--list-page.sitemap--list > li {
    margin-bottom: 10px;
  }
  .sitemap--list-posts.sitemap--list .sitemap--item-ttl:not(:first-child) {
    margin-top: 10px;
  }
  .sitemap--list-posts.sitemap--list > .sitemap--item-child {
    margin-bottom: 22px;
    margin-left: 4em;
  }
  .sitemap--list li a {
    display: block;
    text-decoration: none;
  }
  .sitemap--list li a:hover {
    color: #4267b2;
    text-decoration: underline;
  }
  .sitemap--item-ttl { font-weight: bold; }

  /* --- category --- */
  .sitemap--list li.sitemap--item-child a { padding-left: 8px; }
  .sitemap--list li.sitemap--item-child.sitemap--item-page { padding: 6px 0 6px 24px; }
  .sitemap--list li.sitemap--item-taxonomy ul { letter-spacing: -.4em; }
  .sitemap--list li.sitemap--item-taxonomy ul li {
    display: inline-block;
    padding: 0;
    margin-right: 8px;
    letter-spacing: normal;
  }

  @media screen and (max-width: 767px) {
    .sitemap--list { width: 100%; }
    .sitemap--list-posts.sitemap--list > .sitemap--item-child { margin-bottom: 8px; }
  }


/* ##############################################################################

    ARCHIVE

############################################################################## */

/* main_column
**************************************** */
  .main_column {
    flex: 1;
    margin-right: 80px;
    overflow: hidden;
  }

  /* --- post --- */
  .post { position: relative; }
  .post--link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }
  .post--date {
    color: #FFBA14;
  }
  .cat_list {
    position: relative;
    z-index: 1;
    overflow: hidden;
    flex: 1;
  }
  .post .post--img img {
    overflow: hidden;
    border-radius: 3px;
  }
  .cat_list a {
    display: inline-block;
    vertical-align: middle;
    font-size: 80%;
    background-color: #BEBEBE;
    color: #fff;
    line-height: 1;
    padding: 6px 16px;
    border-radius: 16px;
    float: left;
    margin-right: 4px;
    margin-bottom: 4px;
    white-space: nowrap;
  }
  .cat_list a:hover {
    background-color: #FE5A21;
  }
  .no-image {
    background-size: 80% auto!important;
    background-repeat: no-repeat;
    background-position: center;
    border-bottom: solid 1px #eee;
  }

  @media screen and (max-width: 1100px) {
    .main_column {
      width: 100%;
      margin-bottom: 40px;
      margin-right: 0;
    }
  }

/* side_column
**************************************** */
  .side_column { width: 264px; }
  .side_section:not(:last-child) { margin-bottom: 64px; }
  .side--ttl {
    margin-bottom: 16px;
    padding-left: 16px;
    font-size: 133.33%;
    line-height: 1.38;
    letter-spacing: .2em;
    border-left: solid 4px #FE5A21;
  }
  .side--ttl small {
    font-size: 62%;
    opacity: .5;
    letter-spacing: .15em;
    display: block;
    line-height: 1;
    margin-top: 8px;
  }

  /* --- cat --- */
  .cat_list--list {
    position: relative;
    margin-left: 1.5em;
    margin-bottom: 4px;
    font-size: 107%;
  }
  .cat_list--list::before {
    content: "";
    position: absolute;
    top: .6em;
    left: -1.5em;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background-color: #FFBA14;
  }

  /* --- post --- */
  .posts-side .post {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: solid 1px #e1d6c0;
  }
  .posts-side .post--img {
    margin-left: 16px;
    border-radius: 3px;
    width: 64px;
    height: 64px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .posts-side .txtarea { flex: 1; }
  .posts-side .post--date { margin-bottom: 0; }
  .posts-side .post--ttl { line-height: 1.4; }

  /* --- archive --- */
  .side_column .archive_list--ttl {
    cursor: pointer;
  }
  .side_column .archive_list--ttl::after,
  .side--list.accordion .arrow::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #FFBA14;
    border-right: 2px solid #FFBA14;
    transform: rotate(135deg);
    transition: .4s ease-out;
  }
  .side_column .archive_list--ttl.active::after,
  .side--list.accordion .arrow.active::after { transform: rotate(315deg); }
  .side_column .archive_month {
    display: none;
    margin-bottom: 8px;
  }
  .side_column .archive_month li {
    margin-top: 4px;
    padding-left: .5em;
  }

  @media screen and (max-width: 1100px) {
    .side_column { width: 100%; }
  }
  @media screen and (max-width: 767px) {
    .side_section:not(:last-child) {
      margin-bottom: 32px;
    }
    .side--ttl {
      margin-bottom: 12px;
      padding-left: 12px;
      font-size: 115%;
    }
  }
  /* --- side--list --- */
  .side--list.accordion a {
    position: relative;
    z-index: 10;
  }
  .side--list.accordion .arrow {
    position: absolute;
    top: 2px;
    left: 0;
    right: 0;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 1em;
    cursor: pointer;
  }
  .side--list.accordion .arrow::before,
  .side--list.accordion .arrow + .side--link_list {
    display: none;
  }

  /* --- archive-pulldown --- */
  .archive-pulldown {
    position: relative;
    margin-left: auto;
    z-index: 1;
  }
  .archive-pulldown .archive_list {
    position: relative;
    font-size: 92%;
  }
  .archive-pulldown .archive_list:not(:last-child) { margin-right: 24px; }
  .archive-pulldown .archive_list a {
    display: block;
    padding: 2px 16px;
    text-align: left;
  }
  .archive-pulldown .archive_list a:not(:last-child) { border-bottom: 1px solid #eee; }
  .archive-pulldown .archive_list--label { margin-right: 8px; }
  .archive-pulldown .archive_list--btn {
    cursor: pointer;
    border: none;
    outline: none;
    appearance: none;
    padding: 8px 54px 8px 32px;
    background-color: #fff;
    border: 1px solid #ccc;
  }
  .archive-pulldown .archive_list--btn::after {
    content: '';
    position: absolute;
    top: 9px;
    right: 10px;
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(45deg);
    transition: .2s ease-out;
    transform-origin: 50% 50%;
  }
  .archive-pulldown .active .archive_list--btn::after {
    top: 14px;
    transform: rotate(225deg);
  }
  .archive-pulldown .archive_list--menu {
    position: absolute;
    z-index: 1;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    visibility: hidden;
    opacity: 0;
    transition: .2s ease-out;
  }
  .archive-pulldown .active .archive_list--menu {
    visibility: visible;
    opacity: 1;
  }

  /* --- works-pulldown --- */
  .works--pulldown {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 40px;
    border-radius: 6px;
  }
  .works--select {
    position: relative;
  }
  .works--select::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.5em;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 6px 0 6px;
    border-color: #282828 transparent transparent transparent;
    transition: all .4s ease-out;
    pointer-events: none;
    z-index: 1;
  }
  .works--pulldown select,
  .works--pulldown button {
    cursor: pointer;
  }
  .works--pulldown select {
    position: relative;
    background-color: #ffd634;;
    border: none;
    border-radius: 40px;
    font-size: 125%;
    padding: 1em 3em 1em 2em;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: all .4s ease-out;
    font-family: 'Koburina Gothic W6 JIS2004';
    outline: none;
  }
  .works--pulldown select::-ms-expand {
    display: none;
  }
  .works--pulldown option {
    font-size: 86%;
    background-color: #fff;
    text-align: left;
  }
  .works--pulldown option:first-of-type {
    display: none;
  }
  .works--pulldown span {
    font-size: 280%;
    padding-left: .5em;
    padding-right: .5em;
  }
  .works--pulldown button {
    border: none;
    font-size: 180%;
    padding: .48em .6em;
    border-radius: 5px;
    margin-left: 1.5em;
    transition: all .4s ease-out;
    background-color: #282828;
    color: #fff;
  }
  .works--pulldown button:hover {
    opacity: .8;
  }

  @media all and (-ms-high-contrast:none) {
    .works--pulldown button {
      padding: 0 .5em;
    }
  }
  @media print, screen and (max-width: 1180px) {
    .works--pulldown select {
      padding: 1em 2em 1em .8em;
    }
    .works--pulldown span {
      font-size: 200%;
      padding-left: .2em;
      padding-right: .2em;
    }
    .works--pulldown button {
      margin-left: .5em;
    }
  }
  @media screen and (max-width: 767px) {

    /* --- works-pulldown --- */
    .works--pulldown {
      padding: 40px 24px;
    }
    .works--pulldown span {
      margin-top: -.25em;
      margin-bottom: -.25em;
    }
    .works--pulldown button {
      margin-top: 1em;
      margin-left: 0;
    }
    .works--pulldown button span {
      display: inline-block;
      margin-right: 8px;
      font-size: 18px;
      transform: translateY(-2px);
    }
    .works--pulldown select {
      width: 100%;
      padding: 1em 3em 1em 2em;
      font-size: 120%;
    }

  }

/* blog
**************************************** */
  .posts-blog .post{
    margin-bottom: 16px;
    background-color: #fff;
  }
  .posts-blog .post:hover .editor-ttl2 a {
    color: #FFD634;
  }
  .posts-blog .post--txtarea {
    padding: 64px 48px;
    flex: 1;
  }
  .posts-blog .post--txt {
    font-size: 87%;
    color: #B4B4B4;
    line-height: 1.53;
  }
  .posts-blog .post--date {
    margin-right: 16px;
    font-weight: bold;
    margin-bottom: 4px;
  }
  .posts-blog .post--img {
    width: 280px;
    background-size: cover;
    background-position: center;
  }
  .posts-blog .post--img {
    border-left: solid 1px #eee;
    border-bottom: none;
  }

  @media screen and (max-width: 1100px) {
    .archive-blog .inner.flex,
    .single-blog .inner.flex,
    .archive-voice .inner.flex,
    .single-voice .inner.flex,
    .archive-requirements .inner.flex,
    .single-requirements .inner.flex,
    .archive-works .inner.flex,
    .single-works .inner.flex {
      display: block;
    }
  }

  @media screen and (max-width: 767px) {
    .posts-blog .post {
      display: block;
    }
    .posts-blog .post--txtarea {
      padding: 32px 24px;
    }
    .posts-blog .post--img {
      width: 100%;
      height: 240px;
    }
  }

/* news
**************************************** */

  /* --- news--archive --- */
  .news--archive {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #111;
  }
  .news--archive li {
    margin-left: 8px;
    margin-right: 8px;
  }
  .news--archive a {
    color: #fff;
  }

  /* --- news_list --- */
  .news_list .post:not(:last-child) {
    margin-bottom: 32px;
  }
  .archive .news_list .post:not(:last-child) {
    margin-bottom: 16px;
  }
  .archive .news_list .post {
    padding: 32px;
    background-color: #fff;
  }
  .news_list .post--ttl {
    margin-bottom: 8px;
    font-size: 114%;
    line-height: 1.76;
  }
  .news_list .post:hover .post--ttl a {
    color: #FFBA14;
  }
  .news_list .post--ttl .icon-new_tab {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    transform: translateY(0);
    margin-left: 8px;
  }
  .news_list .post--txt {
    font-size: 87%;
    color: #B4B4B4;
    line-height: 1.53;
  }
  .news_list a[href="javascript:void(0);"],
  .news_list a[href="javascript:void(0);"]::before {
    color: inherit;
    cursor: inherit;
    opacity: 1;
    text-decoration: none;
    color: #282828!important;
  }
  .news_list a {
    display: inline-flex;
    align-items: center;
  }

  @media screen and (max-width: 767px) {
    .news_list .post:not(:last-child) {
      margin-bottom: 16px;
    }
    .archive .news_list .post:not(:last-child) {
      margin-bottom: 8px;
    }
    .archive .news_list .post {
      padding: 12px 16px;
    }
    .news_list .post--ttl {
      line-height: 1.4;
    }
  }

/* requirements
**************************************** */
  .requirements--cat_list,
  .voice--cat_list {
    margin: 0 8px 8px;
  }

/* staff
**************************************** */
  .staff_section_anchorlink li {
    position: relative;
    padding: 10px 16px 26px;
    background-color: #ffd634;
    border-radius: 80px;
    font-size: 140%;
    text-align: center;
    cursor: pointer;
    transition: all .4s ease-out;
  }
  .staff_section_anchorlink li::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 17px;
    margin: auto;
    width: 8px;
    height: 8px;
    border-right: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(45deg);
  }
  .staff_section_anchorlink li:hover,
  .staff_section_anchorlink li.select {
    background-color: #FFB034;
  }
  .staff_cat_section {
    display: none;
    padding-bottom: 64px;
  }
  .staff_cat_section.show { display: block; }
  .staff_cat_section--ttl {
    position: relative;
    margin-bottom: 40px;
    text-align: center;
    font-size: 240%;
  }
  .staff_cat_section--ttl::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 3px;
    background-color: #ffd634;
  }
  .staff_cat_section--ttl span {
    position: relative;
    display: inline-block;
    padding: 0 24px;
    background-color: #f2ece0;
  }
  .posts-staff .post {
    margin-bottom: 40px;
  }
  .posts-staff .post--img {
    position: relative;
    width: 90%;
    height: 410px;
    background-size: cover;
    background-position: center;
    margin-right: auto;
    margin-left: auto;
    border: 10px solid #fff;
  }
  .posts-staff .post--img::before,
  .posts-staff .post--img::after {
    position: absolute;
    opacity: 0;
    color: #fff;
    font-size: 140%;
    transition: all .4s ease-out;
  }
  .posts-staff .post--img::before {
    content: "詳しく見る";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255,214,52,.4);
    text-align: center;
    font-family: 'Koburina Gothic W6 JIS2004';
  }
  .posts-staff .post--img::after {
    content: "\f00e";
    top: 54%;
    left: 0;
    width: 100%;
    opacity: 0;
    text-align: center;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    transition: all .4s ease-out;
  }
  .posts-staff .post:hover .post--img::before,
  .posts-staff .post:hover .post--img::after {
    opacity: 1;
  }
  .posts-staff .post--txtarea {
    padding: 60px 24px 24px 64px;
    margin-top: -48px;
    background-color: #fff;
  }
  .posts-staff .editor-ttl2 {
    margin-bottom: 12px;
  }
  .posts-staff .editor-ttl2::before {
    content: "";
    position: absolute;
    left: 28px;
    bottom: 80px;
    width: 22px;
    height: 4px;
    background-color: #ffd634;
  }
  .posts-staff .staff_date span {
    color: #999;
  }

  @media screen and (max-width: 767px) {
    .staff_cat_section--ttl {
      font-size: 190%;
    }
    .posts-staff .post--img {
      height: auto;
      padding-bottom: 97%;
    }
    .posts-staff .editor-ttl2::before { bottom: 75px; }
  }

/* post-box
**************************************** */
  .post-box .post--img {
    width: 100%;
    padding-top: 70%;
    background-size: cover;
    background-position: center;
  }
  .post-box .post--txtarea {
    padding: 30px 32px;
  }
  .post-box .editor-ttl2 {
    margin-bottom: 16px;
    font-size: 147%;
  }
  .posts-works.post-box .editor-ttl2 {
    font-size: 120%;
  }
  .post-box .post--txt {
    font-size: 87%;
    color: #B4B4B4;
    line-height: 1.53;
  }
  .post-box .post--info {
    margin-top: 24px;
    font-size: 80%;
  }
  .post-box .post--info,
  .post-box .post--info a,
  .post-box .post:hover .editor-ttl2 a {
    color: #FFBA14;
  }
  .post-box .post--info span + span::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 1em;
    margin-right: 1.2em;
    margin-left: 1.2em;
    background-color: #FFBA14;
    transform: translateY(2px);
  }

  @media screen and (max-width: 767px) {
    .post-box .post--txtarea {
      padding: 24px;
    }
    .post-box .editor-ttl2 {
      margin-bottom: 8px;
      font-size: 120%;
    }
    .post-box .post--info {
      margin-top: 12px;
    }
  }


/* ##############################################################################

    SINGLE

############################################################################## */

/* single-works
**************************************** */
  .beforeAfter-txt {
    font-size: 86%;
    color: #888;
    text-align: center;
  }

  /* Before After */
  .beforeAfter,
  .compareWYW,
  .itemWrap {
    height: 480px!important;
  }
  .compareWYW {
    overflow: hidden;
    position: relative;
  }
  .compareWYW .itemWrap {
    position: absolute;
    overflow: hidden;
    background-image: url(../images/common/ptn_bg02.jpg);
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
  .compareWYW .itemWrap:nth-of-type(1) img {
    max-width: 865px;
  }
  .compareWYW .itemWrap:nth-of-type(2){
    left: 0;
    right: 0;
  }
  .compareWYW .itemWrap:nth-of-type(1)::before,
  .compareWYW .itemWrap:nth-of-type(2)::before {
    position: absolute;
    top: 8px;
    z-index: 10;
    display: inline-block;
    padding: 8px 16px;
    line-height: 1;
    letter-spacing: .025em;
    font-family: 'din-2014';
    font-weight: 700;
    font-style: normal;
    color: #2A2A2A;
    white-space: nowrap;
  }
  .compareWYW .itemWrap:nth-of-type(1)::before {
    content: "BEFORE";
    left: 0;
    background-color: #fff;
  }
  .compareWYW .itemWrap:nth-of-type(2)::before {
    content: "AFTER";
    right: 0;
    background-color: #FFD634;
  }
  .compareWYW .indicator {
    background: #FFD634;
    position: absolute;
    z-index: 3;
  }
  .compareWYW .horizontalIndicator {
    height: 100%;
    width: 2px;
  }
  .compareWYW .verticalIndicator {
    height: 2px;
    width: 100%;
  }
  .compareWYW .indicator .handle {
    position: absolute;
    background-color: #FFD634;
    background-repeat: no-repeat;
  }
  .compareWYW .horizontalHandle {
    width: 10px;
    height: 25px;
    overflow: hidden;
    background-position: 0 0;
  }
  .compareWYW .verticalHandle {
    width: 25px;
    height: 10px;
    overflow: hidden;
    background-position: -10px 0;
  }
  #works_slider [class*=main] section.off {
    display: none;
  }
  #works_slider [class*=main] section.on {
    display: block;
    z-index: 1;
  }
  #works_slider .nav {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #works_slider .nav li {
    margin: 6px 6px 0 0;
    width: 40px;
    height: 40px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border: 2px solid #f1ede1;
    transition: all .4s ease-out;
  }
  #works_slider .nav .on {
    border: 2px solid #FFD634;
  }

  @media screen and (max-width: 767px) {
    .compareWYW .itemWrap:nth-of-type(1) img {
      max-width: 320px;
    }
    .beforeAfter,
    .compareWYW,
    .itemWrap,
     #works_slider .slide--child {
      height: 320px!important;
    }
    #works_slider .nav li {
      margin: 0;
      width: 40px;
      height: 40px;
    }
  }

/* single-voice
**************************************** */

  @media screen and (max-width: 767px) {
    .single-voice .slide--child {
      height: auto!important;
    }
    .single-voice .table1 {
      width: 100%;
    }
  }

/* single-staff
**************************************** */
  .staff--info .eyecatch { border: 10px solid #fff; }
  .staff--info .txt {
    flex: 1;
    margin-left: 64px;
  }
  .staff--info .txt .table2 {
    width: 100%;
  }
  .staff--info .txt .table2 th,
  .staff--info .txt .table2 td {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .staff--info .txt .table2 th {
    width: 10em;
    border: 1px solid #ddd;
  }
  .staff_point,
  .staff_message {
    padding: 40px;
    border-radius: 6px;
    background-color: #fff;
  }
  .staff_point .ttl,
  .staff_message .ttl {
    margin-top: -50px;
    margin-left: -8px;
    margin-bottom: 26px;
  }
  .staff_point .ttl span,
  .staff_message .ttl span {
    display: inline-block;
    background-color: #fe5a21;
    padding: 8px 28px 6px;
    border-radius: 38px;
    font-size: 113%;
    color: #fff;
  }
  .staff_point--txt,
  .staff_message--txt {
    font-size: 107%;
  }

  @media screen and (max-width: 768px) {
    .staff--info .txt {
      width: 100%;
      margin-top: 24px;
      margin-left: 0;
    }
    .staff_point,
    .staff_message {
      padding: 22px;
      border-radius: 4px;
    }
    .staff_point .ttl,
    .staff_message .ttl {
      margin-top: -35px;
      margin-left: -4px;
      margin-bottom: 14px;
    }
    .staff_point .ttl span,
    .staff_message .ttl span {
      padding: 6px 18px 6px;
      font-size: 107%;
    }
  }

/* wp-pagenavi
**************************************** */
  .wp-pagenavi {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: 40px;
  }
  .wp-pagenavi .pages {
    display: block;
    text-align: center;
    width: 100%;
    margin-bottom: 1em;
  }
  .wp-pagenavi a {
    position: relative;
    padding: .5em 1em;
    background-color: #FE5A21;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .wp-pagenavi a:not(.previouspostslink):not(.nextpostslink):hover {
    opacity: .7;
  }
  .wp-pagenavi a {
    color: #fff;
  }
  .wp-pagenavi > *:not(.pages) {
    max-width: calc(100% / 2.6);
  }
  .archive .wp-pagenavi > *:not(.pages) {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    width: 40px;
    height: 40px;
  }
  .wp-pagenavi > *:not(.pages) {
    margin-bottom: 4px;
  }
  .wp-pagenavi > *:not(.pages):not(:last-child) {
    margin-right: 4px;
  }
  .wp-pagenavi .extend {
    width: 24px !important;
  }
  .wp-pagenavi .previouspostslink::before,
  .wp-pagenavi .nextpostslink::before,
  .wp-pagenavi .first::before,
  .wp-pagenavi .last::before,
  .wp-pagenavi .first::after,
  .wp-pagenavi .last::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-top: 2px solid;
    border-right: 2px solid;
  }
  .wp-pagenavi .previouspostslink::before,
  .wp-pagenavi .nextpostslink::before,
  .wp-pagenavi .first::before,
  .wp-pagenavi .last::before,
  .wp-pagenavi .first::after,
  .wp-pagenavi .last::after {
    width: 8px;
    height: 8px;
  }
  .wp-pagenavi .previouspostslink::before,
  .wp-pagenavi .first::before,
  .wp-pagenavi .first::after {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  .wp-pagenavi .nextpostslink::before,
  .wp-pagenavi .last::before,
  .wp-pagenavi .last::after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .wp-pagenavi .first::before,
  .wp-pagenavi .last::before {
    left: -6px;
  }
  .wp-pagenavi .first::after,
  .wp-pagenavi .last::after {
    right: -6px;
  }

  @media screen and (max-width: 767px) {
    .wp-pagenavi {
      margin-top: 24px;
    }
    .archive .wp-pagenavi > *:not(.pages) {
      width: 32px;
      height: 32px;
    }
    .wp-pagenavi .first::before,
    .wp-pagenavi .last::before {
      left: -5px;
    }
    .wp-pagenavi .first::after,
    .wp-pagenavi .last::after {
      right: -5px;
    }
  }


/* ##############################################################################

    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: normal;
    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%;
    font-family: 'YuGothic', '游ゴシック', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic ProN', sans-serif !important;
  }
  #formy_form textarea { height: 100px; }
  #formy_form select { height: 40px; background-color: #fff; }
  #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-color: #FE5A21;
    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 {
    font-size: inherit;
    border: none;
    cursor: pointer;
    color: #fff;
    border-radius: 3px;
    padding: 16px 32px;
    -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 {
    position: relative;
    display: inline-block;
    padding: .5em 8px .5em 40px;
    line-height: 1.6;
    vertical-align: top;
    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: 16px;
    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: #FE5A21;
    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: #FE5A21;
  }
  #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: 20px;
    border-right: 2px solid #FE5A21;
    border-bottom: 2px solid #FE5A21;
    display: block;
    position: absolute;
    z-index: 10;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .formy_confirm { background-color: #FE5A21; }
  .formy_submit_disabled { background-color: #ccc; }
  #formy_btn .formy_submit_disabled:hover {
    opacity: 1;
    cursor: default;
  }
  .autoConfirmBack { background-color: #aaa; }
  .formy_send { background-color: #FE5A21; }
  #total_required {
    padding: 16px;
    color: #FE5A21;
    text-align: center;
  }

  @media screen and (max-width: 767px) {
    #formy_form th,
    #formy_form td {
      display: block;
      width: auto;
      padding-left: 0;
      padding-right: 0;
    }
    #formy_form th {
      border-bottom:none;
      padding-bottom: 0;
      white-space: normal;
      font-weight: bold;
    }
    #formy_form td { padding-top: 0; }
    #formy_btn { padding-top: 8px; }
    #formy_btn input {
      width: 100%;
      background-size: contain;
      background-position: center;
    }
    .autoConfirmBack { margin-bottom: 8px; }
    #formy_form ul li label::before { top: 10px; }
  }


/* mainvisual
********************************************** */
.main-area {
	/*background: #A3C65A url("../images/home/main_bg01.jpg") top center no-repeat;
	height: 1000px;*/
	position: relative;
	padding: 0 15px;
    
    background:  #A3C65A;
    text-align: center;
}
.main-wrap {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	position: relative;
	padding-top: 340px;
}
.main-wrap .cta_area--contact {
	width: 64%;
	text-align: center;
	z-index: 5;
	margin: 0 0 0 auto;
}
.main-wrap .cta_area--contact div.flex {
	width: 100%;
}
.main-wrap .cta_area--contact a {
	/*border: 6px solid #FA8C1E;
	padding: 15px 0;
	border-radius: 120px;
	box-shadow: 10px 10px 0 rgba(0,0,0,.2);*/
    background: none;
}
.main-wrap .cta_area--contact .txt {
	font-size: 345%;
	padding-bottom: .5em;
}
.main-wrap .cta_area--contact .img {
  width: 160px;
  height: 160px;
}
.main-wrap .cta_area--contact .img img {
	width: 105px;
}
.main-area .hero-contact {
	position: static;
	top: auto;
    
	/*margin-top: 190px;*/
}
.main-area .hero-contact--child {
	position: relative
}
.main-area .hero-contact--child02 {
	width: 630px;
	margin: 0 35px 0 0;
    margin: 0 25px 0 0;
	padding: 75px 30px 25px;
    
    padding: 75px 30px 5px;
    max-width: 520px;
}
.main-area .hero-contact--child03 {
	width: 350px;
	background: #fff;
	border: solid 6px #FFD234;
	padding: 50px 15px 15px;
    padding: 70px 30px 15px;
}
.main-area .hero-contact--ttl {
	bottom: auto;
	top: 25px;
}
.main-area .hero-contact--list {
	height: 120px;
}
.cm-ttl {
	position: absolute;
	left: 0;
	right: 0;
	top: -20px;
	margin: 0 auto;
	text-align: center;
	z-index: 1;
}
.movieFrame {
  position: relative;
  width: 100%;
  /* 16:9 のアスペクト比を維持 */
  padding-top: 56%; /* (9 / 16) * 100 */
}
.movieFrame iframe{
position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


.movieFrame video {
	display: block;
	width: 100%;
	height: auto;
}

.main-area .hero-contact--child04{
    padding: 0 20px;
     max-width: 345px;
}


.topinstagrambnr{
    position: relative;
	margin-bottom: 10px;
   
}
.instagramcara{
    position: absolute;
    right: -105px;
  top: -5px;
}





/*estimate
********************************************** */
#estimatePage {
	height: auto;
}
body.page-estimate {
	background: url("../images/estimate/bg_top.jpg") top 60px center no-repeat,url("../images/estimate/bg_btm.jpg") bottom center no-repeat;
	background-color: #AAE1F0;
	height: auto;
}
body.page-estimate #form {
	padding: 30px 0;
}
body.page-estimate .lps_sec,body.page-estimate .bg-ptn01 {
	background: none;
}
.estimate-top {
	text-align: center;
}
.estimateTxt {
	font-size: 18px;
	color: #414141;
	margin-top: 15px;
}
.estimateTxt span{
	background: url("../images/estimate/border.png") bottom left repeat-x;
	line-height: 2;
	padding-bottom: .25em;
}
.formArea {
	padding: 64px;
	background-color: #fff;
	border: solid 3px #ffd634;
}
.formTxt {
	font-size: 115%;
	font-weight: 600;
	margin-bottom: 40px;
	text-align: center;
	color: red
}
.formBox {
	display: flex;
	flex-wrap: wrap;
}
.formBox dt,.formBox dd {
	width: 30%;
	padding: 15px 0;
	text-align: left;
	border-bottom: 1px solid #ccc;
}
.formBox dt.req::before {
	content: "必須";
	background: #fe5a21;
	color: #fff;
	font-size: 70%;
	padding: 5px;
	display: inline-block;
	line-height: 1;
	border-radius: 2px;
	position: absolute;
	right: 0;
	top: 50%;
	-webkitt-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.formBox dt {
	display: flex;
	align-items: center;
	font-weight: 600;
	position: relative;
	padding-right: 35px;
}
.formBox dd {
	width: 70%;
	padding-left: 2rem;
}
.formBox input[type="text"],.formBox input[type="tel"],.formBox input[type="email"],.formBox select,.formBox textarea {
	width: 100%;
	padding: .575em;
	border: 1px solid #ccc;
	border-radius: 3px;
}
.formBox input[type="text"].size-s {
	max-width: 210px;
}
.formBox label {
}
.formBox select {
	width: auto;
	background: #fff;
	color: #000
}
.formBox textarea {
	height: 100px;
}
.formBox .help_text {
	padding-top: 2px;
}
.formBtn {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}
.formBox input[type=checkbox] {
	display: none!important
}
.formBox label span {
	position: relative;
	display: inline-block;
	padding: .5em 8px .5em 40px;
	line-height: 1.6;
	vertical-align: top;
	cursor: pointer
}
.formBox label:hover {
	opacity: .7
}
.formBox label span::before {
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	border: 2px solid #788b93;
	left: 16px;
	top: 12px
}
.formBox input[type=checkbox]:checked+span {
	color: #fe5a21;
}
.formBox input[type=checkbox]:checked+span::before {
	border-color: #fe5a21
}
.formBox input[type=checkbox]:checked+span::after {
	content: "";
	width: 10px;
	height: 18px;
	top: 4px;
	left: 20px;
	border-right: 2px solid #fe5a21;
	border-bottom: 2px solid #fe5a21;
	display: block;
	position: absolute;
	z-index: 10;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg)
}
.mw_wp_form_confirm button.button._grey {
	display: block!important;
}
.formBtn input[type="submit"],.formBtn input[type="button"],button.button._grey {
	font-family: source-han-sans-japanese, sans-serif;
	font-style: normal;
	color: #fff;
	font-size: 115%;
	font-weight: 600;
	letter-spacing: .075em;
	text-indent: .075em;
	background: #fe5a21;
	min-width: 170px;
	display: block;
	border: none;
	padding: 15px 20px;
	margin: 10px;
	transition: .2s;
	cursor: pointer;
}
input[type="submit"]._green {
	background: #00b4a0;
}
input[type="submit"].btn_back,
button.button._grey {
	background: #ddd;
	color: #333;
}
input[type="submit"]:hover, input[type="button"]:hover,button.button._grey:hover {
	opacity: .7;
}
.onlyconf,button.button._grey {
	display: none;
}
.mw_wp_form_confirm button.button._grey,
.mw_wp_form_confirm .onlyconf,
#confirm .onlyconf {
	display: block!important;
}
.mw_wp_form .horizontal-item + .horizontal-item {
	margin-left: 0!important;
}
.mw_wp_form_confirm .privacyBox,
.mw_wp_form_confirm .formBox dt::before,
.mw_wp_form_confirm .zipBtn,
.mw_wp_form_confirm .policyTxt {
	display: none!important;
}

@media screen and (max-width: 1200px) {
	.main-area {
		background-size: auto 75%;
/*		height: 87vw;*/
		height: auto;
	}
	.main-wrap {
		padding-top: 28vw;
	}
	.main-area .hero-contact {
	/*	margin-top: 10vw;*/
	}
	.main-wrap .cta_area--contact .img {
		width: 10vw;
		height: 10vw;
	}
	.main-wrap .cta_area--contact .img img {
		width: 6vw;
	}
	.main-wrap .cta_area--contact .txt {
		font-size: 4vw;
	}
}
@media screen and (max-width: 767px) {
	.main-area {
		background-image: url("../images/home/main_bg_sp.jpg");
		background-size: 100% auto;
        background-repeat: no-repeat;
		height: auto;
		padding-bottom: 40px;
	}
	.main-wrap {
		padding-top: 88vw;
	}
	.main-wrap .cta_area--contact {
		width: 100%;
	}
	.main-wrap .cta_area--contact .txt {
		font-size: 5.5vw;
	}
	.main-wrap .cta_area--contact .img img {
		width: 8vw;
	}
	.main-area .hero-contact {
		display: block;
		background: none;
	}
	.main-area .hero-contact--child {
		width: 100%!important;
		margin: 50px auto 0!important;
	}
	.main-area .hero-contact--child02 {
		padding: 60px 20px 20px;
	}
	.cm-ttl {
		max-width: 200px;
	}
    .instagramcara{
        display: none;
    }
    .main-area .hero-contact--child04{
        box-shadow: none;
    }
    
    
	/*estimate
	********************************************** */
	body.page-estimate {
		background-position: top 50px center,bottom center;
		background-size: 220% auto,auto 800px;
	}
	.estimateTxt {
		font-size: 14px;
		text-align: left;
	}
	.estimateTxt span {
		background-size: auto 1.5px;
	}
	.estimateTxt br {
		display: none;
	}
	.formArea {
		padding: 40px 20px 30px;
	}
	.formBox {
		display: block;
	}
	.formBox dt,.formBox dd {
		width: 100%;
		padding: 15px 0;
	}
	.formBox dt {
		border-bottom: none;
		padding-bottom: 0;
	}
	.formBox dd {
		padding-top: 5px;
	}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
}