@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* 画面外にいる状態 */
.fadein {
  opacity: 0;
  transform: translate(0, 5rem);
  transition: all 2s;
}

/* 画面内に入った状態 */
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

@media screen and (min-width: 960px) {
  html {
    font-size: 1.0416666667vw;
  }
}

body {
  font-family: 'Kosugi', sans-serif;
  color: #333;
  background-color: #f2f2f2;
}

img {
  vertical-align: bottom;
}

@media screen and (max-width: 959px) {
  .pc-only {
    display: none;
  }
}

#fv .slick-slide {
  width: 1280px;
}

@media screen and (max-width: 1279px) {
  #fv .slick-slide {
    width: 100vw;
  }
}

#fv .slick-slide img {
  width: 100%;
}

body.home {
  padding-top: calc(4rem + 10px);
}

@media screen and (max-width: 959px) {
  body.home {
    padding-top: 60px;
  }
}

body.home nav {
  background-color: #666;
  padding: 2px 0;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}

body.home nav #nav-btn {
  display: none;
}

@media screen and (max-width: 959px) {
  body.home nav #nav-btn {
    cursor: pointer;
    z-index: 3;
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 20px;
    right: 20px;
  }
  body.home nav #nav-btn > div {
    background-color: #fff;
    width: 100%;
    height: 4px;
    position: absolute;
    transition: all 0.5s;
  }
  body.home nav #nav-btn > div:nth-child(1) {
    top: 0;
  }
  body.home nav #nav-btn > div:nth-child(2) {
    top: 50%;
    margin-top: -2px;
  }
  body.home nav #nav-btn > div:nth-child(3) {
    bottom: 0;
  }
}

@media screen and (max-width: 959px) {
  body.home nav {
    overflow: hidden;
    height: 60px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 2;
    transition: height 0.5s;
  }
  body.home nav.open {
    height: 306px;
  }
  body.home nav.open #nav-btn > div:nth-child(1) {
    transform: rotate(-135deg);
    top: 50%;
    margin-top: -2px;
  }
  body.home nav.open #nav-btn > div:nth-child(2) {
    opacity: 0;
  }
  body.home nav.open #nav-btn > div:nth-child(3) {
    transform: rotate(-225deg);
    bottom: 50%;
    margin-bottom: -2px;
  }
}

body.home nav .inner {
  border-style: double;
  border-color: #bedae6;
  border-width: 3px 0;
}

@media screen and (max-width: 959px) {
  body.home nav .inner {
    height: 56px;
  }
}

body.home nav .inner ul {
  height: 4rem;
  width: 50%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 959px) {
  body.home nav .inner ul {
    display: block;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    padding-top: 60px;
  }
}

body.home nav .inner ul li:first-child {
  margin-left: -6rem;
}

@media screen and (max-width: 959px) {
  body.home nav .inner ul li:first-child {
    margin-left: 0;
  }
}

@media screen and (max-width: 959px) {
  body.home nav .inner ul li {
    border-bottom: 1px solid #bedae6;
  }
}

body.home nav .inner ul li a {
  display: block;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  border-bottom: 0 solid #fff;
  transition: all .2s;
  position: relative;
}

body.home nav .inner ul li a::after {
  content: '';
  width: 100%;
  position: absolute;
  bottom: -1rem;
  height: 0;
  background-color: #fff;
  left: 0;
  transition: all 0.2s;
  opacity: 0;
}

body.home nav .inner ul li a:hover::after {
  height: 0.2rem;
  opacity: 1;
}

@media screen and (max-width: 959px) {
  body.home nav .inner ul li a {
    height: 40px;
    padding: 0;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  body.home nav .inner ul li a:hover {
    padding: 0;
    border: 0;
  }
}

@media screen and (max-width: 959px) {
  body.home nav .inner ul li.logo {
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

body.home nav .inner ul li.logo a {
  transition: opacity 0.2s;
}

body.home nav .inner ul li.logo a::after {
  content: none;
}

body.home nav .inner ul li.logo a:hover {
  opacity: 0.5;
}

body.home nav .inner ul li.logo a img {
  height: 2.5rem;
}

@media screen and (max-width: 959px) {
  body.home nav .inner ul li.logo a img {
    font: 3.2rem;
  }
}

body.home #contact-btn {
  width: 16rem;
  height: 4rem;
  background: #138e9c;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: fixed;
  right: 0;
  bottom: 2rem;
  transition: background-color 0.2s;
  z-index: 1;
  text-decoration: none;
}

body.home #contact-btn:hover {
  background-color: #19b7c9;
}

body.home #contact-btn .contact {
  line-height: 1.5rem;
  font-size: 1rem;
  padding-left: 2rem;
  background: url(img/contact_icon.png) 0 center/1.2rem no-repeat;
}

