@charset "UTF-8";
/*-----------------------------------------------
	mediaquery
------------------------------------------------*/
/*-----------------------------------------------
	hover
------------------------------------------------*/
/************* ANIMATION ***************/
@-webkit-keyframes rippleLoader {
  0% {
    top: 75px;
    left: 75px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    opacity: 0;
  }
}
@keyframes rippleLoader {
  0% {
    top: 75px;
    left: 75px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    opacity: 0;
  }
}

@-webkit-keyframes slide_right {
  0% {
    -webkit-transform: translateX(-4px);
    transform: translateX(-4px);
  }
  100% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
}

@keyframes slide_right {
  0% {
    -webkit-transform: translateX(-4px);
    transform: translateX(-4px);
  }
  100% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
}

@-webkit-keyframes fade_in_bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade_in_bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes slide_down {
  0% {
    opacity: 0;
    top: -10px;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}

@keyframes slide_down {
  0% {
    opacity: 0;
    top: -10px;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}

@-webkit-keyframes blinking {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  10% {
    opacity: 0.5;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 0.5;
  }
  40% {
    opacity: 1;
  }
  95% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blinking {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  10% {
    opacity: 0.5;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 0.5;
  }
  40% {
    opacity: 1;
  }
  95% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes pulse {
  0% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

@keyframes pulse {
  0% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

/*--- Line Pattern ---*/
@-webkit-keyframes moveLines {
  from {
    -webkit-transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(44px);
  }
}

@keyframes moveLines {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(44px);
    transform: translateX(44px);
  }
}

@-webkit-keyframes navLinks {
  0% {
    opacity: 0;
    height: 10px;
    width: 10px;
    border: 0px solid rgba(0, 0, 0, 0.2);
  }
  50% {
    opacity: 1;
    height: 22px;
    width: 22px;
    border: 4px solid rgba(255, 255, 15, 0.1);
  }
  100% {
    opacity: 0;
    height: 10px;
    width: 10px;
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
}

@keyframes navLinks {
  0% {
    opacity: 0;
    height: 10px;
    width: 10px;
    border: 0px solid rgba(0, 0, 0, 0.2);
  }
  50% {
    opacity: 1;
    height: 22px;
    width: 22px;
    border: 4px solid rgba(255, 255, 15, 0.1);
  }
  100% {
    opacity: 0;
    height: 10px;
    width: 10px;
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
}

@-webkit-keyframes lightUp {
  0% {
    -webkit-filter: brightness(90%);
    filter: brightness(90%);
    box-shadow: 0 0 4px #fffb01;
  }
  50% {
    -webkit-filter: brightness(180%);
    filter: brightness(180%);
    box-shadow: 0 0 20px #fffb01;
  }
  100% {
    -webkit-filter: brightness(90%);
    filter: brightness(90%);
    box-shadow: 0 0 4px #fffb01;
  }
}

@keyframes lightUp {
  0% {
    -webkit-filter: brightness(90%);
    filter: brightness(90%);
    box-shadow: 0 0 4px #fffb01;
  }
  50% {
    -webkit-filter: brightness(180%);
    filter: brightness(180%);
    box-shadow: 0 0 20px #fffb01;
  }
  100% {
    -webkit-filter: brightness(90%);
    filter: brightness(90%);
    box-shadow: 0 0 4px #fffb01;
  }
}

@-webkit-keyframes burns {
  0% {
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
  }
  10% {
    -webkit-filter: brightness(120%);
    filter: brightness(120%);
  }
  25% {
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
  }
  45% {
    -webkit-filter: brightness(135%);
    filter: brightness(135%);
  }
  48% {
    -webkit-filter: brightness(130%);
    filter: brightness(130%);
  }
  50% {
    -webkit-filter: brightness(120%);
    filter: brightness(120%);
  }
  60% {
    -webkit-filter: brightness(130%);
    filter: brightness(130%);
  }
  70% {
    -webkit-filter: brightness(110%);
    filter: brightness(110%);
  }
  85% {
    -webkit-filter: brightness(145%);
    filter: brightness(145%);
  }
  88% {
    -webkit-filter: brightness(130%);
    filter: brightness(130%);
  }
  90% {
    -webkit-filter: brightness(135%);
    filter: brightness(135%);
  }
  93% {
    -webkit-filter: brightness(120%);
    filter: brightness(120%);
  }
  95% {
    -webkit-filter: brightness(110%);
    filter: brightness(110%);
  }
  100% {
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
  }
}

@keyframes burns {
  0% {
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
  }
  10% {
    -webkit-filter: brightness(120%);
    filter: brightness(120%);
  }
  25% {
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
  }
  45% {
    -webkit-filter: brightness(135%);
    filter: brightness(135%);
  }
  48% {
    -webkit-filter: brightness(130%);
    filter: brightness(130%);
  }
  50% {
    -webkit-filter: brightness(120%);
    filter: brightness(120%);
  }
  60% {
    -webkit-filter: brightness(130%);
    filter: brightness(130%);
  }
  70% {
    -webkit-filter: brightness(110%);
    filter: brightness(110%);
  }
  85% {
    -webkit-filter: brightness(145%);
    filter: brightness(145%);
  }
  88% {
    -webkit-filter: brightness(130%);
    filter: brightness(130%);
  }
  90% {
    -webkit-filter: brightness(135%);
    filter: brightness(135%);
  }
  93% {
    -webkit-filter: brightness(120%);
    filter: brightness(120%);
  }
  95% {
    -webkit-filter: brightness(110%);
    filter: brightness(110%);
  }
  100% {
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
  }
}

/*-----------------------------------------------
	color
------------------------------------------------*/
/*-----------------------------------------------
	font
------------------------------------------------*/
/****************************
  responsive
*****************************/
/****************************
  @mixin
*****************************/
/****************************
  reset
*****************************/
* {
  margin: 0;
  padding: 0;
}

html, body, div, figure, section, span, applet,
object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite, code, del, dfn,
em, font, img, ins, kbd, q, s, samp, small, strike, strong,
sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot,
thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", 'Hiragino Kaku Gothic ProN', Helvetica Neue, Helvetica, Arial,Meiryo, sans-serif;
  line-height: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

body {
  margin-bottom: 100px;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

img {
  width: 100%;
  height: auto;
  border: none;
  vertical-align: text-bottom;
}

a {
  color: black;
  text-decoration: none;
}

img {
  border: none;
  vertical-align: text-bottom;
}

li {
  list-style: none;
}

figure {
  font-size: 0;
  line-height: 0;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

input[type="text"],
input[type="button"],
input[type="email"],
input[type="submit"],
input[type="password"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.u-textBox,
.u-textArea,
.u-select,
.u-formBtn,
.u-formItemGridList li {
  width: 100%;
  height: auto;
  display: block;
  font-size: 14px;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.05em;
}

.u-textBox::-webkit-input-placeholder,
.u-textArea::-webkit-input-placeholder,
.u-select::-webkit-input-placeholder,
.u-formBtn::-webkit-input-placeholder,
.u-formItemGridList li::-webkit-input-placeholder {
  color: #797979;
}

.u-textBox:-ms-input-placeholder,
.u-textArea:-ms-input-placeholder,
.u-select:-ms-input-placeholder,
.u-formBtn:-ms-input-placeholder,
.u-formItemGridList li:-ms-input-placeholder {
  color: #797979;
}

.u-textBox::-ms-input-placeholder,
.u-textArea::-ms-input-placeholder,
.u-select::-ms-input-placeholder,
.u-formBtn::-ms-input-placeholder,
.u-formItemGridList li::-ms-input-placeholder {
  color: #797979;
}

.u-textBox::placeholder,
.u-textArea::placeholder,
.u-select::placeholder,
.u-formBtn::placeholder,
.u-formItemGridList li::placeholder {
  color: #797979;
}

.u-require {
  color: red;
}

.u-txt {
  font-size: 15px;
  font-weight: 500;
}

.u-textBox {
  margin-top: 6px;
  height: 35px;
  padding: 10px;
  background: #e5e5e5;
  border: 1px solid #e5e5e5;
  box-sizing: border-box;
}

.u-textBox:nth-of-type(1) {
  margin-top: 0;
}

.u-textArea {
  height: 150px;
  padding: 10px;
  background: #e5e5e5;
  border: 1px solid #e5e5e5;
  box-sizing: border-box;
  line-height: 1.5;
}

.u-select {
  margin-top: 6px;
  height: 55px;
  padding: 20px 20px 20px 40px;
  background: #e5e5e5 url("../images/common/icon-arrow-down-black-fill.png") no-repeat 20px center/10px auto;
  border: 1px solid #e5e5e5;
  color: #797979;
}

.u-select:nth-of-type(1) {
  margin-top: 0;
}

.u-checkBoxWrap label {
  height: 20px;
  padding-left: 34px;
  display: flex;
  align-items: center;
  position: relative;
}

.u-checkBoxWrap label::before {
  content: '';
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #e5e5e5;
  box-sizing: border-box;
}

/****************************
  siteHeader
*****************************/
.siteHeaderPC__inner {
  padding: 20px 0;
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  widows: auto;
}

@media (max-width: 640px) {
  .siteHeaderPC__inner {
    width: auto;
  }
}

.siteHeaderPC__textArea {
  display: flex;
  justify-content: space-between;
  height: 63px;
}

.siteHeaderPC__textArea__left__logo {
  margin-top: 8px;
  width: 285px;
  height: auto;
}

.siteHeaderPC__textArea__left__logo__link {
  display: block;
}

@media screen and (min-width: 768px) {
  .siteHeaderPC__textArea__left__logo__link {
    transition: all 0.6s ease-in-out;
  }
}

@media screen and (min-width: 768px) {
  .siteHeaderPC__textArea__left__logo__link:hover {
    opacity: 0.6;
  }
}

.siteHeaderPC__textArea__left__text {
  font-size: 12px;
  font-weight: 500;
}

.siteHeaderPC__textArea__right {
  width: 298px;
}

.siteHeaderPC__textArea__right__groupe {
  display: flex;
  justify-content: space-between;
}

.siteHeaderPC__textArea__right__groupe__left, .siteHeaderPC__textArea__right__groupe__right {
  font-weight: 700;
}

.siteHeaderPC__textArea__right__groupe__left {
  font-size: 11px;
  font-weight: 700;
}

.siteHeaderPC__textArea__right__groupe__right {
  font-size: 12px;
  letter-spacing: 0.05em;
}

.siteHeaderPC__textArea__right__groupe__block {
  width: 235px;
  height: auto;
}

.siteHeaderPC__textArea__right__groupe__block__wrapper {
  margin-top: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.siteHeaderPC__textArea__right__groupe__icon {
  width: 60px;
  height: auto;
}

.siteHeaderPC__textArea__right__groupe__block__text {
  margin-top: 5px;
  font-size: 12px;
  letter-spacing: 0.002em;
  font-weight: 700;
}

.siteHeaderPC__navi {
  background: #21a937;
}

.siteHeaderPC__navi__inner {
  margin: 0 auto;
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 640px) {
  .siteHeaderPC__navi__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .siteHeaderPC__navi__inner {
    width: auto;
    padding: 0 25px;
  }
}

.siteHeaderPC__navi__list {
  margin: 0 auto;
  position: relative;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 860px;
  height: 40px;
}

.siteHeaderPC__navi__list__item {
  position: relative;
}

.siteHeaderPC__navi__list__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #fff;
}

.siteHeaderPC__navi__list__item:last-child:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #fff;
}

.siteHeaderPC__navi__list__item__link {
  padding: 0 20px;
  color: #fff;
  font-size: 15px;
  line-height: 0.05em;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .siteHeaderPC__navi__list__item__link {
    transition: all 0.6s ease-in-out;
  }
}

@media screen and (min-width: 768px) {
  .siteHeaderPC__navi__list__item__link:hover {
    opacity: 0.6;
  }
}

.siteHeaderPC__BottomTextArea {
  position: fixed;
  bottom: 0;
  z-index: 2;
  width: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background: #ed6c00;
}

.siteHeaderPC__BottomTextArea__inner {
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

@media (max-width: 640px) {
  .siteHeaderPC__BottomTextArea__inner {
    width: auto;
  }
}

.siteHeaderPC__BottomTextArea__text {
  margin-right: 20px;
  width: 290px;
}

.siteHeaderPC__BottomTextArea__text__contact {
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.siteHeaderPC__BottomTextArea__text__time {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 0;
  font-size: 13px;
  background: #fff;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.siteHeaderPC__BottomTextArea__text__icon {
  margin-right: 5px;
  width: 60px;
  height: auto;
}

.siteHeaderPC__BottomTextArea__text__number {
  width: 290px;
  height: auto;
}

.siteHeaderPC__BottomTextArea__text__free {
  margin-left: 10px;
  text-align: center;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #fff;
}

.siteHeaderPC__BottomTextArea__text__free-item {
  padding-top: 20px;
  font-size: 12px;
  color: #ed6c00;
  font-weight: 700;
}

.siteHeaderPC__BottomTextArea__text__free-bigItem {
  padding-top: 5px;
  font-size: 20px;
  color: #ed6c00;
  font-weight: 700;
}

@media (max-width: 640px) {
  .siteHeaderPC__BottomTextArea__text__free {
    display: none;
  }
}

.siteHeaderPC__BottomTextArea__text__mail__link {
  position: relative;
  margin-left: 20px;
  padding-left: 53px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  border-radius: 5px;
  height: 50px;
  width: 250px;
  background: #21a937;
  border: solid 2px #007130;
}

@media screen and (min-width: 768px) {
  .siteHeaderPC__BottomTextArea__text__mail__link {
    transition: all 0.6s ease-in-out;
  }
}

@media screen and (min-width: 768px) {
  .siteHeaderPC__BottomTextArea__text__mail__link:hover {
    opacity: 0.6;
  }
}

.siteHeaderPC__BottomTextArea__text__mail__link__item {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  position: relative;
}

.siteHeaderPC__BottomTextArea__text__mail__link__item:before {
  content: "";
  position: absolute;
  background: url("../images/header/siteHeaderPC__mail.png");
  background-size: cover;
  top: 50%;
  left: -40px;
  width: 30px;
  height: 21px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

@media (max-width: 640px) {
  .siteHeaderPC {
    display: none;
  }
}

.siteHeaderSP {
  display: none;
}

@media (max-width: 640px) {
  .siteHeaderSP {
    position: fixed;
    display: block;
    width: 100%;
    height: 60px;
    background: #fff;
    z-index: 2;
    top: 0;
  }
  .siteHeaderSP__inner {
    padding-top: 10px;
    margin-left: 15px;
  }
  .siteHeaderSP__textArea {
    position: relative;
  }
  .siteHeaderSP__textArea__text {
    font-size: 9px;
    font-weight: 500;
  }
  .siteHeaderSP__textArea__logo {
    margin-top: 5px;
    width: 185px;
    height: auto;
  }
  .siteHeaderSP__rightArea__menuBtn {
    width: 23px;
    height: 19px;
    top: 10px;
    right: 10px;
    position: absolute;
    cursor: pointer;
    z-index: 4;
  }
  .siteHeaderSP__rightArea__menuBtn__border {
    width: 100%;
    height: 2px;
    display: block;
    position: absolute;
    background: #000;
  }
}

@media screen and (max-width: 640px) and (min-width: 768px) {
  .siteHeaderSP__rightArea__menuBtn__border {
    transition: all 0.6s ease-in-out;
  }
}

@media (max-width: 640px) {
  .siteHeaderSP__rightArea__menuBtn__border:nth-child(1) {
    top: 0px;
    left: 0;
  }
  .siteHeaderSP__rightArea__menuBtn__border:nth-child(2) {
    bottom: 9px;
    left: 0;
  }
  .siteHeaderSP__rightArea__menuBtn__border:nth-child(3) {
    bottom: 0px;
    left: 0;
  }
  .siteHeaderSP__rightArea__menuBtn.js-active .siteHeaderSP__rightArea__menuBtn__border {
    background: #fff;
  }
  .siteHeaderSP__rightArea__menuBtn.js-active .siteHeaderSP__rightArea__menuBtn__border:nth-child(1) {
    -webkit-transform: translateY(9px) rotate(45deg);
    transform: translateY(9px) rotate(45deg);
  }
  .siteHeaderSP__rightArea__menuBtn.js-active .siteHeaderSP__rightArea__menuBtn__border:nth-child(2) {
    opacity: 0;
  }
  .siteHeaderSP__rightArea__menuBtn.js-active .siteHeaderSP__rightArea__menuBtn__border:nth-child(3) {
    -webkit-transform: translateY(-9px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg);
  }
  .siteHeaderSP__gNav {
    top: 0;
    right: 0;
    display: none;
    position: fixed;
    background: #21a937;
    opacity: .9;
    width: 100%;
    height: 100vh;
    z-index: 3;
    color: #fff;
  }
  .siteHeaderSP__gNav.js-active {
    display: block;
  }
  .siteHeaderSP__gNav__list {
    text-align: center;
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .siteHeaderSP__gNav__list__item__link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    font-size: 15px;
    color: #fff;
    letter-spacing: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
  }
  .siteHeaderSP__BottomTextArea {
    position: fixed;
    bottom: 0;
    z-index: 2;
    width: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    background: #ed6c00;
  }
  .siteHeaderSP__BottomTextArea__inner {
    width: 1060px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    padding: 5px !important;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    height: 100px;
  }
}

@media (max-width: 640px) and (max-width: 640px) {
  .siteHeaderSP__BottomTextArea__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .siteHeaderSP__BottomTextArea__text {
    margin-right: 20px;
  }
  .siteHeaderSP__BottomTextArea__text__contact {
    font-size: 12px;
    color: #fff;
    letter-spacing: 0.02em;
    font-weight: 700;
  }
  .siteHeaderSP__BottomTextArea__text__icon {
    margin-right: 5px;
    width: 40px;
    height: auto;
  }
  .siteHeaderSP__BottomTextArea__text__icon__wrapper {
    margin-top: 5px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
  }
  .siteHeaderSP__BottomTextArea__text__number {
    width: 190px;
    height: auto;
  }
  .siteHeaderSP__BottomTextArea__text__mail {
    margin-top: 5px;
  }
  .siteHeaderSP__BottomTextArea__text__mail__link {
    position: relative;
    padding-left: 53px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
    border-radius: 5px;
    height: 35px;
    width: 250px;
    background: #21a937;
    border: solid 2px #007130;
  }
  .siteHeaderSP__BottomTextArea__text__mail__link__item {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    position: relative;
  }
  .siteHeaderSP__BottomTextArea__text__mail__link__item:before {
    content: "";
    position: absolute;
    background: url("../images/header/siteHeaderPC__mail.png");
    background-size: 100%;
    top: 50%;
    left: -40px;
    width: 25px;
    height: 18px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .siteHeaderPC {
    display: none;
  }
}

@media all and (-ms-high-contrast: none) {
  .siteHeaderPC__navi__list__item__link {
    padding-top: 3px;
  }
  .siteHeaderPC__BottomTextArea__text__free-bigItem {
    padding-top: 10px;
  }
  .siteHeaderPC__BottomTextArea__text__time {
    padding: 9px 16px 6px;
  }
  .siteHeaderPC__BottomTextArea__text__mail__link__item {
    padding-top: 5px;
  }
}

/****************************
  siteFooter
*****************************/
.siteFooter {
  margin-top: 85px;
  background: #21a937;
}

.siteFooter__inner {
  padding: 40px 0;
  position: relative;
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  color: #fff;
}

@media (max-width: 640px) {
  .siteFooter__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .siteFooter__inner {
    padding: 50px 15px;
    display: block;
    width: auto;
  }
}

.siteFooter__right {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 265px;
  height: 175px;
}

@media (max-width: 640px) {
  .siteFooter__right {
    display: none;
    width: auto;
  }
}

.siteFooter__right__list__item {
  margin-top: 15px;
}

.siteFooter__right__list__item:first-child {
  margin-top: 0;
}

.siteFooter__right__list__item__link {
  position: relative;
  font-size: 12px;
  color: #fff;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .siteFooter__right__list__item__link {
    transition: all 0.6s ease-in-out;
  }
}

@media screen and (min-width: 768px) {
  .siteFooter__right__list__item__link:hover {
    opacity: 0.6;
  }
}

.siteFooter__right__list__item__link:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  height: 1px;
  width: 10px;
  background: #fff;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.siteFooter__left__title {
  margin: 13px 0;
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 640px) {
  .siteFooter__left__title {
    font-size: 25px;
  }
}

.siteFooter__left__text {
  margin-top: 7px;
  font-size: 12px;
}

.siteFooter__left__text.mt0 {
  margin-top: 0;
}

@media (max-width: 640px) {
  .siteFooter__left__text {
    margin-top: 0;
    font-size: 12px;
    line-height: 1.4;
  }
}

.siteFooter__pagetop {
  position: fixed;
  opacity: 0;
  bottom: 130px;
  right: 18px;
  width: 68px;
  height: auto;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .siteFooter__pagetop {
    transition: all 0.6s ease-in-out;
  }
}

.siteFooter__pagetop .pc {
  display: block;
}

.siteFooter__pagetop .sp {
  display: none;
}

.siteFooter__pagetop.on {
  opacity: 1;
}

@media (max-width: 640px) {
  .siteFooter__pagetop {
    position: absolute;
    top: -138px;
    opacity: 1;
  }
  .siteFooter__pagetop .pc {
    display: none;
  }
  .siteFooter__pagetop .sp {
    display: block;
  }
}

.siteFooter__copy {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  background: #fff;
  font-size: 12px;
  color: #21a937;
  line-height: 1.4;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}

.siteFooter__copy br {
  display: none;
}

@media (max-width: 640px) {
  .siteFooter__copy {
    padding: 0 15px;
    height: 70px;
    text-align: center;
  }
  .siteFooter__copy br {
    display: block;
  }
}

.home .siteFooter {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .page-id-5 .siteFooter,
  .page-id-8 .siteFooter,
  .page-id-13 .siteFooter,
  .page-id-20 .siteFooter,
  .post-type-archive-case .siteFooter {
    margin-top: 160px;
  }
}

/********************************************************
  topPage
*********************************************************/
/*====================================================================
  INDEX
====================================================================*/
/*
● topPageMvSec(トップページ)
● topPageCommentSec(トップページ)
● topPageServiceSec(トップページ)
● topPageBlockSec(トップページ)
● topPageBlogSec(トップページ)


/********************************************************
  PageConsultationSec
*********************************************************/
.PageConsultationSec__inner {
  padding-top: 70px;
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 640px) {
  .PageConsultationSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .PageConsultationSec__inner {
    padding: 50px 15px 0;
    width: auto;
  }
}

.PageConsultationSec__title {
  margin: 0 auto;
  padding-top: 10px;
  padding-left: 20px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  text-align: center;
  font-size: 28px;
  color: #21a937;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding-left: 12px;
  width: 550px;
  height: 50px;
  background: url("../images/outerwallpaintpage/outerwallpaintPageConsultationSec__title.png") no-repeat;
  background-size: 100%;
}

.PageConsultationSec__title .sp {
  display: none;
}

@media (max-width: 640px) {
  .PageConsultationSec__title {
    padding-top: 0px;
    padding-left: 20px;
    width: 285px;
    height: 75px;
    font-size: 23px;
    line-height: 1.4;
    background: url("../images/toppage/topPageCaseSec02.png") no-repeat;
    background-size: 100%;
    background-position: bottom;
  }
  .PageConsultationSec__title .sp {
    display: block;
  }
}

.PageConsultationSec__list {
  margin-top: 50px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 640px) {
  .PageConsultationSec__list {
    margin-top: 30px;
    flex-direction: column;
  }
}

.PageConsultationSec__list__item {
  text-align: center;
  width: 240px;
}

@media (max-width: 640px) {
  .PageConsultationSec__list__item {
    width: auto;
  }
}

.PageConsultationSec__list__item__image img {
  display: flex;
  align-items: center;
  height: 180px;
}

@media (max-width: 640px) {
  .PageConsultationSec__list__item__image img {
    display: block;
    height: auto;
  }
}

.PageConsultationSec__list__item__text {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.38;
  font-weight: 500;
}

@media (max-width: 640px) {
  .PageConsultationSec__list__item__text {
    margin: 10px 0;
    width: auto;
    font-size: 14px;
  }
}

/********************************************************
  PageTitleSec
*********************************************************/
.PageTitleSec {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  height: 110px;
  background: #f0f6e1;
}

@media (max-width: 640px) {
  .PageTitleSec {
    margin-top: 60px;
    height: 80px;
  }
}

.PageTitleSec__inner {
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 640px) {
  .PageTitleSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .PageTitleSec__inner {
    padding: 0 15px;
    width: auto;
  }
}

.PageTitleSec__title {
  font-size: 30px;
  color: #21a937;
  font-weight: 700;
  letter-spacing: 0.2em;
}

@media (max-width: 640px) {
  .PageTitleSec__title {
    font-size: 25px;
  }
}

/********************************************************
  PageBreadSec
*********************************************************/
@media (max-width: 640px) {
  .PageBreadSec {
    margin-top: 5px;
  }
}

.PageBreadSec__inner {
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 640px) {
  .PageBreadSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .PageBreadSec__inner {
    padding: 0 15px;
    width: auto;
  }
}

.PageBreadSec__list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #666666;
  letter-spacing: 0.05em;
  font-weight: 500;
}

@media (max-width: 640px) {
  .PageBreadSec__list {
    font-size: 9px;
  }
}

.PageBreadSec__list__item {
  display: flex;
  align-items: center;
  height: 27px;
}

.PageBreadSec__list__item__link {
  font-size: 12px;
  color: #666666;
  letter-spacing: 0.05em;
  font-weight: 500;
}

@media (max-width: 640px) {
  .PageBreadSec__list__item__link {
    font-size: 9px;
  }
}

/********************************************************
  topPageMvSecPC(トップページ)
*********************************************************/
.topPageMvSecPC {
  position: relative;
}

.topPageMvSecPC__slider {
  position: relative;
  height: calc(100vh - 140px);
  width: 100vw;
}

.topPageMvSecPC__overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: block;
}

.topPageMvSecPC__overlay__inner {
  position: relative;
  height: 100%;
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 640px) {
  .topPageMvSecPC__overlay__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .topPageMvSecPC__overlay__inner {
    padding: 0 15px;
    width: auto;
  }
}

.topPageMvSecPC__overlay__textArea {
  padding: 30px 35px;
  position: absolute;
  top: 30%;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1;
}

.topPageMvSecPC__overlay__textArea__text {
  font-size: 20px;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.topPageMvSecPC__overlay__textArea__title {
  margin-top: 20px;
  font-size: 30px;
  color: #21a937;
  letter-spacing: 0.02em;
  line-height: 1.3;
  font-weight: 700;
}

.topPageMvSecPC__overlay__textArea__title__item {
  position: relative;
}

.topPageMvSecPC__overlay__textArea__title__item:before {
  content: "・";
  position: absolute;
  top: -21px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  font-size: 25px;
}

@media (max-width: 640px) {
  .topPageMvSecPC {
    display: none;
  }
}

.topPageMvSecSP {
  display: none;
}

@media (max-width: 640px) {
  .topPageMvSecSP {
    padding-top: 60px;
    display: block;
    position: relative;
  }
  .topPageMvSecSP__slider {
    position: relative;
    width: 100vw;
    height: 350px;
  }
  .topPageMvSecSP__textArea {
    padding: 30px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 10%;
    left: 50%;
    width: calc(100% - 30px);
    height: 162px;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    text-align: center;
  }
  .topPageMvSecSP__textArea__text {
    font-size: 15px;
    letter-spacing: 0.02em;
    font-weight: 700;
    line-height: 1.33;
  }
  .topPageMvSecSP__textArea__title {
    margin-top: 15px;
    position: relative;
    font-size: 19px;
    color: #21a937;
    letter-spacing: 0.02em;
    line-height: 1.3;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
  }
  .topPageMvSecSP__textArea__title:before {
    content: "";
    position: absolute;
    background: url("../images/toppage/sp_topPageMvSec_dots.png") no-repeat;
    background-size: 100%;
    height: 10px;
    width: 65px;
    top: -7px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

/********************************************************
  topPageCommentSec(トップページ)
*********************************************************/
.topPageCommentSecPC__inner {
  margin-top: 60px;
  padding-bottom: 15px;
  position: relative;
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 640px) {
  .topPageCommentSecPC__inner {
    width: auto;
  }
}

.topPageCommentSecPC__title {
  display: inline-block;
  position: relative;
  font-size: 24px;
  color: #21a937;
  letter-spacing: 0.05em;
  line-height: 1.45;
  font-weight: 700;
}

.topPageCommentSecPC__title .orange {
  color: #ed6c00;
}

.topPageCommentSecPC__title:before {
  content: "";
  position: absolute;
  width: 135px;
  height: 135px;
  top: -17px;
  right: -150px;
  background: url("../images/toppage/topPageCommentSec02.png") no-repeat;
  background-size: 100%;
}

.topPageCommentSecPC__text {
  margin-top: 20px;
  font-size: 15px;
  line-height: 2;
  font-weight: 500;
}

.topPageCommentSecPC__text:first-child {
  margin-top: 30px;
}

.topPageCommentSecPC__text .orange {
  color: #ed6c00;
}

.topPageCommentSecPC__bgLayer {
  position: absolute;
  bottom: 0;
  right: 0;
  background: url("../images/toppage/topPageCommentSec01.png") no-repeat;
  background-position: top right;
  background-size: cover;
  width: 680px;
  height: 515px;
  z-index: -1;
}

@media (max-width: 640px) {
  .topPageCommentSecPC {
    display: none;
  }
}

.topPageCommentSecSP {
  display: none;
}

@media (max-width: 640px) {
  .topPageCommentSecSP {
    display: block;
  }
  .topPageCommentSecSP__inner {
    margin-top: 30px;
    width: 1060px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    padding: 0 15px 15px;
    position: relative;
    width: auto;
  }
}

@media (max-width: 640px) and (max-width: 640px) {
  .topPageCommentSecSP__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .topPageCommentSecSP__title {
    display: inline-block;
    position: relative;
    font-size: 18px;
    color: #21a937;
    letter-spacing: 0.05em;
    font-weight: 500;
    line-height: 1.45;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
  }
  .topPageCommentSecSP__title .orange {
    color: #ed6c00;
  }
  .topPageCommentSecSP__title:before {
    content: "";
    position: absolute;
    width: 115px;
    height: 115px;
    bottom: -120px;
    left: 0;
    background: url("../images/toppage/topPageCommentSec02.png") no-repeat;
    background-size: 100%;
  }
  .topPageCommentSecSP__text {
    margin-top: 20px;
    font-size: 15px;
    line-height: 2;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
  }
  .topPageCommentSecSP__text:first-child {
    margin-top: 30px;
  }
  .topPageCommentSecSP__text .orange {
    color: #ed6c00;
  }
}

/********************************************************
  topPageServiceSec(トップページ)
*********************************************************/
.topPageServiceSec__inner {
  margin-top: 50px;
  position: relative;
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 640px) {
  .topPageServiceSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .topPageServiceSec__inner {
    width: auto;
    padding: 0 15px;
  }
}

.topPageServiceSec__title {
  margin: 50px auto 0;
  padding-top: 10px;
  padding-left: 20px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  text-align: center;
  font-size: 28px;
  color: #21a937;
  letter-spacing: 0.05em;
  font-weight: 700;
  width: 235px;
  height: 50px;
  background: url("../images/toppage/topPageServiceSec__title.png") no-repeat;
  background-size: 100%;
}

@media (max-width: 640px) {
  .topPageServiceSec__title {
    font-size: 28px;
  }
}

.topPageServiceSec__imageArea {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 640px) {
  .topPageServiceSec__imageArea {
    display: block;
  }
}

.topPageServiceSec__imageArea__list {
  position: relative;
}

@media (max-width: 640px) {
  .topPageServiceSec__imageArea__list {
    margin-top: 20px;
  }
  .topPageServiceSec__imageArea__list:first-child {
    margin-top: 0;
  }
}

.topPageServiceSec__imageArea__list__link {
  position: relative;
  display: block;
}

.topPageServiceSec__imageArea__list__link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .topPageServiceSec__imageArea__list__link:before {
    transition: all 0.6s ease-in-out;
  }
}

.topPageServiceSec__imageArea__list__link:hover:before {
  background: rgba(0, 0, 0, 0.3);
}

.topPageServiceSec__imageArea__list__link:hover .topPageServiceSec__imageArea__list__textArea {
  background: #21a937;
}

@media (max-width: 640px) {
  .topPageServiceSec__imageArea__list__link:hover:before {
    background: none;
  }
  .topPageServiceSec__imageArea__list__link:hover .topPageServiceSec__imageArea__list__textArea {
    background: rgba(33, 169, 55, 0.6);
  }
}

.topPageServiceSec__imageArea__list__image {
  display: flex;
  align-items: stretch;
  width: 320px;
  height: 225px;
}

@media (max-width: 640px) {
  .topPageServiceSec__imageArea__list__image {
    width: auto;
  }
}

.topPageServiceSec__imageArea__list__textArea {
  padding-left: 15px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 35px;
  display: flex;
  align-items: center;
  background: rgba(33, 169, 55, 0.6);
}

@media screen and (min-width: 768px) {
  .topPageServiceSec__imageArea__list__textArea {
    transition: all 0.6s ease-in-out;
  }
}

.topPageServiceSec__imageArea__list__textArea__text {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
}

.topPageServiceSec__imageArea__list__textArea__text:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(45deg) translate(0, -50%);
  transform: rotate(45deg) translate(0, -50%);
}

.topPageServiceSec__imageArea__list__textArea__text__item {
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.2em;
  font-weight: 700;
}

@media (max-width: 640px) {
  .topPageServiceSec__imageArea__list__textArea__text__item {
    font-size: 16px;
  }
}

/********************************************************
  topPageBlockSec(トップページ)
*********************************************************/
.topPageBlockSec__inner {
  margin-top: 60px;
  position: relative;
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 640px) {
  .topPageBlockSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .topPageBlockSec__inner {
    margin-top: 50px;
    width: auto;
    padding: 0 15px 0;
  }
}

.topPageBlockSec__list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 640px) {
  .topPageBlockSec__list {
    display: block;
  }
}

.topPageBlockSec__list__item-price {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 475px;
  height: 150px;
  border: 5px solid rgba(33, 169, 55, 0.7);
  background: url("../images/toppage/topPageBlockSec01.png") no-repeat;
  background-size: cover;
}

@media (max-width: 640px) {
  .topPageBlockSec__list__item-price {
    height: 100px;
    width: auto;
  }
}

.topPageBlockSec__list__item-question {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 475px;
  height: 150px;
  border: 5px solid rgba(33, 169, 55, 0.7);
  background: url("../images/toppage/topPageBlockSec03.png") no-repeat;
  background-size: cover;
}

@media (max-width: 640px) {
  .topPageBlockSec__list__item-question {
    margin-top: 20px;
    height: 100px;
    width: auto;
  }
}

.topPageBlockSec__list__item__link {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
}

.topPageBlockSec__list__item__link:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .topPageBlockSec__list__item__link:before {
    transition: all 0.6s ease-in-out;
  }
}

.topPageBlockSec__list__item__link:hover:before {
  background: rgba(33, 169, 55, 0.7);
}

.topPageBlockSec__list__item__link:hover .topPageBlockSec__list__item__link__item {
  color: #fff;
}

@media (max-width: 640px) {
  .topPageBlockSec__list__item__link {
    font-size: 18px;
  }
  .topPageBlockSec__list__item__link:hover:before {
    background: none;
  }
  .topPageBlockSec__list__item__link:hover .topPageBlockSec__list__item__link__item {
    color: #21a937;
  }
}

.topPageBlockSec__list__item__link__item {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: #21a937;
  letter-spacing: 0.2em;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .topPageBlockSec__list__item__link__item {
    transition: all 0.6s ease-in-out;
  }
}

@media (max-width: 640px) {
  .topPageBlockSec__list__item__link__item {
    font-size: 18px;
  }
}

.topPageBlockSec__block {
  margin-top: 50px;
  border: 5px solid #f4a766;
}

.topPageBlockSec__block__inner {
  padding: 25px 27px;
  height: 150px;
}

@media (max-width: 640px) {
  .topPageBlockSec__block__inner {
    height: auto;
  }
}

.topPageBlockSec__block__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

@media (max-width: 640px) {
  .topPageBlockSec__block__title {
    font-size: 14px;
    line-height: 2;
  }
}

.topPageBlockSec__block__groupe {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 640px) {
  .topPageBlockSec__block__groupe {
    margin-top: 10px;
    display: block;
  }
}

.topPageBlockSec__block__groupe__title {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 98px;
  height: 65px;
  background: url("../images/toppage/topPageBlockSec02.png") no-repeat;
  background-size: cover;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.topPageBlockSec__block__groupe__title.pc {
  display: flex;
}

.topPageBlockSec__block__groupe__title.sp {
  display: none;
}

@media (max-width: 640px) {
  .topPageBlockSec__block__groupe__title {
    width: 100%;
    background: url("../images/toppage/sp_topPageBlockSec02.png") no-repeat;
    background-size: 100%;
    height: auto;
  }
  .topPageBlockSec__block__groupe__title.pc {
    display: none;
  }
  .topPageBlockSec__block__groupe__title.sp {
    display: flex;
  }
  .topPageBlockSec__block__groupe__title .sp {
    display: none;
  }
}

.topPageBlockSec__block__groupe__text {
  width: 818px;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
}

@media (max-width: 640px) {
  .topPageBlockSec__block__groupe__text {
    margin-top: 15px;
    width: auto;
    height: auto;
  }
}

.page-id-8 .topPageBlockSec__inner,
.page-id-12 .topPageBlockSec__inner {
  margin-top: 100px;
}

/********************************************************
  topPageBlogSec(トップページ)
*********************************************************/
@media (max-width: 640px) {
  .topPageBlogSec {
    margin-bottom: 165px;
  }
}

.topPageBlogSec__inner {
  margin-top: 50px;
  position: relative;
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 640px) {
  .topPageBlogSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .topPageBlogSec__inner {
    padding: 0 15px;
    width: auto;
  }
}

.topPageBlogSec__title {
  margin: 50px auto 0;
  padding-top: 10px;
  padding-left: 20px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  text-align: center;
  font-size: 28px;
  color: #21a937;
  letter-spacing: 0.05em;
  font-weight: 700;
  width: 150px;
  height: 50px;
  background: url("../images/toppage/topPageBlogSec02.png") no-repeat;
  background-size: 100%;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
}

@media (max-width: 640px) {
  .topPageBlogSec__title {
    padding-top: 7px;
    background-position: bottom;
    width: 130px;
    height: 40px;
    font-size: 23px;
  }
}

.topPageBlogSec__list {
  margin: 50px auto 0;
  position: relative;
  width: 650px;
}

@media (max-width: 640px) {
  .topPageBlogSec__list {
    margin: 35px auto 0;
    width: auto;
  }
}

.topPageBlogSec__list:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/toppage/topPageBlogSec01.png") no-repeat;
  background-size: cover;
  width: 100%;
  height: 3px;
}

.topPageBlogSec__list__item {
  position: relative;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  height: 70px;
}

.topPageBlogSec__list__item:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("../images/toppage/topPageBlogSec01.png") no-repeat;
  background-size: cover;
  width: 100%;
  height: 3px;
}

.topPageBlogSec__list__item__link {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .topPageBlogSec__list__item__link {
    transition: all 0.6s ease-in-out;
  }
}

@media screen and (min-width: 768px) {
  .topPageBlogSec__list__item__link:hover {
    opacity: 0.6;
  }
}

.topPageBlogSec__list__item__link__date {
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

@media (max-width: 640px) {
  .topPageBlogSec__list__item__link__date {
    display: none;
  }
}

.topPageBlogSec__list__item__link__text {
  margin-left: 35px;
  font-size: 15px;
  color: #21a937;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
}

@media (max-width: 640px) {
  .topPageBlogSec__list__item__link__text {
    margin-left: 0;
  }
}

.topPageBlogSec__btn {
  margin: 45px auto 0;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 325px;
  height: 40px;
  border-radius: 20px;
  border: 1px solid #21a937;
  font-size: 15px;
  color: #21a937;
  letter-spacing: 0.05em;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .topPageBlogSec__btn {
    transition: all 0.6s ease-in-out;
  }
}

.topPageBlogSec__btn:hover {
  background: #21a937;
  color: #fff;
}

@media (max-width: 640px) {
  .topPageBlogSec__btn {
    margin: 30px auto 0;
    width: auto;
  }
  .topPageBlogSec__btn:hover {
    border: 1px solid #21a937;
    color: #21a937;
    background: none;
  }
}

@media all and (-ms-high-contrast: none) {
  .topPageBlogSec__btn {
    padding-top: 5px;
  }
}

/********************************************************
  aboutPage
*********************************************************/
/*====================================================================
  INDEX
====================================================================*/
/*
● aboutPageMvSec(初めての方へページ)
*/
/********************************************************
  aboutPageMvSec(トップページ)
*********************************************************/
.aboutPageMvSec {
  background: url("../images/about/aboutPageMVSec01.png");
  background-size: cover;
  height: 650px;
}

@media (max-width: 640px) {
  .aboutPageMvSec {
    background: url("../images/about/sp_aboutPageMVSec01.png");
    background-size: cover;
  }
}

.aboutPageMvSec__inner {
  padding-top: 100px;
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 640px) {
  .aboutPageMvSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .aboutPageMvSec__inner {
    padding: 30px 15px;
    width: auto;
  }
}

.aboutPageMvSec__text {
  margin-top: 20px;
  font-size: 15px;
  line-height: 2;
  font-weight: 500;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4);
}

@media (max-width: 640px) {
  .aboutPageMvSec__text {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
  }
  .aboutPageMvSec__text br {
    display: none;
  }
}

.aboutPageMvSec__text .orange {
  color: #ed6c00;
}

.aboutPageMvSec__text.mt0 {
  margin-top: 0;
}

@media (max-width: 640px) {
  .aboutPageMvSec__text {
    font-size: 13px;
  }
}

/********************************************************
  aboutPageFlowSec(トップページ)
*********************************************************/
.aboutPageFlowSec {
  margin: 70px auto 120px;
}

@media (max-width: 640px) {
  .aboutPageFlowSec {
    margin: 50px auto 0;
  }
}

.aboutPageFlowSec__inner {
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 640px) {
  .aboutPageFlowSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .aboutPageFlowSec__inner {
    padding: 0 15px;
    width: auto;
  }
}

.aboutPageFlowSec__title {
  margin: 0 auto;
  padding-top: 10px;
  padding-left: 20px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  text-align: center;
  font-size: 28px;
  color: #21a937;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding-left: 15px;
  width: 435px;
  height: 50px;
  background: url("../images/about/aboutPageMVSec_title.png") no-repeat;
  background-size: cover;
  background-size: 100%;
}

@media (max-width: 640px) {
  .aboutPageFlowSec__title {
    width: 290px;
    height: 35px;
    font-size: 18px;
    background: url("../images/about/aboutPageMVSec_title.png") no-repeat;
    background-size: 100%;
    background-position: bottom;
  }
}

.aboutPageFlowSec__list__number {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #21a937;
  color: #fff;
  width: 75px;
  height: 75px;
  font-size: 35px;
  font-weight: 700;
}

@media (max-width: 640px) {
  .aboutPageFlowSec__list__number {
    margin: 0 auto;
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
}

.aboutPageFlowSec__list__item {
  margin-top: 40px;
  position: relative;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}

@media (max-width: 640px) {
  .aboutPageFlowSec__list__item {
    margin-top: 30px;
    padding-bottom: 100px;
    flex-direction: column;
    align-items: center;
    display: block;
  }
}

.aboutPageFlowSec__list__item:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 62px;
  height: 62px;
  background: url("../images/about/aboutPageMVSec03.png") no-repeat;
  background-size: cover;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

@media (max-width: 640px) {
  .aboutPageFlowSec__list__item:before {
    top: auto;
    bottom: 0;
    right: auto;
    left: 50%;
    width: 62px;
    height: 62px;
    background: url("../images/about/aboutPageMVSec03.png") no-repeat;
    background-size: cover;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

.aboutPageFlowSec__list__item:first-child(1) {
  margin-top: 0;
}

.aboutPageFlowSec__list__item:nth-child(2):before {
  width: 60px;
  height: 73px;
  background: url("../images/about/aboutPageMVSec04.png") no-repeat;
  background-size: cover;
}

.aboutPageFlowSec__list__item:nth-child(3):before {
  width: 58px;
  height: 73px;
  background: url("../images/about/aboutPageMVSec05.png") no-repeat;
  background-size: cover;
}

.aboutPageFlowSec__list__item:nth-child(4):before {
  width: 63px;
  height: 75px;
  background: url("../images/about/aboutPageMVSec06.png") no-repeat;
  background-size: cover;
}

.aboutPageFlowSec__list__item:nth-child(5):before {
  width: 65px;
  height: 82px;
  background: url("../images/about/aboutPageMVSec07.png") no-repeat;
  background-size: cover;
}

.aboutPageFlowSec__list__item:nth-child(6) {
  padding-bottom: 0px;
}

.aboutPageFlowSec__list__item:nth-child(6):before {
  content: none;
}

.aboutPageFlowSec__list__item:nth-child(7):before {
  width: 71px;
  height: 68px;
  background: url("../images/about/aboutPageMVSec08.png") no-repeat;
  background-size: cover;
}

.aboutPageFlowSec__list__item__link {
  display: flex;
}

.aboutPageFlowSec__list__block {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 640px) {
  .aboutPageFlowSec__list__block {
    margin-top: 20px;
    margin-left: 0;
    align-items: center;
  }
}

.aboutPageFlowSec__list__block__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 75px;
}

@media (max-width: 640px) {
  .aboutPageFlowSec__list__block__inner {
    align-items: center;
    height: auto;
  }
}

.aboutPageFlowSec__list__block__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .aboutPageFlowSec__list__block__title {
    font-size: 18px;
  }
}

.aboutPageFlowSec__list__block__text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.33;
}

.aboutPageFlowSec__list__block__text .letter02 {
  margin-left: 15px;
}

@media (max-width: 640px) {
  .aboutPageFlowSec__list__block__text {
    margin-top: 10px;
    font-size: 14px;
  }
  .aboutPageFlowSec__list__block__text br {
    display: none;
  }
}

.aboutPageFlowSec__list__skdlock {
  margin-top: 50px;
}

@media (max-width: 640px) {
  .aboutPageFlowSec__list__skdlock {
    overflow: scroll;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .aboutPageFlowSec__list__skdBlock__list {
    margin-top: 0px;
  }
}

.aboutPageFlowSec__list__skdBlock__dategroupe__item {
  margin-top: 16px;
}

.aboutPageFlowSec__list__skdBlock__dategroupe__item:first-child {
  margin-top: 0;
}

.aboutPageFlowSec__list__skdBlock__dategroupe__item__title {
  display: flex;
  align-items: center;
  height: 50px;
  border-top: solid 2px #21a937;
  border-bottom: solid 2px #21a937;
  font-size: 24px;
  color: #21a937;
  letter-spacing: 0.05em;
  font-weight: 700;
}

@media (max-width: 640px) {
  .aboutPageFlowSec__list__skdBlock__dategroupe__item__title {
    font-size: 15px;
  }
}

.aboutPageFlowSec__list__skdBlock__dategroupe__item__contentlist {
  margin-top: 15px;
  position: relative;
  font-size: 15px;
}

.aboutPageFlowSec__list__skdBlock__dategroupe__item__contentlist:before {
  content: "";
  position: absolute;
  top: 0;
  left: 12px;
  width: 40px;
  height: 100%;
  background: #e2eec5;
}

@media (max-width: 640px) {
  .aboutPageFlowSec__list__skdBlock__dategroupe__item__contentlist {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 13px;
  }
}

.aboutPageFlowSec__list__skdBlock__dategroupe__item__contentlist__item {
  padding-top: 15px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}

@media (max-width: 640px) {
  .aboutPageFlowSec__list__skdBlock__dategroupe__item__contentlist__item {
    flex-direction: column;
    width: 77%;
  }
}

.aboutPageFlowSec__list__skdBlock__dategroupe__item__contentlist__item:first-child {
  padding-top: 10px;
}

.aboutPageFlowSec__list__skdBlock__dategroupe__item__contentlist__item:last-child {
  padding-bottom: 15px;
}

.aboutPageFlowSec__list__skdBlock__dategroupe__item__contentlist__item__title {
  margin-left: 70px;
  width: 180px;
}

@media (max-width: 640px) {
  .aboutPageFlowSec__list__skdBlock__dategroupe__item__contentlist__item__title {
    margin-left: 0;
    width: auto;
  }
}

@media (max-width: 640px) {
  .aboutPageFlowSec__list__skdBlock__dategroupe__item__contentlist__item__text {
    margin-top: 10px;
    line-height: 1.4;
  }
}

.aboutPageFlowSec__list__skdBlock__dategroupe__item__contentlist__item__text__upperchips, .aboutPageFlowSec__list__skdBlock__dategroupe__item__contentlist__item__text__lowerchips {
  display: block;
}

@media (max-width: 640px) {
  .aboutPageFlowSec__list__skdBlock__dategroupe__item__contentlist__item__text__upperchips, .aboutPageFlowSec__list__skdBlock__dategroupe__item__contentlist__item__text__lowerchips {
    line-height: 1.4;
  }
}

.aboutPageFlowSec__list__skdBlock__dategroupe__item__contentlist__item__text__lowerchips {
  margin-top: 15px;
}

/********************************************************
  outerwallpaintPage
*********************************************************/
/*====================================================================
  INDEX
====================================================================*/
/*
● outerwallpaintPageMvSec(外壁塗装についてページ)
● outerwallpaintPageNeedSec(外壁塗装についてページ)
*/
/********************************************************
  outerwallpaintPageMvSec(外壁塗装についてページ)
*********************************************************/
.outerwallpaintPageMvSec {
  background: url("../images/outerwallpaintpage/outerwallpaintPageMvSec_image01.png");
  background-size: cover;
  height: 500px;
}

@media (max-width: 640px) {
  .outerwallpaintPageMvSec {
    background: url("../images/outerwallpaintpage/sp_outerwallpaintPageMvSec_image01.png");
    background-size: cover;
  }
}

.outerwallpaintPageMvSec__inner {
  padding-top: 65px;
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 640px) {
  .outerwallpaintPageMvSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .outerwallpaintPageMvSec__inner {
    padding: 50px 15px;
    width: auto;
  }
}

.outerwallpaintPageMvSec__textArea {
  width: 600px;
  display: inline-block;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4);
}

@media (max-width: 640px) {
  .outerwallpaintPageMvSec__textArea {
    width: auto;
  }
}

.outerwallpaintPageMvSec__textArea__title {
  font-size: 24px;
  letter-spacing: 0.05em;
  font-weight: 700;
}

@media (max-width: 640px) {
  .outerwallpaintPageMvSec__textArea__title {
    font-size: 16px;
  }
}

.outerwallpaintPageMvSec__textArea__list {
  margin-top: 25px;
}

.outerwallpaintPageMvSec__textArea__list__text {
  margin-top: 20px;
  font-size: 15px;
  line-height: 2;
  font-weight: 500;
}

@media (max-width: 640px) {
  .outerwallpaintPageMvSec__textArea__list__text {
    margin-top: 10px;
    font-size: 14px;
  }
  .outerwallpaintPageMvSec__textArea__list__text br {
    display: none;
  }
}

.outerwallpaintPageMvSec__textArea__list__text .orange {
  color: #ed6c00;
}

.outerwallpaintPageMvSec__textArea__list__text.mt0 {
  margin-top: 0;
}

/********************************************************
  outerwallpaintPageNeedSec(外壁塗装についてページ)
*********************************************************/
@media (max-width: 640px) {
  .outerwallpaintPageNeedSec {
    margin-top: 50px;
  }
}

.outerwallpaintPageNeedSec__inner {
  padding-top: 70px;
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 640px) {
  .outerwallpaintPageNeedSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .outerwallpaintPageNeedSec__inner {
    padding: 0 15px;
    width: auto;
  }
}

.outerwallpaintPageNeedSec__title {
  margin: 0 auto;
  padding-top: 10px;
  padding-left: 20px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  text-align: center;
  font-size: 28px;
  color: #21a937;
  letter-spacing: 0.05em;
  font-weight: 700;
  width: 300px;
  height: 50px;
  background: url("../images/outerwallpaintpage/outerwallpaintPageNeedSec__title.png") no-repeat;
  background-size: 100%;
}

@media (max-width: 640px) {
  .outerwallpaintPageNeedSec__title {
    padding-left: 25px;
    width: 285px;
    height: 50px;
    font-size: 25px;
  }
}

.outerwallpaintPageNeedSec__block {
  margin-top: 50px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 640px) {
  .outerwallpaintPageNeedSec__block {
    margin-top: 30px;
    flex-direction: column-reverse;
  }
}

.outerwallpaintPageNeedSec__block__inner {
  width: 610px;
}

@media (max-width: 640px) {
  .outerwallpaintPageNeedSec__block__inner {
    margin-top: 20px;
    width: auto;
  }
}

.outerwallpaintPageNeedSec__block__text {
  margin-top: 20px;
  font-size: 15px;
  line-height: 2;
  font-weight: 500;
}

@media (max-width: 640px) {
  .outerwallpaintPageNeedSec__block__text {
    font-size: 14px;
  }
  .outerwallpaintPageNeedSec__block__text br {
    display: none;
  }
}

.outerwallpaintPageNeedSec__block__text:first-child {
  margin-top: 0;
}

.outerwallpaintPageNeedSec__block__image {
  width: 350px;
}

@media (max-width: 640px) {
  .outerwallpaintPageNeedSec__block__image {
    width: auto;
  }
}

.outerwallpaintPageNeedSec__groupe__wrappper {
  margin-top: 50px;
}

@media (max-width: 640px) {
  .outerwallpaintPageNeedSec__groupe__wrappper {
    margin-top: 20px;
    width: auto;
  }
}

.outerwallpaintPageNeedSec__groupe {
  margin-top: -23px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}

.outerwallpaintPageNeedSec__groupe:first-child {
  margin-top: 0;
}

.outerwallpaintPageNeedSec__groupe.end {
  align-items: flex-end;
}

@media (max-width: 640px) {
  .outerwallpaintPageNeedSec__groupe {
    flex-direction: column;
  }
}

.outerwallpaintPageNeedSec__groupe__image {
  margin-right: 50px;
  width: 365px;
}

@media (max-width: 640px) {
  .outerwallpaintPageNeedSec__groupe__image {
    margin: 0;
    width: auto;
  }
}

@media (max-width: 640px) {
  .outerwallpaintPageNeedSec__groupe__textArea {
    width: auto;
  }
}

.outerwallpaintPageNeedSec__groupe__textArea__title {
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 640px) {
  .outerwallpaintPageNeedSec__groupe__textArea__title {
    font-size: 15px;
  }
}

.outerwallpaintPageNeedSec__groupe__textArea__list__item {
  margin-top: 15px;
  font-size: 15px;
  line-height: 2;
}

@media (max-width: 640px) {
  .outerwallpaintPageNeedSec__groupe__textArea__list__item {
    font-size: 14px;
  }
  .outerwallpaintPageNeedSec__groupe__textArea__list__item br {
    display: none;
  }
}

.outerwallpaintPageNeedSec__groupe__textArea__list__item:first-child {
  margin-top: 0;
}

.outerwallpaintPageNeedSec__groupe__textArea__list {
  margin-top: 20px;
}

/********************************************************
  roofpaintingpage
*********************************************************/
/*====================================================================
  INDEX
====================================================================*/
/*
● roofpaintingpageMvSec(外壁塗装についてページ)
● roofpaintingpageResearchSec(外壁塗装についてページ)

*/
/********************************************************
  roofpaintingpageMvSec(外壁塗装についてページ)
*********************************************************/
.roofpaintingpageMvSec {
  background: url("../images/roofpainting/roofpaintingpageMvSec__image01.png");
  background-size: cover;
  height: 500px;
}

@media (max-width: 640px) {
  .roofpaintingpageMvSec {
    background: url("../images/roofpainting/sp_roofpaintingpageMvSec__image01.png");
    background-size: cover;
  }
}

.roofpaintingpageMvSec__inner {
  padding-top: 65px;
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 640px) {
  .roofpaintingpageMvSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .roofpaintingpageMvSec__inner {
    padding: 50px 15px;
    width: auto;
  }
}

.roofpaintingpageMvSec__textArea {
  width: 600px;
  display: inline-block;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4);
}

.roofpaintingpageMvSec__textArea__title {
  font-size: 24px;
  letter-spacing: 0.05em;
  font-weight: 700;
}

@media (max-width: 640px) {
  .roofpaintingpageMvSec__textArea__title {
    font-size: 16px;
  }
}

.roofpaintingpageMvSec__textArea__list {
  margin-top: 25px;
}

.roofpaintingpageMvSec__textArea__list__text {
  margin-top: 20px;
  font-size: 15px;
  line-height: 2;
  font-weight: 500;
}

@media (max-width: 640px) {
  .roofpaintingpageMvSec__textArea__list__text {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
  }
  .roofpaintingpageMvSec__textArea__list__text br {
    display: none;
  }
}

.roofpaintingpageMvSec__textArea__list__text .orange {
  color: #ed6c00;
}

.roofpaintingpageMvSec__textArea__list__text.mt0 {
  margin-top: 0;
}

/********************************************************
  roofpaintingpageResearchSec(外壁塗装についてページ)
*********************************************************/
.roofpaintingpageResearchSec {
  margin-top: 40px;
}

.roofpaintingpageResearchSec__inner {
  padding-top: 70px;
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 640px) {
  .roofpaintingpageResearchSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .roofpaintingpageResearchSec__inner {
    padding: 0 15px;
    width: auto;
  }
}

.roofpaintingpageResearchSec__title {
  margin: 0 auto;
  padding-top: 10px;
  padding-left: 20px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  text-align: center;
  font-size: 28px;
  color: #21a937;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding-left: 25px;
  width: 190px;
  height: 50px;
  background: url("../images/roofpainting/roofpaintingpageResearchSec__title.png") no-repeat;
  background-size: 100%;
}

@media (max-width: 640px) {
  .roofpaintingpageResearchSec__title {
    padding-left: 24px;
  }
}

.roofpaintingpageResearchSec__block {
  margin-top: 50px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 640px) {
  .roofpaintingpageResearchSec__block {
    margin-top: 0;
    flex-direction: column;
  }
}

.roofpaintingpageResearchSec__block__inner {
  width: 610px;
}

@media (max-width: 640px) {
  .roofpaintingpageResearchSec__block__inner {
    margin-top: 20px;
    width: auto;
  }
}

.roofpaintingpageResearchSec__block__text {
  margin-top: 20px;
  font-size: 15px;
  line-height: 2;
  font-weight: 500;
}

.roofpaintingpageResearchSec__block__text:first-child {
  margin-top: 0;
}

@media (max-width: 640px) {
  .roofpaintingpageResearchSec__block__text {
    font-size: 14px;
  }
  .roofpaintingpageResearchSec__block__text br {
    display: none;
  }
}

.roofpaintingpageResearchSec__block__image {
  width: 350px;
}

@media (max-width: 640px) {
  .roofpaintingpageResearchSec__block__image {
    margin-top: 10px;
    width: auto;
  }
}

.roofpaintingpageResearchSec__groupe__wrappper {
  margin-top: 50px;
}

.roofpaintingpageResearchSec__groupe {
  margin-top: 15px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}

.roofpaintingpageResearchSec__groupe:first-child {
  margin-top: 0;
}

.roofpaintingpageResearchSec__groupe__image {
  margin-right: 50px;
  width: 365px;
}

.roofpaintingpageResearchSec__groupe__textArea__title {
  font-size: 18px;
  font-weight: 700;
}

.roofpaintingpageResearchSec__groupe__textArea__list__item {
  margin-top: 15px;
  font-size: 15px;
  line-height: 2;
}

.roofpaintingpageResearchSec__groupe__textArea__list__item:first-child {
  margin-top: 0;
}

.roofpaintingpageResearchSec__groupe__textArea__list {
  margin-top: 20px;
}

.roofpaintingpageResearchSec__textArea__list {
  margin-top: 60px;
}

@media (max-width: 640px) {
  .roofpaintingpageResearchSec__textArea__list {
    margin-top: 50px;
  }
}

.roofpaintingpageResearchSec__textArea__list__item {
  margin-top: 35px;
  position: relative;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #21a937;
  height: 120px;
  width: 100%;
}

@media (max-width: 640px) {
  .roofpaintingpageResearchSec__textArea__list__item {
    margin-top: 25px;
    padding: 10px;
    height: 80px;
  }
}

.roofpaintingpageResearchSec__textArea__list__item:first-child {
  margin-top: 0;
}

.roofpaintingpageResearchSec__textArea__list__item:first-child:before {
  content: "";
  position: absolute;
  background: url("../images/roofpainting/roofpaintingpageResearchSec__image01.png") no-repeat;
  background-size: 100%;
  bottom: 0;
  left: 20px;
  width: 137px;
  height: 148px;
}

@media (max-width: 640px) {
  .roofpaintingpageResearchSec__textArea__list__item:first-child:before {
    background: none;
  }
}

.roofpaintingpageResearchSec__textArea__list__item:nth-child(2):before {
  content: "";
  position: absolute;
  background: url("../images/roofpainting/roofpaintingpageResearchSec__image02.png") no-repeat;
  background-size: 100%;
  bottom: 0;
  right: 20px;
  width: 180px;
  height: 133px;
}

@media (max-width: 640px) {
  .roofpaintingpageResearchSec__textArea__list__item:nth-child(2):before {
    background: none;
  }
}

.roofpaintingpageResearchSec__textArea__list__item__text {
  text-align: center;
  font-size: 28px;
  color: #fff;
  letter-spacing: 0.025em;
  line-height: 1.42;
  font-weight: 700;
}

@media (max-width: 640px) {
  .roofpaintingpageResearchSec__textArea__list__item__text {
    font-size: 15px;
  }
}

/********************************************************
  reformpage
*********************************************************/
/*====================================================================
  INDEX
====================================================================*/
/*
● reformpageCaseSec(リフォームページ)
● reformpageMvSec(リフォームページ)

*/
/********************************************************
  reformpageMvSec(リフォームページ)
*********************************************************/
.reformpageMvSec {
  background: url("../images/reformpage/reformpageMvSec01.png");
  background-size: cover;
  height: 500px;
}

@media (max-width: 640px) {
  .reformpageMvSec {
    background: url("../images/reformpage/sp_reformpageMvSec01.png");
    background-size: cover;
    height: 295px;
  }
}

.reformpageMvSec__inner {
  padding: 65px 0;
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

@media (max-width: 640px) {
  .reformpageMvSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .reformpageMvSec__inner {
    padding: 0 15px;
    width: auto;
  }
}

.reformpageMvSec__textArea {
  width: 600px;
  display: inline-block;
}

@media (max-width: 640px) {
  .reformpageMvSec__textArea {
    margin-top: 20px;
    width: auto;
  }
}

.reformpageMvSec__textArea__list {
  margin: 25px 0;
}

.reformpageMvSec__textArea__list__text {
  margin-top: 20px;
  font-size: 15px;
  line-height: 2.5;
  font-weight: 500;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4);
}

.reformpageMvSec__textArea__list__text .sp {
  display: none;
}

@media (max-width: 640px) {
  .reformpageMvSec__textArea__list__text {
    margin-top: 0px;
    font-size: 16px;
    line-height: 1.44;
    letter-spacing: 0.04em;
    font-weight: 500;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.4);
  }
  .reformpageMvSec__textArea__list__text .sp {
    display: block;
  }
}

.reformpageMvSec__textArea__list__text.mt0 {
  margin-top: 0;
}

/********************************************************
  reformpageCaseSec(リフォームページ)
*********************************************************/
.reformpageCasePCSec {
  margin: 70px auto 0;
}

@media (max-width: 640px) {
  .reformpageCasePCSec {
    margin: 50px auto 0;
  }
}

.reformpageCasePCSec__inner {
  margin-top: 50px;
  position: relative;
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 640px) {
  .reformpageCasePCSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .reformpageCasePCSec__inner {
    margin-top: 30px;
    width: auto;
    padding: 0 15px;
  }
}

.reformpageCasePCSec__title {
  margin: 0 auto;
  padding-top: 10px;
  padding-left: 20px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  text-align: center;
  font-size: 28px;
  color: #21a937;
  letter-spacing: 0.05em;
  font-weight: 700;
  width: 610px;
  height: 50px;
  background: url("../images/reformpage/reformpageCaseSec__title.png") no-repeat;
  background-size: 100%;
}

.reformpageCasePCSec__title .sp {
  display: none;
}

@media (max-width: 640px) {
  .reformpageCasePCSec__title {
    margin: 0 auto;
    padding-top: 0;
    padding-left: 12px;
    width: 290px;
    height: 65px;
    background: url("../images/reformpage/sp_reformpageCaseSec__title.png") no-repeat;
    background-size: 100%;
    background-position: bottom;
    font-size: 23px;
    line-height: 1.3;
  }
  .reformpageCasePCSec__title .sp {
    display: block;
  }
}

.reformpageCasePCSec__imageArea__list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}

@media (max-width: 640px) {
  .reformpageCasePCSec__imageArea__list {
    flex-direction: column;
  }
}

.reformpageCasePCSec__imageArea__list-kitchen {
  position: relative;
  width: 380px;
  height: 208px;
  background: url("../images/reformpage/reformpageCaseSec__kitchen.png");
  background-size: cover;
}

@media (max-width: 640px) {
  .reformpageCasePCSec__imageArea__list-kitchen {
    margin-top: 10px;
    width: 100%;
  }
}

.reformpageCasePCSec__imageArea__list-kitchen:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 166px;
  height: 96px;
  background: url("../images/reformpage/reformpageCaseSec__triangle.png");
  background-size: cover;
}

.reformpageCasePCSec__imageArea__list-bath {
  position: relative;
  width: 620px;
  height: 208px;
  background: url("../images/reformpage/reformpageCaseSec__bath.png");
  background-size: cover;
}

@media (max-width: 640px) {
  .reformpageCasePCSec__imageArea__list-bath {
    margin-top: 10px;
    width: 100%;
  }
}

.reformpageCasePCSec__imageArea__list-bath:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 166px;
  height: 96px;
  background: url("../images/reformpage/reformpageCaseSec__triangle.png");
  background-size: cover;
}

.reformpageCasePCSec__imageArea__list-rest {
  position: relative;
  width: 278px;
  height: 208px;
  background: url("../images/reformpage/reformpageCaseSec__rest.png");
  background-size: cover;
}

@media (max-width: 640px) {
  .reformpageCasePCSec__imageArea__list-rest {
    margin-top: 10px;
    width: 100%;
  }
}

.reformpageCasePCSec__imageArea__list-rest:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 166px;
  height: 96px;
  background: url("../images/reformpage/reformpageCaseSec__triangle.png");
  background-size: cover;
}

.reformpageCasePCSec__imageArea__list-wash {
  position: relative;
  width: 361px;
  height: 208px;
  background: url("../images/reformpage/reformpageCaseSec__wash.png");
  background-size: cover;
}

@media (max-width: 640px) {
  .reformpageCasePCSec__imageArea__list-wash {
    margin-top: 10px;
    width: 100%;
  }
}

.reformpageCasePCSec__imageArea__list-wash:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 166px;
  height: 96px;
  background: url("../images/reformpage/reformpageCaseSec__triangle.png");
  background-size: cover;
}

