@charset "utf-8";
/* CSS Document */
/*------------------------------------------------*/
/*------------------------------------------------*/
/*------------------------------------------------*/
html {
  scroll-behavior: smooth;
}
body {
  background: transparent;
}
#common main, #default main {
  padding: 0;
  margin-top: -100px;
  box-shadow: none;
}
#common main {
  margin-bottom: 0;
  border-radius: 0;
  background-color: transparent;
}
#locator {
  display: none;
}
#onepoint {
  margin-top: 140px;
  padding-top: -50px;
}

.toyonaka_font_00{
  font-family: "a-otf-jun-pro", sans-serif;
  font-weight: bold;
  transform: rotate(0.03deg); /* シャギーを防ぐ指定 */
}

li {
  list-style: none;
}
.line {
  border-top: 1px solid #DCDCDC;
}
.pc_none {
  display: none;
}
/*------------------------------------------------*/
/*------------------main_visual-------------------*/
/*------------------------------------------------*/
.main_visual {
  width: 1200px;
  margin: 100px auto 0;
  height: auto;
  background: url("../image/toyonaka_mainvisual_01.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  border-radius: 12px;
}
.mv_cover {
  width: 100%;
  height: inherit;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.inner_0 {
  width: 680px;
  height: 320px;
  margin: 4em auto;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-content: center;
  flex-wrap: nowrap;
  gap: 2em;
}
.catch_copy {
  text-align: center;
}
.catch_img {
  width: 100%;
  height: inherit;
  display: flex;
  position: relative;
  clear: both;
  align-items: center;
}
.catch_img_01 {
  width: 100%;
}
.catch_img_02 {
  width: 100%;
}
.mv_garbage_00 {
  flex-basis: 260px;
  height: auto;
}
.toyonaka_map_01{
  width: 100%;
  position: absolute;
  top: 0;
  right: -8em;
  z-index: 0;	
}
.sab_garbage_00 {
  width: 40%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.sab_garbage_01 {
  width: 60%;
  position: absolute;
  bottom: 0;
  right: -100px;
  z-index: 0;
}
.sab_garbage_01 img {
  animation: 2s sab_garbage_01 linear infinite;
  /* animation: 時間 アニメーション名 等速 繰り返す */
}
.sab_garbage_00 img {
  animation: 2.4s sab_garbage_00 linear infinite;
  /* animation: 時間 アニメーション名 等速 繰り返す */
}
@keyframes sab_garbage_01 {
  10% {
    transform: scale(1.1, 0.9);
  } /*少し縮む*/
  40% {
    transform: scale(1.2, 0.80);
  } /*縮む*/
  50% {
    transform: scale(0.85, 1.15);
  } /*反動で縦長*/
  60% {
    transform: scale(1.1, 0.9);
  } /*また反動で縮む*/
  70% {
    transform: scale(0.95, 1.08);
  } /*反動が小さく*/
  90% {
    transform: scale(0.98, 1.02);
  } /*最後の震え*/
  100% {
    transform: scale(1, 1);
  } /*元に戻る*/
}
@keyframes sab_garbage_00 {
  10% {
    transform: scale(1.1, 0.9);
  } /*少し縮む*/
  40% {
    transform: scale(1.2, 0.80);
  } /*縮む*/
  50% {
    transform: scale(0.85, 1.15);
  } /*反動で縦長*/
  60% {
    transform: scale(1.1, 0.9);
  } /*また反動で縮む*/
  70% {
    transform: scale(0.95, 1.08);
  } /*反動が小さく*/
  90% {
    transform: scale(0.98, 1.02);
  } /*最後の震え*/
  100% {
    transform: scale(1, 1);
  } /*元に戻る*/
}
/*------------------------------------------------*/
/*-----------------------btn----------------------*/
/*------------------------------------------------*/
.nocoo_btn_01:after {
  content: '';
  width: 14px;
  height: 14px;
  background-image: url("../image/toyonaka_icon_01.png");
  background-size: 60%;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(44% - 3px);
  right: 1.6em;
  transition: all 1.5s;
}
.nocoo_btn_02:after {
  content: '';
  width: 14px;
  height: 14px;
  background-image: url("../image/toyonaka_icon_00.png");
  background-size: 14px auto;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(46% - 3px);
  right: 1.6em;
  transition: all 1.5s;
}
.nocoo_btn_01::before,.nocoo_btn_02::before{
  content: '';
  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
  transform: skewX(-25deg);
}
.nocoo_btn_01 a, .nocoo_btn_02 a {
  color: #FFF;
  display: block;
  background: #006DA7;
  transition: 0.3s ease-in-out;
  border-radius: 40px;
  padding: 1.6rem 0;
  letter-spacing: 0.14em;
}
.nocoo_btn_01 {
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  font-size: 1em;
  position: relative;
  width: 420px;
  margin: auto;
  display:inline-block;
  outline: none;
  overflow: hidden;
}
.nocoo_btn_02 {
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  font-size: 1em;
  position: relative;
  width: 420px;
  margin: 0 auto 4em;
  display:inline-block;
  outline: none;
  overflow: hidden;
}
.nocoo_btn_01:hover::before, .nocoo_btn_02:hover::before {
  animation: shine 0.7s;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
/*------------------------------------------------*/
/*-------------------section_1--------------------*/
/*------------------------------------------------*/
.section_1 {
  width: 100%;
  height: auto;
  margin: 100px auto;
}
.bloc_cover_01 {
  max-width: 1000px;
  width: 1000px;
  margin: 0 auto;
  position: relative;
  clear: both;
}
.content_area_01 {
  text-align: center;
  color: #2d2d2d;
}
.dark_blue_01 {
  color: #006DA7;
}
.osmanthus_item_00 {
  width: 150px;
  height: auto;
  position: absolute;
  right: 0;
  top: 0;
}
.osmanthus_item_01 {
  width: 150px;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
}
.title_01, .title_02 {
  text-align: center;
  letter-spacing: 0.18em;
}
.bloc_01_font_01 {
  font-size: 1em;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.bloc_space_00 {
  margin: 2em 0 0;
}
.co2_sab {
  vertical-align: bottom;
  font-size: 0.5em;
}
.sab_comment_01 {
  letter-spacing: 0.02em;
  font-size: 0.5em;
  text-align: center;
}
/*------------------------------------------------*/
/*-------------------section_2--------------------*/
/*------------------------------------------------*/
.section_2 {
  width: 100%;
  height: auto;
  position: relative;
  background: url("../image/toyonaka_bk_01.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  clear: both;
}
.section_2:before {
  content: '';
  position: absolute;
  top: -1.6em;
  display: inline-block;
  width: 100%;
  height: 2em;
  background: url("../image/toyonaka_bk_01_00.png");
  background-size: contain;
  background-repeat: repeat-x;
  clear: both;
}
.section_2:after {
  content: '';
  position: absolute;
  bottom: -1.6em;
  display: inline-block;
  width: 100%;
  height: 2em;
  background: url("../image/toyonaka_bk_01_01.png");
  background-size: contain;
  background-repeat: repeat-x;
  clear: both;
}
.bloc_cover_02 {
  width: 1000px;
  margin: 0 auto;
  padding: 100px 0;
}
.change_cover_01 {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  grid-gap: 20px;
  padding: 60px 0 40px;
  align-items: flex-start;
}
.change_cover_02 {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  grid-gap: 60px 20px;
  padding: 60px 0;
  align-items: flex-end;
  width: 100%;
}
.change_point_01 {
  width: 20%;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.change_point_02 {
  width: 20%;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
}
.garbage_size_01 {
  width: 50%;
  margin: 0 auto;
}
.garbage_cover_02 {
  width: 1000px;
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 2em;
  background: #FFF;
  border-radius: 1.2em;
}
.title_02 {
  color: #FFF;
  letter-spacing: 0.2em;
}
.bloc_space_02 {
  margin: 2em auto;
}
/*------------------------------------------------*/
/*-------------------section_3--------------------*/
/*------------------------------------------------*/
.section_3 {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 80px 0;
}
.bloc_cover_03 {
  max-width: 1000px;
  width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  clear: both;
}
.content_area_03 {
  width: 860px;
  margin: 0 auto;
  padding: 60px 0 40px;
  display: flex;
  display: -webkit-flex;
  gap: 100px;
  text-align: left;
}
.inner img .change_02 {
  width: 80%;
  margin: 0 auto;
}
.inner img .change_03 {
  width: 90%;
  margin: 0 auto;
}
.inner img .change_04 {
  width: 100%;
  margin: 0 auto;
}
/*------------------------------------------------*/
/*-------------------section_4--------------------*/
/*------------------------------------------------*/
.section_4 {
  width: 100%;
  height: auto;
  position: relative;
  background: url("../image/toyonaka_bk_02.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  clear: both;
}
.section_4:before {
  content: '';
  position: absolute;
  top: -1em;
  display: inline-block;
  width: 100%;
  height: 2em;
  background: url("../image/toyonaka_bk_02_00.png");
  background-size: contain;
  background-repeat: repeat-x;
  clear: both;
}
.section_4:after {
  content: '';
  position: absolute;
  bottom: -1.8em;
  display: inline-block;
  width: 100%;
  height: 2em;
  background: url("../image/toyonaka_bk_02_01.png");
  background-size: contain;
  background-repeat: repeat-x;
  clear: both;
}
.content_area_04 {
  width: 1000px;
  margin: 0 auto;
  padding: 60px 0 40px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  flex-direction: column;
  gap: 2em;
}
.bloc_cover_04 {
  max-width: 1000px;
  width: 1000px;
  margin: 0 auto;
  padding: 5em 0;
  text-align: center;
  position: relative;
  clear: both;
}
.bloc_04_font_01 {
  color: #FFF;
  letter-spacing: 0.2em;
  font-size: 1em;
}
.attention_04 {
  font-size: 0.8em;
}
/*------------------------------------------------*/
/*-------------------section_5--------------------*/
/*------------------------------------------------*/
.section_5 {
  width: 100%;
}
.bloc_cover_05 {
  width: 1000px;
  margin: 120px auto;
  padding-bottom: 6em;
  text-align: center;
}
.content_area_05 {
  width: 1000px;
  margin: 0 auto;
  padding: 60px 0 40px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  text-align: left;
  gap: 60px;
}
.toyonaka_panel_01, .sorting_01 {
  text-align: center;
}
.sorting_comment_01 {
  font-weight: bold;
  letter-spacing: 0.18em;
  line-height: 1.6em;
}
.sorting_01 {
  font-size: 1.2em;
  line-height: 1.2;
  margin: 1em 0;
  letter-spacing: 0.2em;
  color: #006DA7;
}
.icon_00 {
  width: 60%;
  margin: 0 auto;
}
.change_point_03 {
  width: 30%;
  text-align: left;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.toyonaka_area_00 {
  width: 100%;
  height: auto;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  gap: 30px;
}
.line_text_00 {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-align: start;
  font-weight: bold;
  color: #2d2d2d;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-align: center;
  /*border-bottom: 1px solid;
  padding-bottom: 2px;*/
}
/*------------------------------------------------*/
/*-------------------section_6--------------------*/
/*------------------------------------------------*/
.content_area_06 {
  width: 1000px;
  margin: 0 auto;
  padding: 60px 0 40px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  flex-direction: column;
  gap: 60px;
  position: relative;
  clear: both;
  font-weight: bold;
}
.store_area {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  background: #FFF;
  border-radius: 1em;
}
.store_01 {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  flex-direction: column;
  grid-gap: 0.4em;
  width: 20%;
  padding: 2em 0;
  background: #FFF;
  text-align: center;
  font-weight: bold;
}
.store_text_01 {
  text-align: right;
  color: #FFF;
}
.store_title_00 {
  font-size: 1.2em;
  color: #2d2d2d;
}
.store_title_01 {
  font-size: 1em;
  color: #2d2d2d;
}
.osmanthus_item_02 {
  width: 350px;
  height: auto;
  position: absolute;
  left: -10em;
  top: 3em;
}
.osmanthus_item_03 {
  width: 350px;
  height: auto;
  position: absolute;
  right: -10em;
  top: 3em;
}
/*------------------------------------------------*/
/*-------------------section_7--------------------*/
/*------------------------------------------------*/
.section_7 {
  width: 100%;
  height: auto;
  position: relative;
  background: url("../image/toyonaka_bk_03_01.png");
  background-size: contain;
  background-position: center;
  background-repeat: round;
  clear: both;
}
.section_7:before {
  content: '';
  position: absolute;
  top: -9em;
  display: inline-block;
  width: 100%;
  height: 10em;
  background: url("../image/toyonaka_bk_03_00.png");
  background-size: contain;
  background-repeat: repeat-x;
  clear: both;
  background-color: #ffffff;
}
.bloc_cover_07 {
  width: 1000px;
  margin: 0 auto;
  padding: 4em 0;
}
.content_area_07 {
  width: 1000px;
  height: auto;
  margin: 0 auto;
  text-align: center;
  padding-top: 2em;
}
.map_cover_01 {
  width: 100%;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.map_01 {
  width: 100%;
}
/*------------------------------------------------*/
/*----------------------pc_1150-------------------*/
/*------------------------------------------------*/
@media only screen and (max-width: 1150px) {
  .main_visual {
    width: 90%;
    height: auto;
    margin: 60px auto 0;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .inner_0 {
    width: 80%;
    height: 40vh;
    margin: 3em auto;
    grid-gap: 1em;
	box-sizing: border-box;
  }
  .catch_copy {
    width: 100%;
  }
  .catch_img {
	height: inherit;
  }
  .toyonaka_map_01{
	width: 100%;
	height: auto;
	position: absolute;
    top: -2%;
	right: -5%;
  }	
  .mv_garbage_00 {
    width: 100%;
    height: fit-content;
	display: flex;
	align-items: flex-end;
    justify-content: flex-end;
	position: absolute;
	bottom: 0;
  }
  .sab_garbage_00 {
	width: 30%;
	position: inherit;
    left: inherit;
  }
  .sab_garbage_01 {
	width: 40%;
	position: inherit;
    right: 6em;
  }
  .mv_cover {
    height: auto;
    background-size: contain;
  }
  /*------------------------------------------------*/
  /*------------------------------------------------*/
  /*------------------------------------------------*/
  .section_1 {
    margin: 4em auto;
  }
  .content_area_01 {
    width: 90%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    flex-flow: column nowrap;
    justify-content: center;
  }
  .content_area_03, .content_area_05 {
    width: 100%;
    height: auto;
  }
  .nocoo_btn_01, .nocoo_btn_02 {
    width: 100%;
  }
  /*------------------------------------------------*/
  /*------------------------------------------------*/
  /*------------------------------------------------*/
  .bloc_cover_01, .bloc_cover_02, .bloc_cover_05, 
  .bloc_cover_06, .bloc_cover_08 {
    max-width: none;
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-flow: column nowrap;
    justify-content: center;
    flex-wrap: nowrap;
  }
  .garbage_cover_02 {
    max-width: none;
    width: 100%;
    margin: 0 auto;
  }
  .bloc_cover_02 {
    max-width: none;
    width: 90%;
    margin: 0 auto;
    padding: 6em 0;
    display: flex;
    align-items: center;
    flex-flow: column nowrap;
    justify-content: center;
    flex-wrap: nowrap;
  }
  .section_2:before {
    top: -1em;
  }
  .content_area_03 {
    gap: 3em;
  }
  /*------------------------------------------------*/
  /*------------------------------------------------*/
  /*------------------------------------------------*/
  .bloc_cover_04 {
    max-width: none;
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-flow: column nowrap;
    justify-content: center;
    flex-wrap: nowrap;
    padding: 6em 0;
  }
  .section_4:before {
    top: -0.6em;
  }
  .content_area_04 {
    width: 100%;
  }
  .bloc_cover_05 {
    padding: 8em 0;
  }
  .change_cover_01 {
    width: 100%;
    align-items: flex-start;
  }
  .change_cover_02 {
    width: 60%;
    align-items: baseline;
	grid-gap: 2em;
  }
  .change_point_01 {
    width: 40%;
  }
  .change_point_02 {
    width: 45%;
    flex-direction: column;
  }
  /*------------------------------------------------*/
  /*------------------------------------------------*/
  /*------------------------------------------------*/
  .content_area_06 {
    width: 90%;
  }
  .section_7:before {
    top: -5em;
    height: 5em;
  }
  .store_area {
    flex-direction: column;
    align-items: center;
  }
  .store_01 {
    width: 100%;
    border-radius: inherit;
    padding: 0;
  }
  .map_01 {
    width: 100%;
  }
  .section_3 {
    margin: 4em auto;
    padding: 0;
  }
  .bloc_cover_03 {
    max-width: none;
    width: 90%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    flex-flow: column nowrap;
    justify-content: center;
    flex-wrap: nowrap;
  }
  .section_4 {
    padding: 0;
  }
  .bloc_cover_07 {
    max-width: none;
    width: 90%;
    margin: 0 auto;
    padding: 60px 0;
    display: flex;
    align-items: center;
    flex-flow: column nowrap;
    justify-content: center;
    flex-wrap: nowrap;
  }
  .content_area_07 {
    width: 90%;
    flex-direction: column;
    align-items: center;
  }
  .store_area {
    grid-gap: 20px;
    padding: 2em;
  }
  .map_cover_01 {
    flex-basis: auto;
    align-items: center;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
  }
  .osmanthus_item_00, .osmanthus_item_01 {
    width: 16%;
    height: 3vh;
    z-index: 0;
    opacity: 0.6;
    top: inherit;
  }
  .osmanthus_item_02, .osmanthus_item_03 {
    width: 36%;
  }
}	
/*------------------------------------------------*/
/*-----------------Mobile_680---------------------*/
/*------------------------------------------------*/
@media only screen and (max-width: 680px) {
  .main_visual {
    width: 100%;
    max-width: 1900px;
    margin: 60px auto 0;
    height: auto;
    background-size: cover;
    background-position: center;
  }
  .mv_cover {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .inner_0 {
    width: 90%;
    height: 50vh;
    margin: 2vh auto;
  }
  .toyonaka_map_01 {
	width: 100%;
	display: block;
	position: static;
  }
  .bloc_01_font_01, .bloc_04_font_01 {
    text-align: left;
    z-index: 1;
  }
  .bloc_space_01 {
    margin: 0 0 2em;
  }
  .section_2:before, .section_4:before {
    top: -0.4em;
  }
  .title_font_01 {
    width: 100%;
  }
  .change_02 {
    width: 60%;
  }
  .change_point_01 {
    width: 80%;
  }
  .change_point_02 {
    width: 45%;
  }
  .change_point_03 {
    width: 100%;
  }
  .change_cover_01 {
    width: 80%;
    flex-direction: column;
    grid-gap: 2em;
  }
  .change_cover_02 {
    width: 100%;
    padding: 3em 2em;
  }
  .section_3 {
    margin: 5em auto;
  }
  .content_area_03, .content_area_05 {
    flex-direction: column;
    padding: 3em 0 0;
    gap: 3em;
  }
  .map_cover_01 {
    width: 80%;
    margin: 0 auto;
  }
  .section_7 {
    margin-top: 6em;
  }
  .section_7:before {
    top: -4em;
  }
  .sp_none {
    display: none;
  }
  .pc_none {
    display: block;
  }
  /*------------------------------------------------*/
  /*------------------------------------------------*/
  /*------------------------------------------------*/
  .bloc_cover_05 {
    padding: 6em 0 0;
  }
  .bloc_cover_04 {
    margin: 0 auto;
    padding: 5em 0;
  }
  .bloc_cover_07 {
    padding: 2em 0 4em;
  }
  .bloc_cover_08 {
    padding: 4em 0;
  }
  .bloc_cover_09 {
    padding: 4em 0;
  }
  .content_area_04 {
    flex-direction: column;
    padding: 2em 0 0;
  }
  .nocoo_btn_01, .nocoo_btn_02 {
    width: 100%;
  }
  .store_area {
    padding: 2em;
  }
  .store_01 {
    padding: 0;
  }
}
@media only screen and (max-width: 520px) {
  .section_7:before {
    top: -3em;
  }
}
/*------------------------------------------------*/
/*-------------------SP_416-----------------------*/
/*------------------------------------------------*/
@media only screen and (max-width: 480px) {
  .nocoo_btn_01, .nocoo_btn_02 {
    width: 100%;
  }
  .catch_img_02 {
  	width: 100%;
	align-items: center;
  }
  .inner_0 {
    height: 30vh;
  }
  .toyonaka_map_01{
	width: 100%;
  }
  .mv_garbage_00{
	height: auto;
	display: block; 
  }
  .sab_garbage_00{
	right: 3em;
  }
  .garbage_cover_01, .change_cover_01 {
    width: 100%;
  }
  .section_2:before, .section_4:before {
    top: -0.3em;
  }
  .section_2:after, .section_4:after {
    bottom: -2em;
  }
  .change_cover_01 {
    grid-gap: 2em;
  }
  .osmanthus_item_02, .osmanthus_item_03 {
    width: 60%;
    opacity: 0.6;
    z-index: 0;
  }
  .map_cover_01 {
	width: 100%;	
  }
}
@media only screen and (max-width: 416px) {
  .catch_copy {
    line-height: 1.2em;
    letter-spacing: 0.2em;
    font-size: 2.2em;
  }
  .title_01, .title_02 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-size: 1.2em;
    background-position: center;
    align-items: center;
  }
  .bloc_cover_02 {
    padding: 4em 0;
  }
  .bloc_cover_04, .map_01, .change_02 {
    width: 80%;
  }
  .change_03{
	width: 90%;
  }
  .change_04{
	width: 100%;
  }	
  .bloc_cover_04 {
    padding: 4em 0;
  }
  .section_7:before {
    top: -5em;
    background-size: cover;
  }
  .change_cover_01 {
    width: 100%;
  }
}
/*------------------------------------------------*/
/*------------------------------------------------*/
/*------------------------------------------------*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
::after {
  box-sizing: inherit;
}
button {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  vertical-align: middle;
  text-align: inherit;
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
}
/*------------------------------------------------*/
/*--------------------sns_navi--------------------*/
/*------------------------------------------------*/
@media only screen and (max-width: 1150px) {
  .sab_navi_01 {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 880px) {
  .sab_navi_01 {
    padding: 12px 20px;
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 680px) {
  .sab_navi_01 {
    padding: 12px 24px;
    font-size: 1.8rem;
  }
}
.sns_btn {
  width: 1000px;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 50px;
}
.link_list {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  list-style: none;
  margin-bottom: 0px;
}
.list02 li {
  width: 20%;
  font-size: 100%;
  text-align: center;
}
.list02 li a {
  padding: 10px 20px;
  border: 1px solid;
  margin: 0 10px;
  border-radius: 40px;
  display: block;
  line-height: 1.6;
  font-size: 0.8em;
}
.list02 li:nth-child(1) a {
  background-color: #1DA1F2;
  color: #ffffff;
}
.list02 li:nth-child(2) a {
  background-color: #1877F2;
  color: #ffffff;
}
.list02 li:nth-child(3) a {
  background-color: #DC0000;
  color: #ffffff;
}
.list02 li:nth-child(4) a {
  background-color: #06C755;
  color: #ffffff;
}
@media only screen and (max-width: 896px) {
  .sns_btn {
    width: 94%;
  }
  .list02 li {
    width: 50%;
  }
  .list02 li a {
    font-size: 12px;
    padding: 10px;
    margin: 10px 10px;
  }
}