@charset "UTF-8";
/* FONT */
/* Animation 関連 */
/* ブレイクポイント(for MediaQuery - max-width(PC->sp)) : オリジナルは scss/variables */
/* 体裁共通 */
/* 汎用カラー */
/* 汎用 Mixin */
/* ==================================================
common.css
================================================== */
/* common
--------------------------------------------------*/
body {
  font-family: inherit;
  position: relative;
  z-index: 1;
  font-family: Arial, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  overflow-x: hidden;
  color: #452f27;
  /*
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: auto;
  */
}

section {
  margin-bottom: 100px;
}

/* 特殊改行
--------------------------------------------------*/
br.ts,
.only-top-sp {
  display: none;
}

@media screen and (max-width: 991px) {
  .home br.ts .home .only-top-sp {
    display: block !important;
  }
}
br.tp_ds,
.works-list br.tp_ds {
  display: none;
}

.home br.tp_ds {
  display: block;
}

@media screen and (max-width: 991px) {
  br.tp_ds {
    display: block;
  }

  .home br.tp_ds {
    display: none;
  }
}
/* レイアウト調整
--------------------------------------------------*/
.margin-top {
  margin-top: 100px !important;
}

.margin-bottom {
  margin-bottom: 100px !important;
}

.margin-top-half {
  margin-top: 50px !important;
}

.margin-bottom-half {
  margin-bottom: 50px !important;
}

.no-margin-top {
  margin-top: 0 !important;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.no-padding-left {
  padding-left: 0 !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.no-gutter > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

/* biggerlink
--------------------------------------------------*/
.biggerlink {
  cursor: pointer;
}

.biggerlink:hover a {
  text-decoration: underline;
}

/* Flex-box
--------------------------------------------------*/
/*
==================================================
 8.0 - Flex-box
--------------------------------------------------
*/
.alm-reveal,
.flex-5,
.flex-4,
.flex-3,
.flex-2 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  justify-content: space-between;
}

.flex-5 .unit,
.flex-4 .unit,
.flex-3 .unit,
.flex-2 .unit {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  -ms-flex-flow: column;
  flex-flow: column;
}

.flex-5 .unit ul li,
.flex-5 .unit ol li,
.flex-4 .unit ul li,
.flex-4 .unit ol li,
.flex-3 .unit ul li,
.flex-3 .unit ol li,
.flex-2 .unit ul li,
.flex-2 .unit ol li {
  width: 100%;
  text-align: left;
}

.flex-5 li,
.flex-5 .unit {
  width: 20%;
}

.flex-4 li,
.flex-4 .unit {
  width: 25%;
}

.alm-reveal li,
.flex-3 li,
.flex-3 .unit {
  width: 33.333%;
}

.flex-2 li,
.flex-2 .unit {
  width: 50%;
}

.flex-pic {
  background-position: center center;
  background-size: cover;
}

.alm-reveal::after,
.flex-3::after {
  /* 左寄せ（flex-3のみ有効） */
  content: "";
  display: block;
  width: 33.2%;
}

/* 特殊サイズ */
.doctor-nav .flex-2 .flex-pic {
  width: 40%;
}

.doctor-nav .flex-2 .note {
  width: 60%;
}

@media screen and (max-width: 991px) {
  /* < 992px */
  .flex-5 li,
.flex-5 .unit,
.flex-4 li,
.flex-4 .unit,
.alm-reveal li,
.flex-3 li,
.flex-3 .unit,
.flex-2 li,
.flex-2 .unit {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  /* < 768px */
  .flex-5,
.flex-4,
.alm-reveal,
.flex-3,
.flex-2 {
    align-items: center;
    justify-content: center;
  }

  .flex-5 li,
.flex-5 .unit,
.flex-4 li,
.flex-4 .unit,
.alm-reveal li,
.flex-3 li,
.flex-3 .unit,
.flex-2 li,
.flex-2 .unit {
    width: 100% !important;
  }

  .flex-pic {
    height: 300px;
  }
}
/* Waypoints
--------------------------------------------------*/
.animated {
  visibility: visible !important;
}

.delay {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.delay-1 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay-2 {
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}

.delay-3 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.delay-4 {
  -webkit-animation-delay: 1.25s;
  animation-delay: 1.25s;
}

.delay-5 {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.delay-6 {
  -webkit-animation-delay: 1.75s;
  animation-delay: 1.75s;
}

.delay-7 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

/* モバイル環境でのメインコンテント内のディレイは無効 */
@media screen and (max-width: 767px) {
  .main-content .delay,
.main-content .delay-1,
.main-content .delay-2,
.main-content .delay-3,
.main-content .delay-4,
.main-content .delay-5,
.main-content .delay-6,
.main-content .delay-7 {
    -webkit-animation-delay: 0;
    animation-delay: 0;
  }
}
/* グーテンベルク
--------------------------------------------------*/
.alignwide {
  /* 特に指定なしで最大化される模様 */
}

.alignfull {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  max-width: 100vw;
}

/* Links
--------------------------------------------------*/
a {
  color: #E03B51;
}
a i {
  font-style: normal;
}

a:hover {
  color: #E03B51;
}

a.link-external,
a.link-pdf,
a.link-excel,
a.link-word {
  margin-right: 4px;
  padding-right: 22px;
  background-position: 100% 50%;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  -webkit-transition: inherit;
  -moz-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
  font-style: normal;
}

a.link-external {
  position: relative;
  padding-right: 12px;
  display: inline-block;
}
a.link-external .link-icon {
  width: 12px;
  height: 12px;
  display: inline-block;
  position: relative;
  top: -5px;
  right: -5px;
  background-image: url("../images/common/icon-external.svg");
}

a.link-pdf {
  background-image: url("../images/common/icon-pdf.svg");
}

a.link-excel {
  background-image: url("../images/common/icon-excel.svg");
}

a.link-word {
  background-image: url("../images/common/icon-word.svg");
}

.scrolled a.link-external .link-icon {
  background-image: url("../images/common/icon-external.svg");
}

@media (max-width: 991px) {
  a.link-external .link-icon {
    background-image: url("../images/common/icon-external.svg");
  }
}
/*
@mixin single-transition($property:all, $speed:150ms, $ease:ease, $delay: 0s){  
	-webkit-transition: $property $speed $ease $delay;  
	transition: $property $speed $ease $delay;
}
@mixin sweepButtonGradient(){
	background: rgb(255,255,255);
	background: linear-gradient(90deg,  rgba(254,234,238,0) 0%,rgba(248,53,84,1) 94%,rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000',GradientType=1 );
}
@mixin sweepButtonGradientPink(){
	background: rgb(255,255,255);
	background: linear-gradient(90deg,  rgba(254,105,128,0) 0%,rgba(254,234,238,1) 94%,rgba(248,53,84,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000',GradientType=1 );
}
@mixin transform($property){  
	transform: $property; 
}

.swipeSubmit,
.sweepButton,
.sweepButtonPink {
	position: relative;
	overflow: hidden;
	background: transparent!important;
	@include single-transition(all, 0.2s, ease-out, 0s);

	.caption {
		position: relative;
		z-index: 10;
	}

	.gradient:before {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		width: 300%;
		height: 100%;
		bottom: auto;
		margin: auto;
		z-index: 5;
		@include sweepButtonGradient();
		// Transition out for gradient
		@include single-transition(all, 0s, ease-out, 0s);
		@include transform(translateX(-50%));
	}
	&:hover, &:focus {
//		background-color: $color-ultralightpink!important;

	    .gradient:before {
			@include transform(translateX(100%));
			// Transition in for gradient
			@include single-transition(all, 0.8s, ease-out, 0s);
	    }
	}
	.gradient:after {
		display: block;
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		transition: background-color 0.2s ease;
		background-color: $color-white;
	}	
}
.swipeSubmit {
	display: inline-block;
	margin: 0 15px 15px;

	.gradient:before {
		@include sweepButtonGradientPink();
	}
	.gradient:after {
		background-color: $color-pink;
	}	
}
.sweepButtonPink {

	.gradient:before {
		@include sweepButtonGradientPink();
	}
	.gradient:after {
		background-color: $color-pink;
	}
}
.sweepButtonPink:hover {
	.gradient:after {
//		background-color: $color-lightpink;
	}		
}
.submitBack {
	.gradient:after {
		background-color: $color-ultralightpink;
	}	
}
*/
/* request-button
--------------------------------------------------*/
.button-request {
  position: fixed;
  bottom: 5px;
  right: 15px;
  z-index: 150;
}
.button-request a {
  display: inline-block;
}
.button-request a img {
  width: 10vw;
  max-width: 120px;
  min-width: 80px;
  transition: all 0.5s ease;
}
.button-request a:hover img {
  opacity: 0.8;
  animation: bounce 1s 1;
}

/* Scroll Helper (Top Page Only)
--------------------------------------------------*/
.scroll-helper {
  position: absolute;
  left: calc(50% - 12px);
  bottom: 50px;
}
.scroll-helper a {
  display: inline-block;
  padding-top: 60px;
  color: #ffffff;
  text-decoration: none;
}
.scroll-helper a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 1.5s infinite;
  animation: sdb 1.5s infinite;
  box-sizing: border-box;
}

@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
/* Header
--------------------------------------------------*/
.home #header a {
  color: #ffffff;
}
.home #header .navigation ul li.selected a {
  color: #ffffff !important;
}
.home #header .site-title #title {
  fill: #fff;
}
.home #header .tel .phone {
  fill: #ffffff;
}
.home #header .contact .button-pink {
  color: #ffffff !important;
  background-color: transparent;
  border: 2px solid #ffffff;
}
.home #header .contact .button-pink .gradient:after {
  background-color: #ffffff;
}
.home #header .contact .button-pink:hover {
  color: #E03B51 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.home #header .contact .button-pink:hover .gradient:after {
  background-color: #ffffff;
}
.home a.link-external .link-icon {
  background-image: url("../images/common/icon-external-white.svg");
}