.reformpageCasePCSec__imageArea__list-living {
  position: relative;
  width: 361px;
  height: 208px;
  background: url("../images/reformpage/reformpageCaseSec__living.png");
  background-size: cover;
}

@media (max-width: 640px) {
  .reformpageCasePCSec__imageArea__list-living {
    margin-top: 10px;
    width: 100%;
  }
}

.reformpageCasePCSec__imageArea__list-living:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 166px;
  height: 96px;
  background: url("../images/reformpage/reformpageCaseSec__triangle.png");
  background-size: cover;
}

.reformpageCasePCSec__imageArea__list-sunlight {
  position: relative;
  width: 250px;
  height: 208px;
  background: url("../images/reformpage/reformpageCaseSec__sunlight.png");
  background-size: cover;
}

@media (max-width: 640px) {
  .reformpageCasePCSec__imageArea__list-sunlight {
    margin-top: 10px;
    width: 100%;
  }
}

.reformpageCasePCSec__imageArea__list-sunlight:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 166px;
  height: 96px;
  background: url("../images/reformpage/reformpageCaseSec__triangle.png");
  background-size: cover;
}

.reformpageCasePCSec__imageArea__list-bed {
  position: relative;
  width: 250px;
  height: 208px;
  background: url("../images/reformpage/reformpageCaseSec__bed.png");
  background-size: cover;
}

