@charset "UTF-8";
/*-----------------------------------
common
-----------------------------------*/
html {
  font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", YuGothic, "ＭＳ ゴシック", sans-serif;
  color: #595757;
  font-size: 16px;
  width: 100%;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  line-height: 1.43;
  min-height: 100vh;
  height: 100%;
  margin: 0;
  background-color: #fff;
  overflow-x: hidden;
}

/*-----------------------------------
defalut setting
-----------------------------------*/
a {
  text-decoration: none;
  color: #595757;
  -webkit-transition: all .5s;
  transition: all .5s;
}

a:hover {
  opacity: .8;
}

a img {
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

a img:hover {
  opacity: .8;
}

ul, li, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

dl, dt, dt, dd {
  margin: 0;
}

h1, h2, h3, h4, h5, h6, p {
  padding: 0;
  margin: 0;
}

input::-webkit-input-placeholder {
  color: #595757;
}

input:-ms-input-placeholder {
  color: #595757;
}

input::-ms-input-placeholder {
  color: #595757;
}

input::placeholder {
  color: #595757;
}

/* IE */
input:-ms-input-placeholder {
  color: #595757;
}

/* Edge */
input::-ms-input-placeholder {
  color: #595757;
}

.clearfix {
  display: block;
}

.clearfix::before, .clearfix::after {
  content: "";
  display: block;
  clear: both;
}

img {
  width: 100%;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

.pc_none {
  display: none;
}

/*-----------------------------------
parts style
-----------------------------------*/
.page_title {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体";
  font-weight: bold;
  color: #666;
  font-size: 50px;
  position: relative;
  max-width: 1080px;
  width: 95%;
  margin: 200px auto 0;
  letter-spacing: 2px;
}

.page_title::after {
  content: "";
  width: 80px;
  height: 1px;
  background-color: #666;
  position: absolute;
  bottom: -20px;
  left: 0;
}

/*-----------------------------------
page style
-----------------------------------*/
.wrapper {
  width: 100%;
}

#player_bg {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(68, 68, 68, 0.6);
  z-index: 8900;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .5s, visibility .5s;
  transition: opacity .5s, visibility .5s;
  cursor: pointer;
}

#player_bg.show {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity .5s, visibility .5s;
  transition: opacity .5s, visibility .5s;
}

.main_visual {
  width: 100%;
  height: 1100px;
  background-image: url("https://www.shimz.co.jp/machidukuri/images/main_visual_bg.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

.main_visual .catch_copy {
  width: 458px;
  position: absolute;
  left: calc(50% - 229px);
  top: 250px;
}

.main_visual .catch_copy .text {
  width: 458px;
}

.main_visual .catch_copy .play_btn {
  width: 295px;
  margin: 40px auto 0;
  cursor: pointer;
  position: relative;
}

.main_visual .catch_copy .play_btn::before {
  content: "";
  width: 60px;
  height: 60px;
  background-color: #356CB5;
  border-radius: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
}

.main_visual .catch_copy .play_btn::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 17.3px;
  border-color: transparent transparent transparent #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
}

.main_visual #player {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 90vh;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9000;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 1s opacity, 1s visibility;
  transition: 1s opacity, 1s visibility;
}

.main_visual #player.pause {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 1s opacity, 1s visibility;
  transition: 1s opacity, 1s visibility;
}

.main_visual #js-pause_btn {
  position: absolute;
  width: 80px;
  height: 80px;
  right: 0;
  top: calc(50% - 45vh - 25px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9100;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 1s opacity, 1s visibility;
  transition: 1s opacity, 1s visibility;
  background-color: #356CB5;
  border-radius: 100%;
  cursor: pointer;
}

.main_visual #js-pause_btn::before {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  left: 10px;
  top: 38px;
}

.main_visual #js-pause_btn::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #fff;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  position: absolute;
  right: 10px;
  top: 38px;
}

.main_visual #js-pause_btn.show {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 1s opacity, 1s visibility;
  transition: 1s opacity, 1s visibility;
}

.main_visual .animation01 {
  position: absolute;
  max-width: 140px;
  min-width: 42px;
  width: 10vw;
  left: 10.5%;
  top: 10%;
}

.main_visual .animation02 {
  position: absolute;
  max-width: 180px;
  min-width: 54px;
  width: 12.85vw;
  left: 11%;
  top: 27%;
}

.main_visual .animation03 {
  position: absolute;
  max-width: 117px;
  min-width: 35px;
  width: 8.35vw;
  right: 33%;
  top: 1%;
}

.main_visual .animation04 {
  position: absolute;
  max-width: 109px;
  min-width: 33px;
  width: 7.78vw;
  right: 16%;
  top: 19%;
}

.main_visual .animation05 {
  position: absolute;
  max-width: 357px;
  min-width: 108px;
  width: 25.5vw;
  right: 15%;
  bottom: 6%;
}

.main_visual .animation06 {
  position: absolute;
  max-width: 127px;
  min-width: 36px;
  width: 9.07vw;
  right: 0;
  top: 10%;
}

.main_visual .animation07 {
  position: absolute;
  max-width: 111px;
  min-width: 33px;
  width: 7.92vw;
  right: 15%;
  bottom: 25%;
}

.main_visual .animation08 {
  position: absolute;
  max-width: 104px;
  min-width: 31px;
  width: 7.42vw;
  right: 2%;
  bottom: 12%;
}

.main_visual .animation09 {
  position: absolute;
  max-width: 107px;
  min-width: 31px;
  width: 7.64vw;
  left: 15%;
  bottom: 14%;
}

.main_visual .animation10 {
  position: absolute;
  max-width: 134px;
  min-width: 40px;
  width: 9.57vw;
  right: 13%;
  bottom: 39%;
}

.main_visual .animation11 {
  position: absolute;
  max-width: 172px;
  min-width: 52px;
  width: 12.28vw;
  left: 0%;
  bottom: 15%;
}