.page #header {
  background-color: white;
}

#header {
  font-size: 14px;
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 120px;
  background-color: transparent;
  transition: all 0.5s ease;
}
#header .container {
  padding-top: 30px;
  position: relative;
  color: #452f27;
  transition: all 0.5s ease;
  text-align: center;
}
#header ul,
#header nav,
#header .site-title,
#header .tel,
#header .contact {
  display: inline-block;
}
#header ul {
  padding-left: 0;
}
#header ul li {
  display: inline-block;
}
#header ul, #header p {
  margin: 0;
}
#header a {
  transition: color 0.5s ease;
  color: #452f27;
}
#header a:hover {
  text-decoration: none;
}
#header .site-title {
  position: absolute;
  font-size: 1.5rem;
  line-height: inherit;
  z-index: 100;
  left: 15px;
}
#header .site-title a {
  display: block;
}
#header .site-title a:hover #title {
  fill: #E03B51;
}
#header .site-title #title {
  width: 105px;
  height: 50px;
  fill: #E03B51;
  fill-rule: evenodd;
  transition: all 0.5s ease;
}
#header .navigation {
  padding-top: 0.9rem;
}
#header .navigation ul li {
  margin-right: 1.5rem;
}
#header .navigation ul li a {
  position: relative;
}
#header .navigation ul li a:hover {
  color: #ffafbb;
}
#header .navigation ul li.selected a {
  color: #E03B51 !important;
}
#header .navigation ul li.selected a:after {
  transition: all 0.5s ease;
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #E03B51;
  top: calc(-1.5rem - 25px);
}
#header .tel {
  position: absolute;
  text-align: right;
  padding-top: 1.25rem;
  right: 155px;
  z-index: 100;
}
#header .tel .phone {
  fill: #E03B51;
  fill-rule: evenodd;
  transition: all 0.5s ease;
}
#header .tel .phone:hover {
  fill: #ffafbb;
}
#header .contact {
  position: absolute;
  right: 15px;
}
#header .contact .button-pink {
  transition: all 0.5s ease;
  background-color: transparent;
  color: #E03B51;
  border: 2px solid #E03B51;
}
#header .contact .button-pink:hover {
  color: #ffffff !important;
  background-color: #E03B51;
}
#header .contact li {
  padding-left: 15px;
}

/* 固定表示時 */
.scrolled .home #header .navigation ul li.selected a {
  color: #E03B51 !important;
}
.scrolled #header {
  height: 72px;
  background-color: #ffffff;
}
.scrolled #header .container {
  padding-top: 10px;
}
.scrolled #header a {
  color: #452f27;
}
.scrolled #header a.link-external .link-icon {
  background-image: url("../images/common/icon-external.svg");
}
.scrolled #header .site-title #title {
  fill: #E03B51;
}
.scrolled #header .site-title a:hover #title {
  fill: #fe6980;
}
.scrolled #header .navigation ul li a:hover {
  color: #E03B51;
}
.scrolled #header .navigation ul li.selected a:after {
  background-color: #E03B51;
  top: calc(-1.5rem - 4px);
}
.scrolled #header .tel .phone {
  fill: #E03B51;
}
.scrolled #header .tel .phone:hover {
  fill: #fe6980;
}