body.home #contact-btn .tel {
  line-height: 1.5rem;
  font-size: 1rem;
  padding-left: 1.5rem;
  background: url(img/tel_icon.png) 0 center/1rem no-repeat;
}

body.home #introduction {
  margin: 4rem 0;
}

@media screen and (max-width: 959px) {
  body.home #introduction {
    margin: 3rem 0 4rem;
  }
}

body.home #introduction .inner {
  max-width: 50%;
  margin: 0 auto;
}

@media screen and (max-width: 959px) {
  body.home #introduction .inner {
    max-width: 100%;
    margin: 0 5%;
  }
}

body.home #introduction .catch {
  color: #44525c;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}

body.home #introduction .title {
  font-size: 1.4rem;
  background: url(img/heading_bg.png) center center/auto 100% repeat-x;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}

@media screen and (max-width: 959px) {
  body.home #introduction .title {
    letter-spacing: 0;
  }
}

@media screen and (max-width: 479px) {
  body.home #introduction .title {
    font-size: 1.2rem;
  }
}

body.home #introduction .text {
  font-size: 1rem;
  line-height: 2;
  text-align: center;
}

@media screen and (min-width: 960px) {
  body.home #introduction .text br.sp {
    display: none;
  }
}

body.home section {
  margin-bottom: 4rem;
}

body.home section h2 {
  width: 87.5%;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #666;
  color: #fff;
  font-size: 2rem;
  border-bottom: 0.3rem solid #bedae6;
  padding: 0 12.5% 0 25%;
  margin: 0 12.5% 3rem 0;
  text-indent: 0.2em;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 959px) {
  body.home section h2 {
    width: 100%;
    margin: 0 0 3rem;
    padding: 0;
    font-size: 1.6rem;
    letter-spacing: 0;
  }
}

body.home section.renovation .content {
  display: flex;
  margin-bottom: 3rem;
}

@media screen and (max-width: 959px) {
  body.home section.renovation .content {
    display: block;
    margin: 0 5% 3rem;
  }
}

body.home section.renovation .content .detail {
  width: 50%;
  background-color: #fff;
  padding: 2rem 3.125% 2rem 12.5%;
}

@media screen and (max-width: 959px) {
  body.home section.renovation .content .detail {
    width: 100%;
    padding: 2rem;
  }
}

body.home section.renovation .content .detail .title {
  font-size: 2.8rem;
  padding-bottom: 1.6rem;
  margin-bottom: 1rem;
  position: relative;
}

body.home section.renovation .content .detail .title:before {
  content: '';
  display: block;
  width: 5rem;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #bedae6;
}

body.home section.renovation .content .detail .text {
  font-size: 1.2rem;
  line-height: 2;
}

body.home section.renovation .content .slider {
  width: 37.5%;
}

body.home section.renovation .content .slider a {
  display: block;
}

body.home section.renovation .content .slider a img {
  width: 100%;
}

@media screen and (max-width: 959px) {
  body.home section.renovation .content .slider {
    width: 100%;
  }
}

body.home section.renovation:nth-child(2n) h2 {
  padding: 0 25% 0 12.5%;
  margin: 0 0 3rem 12.5%;
}

@media screen and (max-width: 959px) {
  body.home section.renovation:nth-child(2n) h2 {
    width: 100%;
    margin: 0 0 3rem;
    padding: 0;
  }
}

body.home section.renovation:nth-child(2n) .content {
  flex-direction: row-reverse;
}

body.home section.renovation:nth-child(2n) .content .detail {
  padding: 2rem 12.5% 2rem 3.125%;
}

body.home section.renovation .slider-nav {
  position: relative;
}

body.home section.renovation .slider-nav .slick-arrow {
  position: absolute;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  z-index: 1;
  border: 0;
  padding: 0;
  margin: 0;
  width: 3rem;
  height: 3rem;
  top: 2.5rem;
}

@media screen and (max-width: 959px) {
  body.home section.renovation .slider-nav .slick-arrow {
    top: 0.8rem;
    width: 2rem;
    height: 2rem;
  }
}