@media (max-width: 640px) {
  .reformpageCasePCSec__imageArea__list-bed {
    margin-top: 10px;
    width: 100%;
  }
}

.reformpageCasePCSec__imageArea__list-bed:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 166px;
  height: 96px;
  background: url("../images/reformpage/reformpageCaseSec__triangle.png");
  background-size: cover;
}

.reformpageCasePCSec__imageArea__list-japan {
  position: relative;
  width: 250px;
  height: 208px;
  background: url("../images/reformpage/reformpageCaseSec__japan.png");
  background-size: cover;
}

@media (max-width: 640px) {
  .reformpageCasePCSec__imageArea__list-japan {
    margin-top: 10px;
    width: 100%;
  }
}

.reformpageCasePCSec__imageArea__list-japan:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 166px;
  height: 96px;
  background: url("../images/reformpage/reformpageCaseSec__triangle.png");
  background-size: cover;
}

.reformpageCasePCSec__imageArea__list-kids {
  position: relative;
  width: 250px;
  height: 208px;
  background: url("../images/reformpage/reformpageCaseSec__kids.png");
  background-size: cover;
}

@media (max-width: 640px) {
  .reformpageCasePCSec__imageArea__list-kids {
    margin-top: 10px;
    width: 100%;
  }
}

.reformpageCasePCSec__imageArea__list-kids:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 166px;
  height: 96px;
  background: url("../images/reformpage/reformpageCaseSec__triangle.png");
  background-size: cover;
}

