@charset "utf-8";


@keyframes back_anime {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 1000px;
  }
}

/* ==========================================================================
   webフォントの読み込み
========================================================================== */

@font-face {
  font-family: 'GENJ';
  font-style: normal;
  font-weight: 400;
  src: url('../font/GenJyuuGothicL-Regular.eot');
  src: url('../font/GenJyuuGothicL-Regular.eot#iefix') format('embedded-opentype'),
  url('../font/GenJyuuGothicL-Regular.ttf') format('truetype'),
  url('../font/GenJyuuGothicL-Regular.woff') format('woff');
}

@font-face {
  font-family: 'GENJ';
  font-style: normal;
  font-weight: 900;
  src: url('../font/GenJyuuGothicL-Heavy.eot');
  src: url('../font/GenJyuuGothicL-Heavy.eot#iefix') format('embedded-opentype'),
  url('../font/GenJyuuGothicL-Heavy.ttf') format('truetype'),
  url('../font/GenJyuuGothicL-Heavy.woff') format('woff');
}

@font-face {
  font-family: 'CORP_R';
  font-style: normal;
  font-weight: 900;
  src: url('../font/Corporate-Logo-Rounded.eot');
  src: url('../font/Corporate-Logo-Rounded.eot#iefix') format('embedded-opentype'),
  url('../font/Corporate-Logo-Rounded.ttf') format('truetype'),
  url('../font/Corporate-Logo-Rounded.woff') format('woff');
}


/* ==========================================================================
   リセット
========================================================================== */

html {
	font: normal normal normal 62.5%/1 "GENJ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",  "メイリオ", Meiryo, "ＭＳ Ｐゴシック", 'Open Sans', osaka, Arial, Verdana, sans-serif;
	color:#333;
}

.corp_r {
	font-family: 'CORP_R', sans-serif;
	font-weight:400;
	}

	
body {
  font: normal normal normal 62.5%/1 "GENJ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",  "メイリオ", Meiryo, "ＭＳ Ｐゴシック", 'Open Sans', osaka, Arial, Verdana, sans-serif;
	margin: 0;
	padding: 0;
  background-color: #faf5eb;
	position: relative;
	color: #333;
	font-feature-settings : "palt" 1;
	font-kerning: normal;
	backface-visibility: hidden;
}

#body_wrap {
  width: 100%;
  margin: 0 auto;
}

a {
	text-decoration: none;
  transition: opacity 0.4s ease;
}
a:hover {
	opacity:0.7;
}
a,
input,
select,
textarea,
button,
*:before,
*:after {
	transition:  opacity 0.4s ease;
	transform: translate3d(0, 0, 0);
}

a:focus,
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

img {
	width: 100%;
	vertical-align: bottom;	
	image-rendering: crisp-edges;
}
li {
  list-style: none;
}

.pc_off {
	display:none;
}
.sp_off {
	display:block;
}
  @media screen and (max-width : 650px ){	
    .sp_off {
      display:none !important;
    }
    .pc_off {
      display:block;
    }
  }

.cl {
	clear:both;
}

::selection {
  background: rgba(253, 255, 121, 0.9);
}

.en {
	font-family: 'Lato', sans-serif;
  font-weight:700;
  text-transform: uppercase;
}
.en_bold {
	font-family: 'Lato', sans-serif;
	font-weight:900;
  text-transform: uppercase;
}

.tit {
  font-size:30px;
  font-weight:700;
  line-height:42px;
  text-align:center;
}
.s_tit {
  display:block;
  margin-top:10px;
  font-size:12px;
  text-align:center;
  color:#f4875c;
}
  @media screen and (max-width : 960px ){	
    .tit {
      font-size: 23px;
      line-height: 31px;
    }
    .s_tit {
      margin-top: 3px;
      font-size: 11px;
    }
  }

  .link_btn {
    display: block;
    position: relative;
    text-align: center;
    color: #00bb88;
    font-size: 14px;
    font-weight: 700;
    width: 90%;
    max-width: 300px;
    height: 40px;
    margin: 0 auto;
    padding-top: 10px;
    background: #fff;
    border: 3px solid #00bb88;
    border-radius: 40px;
    box-sizing: border-box;
    transition: all 0.4s ease;
  }

  @media screen and (max-width : 800px ){
    .link_btn {
      font-size: 11px;
      height: 34px;
      border: 2px solid #00bb88;
      border-radius: 34px;
    }
  }
  
  .link_btn:hover {
    color: #fff;
    background: #00bb88;
  }
  
  .link_btn::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 13px;
    height: 6px;
    margin: auto;
    background: url(../image/btn_ar.png) center center no-repeat;
    background-size: cover;
    transition: all 0.4s ease;
  }
  
  .link_btn:hover:before {
    right: 14px;
    background: url(../image/btn_ar_af.png) center center no-repeat;
    background-size: cover;
  }