.home #header .navigation ul li.selected a:after {
  background-color: #ffffff;
}

.home.scrolled #header .navigation ul li.selected a:after {
  background-color: #E03B51;
}
.home.scrolled #header .button {
  color: #E03B51 !important;
  border-color: #E03B51 !important;
  /* sweep: ホームのボタンはスクロール後にピンクに変更 */
}
.home.scrolled #header .button:hover {
  color: #ffffff !important;
  background-color: #E03B51;
}

@media (max-width: 1199px) {
  #header .navigation ul li {
    margin-right: 1rem;
  }
}
@media (max-width: 991px) {
  .home #header .navigation ul li.selected a {
    color: #E03B51 !important;
  }

  #header {
    height: 96px;
  }
  #header .tel {
    right: 50px;
  }
  #header .navigation,
#header .contact {
    display: none;
  }
  #header .container {
    padding-top: 10px;
  }
  #header .navigation {
    position: fixed;
    z-index: 15;
    width: 100vw;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 120px;
    background-color: rgba(255, 255, 255, 0.9);
  }
  #header .navigation ul {
    display: block;
  }
  #header .navigation ul li {
    display: block;
    text-align: center;
    margin: auto;
    width: 100%;
    max-width: 600px;
    padding: 0 15px;
  }
  #header .navigation ul li a {
    display: block;
    padding: 1.5rem 0px;
    color: #452f27;
    border-bottom: 0.5px solid #452f27;
  }
  #header .navigation ul li a.link-external .link-icon {
    background-image: url("../images/common/icon-external.svg");
  }
  #header .navigation ul li:last-child a {
    border: none;
  }
  #header .navigation ul li.selected a:after {
    display: none;
  }
  #header .open {
    display: block;
  }
}
@media (max-width: 575px) {
  #header .site-title {
    left: 15px;
  }
  #header .tel .number {
    font-size: 1rem;
  }
}
/* モバイルメニュー（名前はモバイルですがＰＣ・モバイル共通） */
.mobile-menu {
  text-align: right;
  display: none;
  position: relative;
  z-index: 20;
}
.mobile-menu aside {
  height: 100%;
}
.mobile-menu a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  height: 100%;
}
.mobile-menu a span.caption {
  display: inline-block;
  vertical-align: middle;
  margin-top: 0.2em;
  margin-left: 0.5em;
  color: #ffffff;
}
.mobile-menu button {
  vertical-align: middle;
}

/* モバイルメニューオープン */
.home .c-hamburger span,
.home .c-hamburger span::before,
.home .c-hamburger span::after {
  background-color: #ffffff;
}

.menu-open .c-hamburger span,
.menu-open .c-hamburger span::before,
.menu-open .c-hamburger span::after {
  background-color: #452f27;
}
.menu-open .site-title #title {
  fill: #E03B51 !important;
}
.menu-open .navigation ul li a:hover {
  color: #E03B51 !important;
}
.menu-open .tel .phone {
  fill: #E03B51 !important;
}
.menu-open .tel .phone:hover {
  fill: #fe6980 !important;
}

.scrolled .c-hamburger span {
  background: #452f27;
}
.scrolled .c-hamburger span::before,
.scrolled .c-hamburger span::after {
  background-color: #452f27;
}

@media (max-width: 991px) {
  .mobile-menu {
    display: inline-block;
    position: absolute;
    top: -13px;
    right: 10px;
  }
}
/* ハンバーガーメニューアイコン */
.c-hamburger {
  display: inline-block;
  position: relative;
  overflow: hidden;
  margin: 40px 0 0;
  padding: 0;
  width: 35px;
  height: 30px;
  font-size: 0;
  text-indent: -9999px;
  appearance: none;
  box-shadow: none;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.c-hamburger:focus {
  outline: none;
}

.c-hamburger span {
  display: block;
  position: absolute;
  top: 15px;
  left: 5px;
  right: 5px;
  height: 3px;
  background: #452f27;
  border-radius: 5px;
}

.c-hamburger span::before,
.c-hamburger span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #452f27;
  content: "";
  border-radius: 5px;
}

.c-hamburger span::before {
  top: -8px;
}

.c-hamburger span::after {
  bottom: -8px;
}

.c-hamburger--htx {
  background-color: transparent;
}

.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
}

.c-hamburger--htx span::before {
  transition-property: top, transform;
}

.c-hamburger--htx span::after {
  transition-property: bottom, transform;
}

/* active state, i.e. menu open */
.c-hamburger--htx.is-active {
  background-color: transparent;
}

.c-hamburger--htx.is-active span {
  background: none;
}

.c-hamburger--htx.is-active span::before {
  top: 0;
  transform: rotate(45deg);
}

.c-hamburger--htx.is-active span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.c-hamburger--htx.is-active span::before,
.c-hamburger--htx.is-active span::after {
  transition-delay: 0s, 0.3s;
}

/* footer
--------------------------------------------------*/
.page-contact .footer-request,
.page-request .footer-request {
  display: none;
}

.page-contact .section-body,
.page-request .section-body {
  padding-top: 0 !important;
}