.reformpageCasePCSec__imageArea__list-entrance {
  position: relative;
  width: 500px;
  height: 208px;
  background: url("../images/reformpage/reformpageCaseSec__entrance.png");
  background-size: cover;
}

@media (max-width: 640px) {
  .reformpageCasePCSec__imageArea__list-entrance {
    margin-top: 10px;
    width: 100%;
  }
}

.reformpageCasePCSec__imageArea__list-entrance:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 166px;
  height: 96px;
  background: url("../images/reformpage/reformpageCaseSec__triangle.png");
  background-size: cover;
}

.reformpageCasePCSec__imageArea__list-roof {
  position: relative;
  width: 500px;
  height: 208px;
  background: url("../images/reformpage/reformpageCaseSec__roof.png");
  background-size: cover;
}

@media (max-width: 640px) {
  .reformpageCasePCSec__imageArea__list-roof {
    margin-top: 10px;
    width: 100%;
  }
}

.reformpageCasePCSec__imageArea__list-roof:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 166px;
  height: 96px;
  background: url("../images/reformpage/reformpageCaseSec__triangle.png");
  background-size: cover;
}

.reformpageCasePCSec__imageArea__list-exterior {
  position: relative;
  width: 278px;
  height: 208px;
  background: url("../images/reformpage/reformpageCaseSec__exterior.png");
  background-size: cover;
}

@media (max-width: 640px) {
  .reformpageCasePCSec__imageArea__list-exterior {
    margin-top: 10px;
    width: 100%;
  }
}

.reformpageCasePCSec__imageArea__list-exterior:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 166px;
  height: 96px;
  background: url("../images/reformpage/reformpageCaseSec__triangle.png");
  background-size: cover;
}

.reformpageCasePCSec__imageArea__list-storage {
  position: relative;
  width: 361px;
  height: 208px;
  background: url("../images/reformpage/reformpageCaseSec__storage.png");
  background-size: cover;
}

@media (max-width: 640px) {
  .reformpageCasePCSec__imageArea__list-storage {
    margin-top: 10px;
    width: 100%;
  }
}

.reformpageCasePCSec__imageArea__list-storage:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 166px;
  height: 96px;
  background: url("../images/reformpage/reformpageCaseSec__triangle.png");
  background-size: cover;
}

.reformpageCasePCSec__imageArea__list-flooring {
  position: relative;
  width: 361px;
  height: 208px;
  background: url("../images/reformpage/reformpageCaseSec__flooring.png");
  background-size: cover;
}

@media (max-width: 640px) {
  .reformpageCasePCSec__imageArea__list-flooring {
    margin-top: 10px;
    width: 100%;
  }
}

.reformpageCasePCSec__imageArea__list-flooring:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 166px;
  height: 96px;
  background: url("../images/reformpage/reformpageCaseSec__triangle.png");
  background-size: cover;
}

.reformpageCasePCSec__imageArea__list__inner {
  position: absolute;
  top: 18px;
  left: 15px;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.05em;
}

.reformpageCasePCSec__textArea {
  margin: 40px auto 0;
  width: 824px;
}

@media (max-width: 640px) {
  .reformpageCasePCSec__textArea {
    margin: 0 15px;
    width: auto;
  }
}

.reformpageCasePCSec__textArea__text {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}

@media (max-width: 640px) {
  .reformpageCasePCSec__textArea__text {
    margin-top: 10px;
    font-size: 13px;
  }
}

.reformpageCaseSPSec {
  display: none;
}

@media (max-width: 640px) {
  .reformpageCaseSPSec {
    display: block;
  }
  .reformpageCaseSPSec__inner {
    margin-top: 30px;
    position: relative;
    width: 1060px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    width: auto;
    padding: 0 15px;
  }
}

@media (max-width: 640px) and (max-width: 640px) {
  .reformpageCaseSPSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .reformpageCaseSPSec__title {
    margin: 50px auto 0;
    padding-top: 10px;
    padding-left: 20px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    text-align: center;
    font-size: 28px;
    color: #21a937;
    letter-spacing: 0.05em;
    font-weight: 700;
    width: 610px;
    height: 50px;
    background: url("../images/reformpage/reformpageCaseSec__title.png") no-repeat;
    background-size: 100%;
  }
  .reformpageCaseSPSec__title .sp {
    display: none;
  }
}

@media (max-width: 640px) and (max-width: 640px) {
  .reformpageCaseSPSec__title {
    padding-top: 0;
    padding-left: 12px;
    width: 290px;
    height: 65px;
    background: url("../images/reformpage/sp_reformpageCaseSec__title.png") no-repeat;
    background-size: 100%;
    background-position: bottom;
    font-size: 23px;
    line-height: 1.3;
  }
  .reformpageCaseSPSec__title .sp {
    display: block;
  }
}

