@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Neucha);

/*==========================================================================
  Common
==========================================================================*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #505050;
}

/**=====================
スクロール時ギミック設定
 =======================**/
.fadeIn {
  transition: opacity 0.8s;
  -moz-transition: opacity 0.8s;
  -webkit-transition: opacity 0.8s;
  -o-transition: opacity 0.8s;
}
.fadeUp {
  transition: opacity 0.8s;
  -moz-transition: opacity 0.8s;
  -webkit-transition: opacity 0.8s;
  -o-transition: opacity 0.8s;
  transition: transform 0.8s;
  -moz-transition: transform 0.8s;
  -webkit-transition: transform 0.8s;
  -o-transition: transform 0.8s;
}

/** 順番にフェードアップ **/
.fadeinBox {
  opacity: 0.1;
  transform: translate(0, 50px);
  transition: all 500ms;
}
.fadeinBox.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
/* 2つ目の要素に200msのdelayをかける */
.fadeinBox:nth-of-type(2) {
  -moz-transition-delay: 200ms;
  -webkit-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
}
/* 3つ目の要素に400msのdelayをかける */
.fadeinBox:nth-of-type(3) {
  -moz-transition-delay: 400ms;
  -webkit-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  -ms-transition-delay: 400ms;
}
/* 4つ目の要素に600msのdelayをかける */
.fadeinBox:nth-of-type(4) {
  -moz-transition-delay: 600ms;
  -webkit-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
}
.img-wait {
  animation: bounce 3s ease infinite;
  transform-origin: 50% 50%;
}
@keyframes bounce {
  0% { transform:translateY(0) }
  5.55556% { transform:translateY(0) }
  11.11111% { transform:translateY(0) }
  22.22222% { transform:translateY(-15px) }
  27.77778% { transform:translateY(0) }
  33.33333% { transform:translateY(-15px) }
  44.44444% { transform:translateY(0) }
  100% { transform:translateY(0) }
}
.opacity:hover {
  opacity: .7;
}
/*==========================================================================
  TopPage
==========================================================================*/
.head__contents__img {
  position: relative;
}
.head__contents__img img {
  margin: 0 auto;
}
.head__contents__ttl {
  position: absolute;
  bottom: 22rem;
  right: 0;
  background: rgba(255,255,255,.7);
  padding: 3rem;
  width: 60%;
  margin-bottom: 0;
}
.head__contents__ttl-red {
  font-size: 42px;
  color: #C54747;
  letter-spacing: 7px;
  font-weight: bolder;
}
.head__contents__ttl-outline {
  display: block;
  font-size: 72px;
  color: #fff;
  line-height: 1.1;
  text-shadow    :
       2px  2px 1px #c54747,
      -2px  2px 1px #c54747,
       2px -2px 1px #c54747,
      -2px -2px 1px #c54747,
       2px  0px 1px #c54747,
       0px  2px 1px #c54747,
      -2px  0px 1px #c54747,
       0px -2px 1px #c54747;
  letter-spacing: 15px;
}
#type01 , #type02 , #type03 {
  margin-top: -2rem;
  padding-top: 2rem;
}
.main__contents{
  background: #FFFAF3;
  padding-bottom: 10rem;
}
.head__linkarea__parent {
  position: relative;
  max-width: 1048px;
  margin: -15rem auto 5rem;
  display: flex;
  justify-content: space-between;
}
.head__linkarea__child {
  animation-name: fuwa_animation;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.2s;
}
@keyframes fuwa_animation{
0%{ transform:rotate(0);}
100%{ transform: translate(0,-20px); }
}
.fuwa2 {
  animation-duration: 1.5s;
}
.fuwa3 {
  animation-duration: 1.7s;
}
.head__linkarea__child:nth-child(2) {
  margin-top: 2rem;
}
.head__linkarea__child a:hover img {
  opacity: .8;
}
.read__txtarea {
  text-align: center;
  position: relative;
  padding-bottom: 1.5rem;
}
.read__txtarea__ttl {
  letter-spacing: 8px;
  margin-bottom: 12rem;
  position: relative;
}
.read__txtarea__ttl:after {
  position: absolute;
  content: "";
  background: url(../../assets/img/icon_bird.png) no-repeat;
  background-size: 100%;
  width: 65px;
  height: 48px;
  left: 0;
  right: 0;
  bottom: -8rem;
  margin: auto;
}
.orange_txt {
  color: #F69F54;
}
.yellow_txt {
  color: #E5BC34;
}
.left_txt {
  text-align: left;
}
.pink_txt {
  color: #F58A8A;
}
p {
  letter-spacing: 4px;
  margin-bottom: 2rem;
  line-height: 2;
}
.service__detail {
  background: #FFE9D6;
  padding: 0;
  position: relative;
  padding-bottom: 5rem;
}
.service__detail:before {
  position: absolute;
  content: "";
  background: url(../../assets/img/line_nami_bottom.png);
  background-repeat: repeat-x;
  left: 0;
  width: 100%;
  height: 30px;
}
.service__detail__ttl{
  display: flex;
  align-items: center;
  padding: 7rem 0 3rem;
}
.service__detail__ttl:before ,
.service__detail__ttl:after {
  content: "";
  flex-grow: 1;
  border-top: 8px dotted #fff;
  display: block;
}
.service__detail__ttl img {
  padding: 0 5rem;
}
.service__DetailType {
  margin-bottom: 6rem;
}
.service__DetailType__type {
  max-width: 1048px;
  margin: 2rem auto;
  display: flex;
  justify-content: space-between;
}
.service__DetailType__read {
  text-align: center;
  font-size: 22px;
  position: relative;
  margin-bottom: 6rem;
}
.service__DetailType__read:after {
  position: absolute;
  content: "";
  background: url(../../assets/img/icon_triangle.png) no-repeat;
  background-size: 100%;
  width: 110px;
  height: 30px;
  left: 0;
  right: 0;
  bottom: -5rem;
  margin: auto;
}
.service__DetailType__osusume {
  text-align: center;
  font-size: 20px;
  margin-bottom: 1rem;
}
.service__DetailType__link {
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 1048px;
  margin: 0 auto;
}
.service__DetailType__comment {
  border-top: 8px dotted #fff;
  border-bottom: 8px dotted #fff;
  max-width: 1048px;
  margin: 4rem auto;
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service__DetailType__commentTxt {
  font-size: 14px;
  margin:0 5rem 0  0;
}
.service__DetailType__subttl {
  background: #F58A8A;
  box-shadow: 5px 5px 2px 1px rgba(0, 0, 0, .2);
  width: 70%;
  padding:0 2rem .5rem 0;
  border-radius: 0 30px 30px 0;
  margin-bottom: 6rem;
}
.service__DetailType__subttl-img {
  max-width: 1048px;
  margin: 0 0 0 auto;
  display: flex;
  align-items: flex-end;
}
.service__DetailType__subttl-txt {
  text-align: right;
  color: #fff;
  margin-bottom: 0;
  margin-top: 1rem;
}
.type_img {
  margin-top: -1rem;
}
.type02 .service__DetailType__subttl {
  background: #F69F54;
  padding: 0 0 0.5rem 2rem;
  border-radius: 30px 0 0 30px;
  margin-left: auto;
  width: 80%;
}
.type03 .service__DetailType__subttl {
  background: #E5BC34;
}
.type02 .service__DetailType__subttl-img {
  margin: 0 auto 0 0;
}
.type02 .service__DetailType__subttl-txt {
  text-align: left;
}
.onlineConsultation__detail {
  position: relative;
}
.onlineConsultation__detail:before {
  position: absolute;
  content: "";
  background: url(../../assets/img/line_nami_top.png);
  background-repeat: repeat-x;
  left: 0;
  width: 100%;
  height: 30px;
  top: -6rem;
}
.onlineConsultation__detailService {
  max-width: 1130px;
  border-radius: 10px;
  margin: 5rem auto;
  text-align: center;
  background: #fff;
  position: relative;
}
.onlineConsultation__detailService--ttl {
  padding: .8rem;
  text-align: left;
  margin-bottom: 1rem;
}
.onlineConsultation__detailService--txt {
  font-size: 20px;
}
.onlineConsultation__detailService.service01 {
  border: 3px solid #F58A8A;
}
.service01 .onlineConsultation__detailService--ttl {
  background: #F58A8A;
}
.service01 .onlineConsultation__detailService--txt {
  color: #F58A8A;
}
.onlineConsultation__detailService--reception {
  display: flex;
  justify-content: space-around;
  text-align: center;
  max-width: 900px;
  margin: 1rem auto 2rem;
}
.service03 .onlineConsultation__detailService--reception {
  max-width: 960px;
}
.onlineConsultation__detailService--receptionBx {
  width: 40%;
}
.onlineConsultation__detailService--receptionBx:last-child {
  margin-left: 4%;
}
.onlineConsultation__detailService--receptionBx h3 {
  border-bottom: 8px dotted #FFE182;
  font-size: 26px;
  position: relative;
  padding-left: 3rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  line-height: 2;
}
.onlineConsultation__detailService--receptionBx:last-child h3 {
  border-bottom: 8px dotted #ABD2F9;
}
.onlineConsultation__detailService--receptionBx h3:before {
  position: absolute;
  content: "";
  background: url(../../assets/img/icon_sun.png) no-repeat;
  background-size: 100%;
  width: 44px;
  height: 40px;
  left: 0;
  right: 0;
}
.onlineConsultation__detailService--receptionBx:last-child h3:before {
  background: url(../../assets/img/icon_moon.png) no-repeat;
  background-size: 100%;
  width: 35px;
  height: 37px;
}
.service03 .onlineConsultation__detailService--receptionBx h3 {
  border-bottom: 8px dotted #B5F5B2;
}
.service03 .onlineConsultation__detailService--receptionBx h3:before {
  position: absolute;
  content: "";
  background: url(../../assets/img/icon_building.png) no-repeat;
  background-size: 100%;
  width: 45px;
  height: 65px;
  left: 0;
  right: 0;
  bottom: -.2rem;
}
.service03 .onlineConsultation__detailService--receptionBx:last-child h3 {
  border-bottom: 8px dotted #ABEBFF;
}
.service03 .onlineConsultation__detailService--receptionBx:last-child h3:before {
  position: absolute;
  content: "";
  background: url(../../assets/img/icon_necktie.png) no-repeat;
  background-size: 100%;
  width: 24px;
  height: 58px;
  left: 0;
  right: 0;
  bottom: -.2rem;
}
.service03 .onlineConsultation__detailService--receptionBx p {
  text-align: left;
  font-size: 14px;
  letter-spacing: 2px;
}
.service03 .onlineConsultation__detailService--receptionBx p .small_txt {
  font-size: 12px;
}
.onlineConsultation__detailService--reception.img-wait {
  margin: 3rem auto 0;
}
.dot_line {
  display: flex;
  align-items: center;
  padding: 3rem 2rem 0;
}
.dot_line:before ,
.dot_line:after {
  content: "";
  flex-grow: 1;
  border-top: 8px dotted #F58A8A;
  display: block;
}
.dot_line span {
  padding: 0 3rem;
}
.onlineConsultation__detailService--lists {
  display: flex;
  flex-wrap: wrap;
  padding: 0 1rem;
  border-bottom: 8px dotted #F58A8A;
  margin: 2rem 2rem 3rem;
}
.onlineConsultation__detailService--lists li {
  position: relative;
  padding-left: 2rem;
  margin: 0 1rem 2rem 0;
  letter-spacing: 2px;
  line-height: 2;
}
.onlineConsultation__detailService--lists li:before {
  position: absolute;
  content: '';
  width: 17px;
  height: 6px;
  border-left: 3px solid #F58A8A;
  border-bottom: 3px solid #F58A8A;
  transform: rotate(-45deg);
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.onlineConsultation__detailService--cautionTtl {
  padding-left: 2rem;
  text-align: left;
  color: #F69F54;
  font-size: 18px;
  margin-bottom: 0;
}
.onlineConsultation__detailService--cautionLists {
  padding: 0 2rem;
  text-align: left;
  margin-bottom: 3rem;
}
.onlineConsultation__detailService--cautionLists li {
  letter-spacing: 2px;
  line-height: 2;
}
.onlineConsultation__detailService--kurashimanetTxt {
  font-size: 26px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  padding: 3rem 2rem 0;
  position: relative;
}
.onlineConsultation__detailService--kurashimanetTxt span {
    padding: 0 3rem;
}
.onlineConsultation__detailService--kurashimanetTxt:before ,
.onlineConsultation__detailService--kurashimanetTxt:after {
    content: "";
    flex-grow: 1;
    display: block;
    border-top: 12px dotted #7FC9F9;
}
/* service02 色変更 */
.onlineConsultation__detailService.service02 {
  border: 3px solid #F69F54;
}
.service02 .onlineConsultation__detailService--ttl {
  background: #F69F54;
}
.service02 .onlineConsultation__detailService--txt {
  color: #F69F54;
}
.service02 .dot_line:before ,
.service02 .dot_line:after {
  border-top: 8px dotted #F69F54;
}
.service02 .onlineConsultation__detailService--lists li:before {
  border-left: 3px solid #F69F54;
  border-bottom: 3px solid #F69F54;
}
.service02 .onlineConsultation__detailService--lists {
  border-bottom: 8px dotted #F69F54;
}
/* service03 色変更 */
.onlineConsultation__detailService.service03 {
  border: 3px solid #E5BC34;
}
.service03 .onlineConsultation__detailService--ttl {
  background: #E5BC34;
}
.service03 .onlineConsultation__detailService--txt {
  color: #E5BC34;
}
.service03 .dot_line:before ,
.service03 .dot_line:after {
  border-top: 8px dotted #E5BC34;
}
.service03 .onlineConsultation__detailService--lists li:before {
  border-left: 3px solid #E5BC34;
  border-bottom: 3px solid #E5BC34;
}
.service03 .onlineConsultation__detailService--lists {
  border-bottom: 8px dotted #E5BC34;
}
.sp_br ,
.sp_display {
  display: none;
}
.pc_br ,
.pc_display {
  display: block;
}
/*==========================================================================
  Responsive
==========================================================================*/
@media screen and (max-width: 1024px){

}
@media screen and (max-width: 768px){
  .sp_br ,
  .sp_display {
    display: block;
  }
  .pc_br ,
  .pc_display {
    display: none;
  }
  body {
    font-size: 14px;
  }
  p {
    line-height: 1.5;
  }
  .head__contents {
    margin-top: 71px;
  }
  .head__contents__ttl {
    width: 85%;
    bottom: 1rem;
    padding: .5rem 0 1.5rem 2rem;
  }
  .head__contents__ttl-red {
    font-size: 25px;
  }
  .head__contents__ttl-outline {
    font-size: 28px;
    letter-spacing: 10px;
  }
  .head__linkarea__parent {
    margin: 0rem auto 2rem;
  }
  .main__contents {
    padding-bottom: 0;
  }
  .read__txtarea__ttl {
    font-size: 19px;
    letter-spacing: 4px;
  }
  .service__detail:before ,
  .onlineConsultation__detail:before {
    background-size: contain;
  }
  .service__detail:before {
    top: -.2rem;
  }
  .onlineConsultation__detail:before {
    top: -5.5rem;
  }
  .service__detail__ttl {
    border-top: 8px dotted #fff;
    border-bottom: 8px dotted #fff;
    padding: 2rem 0;
    margin: 3rem 0;
  }
  .service__detail__ttl img {
    padding: 0;
    width: 85%;
    margin: 0 auto;
  }
  .service__detail__ttl:before, .service__detail__ttl:after {
    display: none;
  }
  .head__linkarea ,
  .onlineConsultation__detail {
    padding: 0 1rem;
  }
  .read__txtarea {
    padding: 0 1rem 1.5rem;
  }
  .service__DetailType__type ,
  .service__DetailType__comment ,
  .service__DetailType__link ,
  .onlineConsultation__detailService--reception {
    flex-direction: column;
  }
  .service__detail {
    padding: 1rem 0;
  }
  .service__DetailType__type ,
  .service__DetailType__read ,
  .service__DetailType__osusume ,
  .service__DetailType__link ,
  .service__DetailType__comment {
    padding: 1rem;
  }
  .service__DetailType__type {
    margin: 1rem auto;
  }
  .service__DetailType__type img {
    margin-bottom: 1rem;
  }
  .service__DetailType__subttl {
    width: 95%;
    padding-left: 10px;
    margin-bottom: 3rem;
  }
  .service__DetailType__subttl-img {
    flex-direction: column;
    align-items: baseline;
  }
  .type02 .type_img {
    order: 1;
  }
  .type02_sp_order {
    order: 2;
  }
  .service__DetailType__subttl-img img {
    width: 80%;
  }
  .service__DetailType__subttl-img img.type_img {
    width: 50%;
    margin-left: auto;
  }
  .service__DetailType__subttl-txt {
    text-align: left;
  }
  .service__DetailType__read {
    font-size: 16px;
    margin-bottom: 5rem;
  }
  .service__DetailType__read:after {
    width: 80px;
    height: 22px;
    bottom: -4rem;
  }
  .service__DetailType__osusume {
    font-size: 14px;
  }
  .service__DetailType__comment {
    padding: 2rem 1rem;
    width: 90%;
  }
  .service__DetailType__commentTxt {
    margin: 0 auto 1rem;
  }
  .service__DetailType__link img {
    width: 80%;
  }
  .service__DetailType__link a {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .dot_line span {
    padding: 0 2rem;
  }
  .onlineConsultation__detailService--txt {
    font-size: 17px;
    padding: 0 1rem;
    margin: 2rem 0 1rem;
    letter-spacing: 2px;
  }
  .onlineConsultation__detailService--reception {
    margin-bottom: 0;
  }
  .onlineConsultation__detailService--receptionBx:last-child {
    margin-left: auto;
  }
  .onlineConsultation__detailService--receptionBx {
    width: 95%;
    margin: 1rem auto 2rem;
  }
  .onlineConsultation__detailService--receptionBx h3 {
    font-size: 17px;
    text-align: left;
    padding-left: 4rem;
  }
  .onlineConsultation__detailService--receptionBx h3:before {
    width: 35px;
    height: 38px;
  }
  .onlineConsultation__detailService--receptionBx:last-child h3:before {
    width: 29px;
    height: 30px;
  }
  .service03 .onlineConsultation__detailService--receptionBx h3:before {
    width: 24px;
    height: 34px;
  }
  .service03 .onlineConsultation__detailService--receptionBx:last-child h3:before {
    width: 15px;
    height: 40px;
  }
  .onlineConsultation__detailService--receptionBx img {
    width: 80%;
    text-align: center;
  }
  .img-wait {
    padding: 0 1rem!important;
  }
  .onlineConsultation__detailService--lists {
    margin: 2rem 1rem 3rem;
    padding: 0 0 1rem;
  }
  .onlineConsultation__detailService--lists li {
    margin: 0 1rem 1rem 0;
  }
  .onlineConsultation__detailService--kurashimanetTxt {
    font-size: 17px;
    letter-spacing: 2px;
  }
  .onlineConsultation__detailService--kurashimanetTxt span {
    padding: 0;
  }
  .onlineConsultation__detailService--kurashimanetTxt {
    border-top: 12px dotted #7FC9F9;
    border-bottom: 12px dotted #7FC9F9;
    padding: 1rem;
    margin: 1rem 1rem 3rem;
  }
  .onlineConsultation__detailService--kurashimanetTxt:before,
  .onlineConsultation__detailService--kurashimanetTxt:after {
    display: none;
  }
}