body.home section.renovation .slider-nav .slick-arrow.slick-prev {
  left: 12.5%;
  background: url(img/arrow_left_icon.png) center center/100%;
}

@media screen and (max-width: 959px) {
  body.home section.renovation .slider-nav .slick-arrow.slick-prev {
    left: -1rem;
  }
}

body.home section.renovation .slider-nav .slick-arrow.slick-next {
  right: 12.5%;
  background: url(img/arrow_right_icon.png) center center/100%;
}

@media screen and (max-width: 959px) {
  body.home section.renovation .slider-nav .slick-arrow.slick-next {
    right: -1rem;
  }
}

@media screen and (max-width: 959px) {
  body.home section.renovation .slider-nav {
    margin: 0 5%;
    width: 90%;
  }
}

body.home section.renovation .slider-nav .slick-list {
  padding: 0 1rem;
}

body.home section.renovation .slider-nav .slick-slide {
  margin: 0 0.5rem;
}

body.home section.renovation .slider-nav .slick-current {
  padding-bottom: 1rem;
  border-bottom: 0.2rem solid #bedae6;
}

body.home section.renovation .slider-nav .slick-dots {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-top: 1rem;
}

body.home section.renovation .slider-nav .slick-dots > li {
  background-color: #ccc;
  width: 1rem;
  height: 1rem;
  border-radius: 0.5rem;
  margin: 0 0.5em;
}

body.home section.renovation .slider-nav .slick-dots > li.slick-active {
  background-color: #bedae6;
}

body.home section.renovation .slider-nav .slick-dots > li button {
  display: none;
}

body.home section#about {
  margin-bottom: 0;
}

body.home section#about h2 {
  padding: 0 25% 0 12.5%;
  margin: 0 0 3rem 12.5%;
}

@media screen and (max-width: 959px) {
  body.home section#about h2 {
    width: 100%;
    margin: 0 0 3rem;
    padding: 0;
  }
}

body.home section#about .description .content {
  position: relative;
  margin-bottom: 6rem;
}

@media screen and (max-width: 959px) {
  body.home section#about .description .content {
    margin: 0 5% 4rem;
  }
}

body.home section#about .description .content .detail {
  background-color: #fff;
  position: relative;
  width: 62.5%;
  height: 22rem;
  padding: 2rem 12.5%;
  box-shadow: 1rem 1rem 0 rgba(190, 218, 230, 0.5);
}

@media screen and (max-width: 959px) {
  body.home section#about .description .content .detail {
    width: 100%;
    height: auto;
    padding: 2rem;
  }
}

body.home section#about .description .content .detail .heading {
  padding-left: 1rem;
  margin-bottom: 1.5rem;
  border-left: 0.4rem solid #bedae6;
}

body.home section#about .description .content .detail .heading .catch {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

body.home section#about .description .content .detail .heading .title {
  font-size: 2.8rem;
  line-height: 1.5;
}

@media screen and (max-width: 959px) {
  body.home section#about .description .content .detail .heading .title {
    font-size: 2rem;
  }
}

body.home section#about .description .content .detail .text {
  font-size: 1rem;
  line-height: 2;
}

@media screen and (max-width: 959px) {
  body.home section#about .description .content .detail .text {
    margin-bottom: 1rem;
  }
}

body.home section#about .description .content img {
  width: 45rem;
  position: absolute;
  top: 2rem;
  left: 85%;
}

@media screen and (max-width: 959px) {
  body.home section#about .description .content img {
    position: static;
    width: 100%;
  }
}

body.home section#about .description .content:nth-child(2) .detail {
  margin-left: 37.5%;
}

@media screen and (max-width: 959px) {
  body.home section#about .description .content:nth-child(2) .detail {
    margin: 0;
  }
}

body.home section#about .description .content:nth-child(2) img {
  left: auto;
  right: 85%;
}

body.home section#about .description .content:first-child .detail .title {
  padding-left: .5em;
  position: relative;
  font-size: 2.6rem;
  letter-spacing: -0.05em;
}

@media screen and (max-width: 959px) {
  body.home section#about .description .content:first-child .detail .title {
    font-size: 1.8rem;
  }
}

body.home section#about .description .content:first-child .detail .title::first-letter {
  display: inline-block;
  margin-left: -0.5em;
}

body.home section#flow ol {
  margin-left: 25%;
  list-style: none;
}