@media (max-width: 640px) {
  .reformpageCaseSPSec__imageArea__list {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
  }
  .reformpageCaseSPSec__imageArea__list-kitchen {
    position: relative;
    width: 50%;
    height: 145px;
    background: url("../images/reformpage/reformpageCaseSec__kitchen.png");
    background-size: cover;
  }
  .reformpageCaseSPSec__imageArea__list-kitchen:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 115px;
    height: 70px;
    background: url("../images/reformpage/sp_reformpageCaseSec__triangle.png");
    background-size: cover;
  }
  .reformpageCaseSPSec__imageArea__list-bath {
    position: relative;
    width: 50%;
    height: 145px;
    background: url("../images/reformpage/reformpageCaseSec__bath.png");
    background-size: cover;
  }
  .reformpageCaseSPSec__imageArea__list-bath:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 115px;
    height: 70px;
    background: url("../images/reformpage/sp_reformpageCaseSec__triangle.png");
    background-size: cover;
  }
  .reformpageCaseSPSec__imageArea__list-rest {
    position: relative;
    width: 50%;
    height: 145px;
    background: url("../images/reformpage/reformpageCaseSec__rest.png");
    background-size: cover;
  }
  .reformpageCaseSPSec__imageArea__list-rest:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 115px;
    height: 70px;
    background: url("../images/reformpage/sp_reformpageCaseSec__triangle.png");
    background-size: cover;
  }
  .reformpageCaseSPSec__imageArea__list-wash {
    position: relative;
    width: 50%;
    height: 145px;
    background: url("../images/reformpage/reformpageCaseSec__wash.png");
    background-size: cover;
  }
  .reformpageCaseSPSec__imageArea__list-wash:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 115px;
    height: 70px;
    background: url("../images/reformpage/sp_reformpageCaseSec__triangle.png");
    background-size: cover;
  }
  .reformpageCaseSPSec__imageArea__list-living {
    position: relative;
    width: 50%;
    height: 145px;
    background: url("../images/reformpage/reformpageCaseSec__living.png");
    background-size: cover;
  }
  .reformpageCaseSPSec__imageArea__list-living:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 115px;
    height: 70px;
    background: url("../images/reformpage/sp_reformpageCaseSec__triangle.png");
    background-size: cover;
  }
  .reformpageCaseSPSec__imageArea__list-sunlight {
    position: relative;
    width: 50%;
    height: 145px;
    background: url("../images/reformpage/reformpageCaseSec__sunlight.png");
    background-size: cover;
  }
  .reformpageCaseSPSec__imageArea__list-sunlight:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 115px;
    height: 70px;
    background: url("../images/reformpage/sp_reformpageCaseSec__triangle.png");
    background-size: cover;
  }
  .reformpageCaseSPSec__imageArea__list-bed {
    position: relative;
    width: 50%;
    height: 145px;
    background: url("../images/reformpage/reformpageCaseSec__bed.png");
    background-size: cover;
  }
  .reformpageCaseSPSec__imageArea__list-bed:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 115px;
    height: 70px;
    background: url("../images/reformpage/sp_reformpageCaseSec__triangle.png");
    background-size: cover;
  }
  .reformpageCaseSPSec__imageArea__list-japan {
    position: relative;
    width: 50%;
    height: 145px;
    background: url("../images/reformpage/reformpageCaseSec__japan.png");
    background-size: cover;
  }
  .reformpageCaseSPSec__imageArea__list-japan:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 115px;
    height: 70px;
    background: url("../images/reformpage/sp_reformpageCaseSec__triangle.png");
    background-size: cover;
  }
  .reformpageCaseSPSec__imageArea__list-kids {
    position: relative;
    width: 50%;
    height: 145px;
    background: url("../images/reformpage/reformpageCaseSec__kids.png");
    background-size: cover;
  }
  .reformpageCaseSPSec__imageArea__list-kids:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 115px;
    height: 70px;
    background: url("../images/reformpage/sp_reformpageCaseSec__triangle.png");
    background-size: cover;
  }
  .reformpageCaseSPSec__imageArea__list-entrance {
    position: relative;
    width: 50%;
    height: 145px;
    background: url("../images/reformpage/reformpageCaseSec__entrance.png");
    background-size: cover;
  }
  .reformpageCaseSPSec__imageArea__list-entrance:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 115px;
    height: 70px;
    background: url("../images/reformpage/sp_reformpageCaseSec__triangle.png");
    background-size: cover;
  }
  .reformpageCaseSPSec__imageArea__list-roof {
    position: relative;
    width: 50%;
    height: 145px;
    background: url("../images/reformpage/reformpageCaseSec__roof.png");
    background-size: cover;
  }
  .reformpageCaseSPSec__imageArea__list-roof:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 115px;
    height: 70px;
    background: url("../images/reformpage/sp_reformpageCaseSec__triangle.png");
    background-size: cover;
  }
  .reformpageCaseSPSec__imageArea__list-exterior {
    position: relative;
    width: 50%;
    height: 145px;
    background: url("../images/reformpage/reformpageCaseSec__exterior.png");
    background-size: cover;
  }
  .reformpageCaseSPSec__imageArea__list-exterior:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 115px;
    height: 70px;
    background: url("../images/reformpage/sp_reformpageCaseSec__triangle.png");
    background-size: cover;
  }
  .reformpageCaseSPSec__imageArea__list-storage {
    position: relative;
    width: 50%;
    height: 145px;
    background: url("../images/reformpage/reformpageCaseSec__storage.png");
    background-size: cover;
  }
  .reformpageCaseSPSec__imageArea__list-storage:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 115px;
    height: 70px;
    background: url("../images/reformpage/sp_reformpageCaseSec__triangle.png");
    background-size: cover;
  }
  .reformpageCaseSPSec__imageArea__list-flooring {
    position: relative;
    width: 50%;
    height: 145px;
    background: url("../images/reformpage/reformpageCaseSec__flooring.png");
    background-size: cover;
  }
  .reformpageCaseSPSec__imageArea__list-flooring:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 115px;
    height: 70px;
    background: url("../images/reformpage/sp_reformpageCaseSec__triangle.png");
    background-size: cover;
  }
  .reformpageCaseSPSec__imageArea__list__inner {
    position: absolute;
    top: 10px;
    left: 8px;
    font-size: 12px;
    color: #fff;
    letter-spacing: 0.05em;
  }
  .reformpageCaseSPSec__textArea {
    margin: 0 15px;
    width: auto;
  }
  .reformpageCaseSPSec__textArea__text {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 500;
    line-height: 2;
  }
  .reformpageCaseSPSec__textArea__text br {
    display: none;
  }
  .reformpageCasePCSec {
    display: none;
  }
}

/********************************************************
  pricepage
*********************************************************/
/*====================================================================
  INDEX
====================================================================*/
/*
● pricepagePaintingSec(価格表ページ)
● pricepageCommentSec(価格表ページ)
● pricepageConstructionSec(価格表ページ)
● pricepageConstructionCostSec(価格表ページ)
*/
/********************************************************
  pricepagePaintingSec(価格表ページ)
*********************************************************/
.pricepagePaintingPCSec__inner {
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 640px) {
  .pricepagePaintingPCSec__inner {
    width: auto;
  }
}

.pricepagePaintingPCSec__title {
  margin: 50px auto 0;
  padding-top: 10px;
  padding-left: 20px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  text-align: center;
  font-size: 28px;
  color: #21a937;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding-left: 15px;
  width: 180px;
  height: 50px;
  background: url("../images/pricepage/pricepagePaintingSec__title.png") no-repeat;
  background-size: cover;
  background-size: 100%;
}

.pricepagePaintingPCSec__table {
  margin-top: 15px;
}

.pricepagePaintingPCSec__table__wrapper {
  margin-top: 45px;
}

.pricepagePaintingPCSec__table__wrapper__title {
  font-size: 18px;
  font-weight: 700;
}

.pricepagePaintingPCSec__list__wrapper {
  margin-top: 20px;
}

.pricepagePaintingPCSec__list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}

.pricepagePaintingPCSec__list__item__groupe__text__wrapper {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}

.pricepagePaintingPCSec__list__item__groupe__text {
  border-left: 1px solid #a0a0a0;
}

.pricepagePaintingPCSec__list__item__groupe__text.green {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 70px;
  background: #21a937;
  font-size: 15px;
  color: #fff;
  font-weight: 700;
}

@media (max-width: 640px) {
  .pricepagePaintingPCSec__list__item__groupe__text.green {
    width: 90px;
    font-size: 12px;
  }
}

.pricepagePaintingPCSec__list__item__groupe__text.green.box {
  width: 100px;
  height: 70px;
}

.pricepagePaintingPCSec__list__item__groupe__text.green.box:nth-child(2n+1) {
  color: #fff;
  background: #21a937;
}

.pricepagePaintingPCSec__list__item__groupe__text.green.lifetime {
  display: block;
  width: 480px;
  height: 40px;
}

.pricepagePaintingPCSec__list__item__groupe__text.graph {
  width: 120px;
}

.pricepagePaintingPCSec__list__item__groupe__text.text {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 220px;
  height: 60px;
  font-size: 15px;
  font-weight: 700;
}

.pricepagePaintingPCSec__list__item__groupe__text.text:nth-child(2n+1) {
  background: #f0f6e1;
}

.pricepagePaintingPCSec__list__item__groupe__text.text:before {
  content: "";
  position: absolute;
  background: #ed6c00;
  width: 418px;
  height: 25px;
  top: 50%;
  right: -419px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.pricepagePaintingPCSec__list__item__groupe__text.text:nth-child(3):before {
  background: #ed6c00;
  width: 297px;
  right: -298px;
}

.pricepagePaintingPCSec__list__item__groupe__text.text:nth-child(4):before {
  background: #ed6c00;
  width: 179px;
  right: -180px;
}

.pricepagePaintingPCSec__list__item__groupe__text.text:nth-child(5):before {
  background: #ed6c00;
  width: 120px;
  right: -121px;
}

.pricepagePaintingPCSec__list__item__groupe__text.box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 60px;
}

.pricepagePaintingPCSec__list__item__groupe__text.box:nth-child(2n+1) {
  background: #f0f6e1;
}

.pricepagePaintingPCSec__list__item__groupe__text.lifetime {
  width: 480px;
  height: 70px;
}

.pricepagePaintingPCSec__list__item__groupe__text.bottom {
  border-bottom: solid 1px #a0a0a0;
}

.pricepagePaintingPCSec__list__item__groupe__text.top {
  border-top: solid 1px #a0a0a0;
}

.pricepagePaintingPCSec__list__item__groupe__text.right {
  border-right: solid 1px #a0a0a0;
}

.pricepagePaintingPCSec__list__item__groupe__text.none {
  border-left: dashed 1px #a0a0a0;
}

.pricepagePaintingPCSec__list__item__groupe__text__item {
  padding-left: 5px;
  display: flex;
  align-items: center;
  height: 40px;
}

.pricepagePaintingPCSec__list__item__groupe__text__block {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  height: 30px;
  background: #fff;
  color: #000;
}

.pricepagePaintingPCSec__list__item__groupe__text__block__tips {
  margin-right: 5px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 120px;
  height: 60px;
}

.pricepagePaintingPCSec__list__item__groupe__text__block__tips:nth-child(3), .pricepagePaintingPCSec__list__item__groupe__text__block__tips:nth-child(5) {
  background: #f0f6e1;
}

.pricepagePaintingPCSec__list__item__groupe__text__block__tips.top {
  padding-right: 5px;
  background: none;
  height: 30px;
  border-bottom: solid 1px #a0a0a0;
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.pricepagePaintingPCSec__list__item__groupe__text__block__tips.bottom {
  border-bottom: solid 1px #a0a0a0;
}

.pricepagePaintingSPSec {
  display: none;
}

@media (max-width: 640px) {
  .pricepagePaintingSPSec {
    display: block;
  }
  .pricepagePaintingSPSec__inner {
    width: 1060px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    padding: 0 15px;
    width: auto;
  }
}

@media (max-width: 640px) and (max-width: 640px) {
  .pricepagePaintingSPSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .pricepagePaintingSPSec__title {
    margin: 45px auto 0;
    padding-top: 10px;
    padding-left: 20px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    text-align: center;
    font-size: 28px;
    color: #21a937;
    letter-spacing: 0.05em;
    font-weight: 700;
    padding-top: 5px;
    padding-left: 40px;
    width: 190px;
    height: 40px;
    background: url("../images/pricepage/pricepagePaintingSPSec__title.png") no-repeat;
    background-size: 100%;
    background-position: bottom;
    font-size: 23px;
  }
  .pricepagePaintingSPSec__table {
    margin-top: 15px;
  }
  .pricepagePaintingSPSec__table__wrapper {
    margin-top: 25px;
  }
  .pricepagePaintingSPSec__table__wrapper__title {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
  }
  .pricepagePaintingSPSec__list__wrapper {
    margin-top: 20px;
    width: 100%;
  }
}

@media (max-width: 640px) and (max-width: 640px) {
  .pricepagePaintingSPSec__list__wrapper {
    overflow: scroll;
  }
}

@media (max-width: 640px) {
  .pricepagePaintingSPSec__list {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
  }
  .pricepagePaintingSPSec__list__item {
    border-left: 1px solid #a0a0a0;
  }
  .pricepagePaintingSPSec__list__item__groupe__text__wrapper {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    width: 225px;
  }
  .pricepagePaintingSPSec__list__item__groupe__text.green {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 70px;
    background: #21a937;
    font-size: 12px;
    color: #fff;
    font-weight: 700;
  }
  .pricepagePaintingSPSec__list__item__groupe__text.green.box {
    width: 90px;
    height: 60px;
  }
  .pricepagePaintingSPSec__list__item__groupe__text.green.box:nth-child(2n+1) {
    color: #fff;
    background: #21a937;
  }
  .pricepagePaintingSPSec__list__item__groupe__text.green.lifetime {
    display: block;
    width: 225px;
    height: 30px;
  }
  .pricepagePaintingSPSec__list__item__groupe__text.graph {
    width: 45px;
  }
  .pricepagePaintingSPSec__list__item__groupe__text.text {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 90px;
    height: 60px;
    font-size: 12px;
    font-weight: 700;
  }
  .pricepagePaintingSPSec__list__item__groupe__text.text:before {
    content: "";
    position: absolute;
    background: #ed6c00;
    width: 168px;
    height: 20px;
    top: 50%;
    right: -169px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 1;
  }
  .pricepagePaintingSPSec__list__item__groupe__text.text:nth-child(2n+1) {
    background: #f0f6e1;
  }
  .pricepagePaintingSPSec__list__item__groupe__text.text:nth-child(3):before {
    background: #ed6c00;
    width: 115px;
    right: -116px;
  }
  .pricepagePaintingSPSec__list__item__groupe__text.text:nth-child(4):before {
    background: #ed6c00;
    width: 70px;
    right: -71px;
  }
  .pricepagePaintingSPSec__list__item__groupe__text.text:nth-child(5):before {
    background: #ed6c00;
    width: 45px;
    right: -46px;
  }
  .pricepagePaintingSPSec__list__item__groupe__text.box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 60px;
  }
  .pricepagePaintingSPSec__list__item__groupe__text.box:nth-child(2n+1) {
    background: #f0f6e1;
  }
  .pricepagePaintingSPSec__list__item__groupe__text.lifetime {
    width: 480px;
    height: 70px;
  }
  .pricepagePaintingSPSec__list__item__groupe__text.bottom {
    border-bottom: solid 1px #a0a0a0;
  }
  .pricepagePaintingSPSec__list__item__groupe__text.top {
    height: 60px;
    border-top: solid 1px #a0a0a0;
  }
  .pricepagePaintingSPSec__list__item__groupe__text.right {
    border-right: solid 1px #a0a0a0;
  }
  .pricepagePaintingSPSec__list__item__groupe__text.left {
    border-left: solid 1px #a0a0a0;
  }
  .pricepagePaintingSPSec__list__item__groupe__text.left.none {
    border: none;
  }
  .pricepagePaintingSPSec__list__item__groupe__text.none {
    border-left: dashed 1px #a0a0a0;
  }
  .pricepagePaintingSPSec__list__item__groupe__text__item {
    padding-left: 17px;
    display: flex;
    align-items: center;
    height: 30px;
  }
  .pricepagePaintingSPSec__list__item__groupe__text__block {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
    height: 30px;
    background: #fff;
    color: #000;
  }
  .pricepagePaintingSPSec__list__item__groupe__text__block__tips {
    margin-right: 5px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 44px;
    height: 60px;
    font-size: 12px;
  }
  .pricepagePaintingSPSec__list__item__groupe__text__block__tips:nth-child(3), .pricepagePaintingSPSec__list__item__groupe__text__block__tips:nth-child(5) {
    background: #f0f6e1;
  }
  .pricepagePaintingSPSec__list__item__groupe__text__block__tips.top {
    padding-right: 5px;
    background: none;
    height: 30px;
    border-bottom: solid 1px #a0a0a0;
    font-size: 12px;
    letter-spacing: 0.05em;
    font-weight: 500;
  }
  .pricepagePaintingSPSec__list__item__groupe__text__block__tips.bottom {
    border-bottom: solid 1px #a0a0a0;
  }
  .pricepagePaintingSPSec__list__item__groupe__text__block__tips__year {
    display: inline-block;
    position: absolute;
    right: -11px;
    background: #fff;
  }
  .pricepagePaintingPCSec {
    display: none;
  }
}

/********************************************************
  pricepageCommentSec(価格表ページ)
*********************************************************/
.pricepageCommentSec__inner {
  margin-top: 50px;
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  width: 1000px;
  padding: 60px 105px 55px;
  border: solid 4px #ed6c00;
}

@media (max-width: 640px) {
  .pricepageCommentSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .pricepageCommentSec__inner {
    margin: 40px 15px 0;
    padding: 20px;
    width: auto;
  }
}

.pricepageCommentSec__textArea__titleblock {
  display: flex;
  align-items: center;
}

@media (max-width: 640px) {
  .pricepageCommentSec__textArea__titleblock {
    flex-direction: column;
  }
}

.pricepageCommentSec__textArea__titleblock__title {
  display: inline-block;
  font-size: 18px;
  color: #ed6c00;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pricepageCommentSec__textArea__titleblock__subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: center;
  width: 140px;
  height: 25px;
  background: #ed6c00;
  border-radius: 12.5px;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.1em;
  font-weight: 700;
}

@media (max-width: 640px) {
  .pricepageCommentSec__textArea__titleblock__subtitle {
    margin-top: 20px;
  }
}

.pricepageCommentSec__textArea__text {
  margin-top: 20px;
  font-size: 15px;
  line-height: 2;
  font-weight: 500;
}

@media (max-width: 640px) {
  .pricepageCommentSec__textArea__text {
    font-size: 14px;
  }
}

/********************************************************
  pricepageConstructionSec__list(価格表ページ)
*********************************************************/
.pricepageConstructionSec__inner {
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 640px) {
  .pricepageConstructionSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .pricepageConstructionSec__inner {
    padding: 0 15px;
    width: auto;
  }
}

.pricepageConstructionSec__title {
  margin: 50px auto 0;
  padding-top: 10px;
  padding-left: 20px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  text-align: center;
  font-size: 28px;
  color: #21a937;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding-left: 15px;
  width: 160px;
  height: 50px;
  background: url("../images/about/aboutPageMVSec_title.png") no-repeat;
  background-size: cover;
  background-size: 100%;
}

.pricepageConstructionSec__subtitle {
  margin-top: 20px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}

.pricepageConstructionSec__subtitle__title, .pricepageConstructionSec__subtitle__text {
  font-size: 15px;
  line-height: 1.46;
  font-weight: 500;
}

@media (max-width: 640px) {
  .pricepageConstructionSec__subtitle__title, .pricepageConstructionSec__subtitle__text {
    font-size: 12px;
  }
}

.pricepageConstructionSec__table {
  margin-top: 15px;
}

.pricepageConstructionSec__table__wrapper {
  margin-top: 45px;
}

@media (max-width: 640px) {
  .pricepageConstructionSec__table__wrapper {
    margin-top: 40px;
  }
}

.pricepageConstructionSec__table__wrapper__title {
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 640px) {
  .pricepageConstructionSec__table__wrapper__title {
    text-align: center;
  }
}

.pricepageConstructionSec__list__wrapper {
  margin-top: 20px;
}

@media (max-width: 640px) {
  .pricepageConstructionSec__list__wrapper {
    margin-top: 20px;
    width: 100%;
    overflow: scroll;
  }
}

.pricepageConstructionSec__list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}

@media (max-width: 640px) {
  .pricepageConstructionSec__list__item:first-child {
    width: 25.8%;
  }
  .pricepageConstructionSec__list__item:nth-child(2), .pricepageConstructionSec__list__item:nth-child(3) {
    width: 22.4%;
  }
  .pricepageConstructionSec__list__item:last-child {
    width: 29.4%;
  }
}

.pricepageConstructionSec__list__item__groupe__text__wrapper {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}

.pricepageConstructionSec__list__item__groupe__text {
  border-left: 1px solid #a0a0a0;
}

.pricepageConstructionSec__list__item__groupe__text.green {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 350px;
  height: 70px;
  background: #21a937;
  font-size: 15px;
  color: #fff;
  font-weight: 700;
}

@media (max-width: 640px) {
  .pricepageConstructionSec__list__item__groupe__text.green {
    font-size: 12px;
  }
}

.pricepageConstructionSec__list__item__groupe__text.green.box {
  padding: 0;
  justify-content: center;
  width: 217px;
  height: 70px;
}

@media (max-width: 640px) {
  .pricepageConstructionSec__list__item__groupe__text.green.box {
    width: 100%;
    height: 50px;
    font-size: 12px;
  }
}

.pricepageConstructionSec__list__item__groupe__text.green.box:nth-child(2n+1) {
  color: #fff;
  background: #21a937;
}

.pricepageConstructionSec__list__item__groupe__text.graph {
  width: 120px;
}

.pricepageConstructionSec__list__item__groupe__text.text {
  padding-left: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 350px;
  height: 60px;
  font-size: 15px;
  font-weight: 700;
}

@media (max-width: 640px) {
  .pricepageConstructionSec__list__item__groupe__text.text {
    padding: 0;
    justify-content: center;
    width: 100%;
    height: 50px;
    font-size: 12px;
  }
}

.pricepageConstructionSec__list__item__groupe__text.text:nth-child(2n+1) {
  background: #f0f6e1;
}

.pricepageConstructionSec__list__item__groupe__text.text:nth-child(8), .pricepageConstructionSec__list__item__groupe__text.text:nth-child(9) {
  background: #feebc8;
  border-top: 1px solid #a0a0a0;
}