.footer-request {
  padding: 100px 0 100px;
  background-color: #fdeae8;
  overflow: hidden;
}
.footer-request section.mb-0 {
  margin-bottom: 0 !important;
}
.footer-request h1 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #E03B51;
  margin-bottom: 50px;
}
.footer-request p.lead {
  font-size: 1.1rem;
  color: #452f27;
  line-height: 1.9rem;
  margin-bottom: 125px;
}
.footer-request .row {
  margin-bottom: 125px;
}
.footer-request .request,
.footer-request .contact {
  position: relative;
}
.footer-request .request:before,
.footer-request .contact:before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 177px;
  background-position: center center;
  background-size: 250px 125px;
  background-repeat: no-repeat;
  top: -88px;
  z-index: 10;
}
.footer-request .request:before {
  background-image: url("../images/common/footer-fig-request.png");
}
.footer-request .contact:before {
  background-image: url("../images/common/footer-fig-contact.png");
}
.footer-request .box {
  position: relative;
  padding: 100px 15px 80px;
  height: 100%;
  border-radius: 10px;
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.footer-request .box p {
  margin-bottom: 0;
}
.footer-request .box a {
  position: absolute;
  bottom: -2rem;
  padding: 1.2rem 1.2rem;
  border: 2px solid #E03B51;
  left: 20%;
  right: 20%;
}
.footer-request .box .sweepButton:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #E03B51;
  left: 0;
  top: 0;
}
.footer-request .box:after {
  position: absolute;
  display: block;
  content: "";
  width: 50vw;
  height: 100%;
  top: 0;
  z-index: -1;
  background-color: #ffffff;
}
.footer-request .box.hovered a {
  bottom: -1.5rem;
}
.footer-request .request .box a {
  color: #E03B51 !important;
  background-color: #ffffff !important;
}
.footer-request .request .box:after {
  right: 10px;
}
.footer-request .contact .box a {
  color: #ffffff !important;
  background-color: #E03B51;
}
.footer-request .contact .box:after {
  left: 10px;
}
.footer-request .tel {
  transition: all 0.5s ease;
}
.footer-request .tel img {
  display: inline-block;
  vertical-align: text-bottom;
  margin-left: 0.5rem;
  margin-right: 0.1rem;
}
.footer-request .tel:hover {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .footer-request {
    overflow: hidden;
  }
  .footer-request .contact {
    margin-top: 150px;
  }
  .footer-request .box a {
    left: 5%;
    right: 5%;
  }
  .footer-request .tel img {
    display: block;
    vertical-align: middle;
    margin: 0.5rem auto;
  }
}
.site-info {
  background-image: url(../images/common/bg-hero.jpg);
  background-size: cover;
  background-position: center center;
  padding: 100px 0 50px;
}
.site-info p {
  text-align: center;
  color: #ffffff;
}
.site-info .logo {
  margin-bottom: 25px;
}
.site-info .logo img {
  margin-bottom: 20px;
}
.site-info .name {
  font-size: 1.2rem;
  line-height: 1.4rem;
  margin-bottom: 2rem;
  text-align: left;
  font-weight: bold;
  margin-top: 50px;
}
.site-info .name small {
  font-size: 0.8rem;
  font-weight: normal;
}
.site-info .address {
  text-align: left;
  margin-bottom: 50px;
  line-height: 2rem;
}
.site-info .address small {
  display: inline-block;
  margin-left: 0.5em;
  vertical-align: -0.2rem;
}
.site-info .cp {
  text-align: right;
  margin-bottom: 0;
  color: #ffffff;
  font-size: 0.8rem;
}

@media (max-width: 1380px) {
  .site-info .cp {
    padding-right: 120px;
  }
}
@media (max-width: 1199px) {
  .site-info .cp {
    padding-right: 100px;
  }
}
@media (max-width: 991px) {
  .site-info .name {
    margin-top: 10px;
  }
  .site-info .cp {
    padding-right: 7.5vw;
  }
}
@media (max-width: 767px) {
  .site-info {
    padding-bottom: 100px;
  }
  .site-info .name,
.site-info .address,
.site-info .cp {
    text-align: center;
  }
  .site-info .name {
    margin-top: inherit;
  }
  .site-info .cp {
    padding-right: inherit;
  }
  .site-info .address small {
    display: inline;
    margin-left: auto;
    vertical-align: inherit;
  }
}
/* コンテンツ共通
--------------------------------------------------*/
.home .site-content .head-bg {
  height: 500px;
}