/* ==========================================================================
    メニュー
========================================================================== */

@keyframes train {
  0% {
    transform: rotate(0.3deg) translateY(1%);
  }
  25%{
    transform: rotate(0deg) translateY(-1%);
  }
  50% {
    transform: rotate(-0.1deg) translateY(1%) translateX(0.5%);
  }
  75%{
    transform: rotate(0deg) translateY(-1%);
  }
  100% {
    transform: rotate(0.3deg) translateY(2%);
  }
}



#header {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

#header #header_logo {
  display: inline-block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
}

#header #header_logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 90px;
  border-radius: 0px 0px 10px;
  background-color: rgba(0, 192, 138, 1);
}

#header #header_logo a:hover {
  opacity: unset;
}

#header #header_logo a img {
  width: 162px;
}

#header #header_gnav {
  position: relative;
  z-index: 3000;
}

#header_gnav_btns {
  position: absolute;
  top: 15px;
  left: 6.8vw;
  right: 0;
  width: fit-content;
  overflow: hidden;
  padding: 1px 12px 2px 16px;
  margin: auto ;
  border-radius: 36px;
  background-color: #fff;
  box-shadow: 0 3px 4px 0 rgba(51, 51, 51, .15);
}

#header_gnav_btns ul{
  display: inline-flex;
  gap: 10px;
  list-style-type: none;
  margin-block: inherit;
  margin-inline: inherit;
  padding-inline: inherit;
}

#header_gnav_btns ul li {
  display: flex;
  position: relative;
  align-items: center;
  width: 7.5vw;
  max-width: 132px;
  height: 64px;
  padding: .4rem;
  transition: all .35s;
  filter: grayscale(92%);
}

#header_gnav_btns ul .menu04 {
  width: 7.1vw;
  max-width: 124px;
}

#header_gnav_btns ul .menu05 {
  width: 7.1vw;
  max-width: 124px;
}

#header_gnav_btns ul .menu06 {
  width: 6.5vw;
  max-width: 120px;
}

#header_gnav_btns ul li a {
  display: block;
  text-align: center;
  width: 100%;
  padding-top:48px;
  z-index: 5;
}

#header_gnav_btns ul li a:hover {
  opacity: unset;
}


#header_gnav_btns ul li a .nav_tit {
  font-family: 'CORP_R';
  font-size: 1.08rem;
  font-weight: 400;
  color: #009977;
  margin-bottom: 12px;
}

#header_gnav_btns ul .nav_icon::before {
  content: "";
  display: block;
  position: absolute;
  left: -4px;
  top: 11px;
  width: 0px;
  height: 49px;
  border-left: 2px dotted #ccc;
}

    #header_gnav_btns ul .menu01::before {
      border: none;
    }

#header_gnav_btns ul .nav_icon::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  transition: all .35s;
}

    #header_gnav_btns ul .menu01::after {
      top: 12px;
      width: 50px;
      height: 32px;
      background: url(../image/menu_illust01.png) top center no-repeat;
      background-size: cover;
    }

    #header_gnav_btns ul .menu02::after {
      top: 9px;
      width: 39px;
      height: 34px;
      background: url(../image/menu_illust02.png) top center no-repeat;
      background-size: cover;
    }

    #header_gnav_btns ul .menu03::after {
      top: 11px;
      width: 34px;
      height: 36px;
      background: url(../image/menu_illust03.png) top center no-repeat;
      background-size: cover;
    }

    #header_gnav_btns ul .menu04::after {
      top: 11px;
      width: 36px;
      height: 36px;
      background: url(../image/menu_illust04.png) top center no-repeat;
      background-size: cover;
    }

    #header_gnav_btns ul .menu05::after {
      top: 10px;
      left: -3px;
      width: 38px;
      height: 36px;
      background: url(../image/menu_illust05.png) top center no-repeat;
      background-size: cover;
    }

    #header_gnav_btns ul .menu06::after {
      top: 10px;
      width: 20px;
      height: 36px;
      background: url(../image/menu_illust06.png) top center no-repeat;
      background-size: cover;
    }

