@charset "UTF-8";
/* ===================================================================
CSS information
 file name  :  common.css
 style info :  サイト全体共通css
=================================================================== */
/* fontsize YUI
10px = 77% 11px = 85% 12px = 93% 13px = 100%
14px = 108% 15px = 116% 16px = 123.1% 17px = 131%
18px = 138.5% 19px = 146.5% 20px = 153.9% 21px = 161.6%
22px = 167% 23px = 174% 24px = 182% 25px = 189% 26px = 197% */
/*----------------------------------------------------------------------------------
		 								body、リンク色etc
------------------------------------------------------------------------------------*/
/* pc sp */
@media only screen and (min-width: 700px) {
  .pc {
    display: block;
  }

  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 699px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block;
  }
}
/* pc sp txt*/
@media only screen and (min-width: 700px) {
  .pcTxt {
    display: block;
  }

  .spTxt {
    display: inline;
  }
}
@media only screen and (max-width: 699px) {
  .pcTxt {
    display: inline;
  }

  .spTxt {
    display: block;
  }
}
/* style */
.fw-b {
  font-weight: bold;
}

.ta-c {
  text-align: center;
}

@media only screen and (max-width: 699px) {
  .ta-c-sp {
    text-align: center;
  }
}

.ta-l {
  text-align: left;
}

.ta-r {
  text-align: right;
}

/* 基本リンク色 */
a {
  text-decoration: none;
  cursor: pointer;
}

:hover {
  text-decoration: none;
  transition: all 0.5s ease;
}

.hover_img {
  transition: alignleft 0.5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

:hover.hover_img {
  opacity: 0.65;
}

.hover_img2 {
  background-color: #fff;
  /*背景に白を設定*/
  display: block;
  /*ブロック化重要！*/
}

.hover_img2 img {
  transition: all 0.5s ease;
}

:hover.hover_img2 img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}

body {
  color: #2E2E2E;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, verdana, sans-serif;
  font-size: 16px;
  background-color: #F4F2EC;
}

main {
  margin-top: -51px;
}

.animated {
  animation-duration: 2s;
  animation-fill-mode: both;
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*----------------------------------------------------------------------------------
		 								footer 
------------------------------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 50px 2% 20px;
  color: #fff;
}
@media only screen and (max-width: 699px) {
  #footer {
    padding: 17px 2% 10px;
  }
}
#footer img {
  width: 100%;
}
#footer .banners {
  max-width: 375px;
  padding-left: 45px;
  margin: 0 auto 0px;
}
@media only screen and (max-width: 699px) {
  #footer .banners {
    display: block;
    width: 85%;
    margin: 0 auto 60px;
    padding-left: 0;
  }
}
#footer .banners li {
  float: left;
}
#footer .banners li.first {
  width: 105px;
}
@media only screen and (max-width: 699px) {
  #footer .banners li.first {
    width: 30%;
  }
}
#footer .banners li.second {
  width: 90px;
}
@media only screen and (max-width: 699px) {
  #footer .banners li.second {
    width: 25%;
  }
}
#footer .banners li.thaad {
  width: 180px;
}
@media only screen and (max-width: 699px) {
  #footer .banners li.thaad {
    width: 45%;
  }
}
@media only screen and (max-width: 699px) {
  #footer .banners li {
    width: 100%;
  }
}
#footer .banners li:first-child {
  margin-right: 0;
}
@media only screen and (max-width: 699px) {
  #footer .banners li:first-child {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
#footer .banners li img {
  width: 100%;
}
#footer .banners a {
  transition: all 0.5s ease;
}
#footer .banners a:hover {
  opacity: 0.5;
  transition: all 0.5s ease;
}
#footer .copyRight {
  clear: both;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  color: #717171;
  padding-top: 5%;
}

/*----------------------------------------------------------------------------------
		 							  commonArea 
------------------------------------------------------------------------------------*/
.sectionTtl {
  color: #383FFF;
  font-size: 38px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 699px) {
  .sectionTtl {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.sectionSubTtl {
  color: #383FFF;
  font-size: 24px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}
.sectionSubTtl + .equimentList {
  margin-top: 20px;
}
.sectionSubTtl + .equimentDetail {
  margin-top: 10px;
}
@media only screen and (max-width: 699px) {
  .sectionSubTtl {
    font-size: 18px;
  }
}

/*----------------------------------------------------------------------------------
		 							  top 
------------------------------------------------------------------------------------*/
#topArea {
  background-color: #FDFCE6;
  width: 100%;
  height: auto;
}
#topArea .topImg {
  width: 615px;
  margin: 0 auto;
  padding: 8% 0 5%;
}
@media only screen and (max-width: 699px) {
  #topArea .topImg {
    width: 90%;
    padding: 20% 0 8%;
  }
}
#topArea .topImg img {
  width: 100%;
}

#galleryArea .gallery {
  display: flex;
  max-width: auto;
  margin: 0 auto;
}
@media only screen and (max-width: 699px) {
  #galleryArea .gallery {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
}
#galleryArea .gallery li {
  width: 50%;
}
@media only screen and (max-width: 699px) {
  #galleryArea .gallery li {
    width: 50%;
    box-sizing: border-box;
  }
}
#galleryArea .gallery li img {
  width: 100%;
}