.site-content {
  position: relative;
  z-index: 10;
  padding-top: 120px;
  padding-bottom: 100px;
}
.site-content .head-bg {
  position: relative;
  height: 0;
  background-color: transparent;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  visibility: hidden;
}
.site-content .section-header {
  position: relative;
  z-index: 1;
}
.site-content .section-header .container {
  position: relative;
  z-index: 100;
  text-align: center;
  padding: 50px 15px;
  border-radius: 3.3333333333px;
  font-family: "Montserrat", Arial, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
}
.site-content .section-header .container h1 {
  margin-bottom: 0;
  letter-spacing: 0.05em;
  font-weight: bold;
  color: #E03B51;
}
.site-content .section-header .container h2, .site-content .section-header .container p {
  margin-bottom: 50px;
  font-size: 1.3rem;
}
.site-content .section-header .container p {
  margin-bottom: 0;
}
.site-content .section-header.open .container,
.site-content .section-header.close .container {
  position: relative;
}
.site-content .section-header.open .container:after,
.site-content .section-header.close .container:after {
  display: inline-block;
  width: 100%;
  max-width: 10rem;
  height: auto;
  padding: 5px 15px;
  margin-top: 50px;
  color: #ffffff;
}
.site-content .section-header.open .container:after {
  content: "開催中";
  background-color: #E03B51;
}
.site-content .section-header.close .container:after {
  content: "終了";
  background-color: #452f27;
}
.site-content .section-header-imageless .container {
  top: inherit;
  margin-bottom: inherit;
  background-color: transparent;
}
.site-content .section-body {
  position: relative;
  padding-bottom: 100px;
  z-index: 2;
}
.site-content h1, .site-content h2, .site-content h3, .site-content h4, .site-content h5,
.site-content p, .site-content ul, .site-content ol, .site-content dl, .site-content table, .site-content .well {
  margin-bottom: 50px;
  line-height: 1.8;
}
.site-content h2, .site-content h3, .site-content h4, .site-content h5 {
  font-weight: bold;
}
.site-content h2 {
  font-size: 1.4rem;
}
.site-content h3 {
  font-size: 1.2rem;
  color: #E03B51;
}
.site-content h4 {
  font-size: 1.1rem;
}
.site-content h4:before {
  display: inline-block;
  content: "";
  width: 1rem;
  height: 3px;
  background-color: #E03B51;
  border-radius: 2px;
  margin-bottom: 0.26rem;
  margin-right: 0.5rem;
}
.site-content h5 {
  font-size: 1rem;
}
.site-content h5:before {
  display: inline-block;
  content: "";
  width: 1rem;
  height: 1px;
  background-color: #452f27;
  border-radius: 2px;
  margin-bottom: 0.26rem;
  margin-right: 0.5rem;
}
.site-content table {
  width: 100%;
  border: 1px solid #452f27;
}
.site-content table tr, .site-content table th, .site-content table td {
  border: 1px solid #452f27;
}
.site-content table th, .site-content table td {
  padding: 1rem;
}
.site-content table th {
  color: #E03B51;
}
.site-content .framed {
  position: relative;
  padding-top: 25px;
  padding-right: 25px;
}
.site-content .framed img {
  position: relative;
  z-index: 10;
}
.site-content .framed:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: calc(100% - 25px);
  height: calc(100% - 25px);
  border: 8px solid #E03B51;
  border-radius: 10px;
  z-index: 1;
}
.site-content .mb-unit {
  margin-bottom: 100px;
}
.site-content .mb-unit-half {
  margin-bottom: 50px;
}
.site-content .mb-unit2x {
  margin-bottom: 200px;
}
.site-content .pb-unit {
  padding-bottom: 100px;
}
.site-content .pb-unit-half {
  padding-bottom: 50px;
}
.site-content .pb-unit2x {
  padding-bottom: 200px;
}
.site-content ol {
  padding-left: 1.7em;
}
.site-content ul {
  padding-left: 0;
}
.site-content ul li {
  list-style: none;
}
.site-content dl dt {
  color: #E03B51;
}
.site-content dl.horizontal dt, .site-content dl.horizontal dd {
  display: inline-block;
}
.site-content dl.horizontal dt {
  width: 5rem;
  color: #E03B51;
  vertical-align: top;
}
.site-content dl.horizontal dd {
  /* 若干の余裕を持たせているのは、dd の前に改行がある場合隙間ができて段落ちするため */
  width: calc(100% - 5.3rem);
}
.site-content dl.horizontal.size3 dt {
  width: 3rem;
}
.site-content dl.horizontal.size3 dd {
  width: calc(100% - 3.3rem);
}
.site-content dl.horizontal.size4 dt {
  width: 4rem;
}
.site-content dl.horizontal.size4 dd {
  width: calc(100% - 4.3rem);
}
.site-content dl.horizontal.size6 dt {
  width: 6rem;
}
.site-content dl.horizontal.size6 dd {
  width: calc(100% - 6.3rem);
}
.site-content dl.horizontal.size7 dt {
  width: 7rem;
}
.site-content dl.horizontal.size7 dd {
  width: calc(100% - 7.3rem);
}
.site-content dl.horizontal.size8 dt {
  width: 8rem;
}
.site-content dl.horizontal.size8 dd {
  width: calc(100% - 8.3rem);
}
.site-content dl.horizontal.size9 dt {
  width: 9rem;
}
.site-content dl.horizontal.size9 dd {
  width: calc(100% - 9.3rem);
}
.site-content ul.dot li {
  position: relative;
  padding-left: 1.5em;
}
.site-content ul.dot li:before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}
.site-content .well {
  padding: 15px;
  display: block;
  border: 2px solid #8d6e63;
}
.site-content .well a {
  display: inline-block;
}
.site-content p {
  line-height: 2;
}
.site-content img {
  max-width: 100%;
}
.site-content i {
  font-style: inherit;
}
.site-content .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.site-content .alignleft {
  float: left;
  margin: 0 100px 100px 0;
}
.site-content .alignright {
  float: right;
  margin: 0 0 100px 100px;
}
.site-content .wp-caption {
  margin-bottom: 0;
}
.site-content .wp-caption img {
  margin-bottom: 15px;
}
.site-content a img {
  border: 2px solid #E03B51;
}
.site-content img.size-full {
  width: 100%;
  height: auto;
}
.site-content .entry-footer {
  margin-top: 100px;
}
.site-content .entry-footer a {
  display: inline-block;
  padding: 10px 5px;
  border: 2px solid #E03B51;
  transition: background-color 0.5s ease;
}
.site-content .entry-footer .prev:hover a,
.site-content .entry-footer .list:hover a,
.site-content .entry-footer .next:hover a {
  color: #ffffff;
  background-color: #E03B51;
}
.site-content .entry-footer .prev,
.site-content .entry-footer .list,
.site-content .entry-footer .next {
  position: relative;
}
.site-content .entry-footer .prev {
  text-align: left;
}
.site-content .entry-footer .list {
  text-align: center;
}
.site-content .entry-footer .next {
  text-align: right;
}
.site-content .entry-footer .prev a:after,
.site-content .entry-footer .list a:after,
.site-content .entry-footer .next a:after {
  display: inline-block;
  position: relative;
  content: "";
  width: 2rem;
  height: 1rem;
  top: 0.25rem;
  background-image: url(../images/common/h-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.site-content .entry-footer .prev a:after {
  transform: rotate(-180deg);
}
.site-content .entry-footer .list a:after {
  background-image: url(../images/common/icon-3bars.svg);
}
.site-content .entry-footer .prev:hover a:after,
.site-content .entry-footer .next:hover a:after {
  background-image: url(../images/common/h-arrow-white.svg);
}
.site-content .entry-footer .list:hover a:after {
  background-image: url(../images/common/icon-3bars-white.svg);
}

@media (max-width: 1199px) {
  .site-content .framed:after {
    border-width: 6px;
  }
}
@media (max-width: 991px) {
  .parallax-mirror {
    display: none;
  }

  .home .site-content .head-bg {
    height: 50vw;
  }

  .site-content {
    padding-top: 72px;
  }
  .site-content .head-bg {
    visibility: visible;
  }
  .site-content .section-header {
    padding-top: inherit;
    padding-bottom: 60px;
  }
  .site-content .section-header .container {
    top: auto;
    margin-bottom: inherit;
    padding: 15px;
  }
  .site-content .section-header .container h1 {
    color: #E03B51;
    letter-spacing: inherit;
    padding-top: 50px;
  }
  .site-content .section-header .container p {
    top: -33.3333333333px;
  }
  .site-content .framed:after {
    border-width: 5px;
  }
  .site-content h1, .site-content h2, .site-content h3, .site-content h4, .site-content h5,
.site-content p, .site-content ul, .site-content ol, .site-content dl, .site-content table, .site-content .well {
    margin-bottom: 50px;
  }
  .site-content dl.horizontal.size3 dt,
.site-content dl.horizontal.size4 dt,
.site-content dl.horizontal.size6 dt,
.site-content dl.horizontal.size7 dt,
.site-content dl.horizontal.size8 dt {
    width: 100%;
  }
  .site-content dl.horizontal.size3 dd,
.site-content dl.horizontal.size4 dd,
.site-content dl.horizontal.size6 dd,
.site-content dl.horizontal.size7 dd,
.site-content dl.horizontal.size8 dd {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .site-content dl.horizontal dt, .site-content dl.horizontal dd {
    display: block;
  }
  .site-content dl.horizontal dt {
    width: 100%;
  }
  .site-content dl.horizontal dd {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .site-content .section-header .container h1 {
    font-size: 7vw;
  }
  .site-content .section-header .container p {
    font-size: 4vw;
  }
  .site-content .framed:after {
    border-width: 5px;
  }
}
.blur {
  filter: blur(5px);
}

.button {
  position: relative;
  display: inline-block;
  border: 2px solid #E03B51;
  border-radius: 10px;
  min-width: 120px;
  text-align: center;
  padding: 0.8em;
  color: #E03B51 !important;
  background-color: #ffffff;
  transition: all 0.5s ease;
  border-radius: 5px;
  font-weight: bold;
}

.button:hover,
.biggerlink:hover .button {
  color: #ffffff !important;
  text-decoration: none !important;
  background-color: #E03B51;
}

.button-pink {
  background-color: #E03B51;
  color: #ffffff;
}

.button-pink:hover,
.biggerlink:hover .button-pink {
  border-color: #fe6980;
  background-color: #fe6980;
}

.button-white {
  background-color: #ffffff;
  border: none;
  color: #E03B51 !important;
}

.button-white:hover,
.biggerlink:hover .button-white {
  background-color: #fe6980;
}

.button-white-arrow,
.button-pink-arrow {
  position: relative;
  min-width: 200px;
  background-color: #E03B51;
  text-align: left;
  z-index: 20;
}

.button-white-arrow {
  color: #E03B51 !important;
  background-color: #ffffff;
  padding: 1.1rem 1.1rem;
}

.button-pink-arrow {
  color: #ffffff !important;
  background-color: #E03B51;
  padding: 1.2rem 1.2rem;
  border: none;
}

.button-white-arrow:after,
.button-pink-arrow:after {
  position: absolute;
  display: block;
  top: 0;
  right: 1.2rem;
  content: "";
  width: 1em;
  height: 100%;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 10;
}

.button-white-arrow:after {
  background-image: url(../images/common/arrow.svg);
}

.button-pink-arrow:after {
  background-image: url(../images/common/arrow-white.svg);
}

.button-white-arrow:hover {
  background-color: #feeaee;
}

.button-pink-arrow:hover {
  background-color: #fe6980;
}

.button-arrow {
  position: relative;
  padding: 0 3rem 1.5rem 0.5rem;
  text-decoration: none !important;
  border-bottom: 2px solid #E03B51;
  font-weight: bold;
}

.button-arrow:after {
  position: absolute;
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  top: -0.1rem;
  right: 5px;
  background: no-repeat url(../images/common/h-arrow.svg) center center;
  background-size: contain;
}

.button-arrow:hover:after {
  animation: button-arrow-arrow 0.25s linear;
}

@keyframes button-arrow-arrow {
  0% {
    right: 15px;
    opacity: 0;
  }
  100% {
    right: 5px;
    opacity: 1;
  }
}
.button-box-pink,
.button-box {
  position: relative;
  font-size: 1.1rem;
  padding: 1rem 4rem;
  border-radius: 0;
}

.button-box-pink:after,
.button-box:after {
  display: block;
  content: "";
  background-color: #E03B51;
  position: absolute;
  width: 35px;
  height: 2px;
  right: -25px;
  top: calc(50% - 1px);
}

.button-box {
  color: #452f27 !important;
  border-color: #452f27;
}

.button-box:hover {
  color: #ffffff !important;
  background-color: #452f27;
}

.button-box-pink:hover:after,
.button-box:hover:after {
  animation: button-box-bar 0.25s linear;
}

.button-box:after {
  background-color: #452f27;
}

.button-box-pink {
  border-color: #E03B51;
}

.button-box-pink:after {
  background-color: #E03B51;
}

@keyframes button-box-bar {
  0% {
    right: 0px;
    opacity: 0;
  }
  100% {
    right: -25px;
    opacity: 1;
  }
}
@media (max-width: 991px) {
  .button-md-wide {
    width: 100% !important;
    max-width: inherit !important;
  }
}
@media (max-width: 767px) {
  .button-sm-wide {
    width: 100% !important;
    max-width: inherit !important;
  }
}
@media (max-width: 575px) {
  .button-box-pink,
.button-box {
    padding: 1rem 1.5rem;
  }
}
/* 施工事例・イベント一覧
--------------------------------------------------*/
.works-list,
.event-list {
  position: relative;
  z-index: 100;
}
.works-list h2,
.works-list .photo,
.works-list .date,
.works-list p,
.event-list h2,
.event-list .photo,
.event-list .date,
.event-list p {
  margin-bottom: 1.5rem;
}
.works-list h2,
.event-list h2 {
  font-size: 1rem;
}
.works-list h2 a,
.event-list h2 a {
  color: #E03B51;
  font-weight: bold;
}
.works-list .photo,
.event-list .photo {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.works-list .photo span,
.event-list .photo span {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: lightgray;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 1s ease;
}
.works-list .photo span.none,
.event-list .photo span.none {
  background-image: url(../images/common/hero-logo.svg);
  background-size: 40%;
}
.works-list .photo:before,
.event-list .photo:before {
  content: "";
  display: block;
  padding-top: 100%;
  /* 縦サイズのアスペクト比 */
}
.works-list .flex-3 article,
.event-list .flex-3 article {
  width: 31%;
  padding: 5px;
  margin-bottom: 40px;
  position: relative;
  background-color: #f2f2f2;
  transition: background-color 0.5s ease;
}
.works-list .flex-3 article .info,
.event-list .flex-3 article .info {
  padding: 20px 20px 0;
  margin-bottom: 25px;
  height: 100%;
}
.works-list .flex-3 article .info h2,
.event-list .flex-3 article .info h2 {
  font-size: 1.1rem;
  line-height: 1.25rem;
  margin-bottom: 0.5rem;
}
.works-list .flex-3 article .info p.sub,
.event-list .flex-3 article .info p.sub {
  line-height: 1.25rem;
  margin-bottom: 0;
}
.works-list .flex-3 article .info p.date,
.event-list .flex-3 article .info p.date {
  margin-bottom: 0;
}
.works-list .flex-3 article .info dl,
.event-list .flex-3 article .info dl {
  margin-top: 1.25rem;
  margin-bottom: 0;
}
.works-list .flex-3 article:hover,
.event-list .flex-3 article:hover {
  background-color: #feeaee;
}
.works-list .flex-3 article:hover h2 a,
.event-list .flex-3 article:hover h2 a {
  text-decoration: none;
}
.works-list .open:after,
.works-list .close:after,
.event-list .open:after,
.event-list .close:after {
  position: absolute;
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  top: -5px;
  left: -5px;
  background-size: 80px 80px;
  transition: all 1s ease;
}
.works-list .open:after,
.event-list .open:after {
  background-image: url(../images/common/label-open.svg);
}
.works-list .close:after,
.event-list .close:after {
  background-image: url(../images/common/label-close.svg);
}
.works-list .odd,
.event-list .odd {
  padding-top: 120px;
}
.works-list .sub,
.event-list .sub {
  margin-bottom: 50px;
}

.works-list .hovered .photo span,
.event-list .hovered .photo span {
  transform: scale(1.05);
}
.works-list .hovered .open .photo:after,
.works-list .hovered .close .photo:after,
.event-list .hovered .open .photo:after,
.event-list .hovered .close .photo:after {
  transform: scale(1.05);
  top: -10px;
  left: -13px;
}

@media (max-width: 991px) {
  .event-list .odd {
    padding-top: inherit;
  }
}
/* お知らせ一覧
--------------------------------------------------*/
.information-list {
  position: relative;
  z-index: 100;
}
.information-list .container {
  position: relative;
}
.information-list .unit {
  position: relative;
  border-bottom: 1px solid #452f27;
  padding-left: 9rem;
}
.information-list .unit h2 {
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.information-list .unit h2 a {
  color: #E03B51;
  transition: color 0.5s ease;
}
.information-list .unit .date {
  position: absolute;
  left: 0;
  top: 0;
}
.information-list .unit:hover h2 a {
  color: #ffafbb;
  text-decoration: none;
}
.information-list .list:before {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  border-top: 1px solid #452f27;
}

@media (max-width: 767px) {
  .information-list .unit {
    padding-top: 2rem;
    padding-left: 0;
  }
  .information-list .unit .date {
    top: 1rem;
    left: 0;
  }
}
/* フォーム
--------------------------------------------------*/
.site-content #form {
  position: relative;
  z-index: 100;
}
.site-content #form .well,
.site-content #form dl.horizontal,
.site-content #form .submitter {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.site-content #form .well {
  border-style: dotted;
}
.site-content #form dl.horizontal dt {
  position: relative;
  width: 240px;
  padding-top: 0.7rem;
  margin-bottom: 20px;
}
.site-content #form dl.horizontal dt .required {
  position: absolute;
  top: 0.5rem;
  right: 15px;
  color: #ffffff;
  background-color: #E03B51;
  padding: 2px 10px;
  font-weight: normal;
  font-size: 0.8rem;
  border-radius: 5px;
}
.site-content #form dl.horizontal dd {
  width: calc(100% - 245px);
  margin-bottom: 20px;
}
.site-content #form dl.horizontal dd p {
  margin-bottom: 15px;
}
.site-content #form dl.horizontal dd .example {
  display: block;
  padding: 1rem 0.5rem 0;
  color: #8d6e63;
  margin-bottom: 0;
}
.site-content #form dl.horizontal dd .error {
  color: #E03B51;
  background-color: #feeaee;
  padding: 10px 15px;
}
.site-content #form input[type=text],
.site-content #form input[type=email],
.site-content #form textarea {
  border: 1px solid #452f27;
  width: 100%;
  padding: 0.5rem;
  border-radius: 0;
  -webkit-appearance: none;
}
.site-content #form .submitter {
  text-align: center;
}
.site-content #form button,
.site-content #form input[type=submit] {
  position: relative;
  display: inline-block;
  border: none;
  padding: 1.5rem 15px;
  width: 100%;
  min-width: 300px;
  text-align: center;
  color: #ffffff;
  background-color: #E03B51;
  transition: background-color 0.5s ease;
  -webkit-appearance: none;
  border-radius: 0;
  z-index: 10;
}
.site-content #form input[type=submit]:hover {
  background-color: #fe6980;
}
.site-content #form button {
  color: #E03B51;
  background-color: #feeaee;
}
.site-content #form button:hover {
  background-color: #f2f2f2;
}
.site-content #form .selectbox {
  width: 100%;
  position: relative;
}
.site-content #form select {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  padding: 11px;
  box-sizing: border-box;
  font-size: 1em;
  border: 1px solid #452f27;
  border-radius: 0;
  background: #fff;
}
.site-content #form .selectbox::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 25px;
  top: 20px;
  border-bottom: 2px solid #E03B51;
  border-right: 2px solid #E03B51;
  transform: rotate(45deg) translateY(-30%);
}
.site-content #form select::-ms-expand {
  display: none;
}