#header_gnav_btns ul .nav_icon:hover {
  filter: grayscale(0%);;
  transition: all .3s;
}

#header_gnav_btns ul .nav_icon:hover::after {
  transform:translateY(-3px) ;
}


#header #header_gnav .odsg_city {
  position: absolute;
  display: block;
  width: 108px;
  height: 108px;
  top: 15px;
  right: 2.7vw;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  padding-top: 78px;
  box-sizing: border-box;
  border: #3A8BC3  solid 4px;
  background: url(../image/odsg_bg.png) bottom center no-repeat #dbebe9;
  border-radius: 54px;
  box-shadow: 0 3px 4px 0 rgba(51, 51, 51, .25);
  transition: top 0.35s ease;
  z-index: 3000;
}

#header #header_gnav .odsg_city::before {
  content: "";
  display: block;
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  margin: auto;
  width: 54px;
  height: 45px;
  background: url(../image/odsg_icon.png);
  background-size: cover;
  animation: train 1s steps(5,end)infinite;
}

#header #header_gnav .odsg_city:hover {
  top: 28px;
  opacity: 1;
}
    

@media (max-width: 960px) {

  #header #header_logo a {
    width: 184px;
    height: 86px;
    border-radius: 0px 0px 8px;
  }

  #header #header_logo a img {
    width: 152px;
  }

  #header_gnav_btns {
    position: fixed;
    top: inherit;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 63px;
    padding: 0 0 5px;
    background-color: #ebe6e6;
    border-radius: inherit;
    box-shadow: 0 -1px 1px 1px rgba(51, 51, 51, .1);
  }
  #header_gnav_btns ul{
    gap: 4px;
    margin-left: 2.4vw;
  }

  
  #header_gnav_btns ul li {
    width: 15.4vw;
    max-width: inherit;
    height: 56px;
    filter: grayscale(95%);
  }


  #header_gnav_btns ul .menu04 {
    width: 15.1vw;
    max-width: inherit;
  }
  
  #header_gnav_btns ul .menu05 {
    width: 15.25vw;
    max-width: inherit;
  }
  
  #header_gnav_btns ul .menu06 {
    width: 14.8vw;
    max-width: inherit;
  }
  #header_gnav_btns ul li a .nav_tit {
    font-size: 0.98rem;
    color: #454545;
  }

  #header_gnav_btns ul .nav_icon::before {
    left: -1px;
  }
  

}

@media (max-width: 650px) {


  #header #header_logo a {
    width: 136px;
    height: 58px;
    border-radius: 0px 0px 6px;
  }

  #header #header_logo a img {
    width: 110px;
  }
  
  #header_gnav_btns {
    height: 52px;
  }

  #header_gnav_btns ul{
    gap: 2px;
    margin-left: 0;
  }

  #header_gnav_btns ul li {
    width: 17.2vw;
  }

  #header_gnav_btns ul li a {
    padding-top: 40px;
  }

  #header_gnav_btns ul .menu01::after {
    top: 10px;
    width: 40px;
    height: 26px;
  }

  #header_gnav_btns ul .menu02::after {
    top: 8px;
    width: 31px;
    height: 27px;
  }

  #header_gnav_btns ul .menu03::after {
    top: 9px;
    width: 28px;
    height: 30px;
  }

  #header_gnav_btns ul .menu04::after {
    top: 9px;
    width: 30px;
    height: 30px;
  }

  #header_gnav_btns ul .menu05::after {
    top: 8px;
    left: -2px;
    width: 32px;
    height: 30px;
  }

  #header_gnav_btns ul .menu06::after {
    top: 8px;
    width: 18px;
    height: 32px;
  }

  #header_gnav_btns ul li a .nav_tit {
    font-size: 0.9rem;
  }

  #header #header_gnav .odsg_city {
    width: 72px;
    height: 72px;
    top: 5px;
    right: 1.6vw;
    font-size: 10px;
    padding-top: 49px;
    border: #3A8BC3 solid 3px;
    background: url(../image/odsg_bg.png) bottom -13% center no-repeat #dbebe9;
    border-radius: 36px;
    box-shadow: 0 1px 2px 0 rgba(51, 51, 51, .25);
    transition: top 0.35s ease;
    z-index: 3000;
  }
  
  #header #header_gnav .odsg_city::before {
    top: 9px;
    width: 36px;
    height: 30px;
    background: url(../image/odsg_icon_sp.png);
    background-size: cover;
  }

  #header #header_gnav .odsg_city:hover {
    top: 18px;
  }

}