.pricepageConstructionSec__list__item__groupe__text.text:nth-child(10) {
  background: #f8c182;
  border-top: 1px solid #a0a0a0;
}

.pricepageConstructionSec__list__item__groupe__text.box {
  padding-right: 35px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 217px;
  height: 60px;
  font-size: 15px;
  font-weight: 700;
}

@media (max-width: 640px) {
  .pricepageConstructionSec__list__item__groupe__text.box {
    padding: 0;
    justify-content: center;
    width: 100%;
    height: 50px;
    font-size: 12px;
  }
}

.pricepageConstructionSec__list__item__groupe__text.box:nth-child(2n+1) {
  background: #f0f6e1;
}

.pricepageConstructionSec__list__item__groupe__text.box:nth-child(8), .pricepageConstructionSec__list__item__groupe__text.box:nth-child(9) {
  background: #feebc8;
  border-top: 1px solid #a0a0a0;
}

.pricepageConstructionSec__list__item__groupe__text.box:nth-child(10) {
  background: #f8c182;
  border-top: 1px solid #a0a0a0;
}

.pricepageConstructionSec__list__item__groupe__text.box.none {
  border-left: none;
}

.pricepageConstructionSec__list__item__groupe__text.bottom {
  border-bottom: solid 1px #a0a0a0;
}

.pricepageConstructionSec__list__item__groupe__text.top {
  border-top: solid 1px #a0a0a0;
}

@media (max-width: 640px) {
  .pricepageConstructionSec__list__item__groupe__text.top {
    width: 100%;
    height: 50px;
    font-size: 12px;
  }
}

.pricepageConstructionSec__list__item__groupe__text.right {
  border-right: solid 1px #a0a0a0;
}

@media (max-width: 640px) {
  .pricepageConstructionSec__list__item__groupe__text.right {
    padding-right: 10px;
    justify-content: flex-end;
  }
}

.pricepageConstructionSec__list__item__groupe__text.none {
  border-left: dashed 1px #a0a0a0;
}

.pricepageConstructionSec__list__item__groupe__text__item {
  display: flex;
  align-items: center;
  height: 40px;
}

.pricepageConstructionSec__list__item__groupe__text__block {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  height: 30px;
  background: #fff;
  color: #000;
}

.pricepageConstructionSec__list__item__groupe__text__block__tips {
  margin-right: 5px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 120px;
  height: 60px;
}

.pricepageConstructionSec__list__item__groupe__text__block__tips:nth-child(3), .pricepageConstructionSec__list__item__groupe__text__block__tips:nth-child(5) {
  background: #f0f6e1;
}