/* for IE11 */
@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .site-content #form .selectbox::after {
    top: 17px;
  }

  *::-ms-backdrop, .site-content #form input[type=text],
*::-ms-backdrop, .site-content #form input[type=email],
*::-ms-backdrop, .site-content #form textarea {
    padding: 0.5rem 0.5rem 1rem;
  }
}
.site-content .mw_wp_form_confirm #form dl.horizontal dd {
  padding: 0.47rem 15px;
}
.site-content .mw_wp_form_confirm #form .required,
.site-content .mw_wp_form_confirm #form .example,
.site-content .mw_wp_form_confirm #form .selectbox::after {
  display: none !important;
}
.site-content .mw_wp_form_confirm #form .submitter {
  text-align: left;
}
.site-content .mw_wp_form_confirm #form button,
.site-content .mw_wp_form_confirm #form input[type=submit] {
  width: calc(49% - 5px);
  min-width: auto;
}
.site-content .mw_wp_form_confirm #form button {
  margin-right: 5px;
}
.site-content .mw_wp_form_confirm #form input[type=submit] {
  margin-left: 5px;
}

.mwform-radio-field {
  margin-bottom: 15px;
  margin-top: 0.5rem;
  margin-left: 15px;
  margin-right: 15px;
  display: inline-block;
}
.mwform-radio-field input[type=radio] {
  margin-right: 0.5em;
}