/* ==========================================================================
    フッター
========================================================================== */

#footer {
  position: relative;
  text-align: center;
  width: 100%;
  padding-top: 18px;
  z-index: 500;
}

#footer::before {
  content: "";
  display: block;
  position: absolute;
  top: -79px;
  left: 0;
  width: 100%;
  height: 106px;
  background: url(../image/back_slope_yg.png) bottom center repeat-x;
  z-index: 200;
}

#footer::after {
  content: "";
  display: block;
  position: absolute;
  top: -140px;
  left: 0;
  right: 0;
  width: 194px;
  height: 140px;
  margin: auto;
  background: url(../image/logo_illust.png) top center no-repeat;
  background-size: cover;
  z-index: 600;
}

.footer_inr {
  position: relative;
  background: #b4d984;
  padding-bottom: 100px;
}

#footer .footer_logo {
  display: block;
  width: 269px;
  margin: 0 auto 10px;
}

#footer .footer_logo img {
  margin-bottom: 6px;
  padding-top: 14px;
}

#footer .footer_logo span {
  font-size: 10px;
  color: #00532a;
}

#footer h3 {
  position: relative;
  font-size: 44px;
  font-weight: 700;
  width: 345px; 
  margin: 0 auto;
  padding-left: 30px;
  box-sizing: border-box;
}

#footer h3::before {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 30px;
  height: 39px;
  background: url(../image/footer_tell_icon.png) center center no-repeat;
  background-size: cover;
}

#footer p {
  position: relative;
  font-size: 13px;
  margin: 18px auto 12px;
}

#footer .map_link {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
  width: 120px;
  height: 30px;
  margin: 0 auto;
  padding-top: 6px;
  background: #333;
  border: 2px solid #333;
  border-radius: 30px;
  box-sizing: border-box;
  z-index: 900;
}

#footer .map_link:hover {
  color: #333;
  background: #fff;
  transition: all 0.4s ease;
}

#footer .illust_area {
  position: absolute;
  overflow: hidden;
  top: -146px;
  width: 100%;
  height: 300px;
  z-index: 200;
}

#footer .illust_area img {
  display: block;
  position: absolute;
}

#footer .illust_area .l_tree {
  width: 148px;
  top: 20px;
  right: calc(50% + 408px); 
}

#footer .illust_area .l_flower {
  width: 124px;
  top: 216px;
  right: calc(50% + 294px);
}

#footer .illust_area .r_tree {
  width: 162px;
  top: 24px;
  left: calc(50% + 410px);
}

#footer .illust_area .r_shrub {
  width: 102px;
  top: 200px;
  left: calc(50% + 340px); 
}


#footer .footer_bg {
  position: relative;
  width: 100%;
  height: 30px;
} 

#footer .footer_bg::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 267px;
  margin: auto;
  background: url(../image/footer_bottom_bg.png) top center repeat-x;
}

#footer .footer_bg p {
  position: absolute;
  bottom: -180px;
  left: 0;
  right: 0;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  margin: 0;
}

#footer .sns_top  {
  position: absolute;
  width: 32px;
}

#footer .sns_top.tw_icon {
  top: 96px;
  right: 68px;
} 

#footer .sns_top.insta_icon {
  top: 96px;
  right: 24px;
} 