#stepArea {
  background-color: #F9EBA2;
  padding-bottom: 8%;
}
#stepArea .boxbd {
  text-align: center;
  width: 100%;
  position: relative;
}
#stepArea .boxbd p {
  font-size: 25px;
}
@media only screen and (min-width: 700px) and (max-width: 1335px) {
  #stepArea .boxbd p {
    font-size: 22px;
  }
}
@media only screen and (max-width: 699px) {
  #stepArea .boxbd p {
    font-size: 18px;
  }
}
#stepArea .boxbd h2 {
  font-size: 37px;
  margin-bottom: 1%;
}
@media only screen and (min-width: 700px) and (max-width: 1335px) {
  #stepArea .boxbd h2 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 699px) {
  #stepArea .boxbd h2 {
    font-size: 20px;
    margin-bottom: 2%;
  }
}
#stepArea .boxbd .a {
  height: auto;
  background: #5EB635;
  border-bottom: none;
  position: relative;
  padding: 5% 0 5%;
  color: #ffffff;
}
@media only screen and (min-width: 700px) and (max-width: 1335px) {
  #stepArea .boxbd .a {
    font-size: 20px;
    padding: 5% 0 3%;
  }
}
@media only screen and (max-width: 699px) {
  #stepArea .boxbd .a {
    font-size: 18px;
  }
}
#stepArea .boxbd .a:before {
  content: "";
  width: calc(100%);
  height: 80px;
  position: absolute;
  bottom: -80px;
  left: 0;
  background: linear-gradient(to top right, transparent 50%, #5EB635 50%, #5EB635 calc(50%)) top left/50% 100% no-repeat, linear-gradient(to top left, transparent 50%, #5EB635 50%, #5EB635 calc(50%)) top right/50% 100% no-repeat;
}
@media only screen and (min-width: 700px) and (max-width: 1335px) {
  #stepArea .boxbd .a:before {
    height: 50px;
    bottom: -50px;
  }
}
@media only screen and (max-width: 699px) {
  #stepArea .boxbd .a:before {
    height: 40px;
    bottom: -40px;
  }
}
#stepArea .boxbd .b {
  height: auto;
  background: #F5E844;
  border-top: none;
  padding: 6% 0 0;
  color: #434444;
}
@media only screen and (min-width: 700px) and (max-width: 1335px) {
  #stepArea .boxbd .b {
    padding: 8% 0 0;
  }
}
@media only screen and (max-width: 699px) {
  #stepArea .boxbd .b {
    padding: 16% 0 0;
  }
}
#stepArea .boxbd .b:before {
  content: "";
  width: calc(100%);
  height: 80px;
  position: absolute;
  bottom: -80px;
  left: 0;
  background: linear-gradient(to top right, transparent 50%, #F5E844 50%, #F5E844 calc(50%)) top left/50% 100% no-repeat, linear-gradient(to top left, transparent 50%, #F5E844 50%, #F5E844 calc(50%)) top right/50% 100% no-repeat;
}
@media only screen and (min-width: 700px) and (max-width: 1335px) {
  #stepArea .boxbd .b:before {
    height: 50px;
    bottom: -50px;
  }
}
@media only screen and (max-width: 699px) {
  #stepArea .boxbd .b:before {
    height: 40px;
    bottom: -40px;
  }
}
#stepArea .boxbd .b .consult {
  display: flex;
  max-width: 55%;
  margin: 0 auto 32px;
}
@media only screen and (min-width: 700px) and (max-width: 1335px) {
  #stepArea .boxbd .b .consult {
    display: flex;
    max-width: 85%;
    margin: 0 auto 60px;
  }
}
@media only screen and (max-width: 699px) {
  #stepArea .boxbd .b .consult {
    display: flex;
    flex-wrap: wrap;
    max-width: 85%;
    margin: 0 auto 60px;
  }
}
#stepArea .boxbd .b .consult li {
  width: 50%;
}
@media only screen and (max-width: 699px) {
  #stepArea .boxbd .b .consult li {
    width: 50%;
    box-sizing: border-box;
  }
}
#stepArea .boxbd .b .consult li img {
  width: 100%;
}
#stepArea .boxbd:after {
  content: "";
  width: calc(100%);
  height: 20px;
  position: absolute;
  bottom: -20px;
  left: 0;
  background: linear-gradient(to top right, transparent 50%, #F5E844 50%, #F5E844 calc(50%)) top left/50% 100% no-repeat, linear-gradient(to top left, transparent 50%, #F5E844 50%, #F5E844 calc(50%)) top right/50% 100% no-repeat;
}
#stepArea .contact {
  text-align: center;
  width: 300px;
  padding: 7% 0 0;
  margin: 0 auto;
}
@media only screen and (max-width: 699px) {
  #stepArea .contact {
    width: 80%;
  }
}
#stepArea .contact a {
  transition: all 0.5s ease;
}
#stepArea .contact a:hover {
  opacity: 0.5;
  transition: all 0.5s ease;
}