@media screen and (max-width: 959px) {
  body.home section#flow ol {
    margin: 0 5%;
  }
}

body.home section#flow ol > li {
  border-bottom: 0.2rem solid #bedae6;
  padding-left: 8rem;
  padding-bottom: 1rem;
  background-position: 1rem center;
  background-repeat: no-repeat;
  background-size: auto 4.4rem;
  margin-top: 2rem;
}

body.home section#flow ol > li .title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

body.home section#flow ol > li .text {
  font-size: 1rem;
  line-height: 1.5;
}

body.home section#flow ol > li:nth-child(1) {
  margin-left: 2rem;
  background-image: url(img/flow_num_01.png);
}

@media screen and (max-width: 959px) {
  body.home section#flow ol > li:nth-child(1) {
    margin-left: 0;
  }
}

body.home section#flow ol > li:nth-child(2) {
  margin-left: 4rem;
  background-image: url(img/flow_num_02.png);
}

@media screen and (max-width: 959px) {
  body.home section#flow ol > li:nth-child(2) {
    margin-left: 0;
  }
}

body.home section#flow ol > li:nth-child(3) {
  margin-left: 6rem;
  background-image: url(img/flow_num_03.png);
}

@media screen and (max-width: 959px) {
  body.home section#flow ol > li:nth-child(3) {
    margin-left: 0;
  }
}

body.home section#flow ol > li:nth-child(4) {
  margin-left: 8rem;
  background-image: url(img/flow_num_04.png);
}

@media screen and (max-width: 959px) {
  body.home section#flow ol > li:nth-child(4) {
    margin-left: 0;
  }
}

body.home section#flow ol > li:nth-child(5) {
  margin-left: 10rem;
  background-image: url(img/flow_num_05.png);
}

@media screen and (max-width: 959px) {
  body.home section#flow ol > li:nth-child(5) {
    margin-left: 0;
  }
}

body.home section#flow ol > li:nth-child(6) {
  margin-left: 12rem;
  background-image: url(img/flow_num_06.png);
}

@media screen and (max-width: 959px) {
  body.home section#flow ol > li:nth-child(6) {
    margin-left: 0;
  }
}

body.home section#area {
  margin-bottom: 0;
}

body.home section#area h2 {
  padding: 0 25% 0 12.5%;
  margin: 0 0 3rem 12.5%;
}

@media screen and (max-width: 959px) {
  body.home section#area h2 {
    width: 100%;
    margin: 0 0 3rem;
    padding: 0;
  }
}

body.home section#area .description .content {
  line-height: 1.75;
  margin-left: 12.5%;
  width: 87.5%;
  background-color: #fff;
  padding: 2rem calc(12.5% + 2rem) 2rem 2rem;
  position: relative;
  font-size: 1.2rem;
  margin-bottom: 6rem;
  box-shadow: 1rem 1rem 0 rgba(190, 218, 230, 0.5);
}

@media screen and (max-width: 959px) {
  body.home section#area .description .content {
    margin: 0 5% 4rem;
    padding: 2rem;
  }
}

body.home section#area .description .content .title {
  font-size: 2rem;
  padding-bottom: 1.6rem;
  margin-bottom: 1.6rem;
  position: relative;
}

body.home section#area .description .content .title:before {
  content: '';
  display: block;
  width: 5rem;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #bedae6;
}

body.home section#area .description .content img {
  float: right;
  width: 34rem;
  margin-left: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 959px) {
  body.home section#area .description .content img {
    float: none;
    width: 100%;
    margin: 0 0 2rem;
  }
}

body.home section#area .description .content small {
  font-size: 1rem;
}

body.home section#media .content {
  width: 75%;
  padding: 0 4rem;
  margin: 0 auto;
}

@media screen and (max-width: 959px) {
  body.home section#media .content {
    padding: 0 2rem;
    width: 100%;
  }
}

body.home section#media .content img {
  width: 100%;
}

body.home section#media .content img.sp {
  display: none;
}

@media screen and (max-width: 959px) {
  body.home section#media .content img.pc {
    display: none;
  }
  body.home section#media .content img.sp {
    display: inline-block;
  }
}

body.home section#media .content .text {
  font-size: 2rem;
  text-align: center;
  margin-top: 2rem;
}

body.home #contact {
  background-color: #666;
  padding: 2rem 0;
}