.mwform-checkbox-field {
  display: inline-block;
  margin-bottom: 15px;
  margin-top: 15px;
  margin-right: 15px;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: auto;
}

.form-progress {
  margin: 0 auto 50px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  max-width: 800px;
}
.form-progress li {
  position: relative;
  display: inline-block;
  width: 32.333%;
  padding: 0.47rem 15px;
  background-color: #feeaee;
  margin-right: 1%;
  overflow: hidden;
}
.form-progress li:after {
  position: absolute;
  display: block;
  content: "";
  width: 1.28rem;
  height: 100%;
  border-top: 1.28rem solid #ffffff;
  border-bottom: 1.28rem solid #ffffff;
  border-left: 1.28rem solid #feeaee;
  right: 0;
  top: 0rem;
}
.form-progress li:last-child {
  margin-right: 0;
}
.form-progress li:last-child:after {
  display: none;
}

@media (max-width: 991px) {
  .site-content #form dl.horizontal dt, .site-content #form dl.horizontal dd {
    width: 100%;
  }
  .site-content #form dl.horizontal dt .required {
    right: 0;
  }
  .form-progress {
    margin-top: 50px;
  }
}
.mw_wp_form_input .form-progress li:nth-child(1) {
  color: #ffffff;
  background-color: #E03B51;
}