.pricepageConstructionSec__list__item__groupe__text__block__tips.top {
  padding-right: 5px;
  background: none;
  height: 30px;
  border-bottom: solid 1px #a0a0a0;
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.pricepageConstructionSec__list__item__groupe__text__block__tips.bottom {
  border-bottom: solid 1px #a0a0a0;
}

.pricepageConstructionSec__commentArea {
  margin-top: 15px;
  font-size: 12px;
  font-weight: 500;
}

.pricepageConstructionSec__commentArea__text {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
}

@media (max-width: 640px) {
  .pricepageConstructionSec__commentArea__text {
    line-height: 1.5;
  }
}

@media (max-width: 640px) {
  .pricepageConstructionSec__commentArea__text.bottom {
    margin-top: 0;
  }
}

.pricepageConstructionSec__commentArea__text .green {
  color: #21a937;
  border-bottom: solid 1px #21a937;
}

.pricepageConstructionSec__commentArea__text .non_tax {
  font-size: 14px;
  color: red;
}

@media (max-width: 640px) {
  .pricepageConstructionSec__commentArea__text .non_tax {
    font-size: 12px;
  }
}

/********************************************************
  pricepageConstructionCostSec(価格表ページ)
*********************************************************/
.pricepageConstructionCostSec__inner {
  margin-top: 50px;
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 640px) {
  .pricepageConstructionCostSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .pricepageConstructionCostSec__inner {
    margin-top: 40px;
    margin-bottom: 200px;
    padding: 0 15px;
    width: auto;
  }
}

.pricepageConstructionCostSec__titleArea {
  margin-bottom: 25px;
  display: flex;
  align-items: flex-end;
}

@media (max-width: 640px) {
  .pricepageConstructionCostSec__titleArea {
    margin-bottom: 15px;
    align-items: center;
    flex-direction: column;
  }
}

.pricepageConstructionCostSec__titleArea .non_tax {
  font-size: 14px;
  color: red;
}

@media (max-width: 640px) {
  .pricepageConstructionCostSec__titleArea .non_tax {
    margin-top: 5px;
    font-size: 12px;
  }
}

.pricepageConstructionCostSec__titleArea__title {
  font-size: 18px;
  font-weight: 700;
}

.pricepageConstructionCostSec__titleArea__text {
  margin-left: 20px;
  font-size: 12px;
  font-weight: 500;
}

@media (max-width: 640px) {
  .pricepageConstructionCostSec__titleArea__text {
    margin-top: 10px;
    margin-left: 0;
  }
}

.pricepageConstructionCostSec__contentblock__list__item {
  padding: 25px 0;
  border-top: 1px solid #a0a0a0;
  display: flex;
  justify-content: space-between;
}

.pricepageConstructionCostSec__contentblock__list__item:last-child {
  border-bottom: 1px solid #a0a0a0;
}

@media (max-width: 640px) {
  .pricepageConstructionCostSec__contentblock__list__item {
    padding: 30px 0;
    width: auto;
    flex-direction: column;
  }
}

.pricepageConstructionCostSec__contentblock__list__item__right__image {
  width: 240px;
  height: auto;
}

@media (max-width: 640px) {
  .pricepageConstructionCostSec__contentblock__list__item__right__image {
    width: auto;
  }
}

.pricepageConstructionCostSec__contentblock__list__item__right__image.arrow {
  margin-right: 58px;
  position: relative;
}

.pricepageConstructionCostSec__contentblock__list__item__right__image.arrow:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  right: -39px;
  border-style: solid;
  border-width: 13px 0 13px 17px;
  border-color: transparent transparent transparent #21a937;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

@media (max-width: 640px) {
  .pricepageConstructionCostSec__contentblock__list__item__right__image.arrow {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .pricepageConstructionCostSec__contentblock__list__item__right__image.arrow:before {
    width: 0;
    height: 0;
    top: auto;
    left: 50%;
    right: auto;
    bottom: -24px;
    border-width: 17px 13px 0 13px;
    border-color: #21a937 transparent transparent transparent;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

.pricepageConstructionCostSec__contentblock__list__item__left__title {
  font-size: 24px;
  color: #21a937;
  letter-spacing: 0.05em;
  font-weight: 700;
}

@media (max-width: 640px) {
  .pricepageConstructionCostSec__contentblock__list__item__left__title {
    font-size: 23px;
  }
}

@media (max-width: 640px) {
  .pricepageConstructionCostSec__contentblock__list__item__left {
    text-align: center;
  }
}

.pricepageConstructionCostSec__contentblock__list__item__left__text {
  margin-top: 15px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .pricepageConstructionCostSec__contentblock__list__item__left__text {
    font-size: 14px;
  }
}

.pricepageConstructionCostSec__contentblock__list__item__left__cost {
  margin-top: 50px;
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 640px) {
  .pricepageConstructionCostSec__contentblock__list__item__left__cost {
    margin-top: 20px;
  }
}

.pricepageConstructionCostSec__commentblock {
  margin-top: 20px;
}

.pricepageConstructionCostSec__contentblock__list__item__right {
  width: 540px;
  display: flex;
  justify-content: flex-end;
}

.pricepageConstructionCostSec__contentblock__list__item__right.right {
  justify-content: flex-end;
}

@media (max-width: 640px) {
  .pricepageConstructionCostSec__contentblock__list__item__right {
    margin-top: 20px;
    width: auto;
    flex-direction: column;
  }
}

.pricepageConstructionCostSec__commentblock__text {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 500;
}

.pricepageConstructionCostSec__commentblock__text.bold {
  font-weight: 700;
}

@media (max-width: 640px) {
  .pricepageConstructionCostSec__commentblock__text {
    font-size: 11px;
    line-height: 1.4;
  }
}

/********************************************************
  pricepageModalSec(価格表ページ)
*********************************************************/
.pricepageModalSec__overlay {
  z-index: 1;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.75);
}

.pricepageModalSec__overlay.modal-active {
  display: block;
}

.pricepageModalSec__block {
  display: none;
}

.pricepageModalSec__block.modal-active {
  padding: 57px 30px 35px;
  display: block;
  z-index: 2;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
}

@media (max-width: 640px) {
  .pricepageModalSec__block.modal-active {
    padding: 0;
    width: calc(100% - 30px);
  }
}

.pricepageModalSec__block__image {
  width: 435px;
  height: auto;
}

@media (max-width: 640px) {
  .pricepageModalSec__block__image {
    width: auto;
    padding: 37px 37px 10px 37px;
  }
}

.pricepageModalSec__block__text {
  margin-top: 10px;
  font-size: 15px;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .pricepageModalSec__block__text {
    padding: 0 37px 10px;
  }
}

.pricepageModalSec__block__close {
  position: absolute;
  width: 20.5px;
  height: auto;
  top: 15px;
  right: 10px;
}

@media all and (-ms-high-contrast: none) {
  .pricepageCommentSec__textArea__titleblock__subtitle {
    padding-top: 7px;
  }
}

/********************************************************
  aboutPage
*********************************************************/
/*====================================================================
  INDEX
====================================================================*/
/*
● faqpageConsultationSec(よくあるご質問ページ)
● faqpageCostSec(よくあるご質問ページ)
● faqpageCaseSec(よくあるご質問ページ)
*/
/********************************************************
  faqpageConsultationSec(よくあるご質問ページ)
*********************************************************/
.faqpageConsultationSec__inner {
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 640px) {
  .faqpageConsultationSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .faqpageConsultationSec__inner {
    width: auto;
  }
}

.faqpageConsultationSec__title {
  margin: 70px auto 0;
  padding-top: 10px;
  padding-left: 20px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  text-align: center;
  font-size: 28px;
  color: #21a937;
  letter-spacing: 0.05em;
  font-weight: 700;
  width: 350px;
  height: 50px;
  background: url("../images/toppage/topPageCaseSec02.png") no-repeat;
  background-size: 100%;
}

@media (max-width: 640px) {
  .faqpageConsultationSec__title {
    margin: 50px auto 0;
    width: 285px;
    height: 42px;
    font-size: 22px;
  }
}

.faqpageConsultationSec__content__list {
  margin-top: 50px;
}

@media (max-width: 640px) {
  .faqpageConsultationSec__content__list {
    margin-top: 30px;
  }
}

.faqpageConsultationSec__content__list__item__wrapper {
  margin-top: 25px;
}

.faqpageConsultationSec__content__list__item__wrapper:first-child {
  margin-top: 0;
}

.faqpageConsultationSec__content__list__item {
  margin-top: 10px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
}

.faqpageConsultationSec__content__list__item:first-child {
  margin-top: 0;
}

.faqpageConsultationSec__content__list__item__title {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #21a937;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.faqpageConsultationSec__content__list__item__title.orange {
  background: #ed6c00;
}

.faqpageConsultationSec__content__list__item__text {
  margin-left: 10px;
  font-size: 18px;
  letter-spacing: 0.05em;
  font-weight: 700;
}

@media (max-width: 640px) {
  .faqpageConsultationSec__content__list__item__text {
    width: calc(100% - 40px);
    font-size: 15px;
    line-height: 1.2;
  }
}

.faqpageConsultationSec__content__list__item__text a {
  color: #21a937;
  padding-bottom: 3px;
  border-bottom: 1px solid #21a937;
}

.faqpageConsultationSec__content__commentArea {
  display: flex;
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

@media (max-width: 640px) {
  .faqpageConsultationSec__content__commentArea {
    margin-top: 10px;
    margin-left: 50px;
    flex-direction: column;
  }
}

.faqpageConsultationSec__content__commentArea__text {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 1.46;
  font-weight: 500;
}

.faqpageConsultationSec__content__commentArea__title {
  margin-left: 50px;
  width: 53px;
  font-size: 15px;
  color: #ed6c00;
  letter-spacing: 0.05em;
  line-height: 1.46;
  font-weight: 700;
}

@media (max-width: 640px) {
  .faqpageConsultationSec__content__commentArea__title {
    margin-left: 0px;
  }
}

.faqpageConsultationSec__content__commentArea__title__text {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 1.46;
}

@media (max-width: 640px) {
  .faqpageConsultationSec__content__commentArea__title__text {
    font-size: 13px;
  }
}

/********************************************************
  faqpageCostSec(よくあるご質問ページ)
*********************************************************/
.faqpageCostSec {
  margin: 70px auto 0;
}

@media (max-width: 640px) {
  .faqpageCostSec {
    margin: 50px auto 0;
  }
}

.faqpageCostSec__inner {
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 640px) {
  .faqpageCostSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .faqpageCostSec__inner {
    width: auto;
  }
}

.faqpageCostSec__title {
  margin: 0 auto;
  padding-top: 10px;
  padding-left: 20px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  text-align: center;
  font-size: 28px;
  color: #21a937;
  letter-spacing: 0.05em;
  font-weight: 700;
  width: 235px;
  height: 50px;
  background: url("../images/faq/faqpageCostSec__title.png") no-repeat;
  background-size: 100%;
}

.faqpageCostSec__content__list {
  margin-top: 50px;
}

@media (max-width: 640px) {
  .faqpageCostSec__content__list {
    margin: 25px auto 0;
  }
}

.faqpageCostSec__content__list__item__wrapper {
  margin-top: 25px;
}

.faqpageCostSec__content__list__item__wrapper:first-child {
  margin-top: 0;
}

.faqpageCostSec__content__list__item {
  margin-top: 10px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
}

.faqpageCostSec__content__list__item:first-child {
  margin-top: 0;
}

.faqpageCostSec__content__list__item__title {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #21a937;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.faqpageCostSec__content__list__item__title.orange {
  background: #ed6c00;
}

.faqpageCostSec__content__list__item__text {
  margin-left: 10px;
  font-size: 18px;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .faqpageCostSec__content__list__item__text {
    width: calc(100% - 40px);
    font-size: 15px;
  }
  .faqpageCostSec__content__list__item__text br {
    display: none;
  }
}

.faqpageCostSec__content__commentArea {
  display: flex;
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.faqpageCostSec__content__commentArea__textArea {
  margin-left: 50px;
}

@media (max-width: 640px) {
  .faqpageCostSec__content__commentArea__textArea {
    margin-top: 5px;
  }
}

.faqpageCostSec__content__commentArea__text {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 1.46;
  font-weight: 500;
}

.faqpageCostSec__content__commentArea__title {
  margin-left: 50px;
  width: 53px;
  font-size: 15px;
  color: #ed6c00;
  letter-spacing: 0.05em;
  line-height: 1.46;
  font-weight: 700;
}

@media (max-width: 640px) {
  .faqpageCostSec__content__commentArea__title {
    margin-left: 0px;
  }
}

.faqpageCostSec__content__commentArea__title__text {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 1.46;
}

@media (max-width: 640px) {
  .faqpageCostSec__content__commentArea__title__text {
    margin-top: 0px;
    font-size: 13px;
  }
}

.faqpageCostSec__content__commentArea__title__text a {
  padding-bottom: 2px;
  border-bottom: 1px solid #21a937;
  color: #21a937;
}

/********************************************************
  faqpageCaseSec(よくあるご質問ページ)
*********************************************************/
.faqpageCaseSec {
  margin: 70px auto 0;
}

@media (max-width: 640px) {
  .faqpageCaseSec {
    margin: 50px auto;
  }
}

.faqpageCaseSec__inner {
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 640px) {
  .faqpageCaseSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .faqpageCaseSec__inner {
    width: auto;
  }
}

.faqpageCaseSec__title {
  margin: 0 auto;
  padding-top: 10px;
  padding-left: 20px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  text-align: center;
  font-size: 28px;
  color: #21a937;
  letter-spacing: 0.05em;
  font-weight: 700;
  width: 235px;
  height: 50px;
  background: url("../images/faq/faqpageCostSec__title.png") no-repeat;
  background-size: 100%;
}

/********************************************************
  privacyPage
*********************************************************/
/*====================================================================
  INDEX
====================================================================*/
/*
● privacyPageContentSec(プライバシーポリシーページ)
*/
/********************************************************
  privacyPageContentSec(プライバシーポリシーページ)
*********************************************************/
.privacypageContentSec__inner {
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 640px) {
  .privacypageContentSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .privacypageContentSec__inner {
    padding: 0 15px 130px;
    width: auto;
  }
}

.privacypageContentSec__title {
  margin: 70px auto 0;
  padding-top: 10px;
  padding-left: 20px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  text-align: center;
  font-size: 28px;
  color: #21a937;
  letter-spacing: 0.05em;
  font-weight: 700;
  width: 350px;
  height: 50px;
  background: url("../images/toppage/topPageCaseSec02.png") no-repeat;
  background-size: 100%;
}

@media (max-width: 640px) {
  .privacypageContentSec__title {
    margin: 50px auto 0;
    width: 285px;
    height: 40px;
    background: url("../images/toppage/topPageCaseSec02.png") no-repeat;
    background-size: 100%;
    background-position: bottom;
    font-size: 22px;
  }
}

.privacypageContentSec__textArea {
  margin-top: 50px;
}

@media (max-width: 640px) {
  .privacypageContentSec__textArea {
    margin-top: 30px;
  }
}

.privacypageContentSec__textArea__text {
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .privacypageContentSec__textArea__text {
    font-size: 13px;
  }
}

.privacypageContentSec__list {
  margin-top: 50px;
}

.privacypageContentSec__list__item {
  margin-top: 30px;
}

.privacypageContentSec__list__item:last-child {
  margin-top: 80px;
}

@media (max-width: 640px) {
  .privacypageContentSec__list__item:last-child {
    margin-top: 50px;
  }
}

.privacypageContentSec__list__item__title {
  font-size: 18px;
  letter-spacing: 0.05em;
  font-weight: 700;
}

@media (max-width: 640px) {
  .privacypageContentSec__list__item__title {
    font-size: 15px;
  }
}

.privacypageContentSec__list__item__text {
  margin-top: 15px;
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .privacypageContentSec__list__item__text {
    margin-top: 10px;
    font-size: 13px;
  }
}

.privacypageContentSec__list__item__text.last {
  margin-top: 10px;
}

.privacypageContentSec__list__item__groupe__tips {
  margin-top: 10px;
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .privacypageContentSec__list__item__groupe__tips {
    font-size: 13px;
  }
}

/********************************************************
  privacyPage
*********************************************************/
/*====================================================================
  INDEX
====================================================================*/
/*
● profilepageCompanySec(会社概要・お問い合わせページ)
● profilepageMapSec(会社概要・お問い合わせページ)
● profilepageContactSec(会社概要・お問い合わせページ)
● profilepageFormSec(会社概要・お問い合わせページ)
*/
/********************************************************
  profilepageCompanySec(会社概要・お問い合わせページ)
*********************************************************/
.profilepageCompanySec__inner {
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 640px) {
  .profilepageCompanySec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .profilepageCompanySec__inner {
    padding: 0 15px;
    width: auto;
  }
}

.profilepageCompanySec__title {
  margin: 70px auto 0;
  padding-top: 10px;
  padding-left: 20px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  text-align: center;
  font-size: 28px;
  color: #21a937;
  letter-spacing: 0.05em;
  font-weight: 700;
  width: 180px;
  height: 50px;
  background: url("../images/profilepage/profilepageCompanySec__title.png") no-repeat;
  background-size: 100%;
}

@media (max-width: 640px) {
  .profilepageCompanySec__title {
    margin: 50px auto 0;
  }
}

.profilepageCompanySec__textArea {
  margin-top: 50px;
  padding-bottom: 35px;
  border-bottom: 1px solid #a0a0a0;
}

.profilepageCompanySec__list__item {
  padding: 25px 0;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
}

.profilepageCompanySec__list__item.top {
  align-items: flex-start;
}

@media (max-width: 640px) {
  .profilepageCompanySec__list__item.top {
    align-items: center;
  }
}

@media (max-width: 640px) {
  .profilepageCompanySec__list__item {
    padding: 15px 0;
    justify-content: space-around;
  }
}

.profilepageCompanySec__list__item:nth-child(odd) {
  background: #f0f6e1;
}

.profilepageCompanySec__list__item.last {
  align-items: flex-start;
}

.profilepageCompanySec__list__item__title {
  padding-left: 20px;
  width: 250px;
}

@media (max-width: 640px) {
  .profilepageCompanySec__list__item__title {
    padding-left: 10px;
    width: 110px;
  }
}

@media (max-width: 640px) {
  .profilepageCompanySec__list__item__text {
    width: 180px;
  }
}

.profilepageCompanySec__list__item__title, .profilepageCompanySec__list__item__text {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .profilepageCompanySec__list__item__title, .profilepageCompanySec__list__item__text {
    font-size: 13px;
    line-height: 1.4;
  }
}

.profilepageCompanySec__list__item__title.last, .profilepageCompanySec__list__item__text.last {
  line-height: 1.3;
}

@media (max-width: 640px) {
  .profilepageCompanySec__list__item__text__block {
    width: 100%;
  }
}

.profilepageCompanySec__list__item__text__block__image {
  width: 222.5px;
  height: auto;
}

@media (max-width: 640px) {
  .profilepageCompanySec__list__item__text__block__image {
    width: 170px;
  }
}

.profilepageCompanySec__list__item__text__block__tips {
  margin-left: 15px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .profilepageCompanySec__list__item__text__block__tips {
    margin-top: 10px;
    margin-left: 0;
  }
}

.profilepageCompanySec__list__item__text__block__image__wrapper {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: flex-end;
}

@media (max-width: 640px) {
  .profilepageCompanySec__list__item__text__block__image__wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

.profilepageCompanySec__list__item__text__block__groupe {
  margin-top: 17px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}

@media (max-width: 640px) {
  .profilepageCompanySec__list__item__text__block__groupe {
    flex-direction: column;
  }
}

.profilepageCompanySec__list__item__text__block__groupe__tips {
  margin-left: 15px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .profilepageCompanySec__list__item__text__block__groupe__tips {
    margin-top: 5px;
    margin-left: 0;
    font-size: 13px;
  }
  .profilepageCompanySec__list__item__text__block__groupe__tips:first-child {
    margin-top: 0;
    margin-left: 0;
  }
}

.profilepageCompanySec__list__item__text__block__groupe__tips:first-child {
  margin-left: 0;
}

/********************************************************
  profilepageMapSec(会社概要・お問合わせ)
*********************************************************/
.profilepageMapSec {
  margin-top: 60px;
}

.profilepageMapSec__inner {
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 640px) {
  .profilepageMapSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .profilepageMapSec__inner {
    margin: 0 20px;
    padding: 0 15px 35%;
    position: relative;
    width: auto;
    overflow: hidden;
    height: 0;
  }
  .profilepageMapSec__inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }
}

/********************************************************
  profilepageContactSec(会社概要・お問い合わせ)
*********************************************************/
.profilepageContactSec {
  margin-top: 85px;
}

@media (max-width: 640px) {
  .profilepageContactSec {
    margin-top: 50px;
  }
}

.profilepageContactSec__inner {
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 640px) {
  .profilepageContactSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .profilepageContactSec__inner {
    width: auto;
    padding: 0 15px;
  }
}

.profilepageContactSec__title {
  margin: 0 auto;
  padding-top: 10px;
  padding-left: 20px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  text-align: center;
  font-size: 28px;
  color: #21a937;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding-left: 12px;
  width: 227.5px;
  height: 50px;
  background: url("../images/profilepage/profilepageContactSec__title.png") no-repeat;
  background-size: 100%;
}

.profilepageContactSec__text {
  margin: 50px auto 0;
  width: 800px;
  font-size: 15px;
  line-height: 2;
  font-weight: 500;
}

@media (max-width: 640px) {
  .profilepageContactSec__text {
    width: auto;
  }
}

.profilepageContactSec__textArea {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.profilepageContactSec__textArea__text__block__image__wrapper {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: flex-end;
}

@media (max-width: 640px) {
  .profilepageContactSec__textArea__text__block__image__wrapper {
    flex-direction: column;
  }
}

.profilepageContactSec__textArea__text__block__image {
  width: 285px;
  height: auto;
}

@media (max-width: 640px) {
  .profilepageContactSec__textArea__text__block__image {
    width: 200px;
  }
}

.profilepageContactSec__textArea__text__block__tips {
  margin-left: 15px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .profilepageContactSec__textArea__text__block__tips {
    margin-top: 5px;
    margin-left: 0px;
  }
}

.profilepageContactSec__textArea__text__block__image__wrapper {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: flex-end;
}

.profilepageContactSec__textArea__text__block__groupe {
  margin-top: 20px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}

@media (max-width: 640px) {
  .profilepageContactSec__textArea__text__block__groupe {
    flex-direction: column;
  }
}

.profilepageContactSec__textArea__text__block__groupe__tips {
  margin-left: 15px;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .profilepageContactSec__textArea__text__block__groupe__tips {
    margin-top: 10px;
    margin-left: 0;
    font-size: 15px;
  }
  .profilepageContactSec__textArea__text__block__groupe__tips:first-child {
    margin-top: 0;
  }
}

.profilepageContactSec__textArea__text__block__groupe__tips:first-child {
  margin-top: 0;
  margin-left: 0;
}

/********************************************************
  profilepageFormSec(会社概要・お問い合わせページ)
*********************************************************/
.profilepageFormSec {
  margin-top: 65px;
  margin-bottom: 275px;
}

@media (max-width: 640px) {
  .profilepageFormSec {
    margin-bottom: 220px;
  }
}

.profilepageFormSec__inner {
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  padding: 60px 98px 55px 60px;
  border: solid 1px #a0a0a0;
}

@media (max-width: 640px) {
  .profilepageFormSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .profilepageFormSec__inner {
    margin: 0 15px;
    padding: 30px 20px;
    width: auto;
  }
}

.profilepageFormSec__titleArea {
  display: flex;
}

@media (max-width: 640px) {
  .profilepageFormSec__titleArea {
    flex-direction: column;
  }
}

.profilepageFormSec__titleArea__title {
  width: 210px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.profilepageFormSec__titleArea__text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media (max-width: 640px) {
  .profilepageFormSec__titleArea__text {
    margin-top: 10px;
  }
}

.profilepageFormSec__formArea {
  margin-top: 65px;
}

.profilepageFormSec__formArea__inputBox__list__item {
  margin-top: 25px;
  display: flex;
  align-items: flex-start;
}

.profilepageFormSec__formArea__inputBox__list__item:first-child {
  margin-top: 0;
}

.profilepageFormSec__formArea__inputBox__list__item__head {
  margin-top: 10px;
  width: 210px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media (max-width: 640px) {
  .profilepageFormSec__formArea__inputBox__list__item__head {
    font-size: 13px;
    word-break: break-word;
    line-height: 1.4;
  }
}

.profilepageFormSec__formArea__inputBox__list__item__data {
  width: 75%;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media (max-width: 640px) {
  .profilepageFormSec__formArea__inputBox__list__item__data {
    font-size: 13px;
    word-break: break-word;
    line-height: 1.4;
  }
}

.profilepageFormSec__formArea__submitBox {
  margin-top: 55px;
}

@media (max-width: 640px) {
  .profilepageFormSec__formArea__submitBox {
    margin-top: 30px;
  }
}

.profilepageFormSec__formArea__submitBox__btnBox__inner {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}

@media (max-width: 640px) {
  .profilepageFormSec__formArea__submitBox__btnBox__inner {
    flex-direction: column;
  }
}

.profilepageFormSec__textArea__block__link {
  margin: 0 auto;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 325px;
  height: 40px;
  border-radius: 20px;
  border: 1px solid #21a937;
  font-size: 15px;
  color: #21a937;
  letter-spacing: 0.05em;
  font-weight: 700;
  width: 200px;
  background: #fff;
}

@media screen and (min-width: 768px) {
  .profilepageFormSec__textArea__block__link {
    transition: all 0.6s ease-in-out;
  }
}

.profilepageFormSec__textArea__block__link:hover {
  background: #21a937;
  color: #fff;
}

.profilepageFormSec__textArea__block__link.u-formBtn {
  font-size: 12px;
}

@media (max-width: 640px) {
  .profilepageFormSec__textArea__block__link {
    margin: 10px auto;
    width: 100px;
  }
}

.profilepageFormSec__caption {
  margin-top: 50px;
  text-align: center;
  font-size: 15px;
  line-height: 2;
}

@media (max-width: 640px) {
  .profilepageFormSec__caption {
    margin-top: 30px;
    font-size: 15px;
  }
}

.profilepageFormSec__caption__link {
  margin-top: 30px;
  display: block;
}

.mw_wp_form_confirm .profilepageFormSec__formArea__inputBox__list__item {
  align-items: center;
}

.mw_wp_form_confirm .profilepageFormSec__formArea__inputBox__list__item__head {
  margin-top: 0;
}

/********************************************************
  blogPage
*********************************************************/
/*====================================================================
  INDEX
====================================================================*/
/*
● blogPageContentSec(ブログページ)
*/
/********************************************************
  blogPageContentSec(ブログページ)
*********************************************************/
.blogPageContentSec {
  margin-top: 80px;
}

@media (max-width: 640px) {
  .blogPageContentSec {
    margin-top: 40px;
    margin-bottom: 180px;
  }
}

.blogPageContentSec.taxonomy, .blogPageContentSec.month {
  margin-top: 42px;
}

.blogPageContentSec__inner {
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 640px) {
  .blogPageContentSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .blogPageContentSec__inner {
    padding-left: 15px;
    padding-right: 15px;
    width: auto;
  }
}

.blogPageContentSec__block {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 640px) {
  .blogPageContentSec__block {
    flex-direction: column;
  }
}

.blogPageContentSec__block__left {
  width: 714px;
}

@media (max-width: 640px) {
  .blogPageContentSec__block__left {
    width: auto;
  }
}

.blogPageContentSec__block__left__link {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 640px) {
  .blogPageContentSec__block__left__link {
    flex-direction: column;
  }
}

.blogPageContentSec__block__left__list {
  padding: 40px 0;
  border-bottom: 1px solid #a0a0a0;
}

.blogPageContentSec__block__left__list:first-child {
  padding-top: 0;
}

@media (max-width: 640px) {
  .blogPageContentSec__block__left__list {
    padding: 20px 0;
  }
}

.blogPageContentSec__block__left__list__image {
  width: 318px;
  height: auto;
}

@media (max-width: 640px) {
  .blogPageContentSec__block__left__list__image {
    width: auto;
  }
}

.blogPageContentSec__block__left__list__textArea {
  position: relative;
  width: 363px;
  height: auto;
}

@media (max-width: 640px) {
  .blogPageContentSec__block__left__list__textArea {
    padding-bottom: 30px;
    margin-top: 15px;
    width: auto;
  }
}

.blogPageContentSec__block__left__list__textArea__upper p {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.92;
  font-weight: 500;
}

.blogPageContentSec__block__left__list__textArea__upper__title {
  font-size: 19px;
  font-weight: 700;
}

@media (max-width: 640px) {
  .blogPageContentSec__block__left__list__textArea__upper__title {
    font-size: 15px;
  }
}

.blogPageContentSec__block__left__list__textArea__lower {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: absolute;
  bottom: 0;
  right: 0;
}

.blogPageContentSec__block__left__list__textArea__lower__category {
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

@media (max-width: 640px) {
  .blogPageContentSec__block__left__list__textArea__lower__category {
    font-size: 13px;
  }
}

.blogPageContentSec__block__left__list__textArea__lower__date {
  margin-left: 25px;
  position: relative;
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

@media (max-width: 640px) {
  .blogPageContentSec__block__left__list__textArea__lower__date {
    font-size: 13px;
  }
}

.blogPageContentSec__block__left__list__textArea__lower__date:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  background: #000;
  width: 1px;
  height: 100%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.blogPageContentSec__block__right {
  width: 210px;
}

@media (max-width: 640px) {
  .blogPageContentSec__block__right {
    margin-top: 30px;
    width: auto;
  }
}

.blogPageContentSec__block__right__list {
  margin-top: 35px;
}

.blogPageContentSec__block__right__list:first-child {
  margin-top: 0;
}

.blogPageContentSec__block__right__list__title {
  padding-bottom: 15px;
  font-size: 15px;
  letter-spacing: 0.1em;
  font-weight: 700;
  border-bottom: solid 1px #a0a0a0;
}

.blogPageContentSec__block__right__list__groupe {
  margin-top: 15px;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.blogPageContentSec__block__right__list__groupe a {
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.4;
}

.blogPageContentSec__block__right__list__groupe__item {
  margin-top: 20px;
}

.blogPageContentSec__block__right__list__groupe__item:first-child {
  margin-top: 0;
}

.blogPageContentSec__block__right__list__groupe__item__link {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.blogPageContentSec__category__wrapper {
  margin-bottom: 20px;
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 640px) {
  .blogPageContentSec__category__wrapper {
    width: auto;
  }
}

@media (max-width: 640px) {
  .blogPageContentSec__category__wrapper {
    padding: 0 15px;
    width: auto;
  }
}

.blogPageContentSec__category {
  font-size: 18px;
  letter-spacing: 0.05em;
  font-weight: 700;
}

/********************************************************
  casePage
*********************************************************/
/*====================================================================
  INDEX
====================================================================*/
/*
● casePageSelectSec(施工事例ページ)
*/
/********************************************************
  PageCaseSec(トップページ)
*********************************************************/
.PageCaseSec__inner {
  margin-top: 50px;
  position: relative;
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 640px) {
  .PageCaseSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .PageCaseSec__inner {
    margin-top: 30px;
    margin-bottom: 0;
    width: auto;
    padding: 0 15px;
  }
}

.PageCaseSec__title {
  margin: 80px auto 0;
  padding-top: 10px;
  padding-left: 20px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  text-align: center;
  font-size: 28px;
  color: #21a937;
  letter-spacing: 0.05em;
  font-weight: 700;
  width: 350px;
  height: 50px;
  background: url("../images/toppage/topPageCaseSec02.png") no-repeat;
  background-size: 100%;
}

@media (max-width: 640px) {
  .PageCaseSec__title {
    margin: 40px auto 0;
    padding-left: 12px;
    width: 285px;
    height: 42px;
    background: url("../images/toppage/topPageCaseSec02.png") no-repeat;
    background-size: 100%;
    background-position: bottom;
    font-size: 23px;
  }
}

.PageCaseSec__imageArea {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
}

.PageCaseSec__imageArea.content__tab--01, .PageCaseSec__imageArea.content__tab--02, .PageCaseSec__imageArea.content__tab--03, .PageCaseSec__imageArea.content__tab--04 {
  display: none;
}

.PageCaseSec__imageArea.content__tab--01 .u-txt, .PageCaseSec__imageArea.content__tab--02 .u-txt, .PageCaseSec__imageArea.content__tab--03 .u-txt, .PageCaseSec__imageArea.content__tab--04 .u-txt {
  display: none;
}

.PageCaseSec__imageArea.content__tab--01.is-active, .PageCaseSec__imageArea.content__tab--02.is-active, .PageCaseSec__imageArea.content__tab--03.is-active, .PageCaseSec__imageArea.content__tab--04.is-active {
  display: flex;
}

.PageCaseSec__imageArea.content__tab--01.is-active .u-txt, .PageCaseSec__imageArea.content__tab--02.is-active .u-txt, .PageCaseSec__imageArea.content__tab--03.is-active .u-txt, .PageCaseSec__imageArea.content__tab--04.is-active .u-txt {
  display: block;
}

@media (max-width: 640px) {
  .PageCaseSec__imageArea {
    display: block;
  }
}

.PageCaseSec__imageArea__list {
  margin-top: 25px;
  margin-right: 20px;
  position: relative;
}

.PageCaseSec__imageArea__list:nth-child(3n) {
  margin-right: 0;
}

.PageCaseSec__imageArea__list:first-child, .PageCaseSec__imageArea__list:nth-child(2), .PageCaseSec__imageArea__list:nth-child(3) {
  margin-top: 0;
}

@media (max-width: 640px) {
  .PageCaseSec__imageArea__list {
    margin-top: 20px;
    margin-right: 0;
  }
  .PageCaseSec__imageArea__list:first-child {
    margin-top: 0;
  }
  .PageCaseSec__imageArea__list:nth-child(2), .PageCaseSec__imageArea__list:nth-child(3) {
    margin-top: 20px;
  }
}

.PageCaseSec__imageArea__list__link {
  display: block;
}

@media screen and (min-width: 768px) {
  .PageCaseSec__imageArea__list__link {
    transition: all 0.6s ease-in-out;
  }
}

@media screen and (min-width: 768px) {
  .PageCaseSec__imageArea__list__link:hover {
    opacity: 0.6;
  }
}

.PageCaseSec__imageArea__list__image {
  width: 320px;
  height: 220px;
  overflow: hidden;
}

@media (max-width: 640px) {
  .PageCaseSec__imageArea__list__image {
    width: auto;
    height: auto;
    overflow: auto;
  }
}

.PageCaseSec__imageArea__list__textArea {
  padding-left: 15px;
  padding-right: 20px;
  padding-bottom: 20px;
  width: 320px;
  border-top: 0;
}

@media (max-width: 640px) {
  .PageCaseSec__imageArea__list__textArea {
    width: 100%;
  }
}

.PageCaseSec__imageArea__list__textArea__upper {
  padding-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.PageCaseSec__imageArea__list__textArea__upper__date {
  font-size: 12px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.PageCaseSec__imageArea__list__textArea__upper__category {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #21a937;
  font-weight: 700;
}

.PageCaseSec__imageArea__list__textArea__title {
  margin-top: 15px;
  font-size: 15px;
  font-weight: 500;
}

.PageCaseSec__btn__wrapper {
  margin: 50px auto;
  width: 325px;
}

@media (max-width: 640px) {
  .PageCaseSec__btn__wrapper {
    margin: 30px auto 50px;
  }
}

.PageCaseSec__btn {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 325px;
  height: 40px;
  border-radius: 20px;
  border: 1px solid #21a937;
  font-size: 15px;
  color: #21a937;
  letter-spacing: 0.05em;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .PageCaseSec__btn {
    transition: all 0.6s ease-in-out;
  }
}

.PageCaseSec__btn:hover {
  background: #21a937;
  color: #fff;
}

@media (max-width: 640px) {
  .PageCaseSec__btn {
    margin-top: 30px;
    width: auto;
  }
  .PageCaseSec__btn:hover {
    border: 1px solid #21a937;
    color: #21a937;
    background: none;
  }
}

/********************************************************
  casePageSelectSec(施工事例ページ)
*********************************************************/
.casePageSelectSec {
  margin-top: 80px;
}

@media (max-width: 640px) {
  .casePageSelectSec {
    margin-top: 50px;
  }
}

.casePageSelectSec__inner {
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 640px) {
  .casePageSelectSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .casePageSelectSec__inner {
    width: 300px;
    padding: 0 15px;
    /* padding: 0; */
    overflow: scroll;
  }
}

.casePageSelectSec__list {
  display: flex;
  justify-content: center;
}

@media (max-width: 640px) {
  .casePageSelectSec__list {
    width: 430px;
    justify-content: normal;
    overflow: scroll;
  }
}

.casePageSelectSec__list__item {
  margin-left: 5px;
}

.casePageSelectSec__list__item:first-child {
  margin-left: 0;
}

.casePageSelectSec__list__item__link {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 157px;
  height: 40px;
  background: #f0f6e1;
  font-size: 13px;
  font-weight: 500;
}

@media (max-width: 640px) {
  .casePageSelectSec__list__item__link {
    width: 100px;
    font-size: 11px;
  }
}

.casePageSelectSec__list__item__link.is-current {
  color: #fff;
  background: #21a937;
}

@media all and (-ms-high-contrast: none) {
  .PageCaseSec__btn {
    padding-top: 5px;
  }
  .casePageSelectSec__list__item__link {
    padding-top: 5px;
  }
}

/********************************************************
  singlecasePage
*********************************************************/
/*====================================================================
  INDEX
====================================================================*/
/*
● singlecasePageContentSec(施工実績詳細ページ)
*/
/********************************************************
  singlecasePageContentSec(施工実績詳細ページ)
*********************************************************/
.singlecasePageContentSec__inner {
  margin-top: 75px;
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  width: 780px;
}

@media (max-width: 640px) {
  .singlecasePageContentSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .singlecasePageContentSec__inner {
    padding: 0 15px 120px;
    width: auto;
  }
}

.singlecasePageContentSec__slider {
  position: relative;
}

.singlecasePageContentSec__slider__list {
  height: 500px;
}

.singlecasePageContentSec__slider__list__pagination {
  position: absolute;
  bottom: -32px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.singlecasePageContentSec__slider__list__pagination .swiper-pagination-bullet {
  margin-left: 20px;
  background: #dbdbdb;
}

.singlecasePageContentSec__slider__list__pagination .swiper-pagination-bullet:first-child {
  margin-left: 0;
}

.singlecasePageContentSec__slider__list__pagination .swiper-pagination-bullet-active {
  background: #898989;
}

.singlecasePageContentSec__textArea {
  margin-top: 75px;
}

.singlecasePageContentSec__textArea__title {
  padding-bottom: 20px;
  position: relative;
  font-size: 18px;
  font-weight: 700;
}

.singlecasePageContentSec__textArea__title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: #000;
  width: 22px;
  height: 1px;
}

@media (max-width: 640px) {
  .singlecasePageContentSec__textArea__title {
    padding-bottom: 15px;
    height: auto;
    line-height: 1.4;
  }
}

.singlecasePageContentSec__textArea__category {
  margin-top: 17px;
  font-size: 15px;
  letter-spacing: 0.05em;
}

.singlecasePageContentSec__textArea__lower {
  margin-top: 30px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 640px) {
  .singlecasePageContentSec__textArea__lower {
    flex-direction: column;
  }
}

.singlecasePageContentSec__textArea__lower__left {
  width: 410px;
  color: #333;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.singlecasePageContentSec__textArea__lower__left * {
  margin-top: 1.75em;
}

.singlecasePageContentSec__textArea__lower__left *:nth-child(1) {
  margin-top: 0;
}

.singlecasePageContentSec__textArea__lower__left a {
  color: #21a937;
  border-bottom: solid 1px #21a937;
}

@media screen and (min-width: 768px) {
  .singlecasePageContentSec__textArea__lower__left a {
    transition: all 0.6s ease-in-out;
  }
}

@media screen and (min-width: 768px) {
  .singlecasePageContentSec__textArea__lower__left a:hover {
    opacity: 0.6;
  }
}

.singlecasePageContentSec__textArea__lower__left h1, .singlecasePageContentSec__textArea__lower__left h2, .singlecasePageContentSec__textArea__lower__left h3, .singlecasePageContentSec__textArea__lower__left h4, .singlecasePageContentSec__textArea__lower__left h5, .singlecasePageContentSec__textArea__lower__left h6 {
  font-weight: bold;
}

.singlecasePageContentSec__textArea__lower__left h1 {
  font-size: 32px;
  line-height: 1.4;
}

.singlecasePageContentSec__textArea__lower__left h2 {
  margin: 2em 0 0.5em;
  display: block;
  font-size: 27px;
  line-height: 1.6;
}

.singlecasePageContentSec__textArea__lower__left h3 {
  font-size: 22px;
  line-height: 1.6;
}

.singlecasePageContentSec__textArea__lower__left h4, .singlecasePageContentSec__textArea__lower__left h5, .singlecasePageContentSec__textArea__lower__left h6 {
  font-size: 16px;
  line-height: 1.6;
}

.singlecasePageContentSec__textArea__lower__left h1 + h2,
.singlecasePageContentSec__textArea__lower__left h2 + h3,
.singlecasePageContentSec__textArea__lower__left h3 + h4,
.singlecasePageContentSec__textArea__lower__left h4 + h5,
.singlecasePageContentSec__textArea__lower__left h5 + h6 {
  margin-top: 0.5em;
}

.singlecasePageContentSec__textArea__lower__left p {
  margin-top: 0.75em;
  font-size: 15px;
  line-height: 1.7;
}

.singlecasePageContentSec__textArea__lower__left strong {
  font-weight: bold;
}

.singlecasePageContentSec__textArea__lower__left em {
  font-style: italic;
}

.singlecasePageContentSec__textArea__lower__left ul li {
  list-style-type: disc;
}

.singlecasePageContentSec__textArea__lower__left ol li {
  list-style-type: decimal;
}

.singlecasePageContentSec__textArea__lower__left ul, .singlecasePageContentSec__textArea__lower__left ol {
  margin-top: 1em;
  padding-left: 1.4em;
}

.singlecasePageContentSec__textArea__lower__left ul li, .singlecasePageContentSec__textArea__lower__left ol li {
  margin-top: 0.5em;
  line-height: 1.4;
}

.singlecasePageContentSec__textArea__lower__left sup, .singlecasePageContentSec__textArea__lower__left sub {
  font-size: 10px;
}

.singlecasePageContentSec__textArea__lower__left table {
  margin-top: 3em;
  width: 100%;
  border-collapse: collapse;
}

.singlecasePageContentSec__textArea__lower__left table tr th, .singlecasePageContentSec__textArea__lower__left table tr td {
  padding: 15px 20px 16px;
  border-left: 0;
  border-right: 0;
  line-height: 1.5;
  text-align: left;
}

.singlecasePageContentSec__textArea__lower__left table tr th {
  width: 25%;
}

.singlecasePageContentSec__textArea__lower__left img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin-top: 2em;
}

.singlecasePageContentSec__textArea__lower__left img.alignnone, .singlecasePageContentSec__textArea__lower__left img.alignleft {
  margin-top: 2em;
}

.singlecasePageContentSec__textArea__lower__left img.aligncenter {
  display: block;
  margin: 2em auto 0;
}

.singlecasePageContentSec__textArea__lower__left img.alignright {
  display: block;
  margin: 2em 0 0 auto;
}

@media (max-width: 640px) {
  .singlecasePageContentSec__textArea__lower__left {
    padding: 0;
    font-size: 12px;
    line-height: 1.7;
    letter-spacing: 0.04em;
  }
  .singlecasePageContentSec__textArea__lower__left * {
    margin-top: 1.5em;
    font-size: 14px;
  }
  .singlecasePageContentSec__textArea__lower__left h1 {
    font-size: 22px;
    line-height: 1.4;
  }
  .singlecasePageContentSec__textArea__lower__left h2 {
    margin-top: 2em;
    font-size: 18px;
    line-height: 1.6;
  }
  .singlecasePageContentSec__textArea__lower__left h3 {
    font-size: 16px;
    line-height: 1.9;
  }
  .singlecasePageContentSec__textArea__lower__left h4, .singlecasePageContentSec__textArea__lower__left h5, .singlecasePageContentSec__textArea__lower__left h6 {
    font-size: 14px;
    line-height: 2;
  }
  .singlecasePageContentSec__textArea__lower__left ul li {
    list-style-type: disc;
  }
  .singlecasePageContentSec__textArea__lower__left ol li {
    list-style-type: decimal;
  }
  .singlecasePageContentSec__textArea__lower__left p {
    width: auto;
    margin-top: 0.75em;
    font-size: 12px;
    line-height: 1.7;
  }
}

.singlecasePageContentSec__textArea__lower__left::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.7) * 0.5em);
}

@media (max-width: 640px) {
  .singlecasePageContentSec__textArea__lower__left {
    width: 100%;
  }
}

.singlecasePageContentSec__textArea__lower__right {
  width: 255px;
}

@media (max-width: 640px) {
  .singlecasePageContentSec__textArea__lower__right {
    width: 100%;
  }
}

.singlecasePageContentSec__textArea__lower__text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.92;
}

.singlecasePageContentSec__textArea__lower__list {
  border-top: solid 1px #a0a0a0;
}

@media (max-width: 640px) {
  .singlecasePageContentSec__textArea__lower__list {
    margin-top: 30px;
  }
}

.singlecasePageContentSec__textArea__lower__list__date {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  height: 40px;
  border-bottom: solid 1px #a0a0a0;
  font-size: 13px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.singlecasePageContentSec__textArea__lower__list__date__title {
  width: 75px;
}

.singlecasePageContentSec__textArea__lower__list__place {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  height: 40px;
  border-bottom: solid 1px #a0a0a0;
  font-size: 13px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.singlecasePageContentSec__textArea__lower__list__place__title {
  width: 75px;
}

/********************************************************
  singlecasePage
*********************************************************/
/*====================================================================
  INDEX
====================================================================*/
/*
● singleblogPageContentSec(ブログ詳細ページ)
● singleblogPageRelatedSec(ブログ詳細ページ)
*/
/********************************************************
  singleblogPageContentSec(ブログ詳細ページ)
*********************************************************/
.singleblogPageContentSec__inner {
  margin-top: 80px;
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 640px) {
  .singleblogPageContentSec__inner {
    width: auto;
  }
}

@media (max-width: 640px) {
  .singleblogPageContentSec__inner {
    margin-top: 40px;
    padding: 0 15px;
    width: auto;
  }
}

.singleblogPageContentSec__block {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 640px) {
  .singleblogPageContentSec__block {
    flex-direction: column;
  }
}

.singleblogPageContentSec__block__left {
  width: 714px;
}

@media (max-width: 640px) {
  .singleblogPageContentSec__block__left {
    width: auto;
  }
}

.singleblogPageContentSec__titleArea__inner {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}

.singleblogPageContentSec__titleArea__title {
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #a0a0a0;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
}

@media (max-width: 640px) {
  .singleblogPageContentSec__titleArea__title {
    font-size: 22px;
  }
}

.singleblogPageContentSec__titleArea__category {
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.singleblogPageContentSec__titleArea__date {
  margin-left: 30px;
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

@media (max-width: 640px) {
  .singleblogPageContentSec__titleArea__date {
    margin-left: 20px;
  }
}

.singleblogPageContentSec__image {
  margin-top: 30px;
}

.singleblogPageContentSec__textArea__lower__text {
  margin-top: 25px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.92;
}

.singleblogPageContentSec__textArea__inner {
  margin-top: 10px;
  color: #333;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.singleblogPageContentSec__textArea__inner * {
  margin-top: 1.75em;
}

.singleblogPageContentSec__textArea__inner *:nth-child(1) {
  margin-top: 0;
}

.singleblogPageContentSec__textArea__inner a {
  color: #21a937;
  border-bottom: solid 1px #21a937;
}

@media screen and (min-width: 768px) {
  .singleblogPageContentSec__textArea__inner a {
    transition: all 0.6s ease-in-out;
  }
}

@media screen and (min-width: 768px) {
  .singleblogPageContentSec__textArea__inner a:hover {
    opacity: 0.6;
  }
}

.singleblogPageContentSec__textArea__inner h1, .singleblogPageContentSec__textArea__inner h2, .singleblogPageContentSec__textArea__inner h3, .singleblogPageContentSec__textArea__inner h4, .singleblogPageContentSec__textArea__inner h5, .singleblogPageContentSec__textArea__inner h6 {
  font-weight: bold;
}

.singleblogPageContentSec__textArea__inner h1 {
  font-size: 32px;
  line-height: 1.4;
}

.singleblogPageContentSec__textArea__inner h2 {
  margin: 2em 0 0.5em;
  display: block;
  font-size: 27px;
  line-height: 1.6;
}

.singleblogPageContentSec__textArea__inner h3 {
  font-size: 22px;
  line-height: 1.6;
}

.singleblogPageContentSec__textArea__inner h4, .singleblogPageContentSec__textArea__inner h5, .singleblogPageContentSec__textArea__inner h6 {
  font-size: 16px;
  line-height: 1.6;
}

.singleblogPageContentSec__textArea__inner h1 + h2,
.singleblogPageContentSec__textArea__inner h2 + h3,
.singleblogPageContentSec__textArea__inner h3 + h4,
.singleblogPageContentSec__textArea__inner h4 + h5,
.singleblogPageContentSec__textArea__inner h5 + h6 {
  margin-top: 0.5em;
}

.singleblogPageContentSec__textArea__inner p {
  margin-top: 0.75em;
  font-size: 15px;
  line-height: 1.7;
}

.singleblogPageContentSec__textArea__inner strong {
  font-weight: bold;
}

.singleblogPageContentSec__textArea__inner em {
  font-style: italic;
}

.singleblogPageContentSec__textArea__inner ul li {
  list-style-type: disc;
}

.singleblogPageContentSec__textArea__inner ol li {
  list-style-type: decimal;
}

.singleblogPageContentSec__textArea__inner ul, .singleblogPageContentSec__textArea__inner ol {
  margin-top: 1em;
  padding-left: 1.4em;
}

.singleblogPageContentSec__textArea__inner ul li, .singleblogPageContentSec__textArea__inner ol li {
  margin-top: 0.5em;
  line-height: 1.4;
}

.singleblogPageContentSec__textArea__inner sup, .singleblogPageContentSec__textArea__inner sub {
  font-size: 10px;
}

.singleblogPageContentSec__textArea__inner table {
  margin-top: 3em;
  width: 100%;
  border-collapse: collapse;
}

.singleblogPageContentSec__textArea__inner table tr th, .singleblogPageContentSec__textArea__inner table tr td {
  padding: 15px 20px 16px;
  border-left: 0;
  border-right: 0;
  line-height: 1.5;
  text-align: left;
}

.singleblogPageContentSec__textArea__inner table tr th {
  width: 25%;
}

.singleblogPageContentSec__textArea__inner img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin-top: 2em;
}

.singleblogPageContentSec__textArea__inner img.alignnone, .singleblogPageContentSec__textArea__inner img.alignleft {
  margin-top: 2em;
}

.singleblogPageContentSec__textArea__inner img.aligncenter {
  display: block;
  margin: 2em auto 0;
}

.singleblogPageContentSec__textArea__inner img.alignright {
  display: block;
  margin: 2em 0 0 auto;
}

@media (max-width: 640px) {
  .singleblogPageContentSec__textArea__inner {
    padding: 0;
    font-size: 12px;
    line-height: 1.7;
    letter-spacing: 0.04em;
  }
  .singleblogPageContentSec__textArea__inner * {
    margin-top: 1.5em;
    font-size: 14px;
  }
  .singleblogPageContentSec__textArea__inner h1 {
    font-size: 22px;
    line-height: 1.4;
  }
  .singleblogPageContentSec__textArea__inner h2 {
    margin-top: 2em;
    font-size: 18px;
    line-height: 1.6;
  }
  .singleblogPageContentSec__textArea__inner h3 {
    font-size: 16px;
    line-height: 1.9;
  }
  .singleblogPageContentSec__textArea__inner h4, .singleblogPageContentSec__textArea__inner h5, .singleblogPageContentSec__textArea__inner h6 {
    font-size: 14px;
    line-height: 2;
  }
  .singleblogPageContentSec__textArea__inner ul li {
    list-style-type: disc;
  }
  .singleblogPageContentSec__textArea__inner ol li {
    list-style-type: decimal;
  }
  .singleblogPageContentSec__textArea__inner p {
    width: auto;
    margin-top: 0.75em;
    font-size: 12px;
    line-height: 1.7;
  }
}

.singleblogPageContentSec__shareArea {
  margin-top: 60px;
}

.singleblogPageContentSec__shareArea__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.singleblogPageContentSec__shareArea__list {
  margin-top: 25px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 640px) {
  .singleblogPageContentSec__shareArea__list {
    flex-direction: column;
  }
}

.singleblogPageContentSec__shareArea__list__item {
  width: 235px;
  height: 50px;
}

@media (max-width: 640px) {
  .singleblogPageContentSec__shareArea__list__item {
    margin-top: 10px;
    width: auto;
  }
  .singleblogPageContentSec__shareArea__list__item:first-child {
    margin-top: 0;
  }
}

.singleblogPageContentSec__shareArea__list__item__link {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 235px;
  height: 50px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .singleblogPageContentSec__shareArea__list__item__link {
    width: 100%;
  }
}

.singleblogPageContentSec__shareArea__list__item__link.facebook {
  color: #4267b2;
  border: solid 1px #4267b2;
}

.singleblogPageContentSec__shareArea__list__item__link.twitter {
  color: #1da1f2;
  border: solid 1px #1da1f2;
}

.singleblogPageContentSec__shareArea__list__item__link.google {
  color: #dc4e41;
  border: solid 1px #dc4e41;
}

.singleblogPageContentSec__shareArea__list__item__link__tips.facebook {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 110px;
}

.singleblogPageContentSec__shareArea__list__item__link__tips.facebook:before {
  content: "";
  position: absolute;
  background: url("../images/common/facebook.png") no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.singleblogPageContentSec__shareArea__list__item__link__tips.twitter {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 90px;
}

.singleblogPageContentSec__shareArea__list__item__link__tips.twitter:before {
  content: "";
  position: absolute;
  background: url("../images/common/twitter.png") no-repeat;
  background-size: cover;
  width: 20px;
  height: 16.5px;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.singleblogPageContentSec__shareArea__list__item__link__tips.google {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 100px;
}

.singleblogPageContentSec__shareArea__list__item__link__tips.google:before {
  content: "";
  position: absolute;
  background: url("../images/common/google.png") no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

/********************************************************
  singleblogPageRelatedSec(ブログ詳細ページ)
*********************************************************/
.singleblogPageRelatedSec__inner {
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 640px) {
  .singleblogPageRelatedSec__inner {
    width: auto;
  }
}

/********************************************************
  pagePaging
*********************************************************/
.pagePaging {
  margin-top: 20px;
}

.pagePaging__inner {
  display: flex;
  justify-content: center;
}

.pagePaging__inner li {
  margin-left: 10px;
}

.pagePaging__inner li:first-child(1) {
  margin-left: 0;
}

.pagePaging__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #000;
  font-size: 15px;
  color: #000;
  letter-spacing: 0.05em;
}

.pagePaging__btn.current {
  background: #000;
  color: #fff;
}

/****************************
errorPageContentSec (404ページ)
*****************************/
.errorPageContentSec {
  text-align: center;
  background-size: 100%;
}

@media (max-width: 640px) {
  .errorPageContentSec {
    margin-top: 50px;
  }
}

.errorPageContentSec__inner {
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 100px;
  padding-bottom: 50px;
}

@media (max-width: 640px) {
  .errorPageContentSec__inner {
    width: auto;
  }
}

.errorPageContentSec__text {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.075em;
}

.errorPageContentSec__btn {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.075em;
}

/*# sourceMappingURL=style.css.map */