@media screen and (max-width: 959px) {
  body.home #contact {
    padding: 2rem;
  }
}

body.home #contact .inner {
  width: 50%;
  margin: 0 auto;
}

@media screen and (max-width: 959px) {
  body.home #contact .inner {
    width: 100%;
  }
}

body.home #contact .text {
  margin-bottom: 2rem;
  font-size: 1rem;
  text-align: center;
  color: #fff;
}

body.home #contact .btn {
  display: block;
  padding: 0.5rem;
  height: 6rem;
  text-decoration: none;
  color: #ffffff;
  background: #138e9c url(img/contact_icon.png) calc(50% - 6rem) center/auto 2rem no-repeat;
  transition: background-color 0.2s;
}

body.home #contact .btn.tel.pc {
  background: transparent url(img/tel_icon.png) calc(50% - 6rem) center/auto 2rem no-repeat;
}

body.home #contact .btn.tel.pc .btn-inner {
  border: none;
}

body.home #contact .btn.tel.sp {
  display: none;
}

@media screen and (max-width: 959px) {
  body.home #contact .btn.tel.pc {
    display: none;
  }
  body.home #contact .btn.tel.sp {
    display: block;
    margin-top: 1rem;
    background: #138e9c url(img/tel_icon.png) calc(50% - 6rem) center/auto 2rem no-repeat;
  }
}

body.home #contact .btn:hover {
  background-color: #16a3b3;
}

body.home #contact .btn .btn-inner {
  padding-left: 4rem;
  border: 1px solid #fff;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media screen and (max-width: 959px) {
  body.home #contact .btn .btn-inner {
    padding-left: 3rem;
  }
}

body.home #contact .btn .en {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

body.home #contact .btn .ja {
  font-size: 1rem;
}

body.home #company {
  padding: 3rem 0;
  background-color: #fff;
}

@media screen and (max-width: 959px) {
  body.home #company {
    padding: 3rem 5%;
  }
}

body.home #company > .inner {
  width: 50%;
  margin: 0 auto;
  display: flex;
  margin-bottom: 3rem;
}

@media screen and (max-width: 959px) {
  body.home #company > .inner {
    width: 100%;
    display: block;
  }
}

body.home #company .data {
  width: 40%;
}

@media screen and (max-width: 959px) {
  body.home #company .data {
    width: 100%;
    margin-bottom: 2rem;
  }
}

body.home #company .data .name {
  padding-left: 5rem;
  padding-top: 0.5rem;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  background: url(img/footer_logo.png) 0 0/auto 2.5rem no-repeat;
}

@media screen and (max-width: 959px) {
  body.home #company .data .name {
    font-size: 2rem;
  }
}

@media screen and (max-width: 959px) {
  body.home #company .data dl {
    font-size: 1.6rem;
  }
}

body.home #company .data dl dt {
  margin-bottom: 0.5rem;
  padding-bottom: 0.6rem;
  position: relative;
  display: table;
}

body.home #company .data dl dt:before {
  content: '';
  width: 140%;
  height: 2px;
  background-color: #bedae6;
  position: absolute;
  left: 0;
  bottom: 0;
}

body.home #company .data dl dd {
  margin-bottom: 2rem;
  line-height: 1.25;
}

body.home #company .data dl dd:last-child {
  margin-bottom: 0;
}

body.home #company #map {
  width: 60%;
  height: 26rem;
}

@media screen and (max-width: 959px) {
  body.home #company #map {
    width: 100%;
    height: 320px;
  }
}

body.home #company .site > .inner {
  width: 50%;
  margin: 0 auto;
}

@media screen and (max-width: 959px) {
  body.home #company .site > .inner {
    width: 100%;
  }
}

body.home #company .site a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  height: 6rem;
  text-decoration: none;
  background: url(img/site_btn_bg.jpg) center center/cover no-repeat;
  transition: opacity 0.2s;
}

body.home #company .site a img {
  height: 4rem;
}

body.home #company .site a:hover {
  opacity: 0.75;
}

body.home footer {
  text-align: center;
  color: #666;
  background-color: #f2f2f2;
  padding: 1rem 0;
}

body.contact header {
  background-color: #666;
  padding: 2px 0;
  margin-bottom: 2rem;
}

body.contact header .inner {
  border-style: double;
  border-color: #bedae6;
  border-width: 3px 0;
}

@media screen and (max-width: 959px) {
  body.contact header .inner {
    height: 56px;
  }
}