.mw_wp_form_input .form-progress li:nth-child(1):after {
  border-left: 1.28rem solid #E03B51;
}

.mw_wp_form_confirm .form-progress li:nth-child(1),
.mw_wp_form_confirm .form-progress li:nth-child(2) {
  color: #ffffff;
  background-color: #E03B51;
}

.mw_wp_form_confirm .form-progress li:nth-child(1):after,
.mw_wp_form_confirm .form-progress li:nth-child(2):after {
  border-left: 1.28rem solid #E03B51;
}

.mw_wp_form_complete .form-progress li:nth-child(1),
.mw_wp_form_complete .form-progress li:nth-child(2),
.mw_wp_form_complete .form-progress li:nth-child(3) {
  color: #ffffff;
  background-color: #E03B51;
}

.mw_wp_form_complete .form-progress li:nth-child(1):after,
.mw_wp_form_complete .form-progress li:nth-child(2):after {
  border-left: 1.28rem solid #E03B51;
}

/* ページネーション
--------------------------------------------------*/
.pagination {
  display: block;
  text-align: center;
  width: 100%;
}
.pagination a {
  border: 2px solid #E03B51;
}
.pagination .page-numbers {
  display: inline-block;
  padding: 5px 10px;
  text-align: center;
  color: #E03B51;
  text-decoration: none;
  transition: background-color 0.5s ease;
  text-decoration: none !important;
}
.pagination a.page-numbers:hover {
  color: #ffffff;
  background-color: #E03B51;
}
.pagination .current {
  color: #E03B51;
  border: none;
}
.pagination .dots {
  border: none !important;
  color: inherit;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}
.pagination .prev,
.pagination .next {
  display: inline-block;
  width: auto;
}
.pagination .prev:before,
.pagination .next:after {
  position: relative;
  content: "";
  font-weight: bold;
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.2em;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../images/common/h-arrow.svg);
  z-index: 20;
}
.pagination .prev:hover:before,
.pagination .next:hover:after {
  background-image: url(../images/common/h-arrow-white.svg);
}
.pagination a.prev:hover,
.pagination a.next:hover {
  text-decoration: underline;
}
.pagination .prev {
  margin-right: 0.5em;
}
.pagination .prev:before {
  transform: rotate(180deg);
}
.pagination .next {
  margin-left: 0.5em;
}
/* ページ個別：事例
--------------------------------------------------*/
.single-post-works .section-header .container h1, .single-post-works .section-header .container h2 {
  line-height: 3rem;
  margin-bottom: 1.5rem;
}
.single-post-works .section-header .container h1 {
  font-size: 1.6rem;
}
.single-post-works .section-header .container h2 {
  font-size: 2rem;
}
.single-post-works .section-header .container h3 {
  color: #452f27;
  font-weight: normal;
}

.gallery {
  margin-bottom: 100px;
}
.gallery .unit {
  margin-bottom: 50px;
}
.gallery .unit a {
  color: #452f27;
  display: block;
  overflow: hidden;
}
.gallery .unit a:hover span.photo {
  transform: scale(1.05);
}
.gallery .unit span.photo {
  position: relative;
  display: block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: all 0.5s ease;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
.gallery .unit span.photo img {
  position: absolute;
  top: 0;
  visibility: hidden;
}
.gallery .unit span.photo:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.gallery .unit span.note {
  display: inline-block;
  padding-top: 1rem;
  line-height: 1.2rem;
}

.property_name {
  font-size: 1.2rem;
}

.main-photo {
  margin-bottom: 100px;
}
.main-photo a {
  color: #452f27;
  display: block;
  overflow: hidden;
}
.main-photo a:hover span.photo {
  transform: scale(1.05);
}
.main-photo span.photo {
  position: relative;
  display: block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: all 0.5s ease;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
.main-photo span.photo img {
  position: absolute;
  top: -50%;
  visibility: hidden;
  width: 100%;
  height: 100%;
}
.main-photo span.photo:before {
  content: "";
  display: block;
  padding-top: 80%;
}

.side-note {
  padding-left: 35px;
}

.works-info {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
.works-info .unit {
  padding: 0 15px;
}

.works-order h4 {
  margin-top: -0.3rem;
  margin-bottom: 1rem;
  color: #E03B51;
  font-weight: bold;
  border-bottom: 2px solid #E03B51;
  max-width: 200px;
}
.works-order h4:before {
  display: none;
}
.works-order ul li {
  font-weight: bold;
}

.content-sub {
  max-width: 900px;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
}

.order-box {
  background-color: #fff2eb;
  padding: 30px 15px 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
}
.order-box ul, .order-box dl {
  margin-bottom: 0;
}

h2.spec_order {
  text-align: center;
}

h2.spec_order:before {
  display: block;
  content: " ";
  width: 120px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  background-image: url(../images/top/roof_pink.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

@media (max-width: 991px) {
  .single-post-works .section-header {
    padding-bottom: 0;
  }

  .main-photo,
.content-sub,
.order-box {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .single-post-works .section-header .container h1 {
    font-size: 1.4rem;
  }
  .single-post-works .section-header .container h2 {
    font-size: 1.8rem;
  }

  .order-box ul {
    margin-bottom: 15px;
  }

  .side-note {
    padding-left: 15px;
  }
}

/*# sourceMappingURL=common.css.map */