.main_visual .animation12 {
  position: absolute;
  max-width: 155px;
  min-width: 47px;
  width: 11.07vw;
  left: 8%;
  bottom: 35%;
}

.main_visual .animation13 {
  position: absolute;
  max-width: 350px;
  min-width: 105px;
  width: 25vw;
  right: -2%;
  bottom: 35%;
}

.main_visual .animation14 {
  position: absolute;
  max-width: 129px;
  min-width: 39px;
  width: 9.21vw;
  left: -1%;
  top: 30%;
}

.main_visual .animation15 {
  position: absolute;
  max-width: 135px;
  min-width: 41px;
  width: 9.64vw;
  left: 38%;
  top: -2%;
}

.main_visual .animation16 {
  position: absolute;
  max-width: 128px;
  min-width: 40px;
  width: 9.14vw;
  right: 3%;
  top: 25%;
}

.topics {
  margin: 130px 0 0;
}

.topics_wrap {
  max-width: 960px;
  width: 95%;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.topics_content {
  width: 47%;
  height: 387px;
  position: relative;
  padding: 20px 0;
}

.topics_content::before, .topics_content::after {
  content: "";
  background-image: -webkit-repeating-linear-gradient(315deg, transparent, transparent 4px, #595757 4px, #595757 6px);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 4px, #595757 4px, #595757 6px);
  width: 100%;
  height: 10px;
  position: absolute;
  left: 0;
}

.topics_content::before {
  top: 0;
}

.topics_content::after {
  bottom: 0;
}

.topics_content .topics_title {
  margin: 26px auto 0;
  text-align: center;
  position: relative;
  font-size: 28px;
  color: #666;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体";
  letter-spacing: 1px;
}

.topics_content .topics_title::after {
  content: "";
  background-color: #666;
  width: 65px;
  height: 1px;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 32px);
}

.topics_content .topics_list {
  width: 100%;
  overflow-y: scroll;
  height: 348px;
}

.topics_content .topics_list dl {
  margin: 20px auto 0;
  width: 88%;
}

.topics_content .topics_list dl:first-of-type {
  margin: 50px auto 0;
}

.topics_content .topics_list dt {
  color: #0aa596;
}

.topics_content .topics_list dd a {
  text-decoration: underline;
}

.topics_img {
  width: 47%;
}

.page_link_wrap {
  margin: 110px auto 0;
  max-width: 960px;
  width: 95%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.page_link_content {
  width: 47%;
}

.joinus {
  background-color: #dfeefa;
  margin: 96px 0 0;
  padding: 90px 0;
}

.joinus_content {
  background-color: #fff;
  border-radius: 12px;
  width: 95%;
  max-width: 1013px;
  margin: 0 auto;
  padding: 65px 0;
}

.joinus_content h2 {
  text-align: center;
  margin: 0 auto;
  position: relative;
  font-size: 28px;
  color: #666;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体";
  letter-spacing: 1px;
}

.joinus_content h2::after {
  content: "";
  background-color: #666;
  width: 65px;
  height: 1px;
  position: absolute;
  bottom: -30px;
  left: calc(50% - 32px);
}

.joinus_content p {
  max-width: 807px;
  width: 90%;
  margin: 80px auto 0;
  line-height: 2.18;
}

.joinus_content .contact_btn {
  width: 267px;
  margin: 47px auto 0;
}

/* IE11 */
_:-ms-lang(x)::-ms-backdrop,
.page_link_wrap .btn_link a .detail {
  padding: 12px 0 6px;
}

.library_inner {
  width: 100%;
  max-width: 989px;
  margin: 120px auto 0;
}

.library_content {
  padding-bottom: 80px;
  position: relative;
}

.library_content::after {
  content: "";
  background-image: -webkit-repeating-linear-gradient(315deg, transparent, transparent 4px, #cccccc 4px, #cccccc 6px);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 4px, #cccccc 4px, #cccccc 6px);
  width: 100%;
  height: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.library_content h2 {
  font-size: 22px;
  color: #fff;
  background-color: #53c0b5;
  border-radius: 20px;
  padding: 6px 0 2px;
  text-align: center;
  margin: 120px auto 0;
}

.library_slider {
  margin: 50px auto 0;
  width: 83%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.library_slider .slick-prev {
  width: 40px;
  height: 50px;
  left: -10%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.library_slider .slick-prev::before {
  content: "";
  width: 0;
  height: 0;
  opacity: 1;
  border-style: solid;
  border-width: 25px 40px 25px 0;
  border-color: transparent #c2e8e5 transparent transparent;
  position: absolute;
  left: 0;
  top: 0;
}

.library_slider .slick-next {
  width: 40px;
  height: 50px;
  right: -10%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.library_slider .slick-next::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 40px;
  border-color: transparent transparent transparent #c2e8e5;
  position: absolute;
  right: 0;
  top: 0;
}

.library_slider li div {
  width: 90%;
  margin: 0 auto;
}

.library_slider li span {
  display: block;
  margin: 8px 0 0;
}

.library_wrap {
  width: 80%;
  margin: 50px auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.library_box {
  width: 31.33333%;
}

.library_box span {
  display: block;
  margin: 8px 0 0;
}

.sub_main_visual {
  width: 100%;
  height: 1100px;
  background-color: #e9fccf;
  background-image: url(https://www.shimz.co.jp/machidukuri/images/methodsite/main_visual_bg.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-bottom: 56px;
}

.sub_main_visual .catch_copy {
  max-width: 458px;
  width: 100%;
  position: absolute;
  left: calc(50% - 129px);
  top: 320px;
}

.sub_main_visual .catch_copy .text {
  max-width: 458px;
  width: 100%;
}

.sub_main_visual:after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(https://www.shimz.co.jp/machidukuri/images/methodsite/main_visual_bottom_bg.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  pointer-events: none;
  bottom: -6px;
}

.sub_content_area {
  max-width: 1092px;
  width: 100%;
  margin: auto;
  padding: 0 40px;
}

.sub_content_area .img_content_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 98px;
  padding-bottom: 98px;
  position: relative;
}

.sub_content_area .img_content_list > div {
  width: 100%;
  max-width: 586px;
}

.sub_content_area .img_content_list > div h2 {
  font-family: "Yu Gothic";
  font-size: 40px;
  margin-bottom: 52px;
}

.sub_content_area .img_content_list > div h2:after {
  content: '';
  display: block;
  margin-top: 40px;
  width: 64px;
  border-bottom: 1px solid #666666;
}

.sub_content_area .img_content_list > div p {
  line-height: 2;
}

.sub_content_area .img_content_list > div .detail_link {
  background-color: #54bfb5;
  font-weight: bold;
  border-radius: 50px;
  margin-top: 40px;
  padding: 10px 0;
  position: relative;
  display: inline-block;
  max-width: 196px;
  width: 100%;
  color: #fff;
  text-align: center;
  padding-right: 16px;
}

.sub_content_area .img_content_list > div .detail_link:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
  content: "";
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 22px;
  height: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.sub_content_area .img_content_list > div .detail_link:after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  right: 24px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sub_content_area .img_content_list > img {
  max-width: 386px;
  width: 100%;
  height: 100%;
}

.sub_content_area .img_content_list:nth-child(odd) > div {
  margin-right: 96px;
}

.sub_content_area .img_content_list:nth-child(even) > div {
  margin-left: 96px;
}

.sub_content_area .img_content_list:after {
  content: "";
  background-image: -webkit-repeating-linear-gradient(315deg, transparent, transparent 4px, #ccc 4px, #ccc 6px);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 4px, #ccc 4px, #ccc 6px);
  width: 100%;
  height: 10px;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.link_area {
  max-width: 1012px;
  width: 100%;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

.btn_link {
  display: block;
  width: 460px;
}

.btn_link a {
  display: block;
  color: #fff;
  padding: 60px;
  text-align: center;
  border-radius: 200px;
  height: 256px;
}

.btn_link a .detail {
  font-weight: bold;
  background-color: #fff;
  border-radius: 50px;
  margin-top: 20px;
  padding: 10px 0;
  position: relative;
  display: inline-block;
  max-width: 196px;
  width: 100%;
}

.btn_link a .detail:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
  content: "";
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 22px;
  height: 22px;
  border: 2px solid #2677b9;
  border-radius: 50%;
}

.btn_link a .detail:after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  right: 24px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #2677b9;
  border-right: 2px solid #2677b9;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn_link.blue01 a {
  background-color: #33b6d4;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体";
}

.btn_link.blue01 a .lage_text {
  font-size: 48px;
}

.btn_link.blue01 a .detail {
  color: #33b6d4;
  margin-top: 35px;
}

.btn_link.blue01 a .detail:before {
  border: 2px solid #33b6d4;
}

.btn_link.blue01 a .detail:after {
  border-top: 2px solid #33b6d4;
  border-right: 2px solid #33b6d4;
}

.btn_link.blue02 a {
  background-color: #2677b9;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体";
}

.btn_link.blue02 a .lage_text {
  font-size: 30px;
}

.btn_link.blue02 a .detail {
  color: #2677b9;
}

.btn_link.blue02 a .detail:before {
  border: 2px solid #2677b9;
}

.btn_link.blue02 a .detail:after {
  border-top: 2px solid #2677b9;
  border-right: 2px solid #2677b9;
}

.btn_link.green01 a {
  background-color: #4ec68f;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体";
}

.btn_link.green01 a .lage_text {
  font-size: 48px;
}

.btn_link.green01 a .detail {
  color: #22b274;
  margin-top: 35px;
}

.btn_link.green01 a .detail:before {
  border: 2px solid #22b274;
}

.btn_link.green01 a .detail:after {
  border-top: 2px solid #22b274;
  border-right: 2px solid #22b274;
}

/* IE11 */
_:-ms-lang(x)::-ms-backdrop,
.link_area .btn_link a .detail {
  padding: 12px 0 6px;
}

.method_inner {
  margin: 120px auto 0;
  max-width: 1016px;
  width: 100%;
}

.method_section {
  width: 100%;
  margin: 80px auto 0;
  position: relative;
  padding: 0 0 80px;
}

.method_section::after {
  content: "";
  background-image: -webkit-repeating-linear-gradient(315deg, transparent, transparent 4px, #cccccc 4px, #cccccc 6px);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 4px, #cccccc 4px, #cccccc 6px);
  width: 100%;
  height: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.method_section h2 {
  font-size: 34px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体";
  letter-spacing: 1px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.method_section h2 .strategy {
  font-size: 21px;
  color: #fff;
  background-color: #53c0b5;
  padding: 8px 16px;
  margin: 3px 12px 0 0;
  font-weight: bold;
  border-radius: 20px;
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.method_section h2 .strategy .num {
  font-size: 31px;
}

.method_content_wrap {
  margin: 40px 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.method_content_text {
  width: 63.5%;
}

.method_content_text .main_text {
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 1.2px;
  line-height: 1.9;
}

.method_content_text .main_text + p {
  margin: 20px 0 0;
  line-height: 2.0;
}

.method_content_img {
  width: 29.5%;
}

.method_figure {
  width: 95%;
  margin: 40px auto 0;
}

.method_sp_img {
  display: none;
}

/* IE11 */
_:-ms-lang(x)::-ms-backdrop,
.method_section h2 .strategy {
  padding: 8px 16px 0;
  margin: 0 12px 0 0;
}

.value_inner {
  margin: 120px auto 0;
  padding: 0 40px;
  width: 100%;
  position: relative;
}

.value_inner .side_scroll_navi {
  position: fixed;
  left: 40px;
  top: calc(50% - 25vh);
  width: 4px;
  height: 50vh;
  margin: 90px 0 0;
  background-color: #ccc;
  border-radius: 10px;
  z-index: 2000;
}

.value_inner .side_scroll_navi ul {
  width: 20px;
  height: 20vh;
  position: absolute;
  left: calc(50% - 10px);
  top: calc(50% - 10vh);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.value_inner .side_scroll_navi a {
  width: 20px;
  height: 20px;
  background-color: #ccc;
  border-radius: 100%;
  display: block;
}

.value_inner .side_scroll_navi a.active {
  background-color: #2677b9;
}

.value_inner .side_scroll_navi .side_scroll_text {
  position: absolute;
  right: -35px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #2677b9;
  font-weight: bold;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.value_section {
  width: 100%;
  max-width: 960px;
  margin: 80px auto 0;
  position: relative;
  padding: 0 0 80px;
}

.value_section::after {
  content: "";
  background-image: -webkit-repeating-linear-gradient(315deg, transparent, transparent 4px, #cccccc 4px, #cccccc 6px);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 4px, #cccccc 4px, #cccccc 6px);
  width: 100%;
  height: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.value_section h3 {
  font-size: 31px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体";
  color: #666;
}

.value_section h3 + p {
  margin: 24px 0 0;
  line-height: 1.8;
}

.value_section h3 + p span {
  font-size: 10px;
  margin-left: 12px;
}

.value_section h3 + p + .value_content_title {
  margin: 60px 0 0;
}

.value_section_wrap {
  margin: 0 auto;
}

.value_content_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 60px 0 0;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.value_content_wrap .value_content_box:nth-of-type(n + 3) {
  margin: 48px 0 0;
}

.value_content_box {
  width: 48%;
}

.value_content_box.wide {
  width: 100%;
}

.value_content_box.wide + .value_content_box {
  margin: 48px 0 0;
}

.value_content_box .caption {
  margin: 4px 0 0;
  text-align: right;
}

.value_content_title {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体";
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  padding: 8px 16px;
  background-color: #53c0b5;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.value_content_title.small {
  font-size: 19px;
}

.value_content_title + .value_content_wrap {
  margin: 0;
}

.value_content_img {
  margin: 32px 0 0;
}

.value_content_img img:nth-of-type(2) {
  margin: 24px 0 0;
}

/* IE11 */
_:-ms-lang(x)::-ms-backdrop,
.value_content_title {
  padding: 10px 16px 4px;
}

.visionhdbg {
  width: 100%;
  margin-top: 96px;
  position: fixed;
  top: 0;
  z-index: 990;
}

.vision {
  width: 100%;
  background-image: url(https://www.shimz.co.jp/machidukuri/images/vision/vision_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 250px;
  padding-bottom: 330px;
}

.vision .visioninner {
  width: 80%;
  margin: auto;
}

.vision .visioninner h1 {
  font-size: 50px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体";
  color: #fff;
  line-height: 50px;
  padding-bottom: 53px;
  position: relative;
}

.vision .visioninner h1::after {
  content: '';
  border-bottom: 1px solid #ffffff;
  width: 82px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.vision .visioninner .visioncontent {
  width: 658px;
  margin: 92px auto 0;
}

.vision .visioninner .visioncontent .visionjpti {
  width: 492px;
  margin-bottom: 50px;
}

.vision .visioninner .visioncontent .visionjpti .img {
  width: 100%;
}

.vision .visioninner .visioncontent .visiontxt dl {
  width: 100%;
  color: #fff;
  text-shadow: 6px 6px 10px rgba(37, 127, 194, 0.5);
}

.vision .visioninner .visioncontent .visiontxt dl dt {
  font-size: 21px;
  line-height: 48px;
  margin-bottom: 37px;
}

.vision .visioninner .visioncontent .visiontxt dl dd {
  font-size: 16px;
  line-height: 39px;
}

.vision .visioninner .visioncontent .visiontxt ul {
  width: 100%;
  margin-top: 78px;
}

.vision .visioninner .visioncontent .visiontxt ul li {
  font-size: 22px;
  line-height: 2;
  text-shadow: 3px 3px 20px rgba(37, 127, 194, 0.5);
  color: #ffffff;
}

.visionftrbg {
  width: 100%;
  margin-top: -18vh;
}

footer .visionftr {
  padding-top: 0;
}

.tech_inner {
  margin: 100px auto 0;
  max-width: 989px;
  width: 100%;
  padding-bottom: 130px;
  position: relative;
}

.tech_inner::after {
  content: "";
  background-image: -webkit-repeating-linear-gradient(315deg, transparent, transparent 4px, #cccccc 4px, #cccccc 6px);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 4px, #cccccc 4px, #cccccc 6px);
  width: 100%;
  height: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.tech_section:nth-of-type(2) .tech_link li:first-of-type {
  text-align: left;
}

.tech_section:nth-of-type(2) .tech_link li:first-of-type:hover img {
  -webkit-transition: inherit;
  transition: inherit;
  opacity: 1;
}

.tech_section h2 {
  font-size: 27px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体";
  color: #fff;
  text-align: center;
  background-color: #53c0b5;
  border-radius: 30px;
  padding: 2px 0 0;
  margin: 100px auto 0;
  letter-spacing: 1.2px;
}

.tech_section h2 + .tech_text {
  margin: 40px auto 0;
  padding: 0 40px;
}

.tech_section h3 {
  max-width: 908px;
  width: 100%;
  margin: 40px auto 0;
  position: relative;
}

.tech_section h3::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  background-color: #53c0b5;
  z-index: -1;
}

.tech_section h3 span {
  font-size: 20px;
  font-weight: bold;
  color: #53c0b5;
  background-color: #fff;
  border: 1px solid #53c0b5;
  border-radius: 30px;
  padding: 4px 0 0px;
  margin: 0 auto;
  text-align: center;
  width: 184px;
  display: block;
  margin: 0 auto;
  letter-spacing: 1.2px;
}

.tech_wrap {
  margin: 20px auto 0;
  padding: 0 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.tech_wrap .tech_text {
  width: 63%;
}

.tech_img {
  width: 33%;
}

.tech_text .title {
  font-size: 20px;
  line-height: 1.75;
  font-weight: bold;
}

.tech_text p {
  margin: 20px 0 0;
  line-height: 1.75;
}

.tech_link_wrap {
  width: 100%;
  margin: 50px auto 0;
}

.tech_link_wrap.col3 {
  max-width: 908px;
}

.tech_link_wrap.col3 .tech_link li {
  width: 31.3333%;
}

.tech_link_wrap.col2 {
  max-width: 596px;
}

.tech_link_wrap.col2 .tech_link li {
  width: 48%;
}

.tech_link ul {
  margin: 30px auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.tech_link li {
  text-align: center;
}

.tech_link li span {
  border-bottom: 1px solid transparent;
  -webkit-transition: .5s border, .5s opacity;
  transition: .5s border, .5s opacity;
  line-height: 1.8;
}

.tech_link li:hover span {
  border-bottom: 1px solid #595757;
  -webkit-transition: .5s border, .5s opacity;
  transition: .5s border, .5s opacity;
  opacity: .8;
}

.tech_link li:hover img {
  opacity: .8;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.tech_link img {
  margin-bottom: 8px;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
  opacity: 1;
}

.tech_link img.bdr {
  border: 1px solid #666;
}

.tech_link.center ul {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tech_link .relation_links {
  line-height: 1.8;
  border-bottom: 1px solid transparent;
  -webkit-transition: .5s border, .5s opacity;
  transition: .5s border, .5s opacity;
}

.tech_link .relation_links:hover {
  -webkit-transition: .5s border, .5s opacity;
  transition: .5s border, .5s opacity;
  border-bottom: 1px solid #595757;
}

.tech_link .link_arrow, .tech_link .link_window {
  display: inline-block;
  margin-right: 8px;
  position: relative;
}

.tech_link .link_arrow {
  width: 12px;
  top: 8px;
}

.tech_link .link_window {
  width: 16px;
  top: 10px;
}

/* IE11 */
_:-ms-lang(x)::-ms-backdrop,
.tech_section h2 {
  padding: 10px 0 0;
}

/*-----------------------------------
header
-----------------------------------*/
header {
  height: 98px;
  width: 100%;
  padding: 20px 58px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

header .logo h1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

header .logo img.img_logo {
  width: 57px;
}

header .logo img.img_text {
  width: 292px;
  margin-left: 16px;
}

header .logo img.img_method {
  width: 282px;
}

header .header_nav {
  margin-left: auto;
}

header .header_nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

header .header_nav ul li {
  margin-right: 40px;
  padding: 20px 0;
}

header .header_nav ul li a {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体";
  font-weight: 500;
  font-size: 18px;
}

header .header_nav ul li:last-child {
  margin-right: 0;
}

header .header_nav ul li.js_menu_open {
  position: relative;
}

header .header_nav ul li .mega_menu {
  display: none;
  position: absolute;
  left: -65px;
  top: 55px;
  z-index: 1000;
}

header .header_nav ul li .mega_menu ul {
  width: 190px;
  display: block !important;
  padding-top: 2px;
}

header .header_nav ul li .mega_menu li {
  margin-right: 0;
  background-color: #fff;
  -webkit-transition: background-color .5s;
  transition: background-color .5s;
  padding: 0;
}

header .header_nav ul li .mega_menu li a {
  font-size: 13px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体";
  display: block;
  padding: 12px;
  text-align: center;
  border: 1px solid #7f7f7f;
  border-top: none;
  -webkit-transition: color .5s;
  transition: color .5s;
}

header .header_nav ul li .mega_menu li:first-of-type a {
  border-top: 1px solid #7f7f7f;
}

header .header_nav ul li .mega_menu li:hover {
  background-color: #e5eff7;
}

header .header_nav ul li .mega_menu li:hover a {
  color: #005ead;
}

header .header_nav ul .header_btn_link {
  text-align: center;
}

header .header_nav ul .header_btn_link a {
  display: block;
  color: #fff;
  padding: 13px 0 11px;
  border-radius: 40px;
  font-size: 19px;
  font-weight: normal;
  width: 120px;
  line-height: 1.2;
}

header .header_nav ul .header_btn_link.blue01 {
  letter-spacing: 3px;
}

header .header_nav ul .header_btn_link.blue01 a {
  background-color: #33b6d4;
}

header .header_nav ul .header_btn_link.blue02 {
  margin-right: 16px;
}

header .header_nav ul .header_btn_link.blue02 a {
  background-color: #2677b9;
  font-size: 15px;
  padding: 17px 0 15px;
}

header .header_nav ul .header_btn_link.green01 {
  letter-spacing: 3px;
}

header .header_nav ul .header_btn_link.green01 a {
  background-color: #4ec68f;
}

header .menu_btn {
  display: none;
}

header.bgwhite {
  background-color: #fff;
}

header.methodsite {
  background-color: transparent !important;
}

/* IE11 */
_:-ms-lang(x)::-ms-backdrop,
header .header_nav ul .header_btn_link.blue02 a {
  padding: 17px 0 13px;
}

_:-ms-lang(x)::-ms-backdrop,
header .header_nav ul .header_btn_link.blue01 a {
  padding: 13px 0 8px;
}

_:-ms-lang(x)::-ms-backdrop,
header .header_nav ul .header_btn_link a {
  padding: 13px 0 6px;
}

.drawer {
  display: none;
  opacity: 0;
  visibility: hidden;
}

/*-----------------------------------
footer
-----------------------------------*/
.footer_logo {
  margin: 0 auto;
  width: 334px;
  padding: 130px 0 30px;
}

.copyrights {
  background-image: url("https://www.shimz.co.jp/machidukuri/images/copyright_bg.png");
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 100px 0 20px;
  font-size: 19px;
  letter-spacing: 1px;
}

.copyrights.blue {
  background-image: url("https://www.shimz.co.jp/machidukuri/images/copyright_bg_blue.png");
}

/*-----------------------------------
レスポンシブ
-----------------------------------*/
@media screen and (max-width: 1199px) {
  /*-----------------------------------
common
-----------------------------------*/
  html {
    -webkit-overflow-scrolling: auto;
  }
  /* flame */
  body {
    width: 100%;
    overflow-x: hidden;
  }
  /*-----------------------------------
header
-----------------------------------*/
  header.bgwhite {
    padding: 20px 20px;
  }
  header.bgwhite .menu_btn {
    display: block;
    width: 40px;
    height: 25px;
    margin-left: 22px;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    cursor: pointer;
  }
  header.bgwhite .menu_btn span {
    width: 30px;
    height: 3px;
    background-color: #005eac;
  }
  .drawer {
    width: 100%;
    display: block;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .5s, visibility .5s;
    transition: opacity .5s, visibility .5s;
  }
  .drawer.open {
    opacity: 1;
    visibility: visible;
  }
  .drawer_bg {
    position: absolute;
    height: 100vh;
    width: 100%;
    background: rgba(68, 68, 68, 0.3);
    z-index: 9991;
  }
  .drawer_content {
    background-color: #fff;
    position: relative;
    z-index: 9999;
  }
  .drawer_menu li {
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体";
  }
  .drawer_menu li:hover a {
    background-color: #e5eff7;
    color: #005ead;
    opacity: 1;
  }
  .drawer_menu li.js_accordion {
    cursor: pointer;
    position: relative;
  }
  .drawer_menu li.js_accordion::after {
    content: "";
    width: 18px;
    height: 13px;
    background-image: url("https://www.shimz.co.jp/machidukuri/images/value/menu_arrow.png");
    background-size: cover;
    position: absolute;
    right: 20px;
    top: calc(50% - 7px);
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
  }
  .drawer_menu li.js_accordion.active::after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
  }
  .drawer_menu li.child_menu {
    display: none;
  }
  .drawer_menu li.child_menu a {
    position: relative;
    font-size: 14px;
    padding: 12px 20px 12px 28px;
  }
  .drawer_menu li.child_menu a::before {
    content: "-";
    position: absolute;
    left: 20px;
    top: 11px;
  }
  .drawer_menu a {
    color: #7f7f7f;
    font-size: 18px;
    font-weight: bold;
    display: block;
    padding: 16px 20px;
    border-bottom: 1px solid #7f7f7f;
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体";
  }
  /*-----------------------------------
parts style
-----------------------------------*/
  .tab_none {
    display: none;
  }
  .page_title {
    font-size: 32px;
    text-align: center;
  }
  .page_title::after {
    left: calc(50% - 40px);
  }
  /*-----------------------------------
page style
-----------------------------------*/
  .method_inner {
    margin: 80px auto 0;
    padding: 0 20px;
  }
  .value_inner .side_scroll_navi {
    margin: 0;
    top: calc(50% - 21vh);
    left: 20px;
    height: 42vh;
  }
  .value_inner .side_scroll_navi ul {
    height: 20vh;
    top: calc(50% - 10vh);
    width: 15px;
    left: calc(50% - 8px);
  }
  .value_inner .side_scroll_navi li {
    width: 15px;
    height: 15px;
  }
  .value_inner .side_scroll_navi a {
    width: 15px;
    height: 15px;
  }
  .value_inner .side_scroll_navi .side_scroll_text {
    right: -22px;
    font-size: 12px;
  }
  .visionftrbg {
    margin-top: -8vh;
  }
}

@media screen and (max-width: 800px) {
  body {
    font-size: 14px;
  }
  .pc_none {
    display: block;
  }
  .sp_none {
    display: none;
  }
  /*-----------------------------------
parts style
-----------------------------------*/
  /*-----------------------------------
header style
-----------------------------------*/
  header {
    padding: 20px 29px;
  }
  header .header_nav {
    width: 33%;
    max-width: 170px;
  }
  header .header_nav ul {
    max-width: 260px;
    width: 100%;
    margin: 0 0 0 auto;
  }
  header .header_nav ul li {
    margin-right: 10px;
  }
  header .header_nav ul li:last-child {
    margin-right: 0 !important;
  }
  header .header_nav ul .header_btn_link a {
    padding: 10px 0 8px;
    font-size: 12px;
    width: 80px;
  }
  header .header_nav ul .header_btn_link.blue02 a {
    font-size: 10px;
    padding: 12px 0 10px;
  }
  header .header_nav img {
    max-width: 120px;
    width: 100%;
  }
  header .logo {
    width: 65%;
  }
  header .logo img.img_logo {
    width: 100%;
    max-width: 56px;
  }
  header .logo img.img_text {
    width: calc(100% - 72px);
    max-width: 292px;
  }
  header .logo img.img_method {
    width: 100%;
    max-width: 200px;
  }
  header.bgwhite {
    padding: 0 10px;
    height: 60px;
  }
  header.bgwhite .logo {
    width: auto !important;
  }
  header.bgwhite .logo img.img_method {
    width: 180px;
  }
  header.bgwhite .header_nav {
    width: auto !important;
    max-width: 176px;
  }
  /*-----------------------------------
footer style
-----------------------------------*/
  /*-----------------------------------
page style
-----------------------------------*/
  .main_visual {
    background-repeat: no-repeat;
    background-position: top;
    background-size: 800px;
  }
  .main_visual .catch_copy {
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
    top: 160px;
  }
  .main_visual .catch_copy .text {
    max-width: 338px;
    width: 100%;
    margin: auto;
  }
  .main_visual .catch_copy .play_btn {
    position: relative;
    margin: auto;
    bottom: -270px;
    width: calc(100% - 40px);
  }
  .main_visual #player {
    width: 100%;
    height: 350px;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .main_visual #js-pause_btn {
    width: 60px;
    height: 60px;
    right: 14px;
    top: calc(50% - 20px);
  }
  .main_visual #js-pause_btn::before {
    width: 40px;
    top: 28px;
  }
  .main_visual #js-pause_btn::after {
    width: 40px;
    top: 28px;
  }
  .main_visual .animation01 {
    left: 1%;
  }
  .main_visual .animation02 {
    top: 18%;
  }
  .main_visual .animation03 {
    right: 21%;
    top: 6%;
  }
  .main_visual .animation04 {
    right: 12%;
    top: 12%;
  }
  .main_visual .animation05 {
    top: 45%;
    bottom: inherit;
    right: 10%;
  }
  .main_visual .animation06 {
    right: 0;
  }
  .main_visual .animation07 {
    right: 13%;
    bottom: inherit;
    top: 35%;
  }
  .main_visual .animation08 {
    right: 0;
    bottom: inherit;
    top: 36%;
  }
  .main_visual .animation09 {
    left: 12%;
    bottom: inherit;
    top: 42%;
  }
  .main_visual .animation10 {
    right: 10%;
    top: 21%;
    bottom: inherit;
  }
  .main_visual .animation11 {
    left: -1%;
    bottom: inherit;
    top: 38%;
  }
  .main_visual .animation12 {
    left: 10%;
    bottom: inherit;
    top: 30%;
  }
  .main_visual .animation13 {
    right: 0%;
    bottom: inherit;
    top: 26%;
  }
  .main_visual .animation14 {
    left: -2%;
    top: 24%;
  }
  .main_visual .animation15 {
    left: 24%;
    top: 7%;
  }
  .main_visual .animation16 {
    right: 2%;
    top: 19%;
  }
  .topics_wrap {
    display: block;
  }
  .topics_content {
    width: 100%;
    margin-bottom: 30px;
  }
  .topics_img {
    width: 100%;
  }
  .page_link_wrap {
    display: block;
    margin-top: 30px;
  }
  .page_link_content {
    width: 100%;
    margin-bottom: 30px;
  }
  .joinus {
    margin: 30px 0 0;
    padding: 30px  0;
  }
  .library_inner {
    padding: 0 20px;
    margin: 80px auto 0;
  }
  .library_content h2 {
    font-size: 18px;
    margin: 80px 0 0;
  }
  .library_slider .slick-prev {
    width: 25px;
    height: 30px;
  }
  .library_slider .slick-prev::before {
    border-width: 15px 25px 15px 0;
  }
  .library_slider .slick-next {
    width: 25px;
    height: 30px;
  }
  .library_slider .slick-next::before {
    border-width: 15px 0 15px 25px;
  }
  .sub_content_area {
    padding: 0 20px;
  }
  .sub_content_area .img_content_list {
    display: block;
  }
  .sub_content_area .img_content_list:nth-child(odd) > div {
    margin-right: 0;
    max-width: inherit;
  }
  .sub_content_area .img_content_list:nth-child(even) {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .sub_content_area .img_content_list:nth-child(even) > div {
    margin-left: 0;
    max-width: inherit;
  }
  .sub_content_area .img_content_list > div h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
  }
  .sub_content_area .img_content_list > div h2::after {
    margin: 24px auto 0;
  }
  .sub_content_area .img_content_list > div .detail_link {
    display: block;
    margin: 40px auto 0;
  }
  .sub_content_area .img_content_list > img {
    width: 80%;
    margin: 40px auto 0;
  }
  .sub_main_visual {
    background-image: url("https://www.shimz.co.jp/machidukuri/images/methodsite/main_visual_bg_sp.png");
    height: 100vh;
    max-height: 600px;
  }
  .sub_main_visual .catch_copy {
    display: none;
  }
  .link_area {
    padding: 0 20px;
    display: block;
  }
  .btn_link {
    display: block;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
  .btn_link.blue01 {
    margin: 50px auto 0;
  }
  .btn_link.blue01 a .lage_text {
    font-size: 28px;
  }
  .btn_link.blue01 a .detail {
    margin-top: 0;
  }
  .btn_link.blue02 a .lage_text {
    font-size: 22px;
  }
  .btn_link.green01 a .lage_text {
    font-size: 28px;
  }
  .btn_link.green01 a .detail {
    margin-top: 0;
  }
  .btn_link a {
    padding: 24px 12px;
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .btn_link a .detail {
    margin-top: 0;
  }
  .btn_link a div {
    width: 50%;
  }
  .method_section h2 {
    font-size: 22px;
  }
  .method_section h2 .strategy {
    font-size: 15px;
    height: 35px;
    width: 80px;
    margin: 0 12px 0 0;
  }
  .method_section h2 .strategy .num {
    font-size: 24px;
  }
  .method_section h2 .eng_text {
    width: calc(100% - 92px);
  }
  .method_content_wrap {
    display: block;
  }
  .method_content_text {
    width: 100%;
  }
  .method_content_text .main_text {
    font-size: 16px;
  }
  .method_content_text .main_text br {
    display: none;
  }
  .method_content_img {
    display: none;
  }
  .method_sp_img {
    display: block;
    width: 60%;
    max-width: 400px;
    margin: 40px auto 0;
  }
  .value_inner {
    margin: 90px auto 0;
    padding: 0 20px 0 50px;
  }
  .value_section h3 {
    font-size: 22px;
  }
  .value_section h3 + p span {
    margin-left: 0;
    display: block;
  }
  .value_section h3 + p + .value_content_title {
    margin: 40px 0 0;
  }
  .value_content_title {
    font-size: 18px;
  }
  .value_content_wrap {
    margin: 40px 0 0;
    display: block;
  }
  .value_content_box {
    width: 100%;
    margin: 40px 0 0;
  }
  .vision .visioninner {
    width: 90%;
  }
  .vision .visioninner .visioncontent {
    width: 90%;
    margin: 60px 0 0 10%;
  }
  .vision .visioninner .visioncontent .visionjpti {
    width: 70%;
  }
  .visionhdbg {
    margin-top: 59px;
  }
  .visionftrbg {
    margin-top: -9vh;
  }
  .tech_inner {
    margin: 80px auto 0;
    padding: 0 20px 130px;
  }
  .tech_section h2 {
    font-size: 18px;
    margin: 80px auto 0;
  }
  .tech_section h2 + .tech_text {
    padding: 0;
    margin: 30px auto 0;
  }
  .tech_section h3 span {
    font-size: 18px;
  }
  .tech_wrap {
    display: block;
    padding: 0;
  }
  .tech_wrap .tech_text {
    width: 100%;
  }
  .tech_img {
    width: 100%;
  }
  .tech_text {
    margin: 40px auto 0;
  }
  .tech_text .title {
    font-size: 18px;
  }
  .tech_text .title br {
    display: none;
  }
  .tech_text p {
    margin: 12px 0 0;
  }
  .tech_link ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 75%;
    margin: 10px auto 0;
  }
  .tech_link li {
    margin: 40px auto 0;
  }
  .tech_link li:first-of-type {
    margin: 30px auto 0;
  }
  .tech_link img.bdr {
    border: 1px solid #666;
  }
  .tech_link_wrap {
    margin: 30px auto 0;
  }
  .tech_link_wrap.col3 .tech_link li {
    width: 100%;
  }
  .tech_link_wrap.col2 .tech_link li {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  header.bgwhite .logo img.img_method {
    width: 125px;
  }
  header.bgwhite .header_nav ul .header_btn_link.blue01 {
    margin-right: 8px;
  }
  header.bgwhite .menu_btn {
    margin-left: 10px;
  }
  .main_visual {
    height: 900px;
  }
  .main_visual .animation02 {
    top: 20%;
    left: 5%;
  }
  .main_visual .animation03 {
    top: 8%;
  }
  .main_visual .animation04 {
    right: 10%;
    top: 15%;
  }
  .main_visual .animation05 {
    top: 57%;
  }
  .main_visual .animation06 {
    top: 13%;
  }
  .main_visual .animation07 {
    top: 48%;
  }
  .main_visual .animation08 {
    top: 46%;
  }
  .main_visual .animation09 {
    left: 14%;
    top: 52%;
  }
  .main_visual .animation10 {
    top: 30%;
  }
  .main_visual .animation11 {
    top: 48%;
  }
  .main_visual .animation12 {
    left: 5%;
    top: 38%;
  }
  .main_visual .animation13 {
    top: 35%;
  }
  .main_visual .animation14 {
    top: 29%;
  }
  .main_visual .animation16 {
    top: 23%;
  }
  .btn_link.blue01 a .lage_text {
    font-size: 20px;
  }
  .btn_link.blue01 a .detail {
    font-size: 12px;
  }
  .btn_link.blue01 a p {
    font-size: 11px;
  }
  .btn_link.blue02 a .lage_text {
    font-size: 18px;
  }
  .btn_link.blue02 a .detail {
    font-size: 12px;
  }
  .btn_link.green01 a .lage_text {
    font-size: 20px;
  }
  .btn_link.green01 a .detail {
    font-size: 12px;
  }
  .btn_link.green01 a p {
    font-size: 11px;
  }
  .btn_link a .detail::before {
    right: 10px;
    width: 18px;
    height: 18px;
  }
  .btn_link a .detail::after {
    right: 17px;
    width: 6px;
    height: 6px;
  }
  .page_title {
    margin: 150px auto 0;
  }
  .vision {
    background-image: url(https://www.shimz.co.jp/machidukuri/images/vision/vision_spbg.jpg);
  }
  .vision .visioninner {
    width: 90%;
  }
  .vision .visioninner h1 {
    text-align: center;
  }
  .vision .visioninner h1::after {
    width: 12%;
    left: 44%;
    right: 44%;
  }
  .vision .visioninner .visioncontent {
    width: 90%;
  }
  .vision .visioninner .visioncontent .visionjpti {
    width: 80%;
  }
  .vision .visioninner .visioncontent .visiontxt dl dt {
    margin-bottom: 52px;
    font-size: 18px;
    line-height: 40px;
  }
  .vision .visioninner .visioncontent .visiontxt ul li {
    line-height: 40px;
    font-size: 18px;
  }
  .visionftrbg {
    margin-top: -45px;
  }
  footer .visionftr {
    padding-top: 70px;
  }
}

@media screen and (max-width: 400px) {
  header {
    padding: 10px 20px 20px;
    height: 78px;
  }
  header .logo {
    width: auto;
  }
  header .logo img.img_logo {
    max-width: 28px;
  }
  header .logo img.img_text {
    margin-left: 8px;
    max-width: 146px;
    width: calc(100% - 42px);
  }
  header .header_nav {
    width: auto;
  }
  .main_visual {
    height: 600px;
    background-size: 440px;
  }
  .main_visual .catch_copy {
    top: 90px;
  }
  .main_visual .catch_copy .text {
    max-width: 190px;
  }
  .main_visual .catch_copy .play_btn {
    bottom: -160px;
  }
  .main_visual .animation02 {
    top: 18%;
    left: 7%;
  }
  .main_visual .animation05 {
    top: 49%;
  }
  .main_visual .animation07 {
    top: 43%;
    right: 17%;
  }
  .main_visual .animation08 {
    top: 42%;
  }
  .main_visual .animation09 {
    left: 18%;
    top: 42%;
  }
  .main_visual .animation11 {
    top: 42%;
  }
  .main_visual .animation12 {
    left: 8%;
    top: 33%;
  }
  .main_visual .animation14 {
    top: 25%;
  }
  .topics {
    margin: 60px 0 0;
  }
  .footer_logo {
    width: 167px;
  }
  .copyrights {
    font-size: 14px;
  }
  .vision {
    padding-top: 250px;
    padding-bottom: 180px;
  }
  .vision .visioninner .visioncontent .visionjpti {
    width: 100%;
  }
  .vision .visioninner .visioncontent {
    margin: 60px auto 0;
  }
  .vision .visioninner .visioncontent .visiontxt dl dd {
    font-size: 15px;
    line-height: 33px;
  }
  .vision .visioninner .visioncontent .visiontxt ul {
    margin-top: 48px;
  }
  .vision .visioninner .visioncontent .visiontxt ul li {
    line-height: 28px;
  }
}