body.contact header .inner h2 {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.contact header .inner h2 img {
  height: 2.5rem;
}

body.contact .container {
  width: 50%;
  margin: 0 auto;
}

@media screen and (max-width: 959px) {
  body.contact .container {
    width: auto;
    margin: 0 1rem;
  }
}

body.contact .container h1 {
  font-size: 1.4rem;
  background: url(img/heading_bg.png) center center/auto 100% repeat-x;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}

@media screen and (max-width: 959px) {
  body.contact .container h1 {
    letter-spacing: 0;
  }
}

@media screen and (max-width: 479px) {
  body.contact .container h1 {
    font-size: 1.2rem;
  }
}

body.contact .container form ul {
  list-style: none;
  margin-bottom: 2rem;
}

body.contact .container form ul > li {
  display: flex;
  margin-top: 1.5rem;
  min-height: 3rem;
}

@media screen and (max-width: 959px) {
  body.contact .container form ul > li {
    margin-top: 4rem;
    display: block;
  }
}

body.contact .container form ul > li:first-child {
  margin-top: 0;
}

body.contact .container form ul > li.space {
  margin-top: 3.5rem;
}

body.contact .container form ul > li .label {
  width: 16rem;
  border-left: 0.2rem solid #bedae6;
  padding-left: 0.8rem;
  padding-right: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: none;
  line-height: 1.4;
}

@media screen and (max-width: 959px) {
  body.contact .container form ul > li .label {
    width: auto;
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }
}

body.contact .container form ul > li .input {
  flex: auto;
  display: flex;
  /* flex-flow: column;
  justify-content: center;
  align-items: flex-start; */
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-top: -1rem;
}

body.contact .container form ul > li .input.column {
  display: block;
} 

@media screen and (max-width: 959px) {
  body.contact .container form ul > li .input {
    font-size: 1.6rem;
  }
}

body.contact .container form ul > li .input.mt0 {
  display: flex;
  margin-top: 0;
  width: 100%;
  margin-left: 1rem;
}

body.contact .container form ul > li .input .sub-input {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 1rem;
}

body.contact .container form ul > li .input .sub-input:first-child {
  margin-top: 0;
}

body.contact .container form ul > li .input input[type="text"], body.contact .container form ul > li .input input[type="email"], body.contact .container form ul > li .input input[type="tel"], body.contact .container form ul > li .input textarea {
  width: 100%;
  display: block;
  height: 3rem;
  border: 1px solid #ccc;
  padding: calc(1rem - 1px);
  font-size: 1rem;
  line-height: 2rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
}
@media screen and (max-width: 959px) {
  body.contact .container form ul > li .input input[type="text"], body.contact .container form ul > li .input input[type="email"], body.contact .container form ul > li .input input[type="tel"], body.contact .container form ul > li .input textarea {
    font-size: 1.6rem;
  }
}

body.contact .container form ul > li .input textarea {
  height: 10rem;
}

body.contact .container form ul > li .input input[type="checkbox"] {
  width: 1.4rem;
  height: 1.4rem;
  margin: 0 .4rem 0 0;
}

body.contact .container form ul > li .input select {
  font-size: 1rem;
  border: 1px solid #ccc;
  padding: calc(0.9rem - 1px);
  border-radius: 0.5rem;
  margin-right: 1rem;
  margin-top: 1rem;
}

@media screen and (max-width: 959px) {
  body.contact .container form ul > li .input select {
    /* width: 12rem; */
    font-size: 1.6rem;
  }
}

body.contact .container form ul > li .input select option {
  font-size: 1.2rem;
  line-height: 2rem;
}
body.contact .container form ul > li .input label {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  line-height: 2rem;
  margin-top: 1rem;
  margin-right: 1rem;
  line-height: 1;
}
@media screen and (max-width: 959px) {
  body.contact .container form ul > li .input label {
    font-size: 1.6rem;
  }
}
body.contact .container form ul > li .input input[type="radio"] {
  width: 1.2em;
  height: 1.2em;
  margin: 0 .4rem 0 0;
}

body.contact .container form ul > li.require .label::after {
  content: '必須';
  color: #bf272d;
}

body.contact .container form ul > li.current-area .label {
  flex: none;
}

body.contact .container form ul > li.current-area .input {
  flex: auto;
  display: flex;
  flex-flow: row;
}

body.contact .container form ul > li.current-area .input select {
  flex: auto;
}

body.contact .container form ul > li.current-area .input input[type="text"] {
  flex: auto;
}

body.contact .container form ul > li.area .label {
  position: relative;
}

body.contact .container form ul > li.area .label::after {
  position: absolute;
  right: 1rem;
  top: 1rem;
}

@media screen and (max-width: 959px) {
  body.contact .container form ul > li.area .label::after {
    position: static;
  }
}

body.contact .container form ul > li.area .input label {
  width: 5rem;
  flex: none;
}

body.contact .container form ul > li.renovation .input label {
  margin-top: 1rem;
  margin-right: 1rem;
}

body.contact .container form ul > li .input .date {
  position: relative;
  display: inline-block;
  width: 16rem;
  height: 2.4rem;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: .5rem;
  margin-right: calc(100% - 16rem);
}

body.contact .container form ul > li .input .date::before {
  position: absolute;
  content: "\e8df";
  display: flex;
  align-items: center;
  top: 0;
  bottom: 0;
  right: -.2rem;
  width: 2.4rem;
  height: 2.4rem;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center;
  font-family: 'Material Icons';
  font-size: 2rem;
  color: #bedae6;
}
@media screen and (max-width: 959px) {
  body.contact .container form ul > li .input .date::before {
    right: .3rem;
  }
}
body.contact .container form ul > li .input input[type="date"] {
  position: relative;
  padding: 0 10px;
  width: 16rem;
  height: 2.4rem;
  border: 0;
  background: transparent;
  box-sizing: border-box;
  font-size: 1rem;
}
@media screen and (max-width: 959px) {
  body.contact .container form ul > li .input input[type="date"] {
    font-size: 1.6rem;
  }
}
body.contact .container form ul > li .input input[type="date"]::-webkit-inner-spin-button{
  -webkit-appearance: none;
  display: none;
  margin: 0;
  opacity: 0;
}
body.contact .container form ul > li .input input[type="date"]::-webkit-clear-button{
  -webkit-appearance: none;
  display: none;
  margin: 0;
  opacity: 0;
}
body.contact .container form ul > li .input input[type="date"]::-webkit-calendar-picker-indicator{
  position: absolute;
  right: 0;
  top: 0px;
  padding: 0;
  width: 36px;
  height: 36px;
  /* background: rgba(255, 0, 0, 0.5); */
  background-color: transparent;
  color: transparent;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
}


body.contact .container form .privacypolicy {
  width: 32rem;
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: calc(2rem - 1px);
  line-height: 1.5;
  height: 10rem;
  overflow: scroll;
  margin-bottom: 2rem;
}

body.contact .container form .btn-area {
  margin-bottom: 3rem;
}

body.contact .container form .btn-area .btn {
  margin: 0 auto;
  border: none;
  font-size: 1.2rem;
  width: 32rem;
  display: block;
  padding: 0.5rem;
  height: 4rem;
  text-decoration: none;
  color: #ffffff;
  background-color: #138e9c;
  transition: background-color 0.2s;
  cursor: pointer;
}

@media screen and (max-width: 959px) {
  body.contact .container form .btn-area .btn {
    width: 100%;
  }
}

body.contact .container form .btn-area .btn.tel.pc {
  background: transparent url(img/tel_icon.png) calc(50% - 6rem) center/auto 2rem no-repeat;
}

body.contact .container form .btn-area .btn.tel.pc .btn-inner {
  border: none;
}

body.contact .container form .btn-area .btn.tel.sp {
  display: none;
}

@media screen and (max-width: 959px) {
  body.contact .container form .btn-area .btn.tel.pc {
    display: none;
  }
  body.contact .container form .btn-area .btn.tel.sp {
    display: block;
    margin-top: 1rem;
    background: #138e9c url(img/tel_icon.png) calc(50% - 6rem) center/auto 2rem no-repeat;
  }
}

body.contact .container form .btn-area .btn:hover {
  background-color: #16a3b3;
}

body.contact .container form .btn-area .btn .btn-inner {
  border: 1px solid #fff;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

body.contact .send-text {
  text-align: center;
  line-height: 1.75;
  margin-bottom: 2rem;
}

body.contact .back {
  text-align: center;
  margin-bottom: 3rem;
}

body.contact .back a {
  color: #000;
}

body.contact.confirm .container form ul > li.area .label::after {
  top: 0;
}