@media screen and (max-width : 960px ){
  #footer {
    padding-top: 0;
  }

  #footer::before {
    top: -60px;
    height: 70px;
    background-size: 800px 70px;
  }

  #footer::after {
    top: -106px;
    width: 164px;
    height: 119px;
  }

  .footer_inr {
    padding-top: 24px;
  }

  #footer .footer_logo {
    width: 197px;
  }
  
  #footer .footer_logo img {
    margin-bottom: 7px;
  }
  

  #footer h3 {
    font-size: 32px;
    width: 240px;
    padding-left: 21px;
  }

  #footer h3::before {
    top: 3px;
    width: 18px;
    height: 24px;
  }

  #footer p {
    font-size: 12px;
    margin: 18px auto 12px;
  }

  #footer .map_link {
    font-size: 10px;
    width: 85px;
    height: 22px;
    padding-top: 4px;
    border: 1px solid #333;
    border-radius: 22px;
  }

  #footer .illust_area {
    top: -78px;
    height: 196px;
  }
  
  #footer .illust_area .l_tree {
    width: 104px;
    top: 5px;
    left: -32px; 
    right: 0;
  }

  #footer .illust_area .l_flower {
    width: 80px;
    top: 136px;
    right: calc(50% + 31vw); 
  }
  
  #footer .illust_area .r_tree {
    width: 118px;
    top: 5px;
    left: unset;
    right: -36px;
  }

  #footer .illust_area .r_shrub {
    width: 64px;
    top: 118px;
    left: calc(50% + 33vw);
  }

  #footer .footer_bg::before {
    height: 288px;
  }

  #footer .footer_bg p {
    font-size: 9px;
  }

  #footer .sns_top.tw_icon {
    top: 150px;
    right: calc(50% + 7px);
  } 
  
  #footer .sns_top.insta_icon {
    top: 150px;
    left: calc(50% + 7px)
  } 

}

@media screen and (max-width : 650px ){
 #footer::after {
    top: -108px;
    width: 131px;
    height: 95px;
}

.footer_inr {
  padding-bottom: 60px;
}

#footer .illust_area {
  top: -98px;
  height: 144px;
}

#footer .illust_area .l_tree {
  width: 71px;
  top: 5px;
  left: -32px; 
  right: 0;
}

#footer .illust_area .l_flower {
  width: 56px;
  top: 88px;
  right: calc(50% + 27vw);
}

#footer .illust_area .r_tree {
  width: 77px;
  top: 5px;
  left: unset;
  right: -36px;
}

#footer .illust_area .r_shrub {
  width: 50px;
  top: 84px;
  left: calc(50% + 32vw);
}

#footer h3 {
  width: 240px;
  padding-left: inherit;
}

#footer h3::before {
  display: none;
}

#footer .telephone {
  display: block;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  height: 66px;
  margin: 13px auto 0;
  padding: 13px 0 0 20px;
  background: #f4875c;
  border: 3px solid #f4875c;
  border-radius: 60px;
  box-sizing: border-box;
  box-shadow: 0 1px 2px 0 rgba(51, 51, 51, .25);
  transition: all 0.4s ease;
}

#footer .telephone::before {
  content: "";
  display: block;
  position: absolute;
  top: 13px;
  left: 21px;
  width: 18px;
  height: 24px;
  background: url(../image/footer_tell_icon_wh.gif) center center no-repeat;
  background-size: cover;
}

#footer .telephone .tel_cap {
  position: relative;
  display: block;
  left: -8px;
  font-size: 0.9rem;
  text-align: center;
  padding-top: 3px;
}

#footer p {
  font-size: 0.9rem;
  margin: 18px auto 12px;
}

#footer .footer_bg p {
  bottom: -120px;
}

#footer .footer_bg::before {
  height: 228px;
  background: url(../image/footer_bottom_bg_sp.png) top center repeat-x;
}

#footer .sns_top.tw_icon {
  top: 94px;
  width: 28px;
}

#footer .sns_top.insta_icon {
  top: 94px;
  width: 28px;
}

}


/* ==========================================================================
   派生メイン（下層ページ共通）
========================================================================== */

@keyframes kenburns {
  0% {
     transform: scale(1.2) ;
  }
  45% {
     transform: scale(1.08) ;
  }
  100% {
     transform: scale(1.0) ;
  }
}


#hasei_main {
  position: relative;
  width: 100%;
  height: 540px;
  background: url(../image/back_stripe_wh.jpg)  #faf5eb ;
  animation: back_anime 150s linear infinite;
  z-index: 0;
}

#hasei_main::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 108px;
  background: url(../image/back_slope_yg.png) bottom center repeat-x;
  z-index: 100;
}

#hasei_main .hasei_title {
  display: block;
  position: absolute;
  top: 190px;
  left: 0;
  right: 0;
  width: 432px;
  height: 116px;
  margin: auto;
  border-radius: 24px;
  background: rgba(24, 32, 36, 0.74);
  background-size: cover;
}

#hasei_main .hasei_title h1 {
  text-align: center;
  color: #fff;
  font-family: 'CORP_R';
  font-size: 36px;
  font-weight: 400;
  margin: 0 auto 15px;
  padding-top: 27px;
}

#hasei_main .hasei_title h2 {
  text-align: center;
  color: #fff;
  font-size: 15px;
}

#hasei_slider {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  z-index: -1000;
}

#hasei_slider .vegas-animation-kenburns {
  animation: kenburns ease-out;
}


.hasei_illust_area {
   position: absolute;
   overflow: hidden;
   top: -210px;
   width: 100%;
   height: 300px;
   z-index: 200;
 }
 
 .hasei_illust_area img {
   display: block;
   position: absolute;
 }
 
 .hasei_illust_area .l_tree {
   width: 148px;
   top: 72px;
   right: calc(50% + 400px); 
 }
 
 .hasei_illust_area .l_shrub {
   width: 98px;
   top: 212px;
   right: calc(50% + 300px); 
 }
 
 .hasei_illust_area .r_tree {
   width: 138px;
   top: 30px;
   left: calc(50% + 400px);
 }
 
 .hasei_illust_area .r_flower {
   width: 110px;
   top: 216px;
   left: calc(50% + 294px);
 }


@media screen and (max-width : 960px ){
  #hasei_main {
     height: 60vw;
     min-height: 360px;
  }

  #hasei_main::after {
    bottom: -3px;
  }

  #hasei_main .hasei_title {
     top: 17.8vw;
     width: 384px;
     height: 100px;
     border-radius: 18px;
  }

  #hasei_main .hasei_title h1 {
     font-size: 37px;
     margin: 0 auto 12px;
     padding-top: 22px;
  }

  #hasei_main .hasei_title h2 {
     font-size: 12px;
  }

  .hasei_illust_area {
    top: -84px;
    height: 184px;
  }
  
  .hasei_illust_area .l_tree {
    width: 118px;
    top: 18px;
    left: -40px;
    right: 0;
  }

  .hasei_illust_area .l_shrub {
    width: 68px;
    top: 116px;
    right: calc(50% + 33vw); 
  }
  
  .hasei_illust_area .r_tree {
    width: 104px;
    top: 0px;
    left: unset;
    right: -34px;
  }

  .hasei_illust_area .r_flower {
    width: 84px;
    top: 124px;
    left: calc(50% + 32vw);
  }

}


@media screen and (max-width : 650px ){

  #hasei_main .hasei_title {
     top: 108px;
     width: 224px;
     height: 66px;
     border-radius: 15px;
  }

  #hasei_main .hasei_title h1 {
     font-size: 26px;
     margin: 0 auto 6px;
     padding-top: 13px;
  }

  #hasei_main .hasei_title h2 {
     font-size: 9px;
  }

  .hasei_illust_area {
    top: -140px;
    height: 144px;
  }

  .hasei_illust_area .l_tree {
    width: 77px;
    top: 23px;
    left: -32px;
  }

  .hasei_illust_area .l_shrub {
    width: 50px;
    top: 102px;
  }
  
  .hasei_illust_area .r_tree {
    width: 71px;
    top: 14px;
    right: -29px;
  }

  .hasei_illust_area .r_flower {
    width: 60px;
    top: 102px;
  }


}


