@charset "UTF-8";

.posting_main_v {
  position: relative;
}

.posting_main_v img {
  width: 100vw;
}

.posting_main_v_txt {
  display: block;
  padding: 50px 80px;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  text-align: center;
}

.posting_main_v_txt h2 {
  display: inline-block;
  font-size: 60px;
  line-height: 1.5;
  text-align: justify;
}

.posting_main_v_txt h2 span {
  font-size: 72px;
}

.posting_main_v_txt h2 .yellow::before {
  bottom: 0;
}

/* モリオカの強み */

.posting_point_top {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.posting_point_top img {
  width: 300px;
}

.posting_point_top h3 {
  font-size: 40px;
  line-height: 1.8;
  position: relative;
  left: 25px;
}

.posting_point_top h3 .yellow::before {
  bottom: -7px;
}

.posting_point_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  color: #de0000;
  max-width: 1400px;
  margin: 100px auto;
  gap: 25px;
  font-family: "Noto Sans JP", sans-serif;
}

.posting_point_list li {
  border: 3px solid #de0000;
  height: 300px;
  border-radius: 20px;
}

.posting_point_list li .title {
  display: block;
  font-size: 28px;
  background-image: url(../img/posting/point_back.png);
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  margin: 0 auto;
  width: 250px;
  padding: 5px 0 9px;
  font-weight: bold;
}

.posting_point_list li h4 {
  font-size: 24px;
  line-height: 1.8;
  position: relative;
  top: calc(50% - 28px);
  transform: translateY(-50%);
}

.posting_point_list li .small {
  color: #000;
  font-size: 16px;
  font-weight: 400;
}

.posting_v_img {
  width: 100vw;
}

/* PR */

.pr {
  text-align: center;
  margin: 100px auto;
}

.pr h3 {
  font-size: 72px;
  line-height: 1.5;
}

.pr h3 .yellow::before {
  bottom: 0;
}

.pr_h_bottom {
  font-size: 48px;
}

.pr_h p {
  color: #de0000;
  font-size: 28px;
  font-weight: bold;
}

.pr_txt {
  line-height: 1.8;
}

.pr_txt h4 {
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.pr_txt h4 span {
  color: #6b96bf;
  font-size: 48px;
}

.pr_txt h5 {
  font-size: 28px;
}

.pr_txt h5 span {
  color: #6b96bf;
}

.pr_txt p {
  font-size: 18px;
  line-height: 1.8;
  margin-top: 25px;
}

/*  会社概要 */

.posting_company {
  padding: 100px 0;
  width: 900px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
}

.posting_company h3 {
  font-size: 48px;
  text-align: center;
}

.posting_company dl {
  display: flex;
  flex-direction: column;
  margin: 50px auto;
  font-size: 18px;
  border-bottom: 1px solid #000;
}

.posting_company dl div {
  display: flex;
  align-items: center;
  padding: 25px 0;
  border-top: 1px solid #000;
}

.posting_company dl div dt {
  width: 200px;
  padding-left: 25px;
}

.posting_company dl div dd {
  line-height: 1.8;
}

/* ポスティングエリア */

.posting_area_top h3 {
  font-size: 48px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.left_txt {
  font-size: 18px;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
  padding: 25px 12.5px 0;
}

.posting_map {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 100px auto;
  max-width: 1000px;
}

/* 吹き出しcss */

.hukidashi {
  position: relative;
  display: inline-block;
  width: 150px;
  margin-right: 20px;
  padding: 16px 0;
  border: 3px solid #de0000;
  border-radius: 5px;
  background-color: #ffffff;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  color: #de0000;
  font-family: "Noto Sans JP", sans-serif;
}

.hukidashi::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #de0000;
  translate: 100% -50%;
}

.hukidashi::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  border-style: solid;
  border-width: 6.6px 0 6.6px 13.3px;
  border-color: transparent transparent transparent #ffffff;
  translate: 100% -50%;
}

/* 配布エリア グリッド css */

.parent {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(9, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  font-family: "Noto Sans JP", sans-serif;
  border: 3px solid #6b96bf;
  border-radius: 20px;
  font-size: 24px;
}

.parent div {
  padding: 12.5px;
}

.parent .center {
  display: flex;
  align-items: center;
  gap: 12.5px;
}

.back_blue {
  background-color: #6b96bf;
  color: #fff;
  font-weight: bold;
  padding: 3px 10px 5px;
  border-radius: 3px;
}

.grid_big {
  font-size: 28px;
}

.bdr_r {
  border-right: 2px solid #6b96bf;
}

.dot_btm {
  border-bottom: 2px dotted #6b96bf;
}

.div1 {
  grid-area: 1 / 1 / 2 / 5;
  text-align: center;
  background-color: #6b96bf;
  color: #fff;
  border-right: 2px solid #fff;
  border-top-left-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.div2 {
  grid-area: 1 / 5 / 2 / 6;
  text-align: center;
  background-color: #6b96bf;
  color: #fff;
  border-top-right-radius: 15px;
}

.div2 span {
  font-size: 16px;
}

.div3 {
  grid-area: 2 / 1 / 9 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.div4 {
  grid-area: 9 / 1 / 10 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.div5 {
  grid-area: 2 / 2 / 3 / 5;
}

.div6 {
  grid-area: 2 / 5 / 3 / 6;
  justify-content: end;
}

.div7 {
  grid-area: 3 / 2 / 4 / 5;
}

.div8 {
  grid-area: 3 / 5 / 4 / 6;
  justify-content: end;
}

.div9 {
  grid-area: 4 / 2 / 5 / 5;
}

.div10 {
  grid-area: 4 / 5 / 5 / 6;
  justify-content: end;
}

.div11 {
  grid-area: 5 / 2 / 6 / 5;
}

.div12 {
  grid-area: 5 / 5 / 6 / 6;
  justify-content: end;
}

.div13 {
  grid-area: 6 / 2 / 7 / 5;
}

.div14 {
  grid-area: 6 / 5 / 7 / 6;
  justify-content: end;
}

.div15 {
  grid-area: 7 / 2 / 8 / 5;
}

.div16 {
  grid-area: 7 / 5 / 8 / 6;
  justify-content: end;
}

.div17 {
  grid-area: 8 / 2 / 9 / 5;
}

.div18 {
  grid-area: 8 / 5 / 9 / 6;
  justify-content: end;
}

.div19 {
  grid-area: 9 / 2 / 10 / 5;
}

.div20 {
  grid-area: 9 / 5 / 10 / 6;
  justify-content: end;
}

/* 配布エリア グリッド css END */

.map_img_wrap {
  display: flex;
  justify-content: center;
}

.map_img_wrap img:nth-child(2) {
  width: 400px;
  align-self: center;
}

.map_img_wrap img:first-child,
.map_img_wrap img:nth-child(3) {
  width: 300px;
  height: 100%;
}

.map_img_wrap img:first-child {
  align-self: flex-start;
}

.map_img_wrap img:nth-child(3) {
  position: relative;
  top: 100%;
  align-self: flex-end;
}

/* マップ下テキスト */

.map_bottom_txt {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 100px;
}

.map_bottom_txt h4 {
  font-size: 28px;
  line-height: 1.8;
  margin: 50px auto;
  font-weight: 400;
}

.map_bottom_txt h4 .yellow::before {
  bottom: -7px;
  height: 25px;
}

.map_bottom_txt p {
  font-size: 20px;
  line-height: 1.8;
}

.map_bottom_txt p span {
  font-weight: bold;
}

.map_bottom_txt ul {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  margin: 25px auto;
}

.map_bottom_txt ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.map_bottom_txt ul li img {
  width: 30px;
}

.kome {
  font-size: 16px !important;
}

/* サービスの流れ */

.posting_flow_top {
  font-size: 36px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

.posting_flow_top h3 {
  font-weight: 400;
  line-height: 1.8;
  text-align: left;
  display: inline-block;
  position: relative;
}

.posting_flow_top h3 .small {
  font-size: 28px;
  margin-left: 7px;
}

.posting_flow_top h3 .big {
  font-size: 60px;
}

.posting_flow_top h3 .yellow::before {
  height: 25px;
  bottom: 2px;
}

.posting_flow_top h3 img {
  width: 250px;
  position: absolute;
  right: -50px;
  bottom: 12.5px;
}

.posting_service_flow {
  display: flex;
  justify-content: left;
  gap: 25px;
  margin: 50px auto;
  max-width: 1000px;
}

.posting_service_flow .hukidashi {
  font-size: 28px;
  height: 114px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.posting_service_flow img {
  width: 750px;
}

.posting_service_flow_bottom {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin: 50px auto 100px;
  max-width: 1000px;
}

.haihu_wrap {
  display: flex;
  gap: 25px;
  font-family: "Noto Sans JP", sans-serif;
  align-items: center;
}

.haihu_wrap h5 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 12.5px;
}

.haihu_wrap h5 span {
  font-size: 36px;
  color: #de0000;
}

.haihu_wrap p {
  line-height: 1.5;
}

.min_price_wrap {
  justify-content: flex-start;
}

.min_price_wrap .hukidashi {
  padding: 34px 0;
}

.min_price_wrap h4 {
  font-size: 24px;
}

.min_price {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* 価格表 */

.posting_cost {
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  margin-bottom: 100px;
}

.posting_cost h3 {
  font-size: 36px;
  font-weight: 400;
}

.posting_cost_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px auto;
  gap: 25px;
}

.posting_cost_wrap h4 {
  font-weight: 400;
  font-size: 24px;
}

.posting_cost_wrap_flex {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 12.5px;
}

.posting_cost_wrap_flex p {
  font-size: 20px;
}

.posting_cost_wrap_flex .red {
  font-size: 72px !important;
  line-height: 0.7;
  color: #de0000;
}

.posting_cost_wrap_flex .red span {
  font-size: 24px !important;
  position: relative;
  bottom: 3px;
  margin-left: 5px;
  font-weight: bold;
}

.posting_cost_wrap img {
  width: 200px;
}

.posting_cost_bottom_txt {
  font-size: 20px;
  line-height: 1.8;
}

/* お問い合わせ */

.posting_contact h3 {
  font-size: 48px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin-bottom: 100px;
}

.posting_contact .top_txt {
  width: 728px;
  margin: 0 auto;
  line-height: 1.8;
  text-align: center;
}

.posting_contact .top_txt p {
  text-align: left;
  font-size: 16px;
}

.posting_contact .wpcf7 {
  width: 770px;
  margin: 0 auto 2.5em !important;
  border: unset;
  background-color: unset;
}

.posting_contact .wpcf7 form {
  font-size: 16px !important;
}

.posting_contact .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
}

.posting_contact .wpcf7 input,
.posting_contact .wpcf7 textarea {
  margin-top: 5px;
}

.wpcf7-acceptance {
  display: flex;
  justify-content: center;
}

.wpcf7-acceptance span {
  margin: 0;
}

.posting_contact .period p {
  display: flex;
  align-items: center;
  gap: 12.5px;
}

.posting_contact .period p span {
  width: 100%;
}

.wpcf7 form.sent .wpcf7-response-output {
  line-height: 1.8;
  font-size: 16px;
}

@media screen and (max-width:767px) {

  .posting_main_v img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }

  .posting_main_v_txt {
    padding: 50px 5%;
    width: 90%;
    margin: 0 auto;
  }

  .posting_main_v_txt h2 {
    font-size: 16px;
  }

  .posting_main_v_txt h2 .yellow::before {
    bottom: -3px;
  }

  .posting_main_v_txt h2 span {
    font-size: 24px;
  }

  /* モリオカの強み */

  .posting_point_top {
    flex-direction: column;
  }

  .posting_point_top .img_wrap {
    display: flex;
    margin-top: 12.5px;
  }

  .posting_point_top .img_wrap img {
    width: 50%;
  }

  .posting_point_top h3 {
    font-size: 20px;
    padding: 0 5%;
    text-align: justify;
    left: auto;
  }

  .posting_point_top h3 .yellow::before {
    bottom: -5px;
  }

  .posting_point_list {
    display: flex;
    flex-direction: column;
    padding: 0 5%;
    margin: 50px auto;
  }

  .posting_point_list li {
    height: 250px;
  }

  .posting_point_list li h4 {
    font-size: 20px;
  }

  .posting_point_list li .small {
    font-size: 14px;
  }

  /* PRテキスト */

  .pr {
    margin: 50px auto;
  }

  .pr h3 {
    font-size: 28px;
  }

  .pr_h_bottom {
    font-size: 20px;
  }

  .pr_h p {
    font-size: 14px;
    margin-top: 12.5px;
  }

  .pr_txt h4 {
    font-size: 20px;
  }

  .pr_txt h4 span {
    font-size: 28px;
  }

  .pr_txt h5 {
    font-size: 20px;
    padding: 0 5%;
    text-align: justify;
    margin-top: 25px;
  }

  .pr_txt p {
    font-size: 14px;
    margin-top: 25px;
    text-align: justify;
    padding: 0 5%;
  }

  /* 会社概要 */

  .posting_company {
    width: 90%;
    padding: 50px 5%;
  }

  .posting_company h3 {
    font-size: 28px;
  }

  .posting_company dl {
    font-size: 14px;
  }

  .posting_company dl div dt {
    width: 90px;
    padding-left: 0;
  }

  /* ポスティング配布エリア */

  .posting_area_top h3 {
    font-size: 28px;
    line-height: 1.8;
    padding-top: 50px;
  }

  .posting_map {
    flex-direction: column;
    margin: 50px auto;
  }

  .posting_map_left {
    display: flex;
    margin: 0 20px;
    align-items: baseline;
  }

  .parent {
    width: 90% !important;
    margin: 0 5% !important;
    font-size: 14px !important;
  }

  .parent div {
    padding: 5px;
  }

  .grid_big {
    font-size: 18px !important;
  }

  .back_blue {
    padding: 3px 5px 5px !important;
  }

  .left_txt {
    padding: 12.5px 0 0 12.5px;
  }

  /* 吹き出しcss */

  .hukidashi {
    font-size: 28px;
  }

  .hukidashi_bottom {
    position: relative;
    display: inline-block;
    width: 84px;
    margin-bottom: 20px;
    padding: 16px;
    border: 3px solid #de0000;
    border-radius: 5px;
    background-color: #ffffff;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
    color: #de0000;
    font-family: "Noto Sans JP", sans-serif;
  }

  .hukidashi_bottom::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 20px 10px 0 10px;
    border-color: #de0000 transparent transparent;
    translate: -50% 100%;
  }

  .hukidashi_bottom::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 13.3px 6.6px 0 6.6px;
    border-color: #ffffff transparent transparent;
    translate: -50% 100%;
  }

  .map_bottom_txt ul {
    flex-direction: column;
    align-items: unset;
  }

  .map_bottom_txt ul li {
    justify-content: left;
  }

  .map_img_wrap img:nth-child(2) {
    width: 60%;
  }

  .map_img_wrap {
    flex-direction: column;
  }

  .map_illust_img {
    display: flex;
  }

  .map_illust_img img {
    margin-top: 25px;
    width: 50% !important;
  }

  .map_bottom_txt {
    text-align: justify;
    margin: 50px 20px;
  }

  .map_bottom_txt h4 {
    font-size: 20px;
  }

  .map_bottom_txt h4 .yellow::before {
    bottom: -5px;
    height: 15px;
  }

  .posting_flow {
    margin: 0 20px;
  }

  .posting_flow_top {
    font-size: 20px;
  }

  .posting_flow_top h3 .big {
    font-size: 24px;
  }

  .posting_flow_top h3 .yellow::before {
    height: 15px;
    bottom: 0;
  }

  .posting_flow_top h3 .small {
    font-size: 16px;
  }

  .posting_flow_top h3 img {
    position: static;
    display: block;
    margin: 25px auto 0;
  }

  .posting_service_flow {
    flex-direction: column;
  }

  .posting_service_flow_bottom {
    flex-direction: column;
    margin: 50px auto;
  }

  .posting_service_flow img {
    width: 100%;
  }

  .hukidashi_service {
    font-size: 24px;
    width: 108px;
    height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .haihu_wrap {
    gap: 12.5px;
  }

  .haihu_wrap h5 span {
    font-size: 28px;
    line-height: 1.5;
  }

  .min_price_wrap {
    justify-content: flex-start;
    margin-bottom: 100px;
    align-items: flex-start;
  }

  .min_price_wrap .hukidashi {
    padding: 28px 0;
  }

  .min_price_wrap h4 {
    font-size: 20px;
  }

  .min_price {
    flex-direction: column;
  }

  .min_price h5 {
    font-size: 20px;
  }

  .min_price h5 span {
    font-size: 24px;
  }

  .min_price img {
    width: 80%;
  }

  /* 価格表 */

  .posting_cost h3 {
    font-size: 28px;
  }

  .posting_cost_wrap {
    gap: 0;
  }

  .posting_cost_wrap h4 {
    font-size: 16px !important;
  }

  .posting_cost_wrap img {
    width: 180px;
  }

  .posting_cost_wrap_flex p {
    font-size: 16px;
  }

  .posting_cost_wrap_flex .red {
    font-size: 48px !important;
  }

  .posting_cost_wrap_flex .red span {
    font-size: 16px !important;
  }

  .posting_cost_bottom_txt {
    font-size: 16px;
    text-align: justify;
    margin: 0 20px;
  }

  /* お問い合わせ */

  .posting_contact h3 {
    font-size: 28px;
    margin: 50px 0;
  }

  .posting_contact .top_txt {
    width: calc(100% - 3em);
    padding: 0 1.5em;
  }

  .posting_contact .wpcf7 {
    width: 100%;
  }

  .posting_contact .period p {
    display: flex;
    align-items: center;
    gap: 12.5px;
  }

  .posting_contact .period p span {
    width: 100%;
  }

  .wpcf7 form.sent .wpcf7-response-output {
    text-align: justify;
  }
}

@media screen and (min-width:768px) and (max-width:1100px) {

  .posting_main_v img {
    width: 100%;
  }

  .posting_main_v_txt h2 span {
    font-size: 48px;
  }

  .posting_main_v_txt h2 {
    font-size: 36px;
  }

  .posting_main_v_txt h2 .yellow::before {
    bottom: -3px;
  }

  .posting_point_top h3 {
    font-size: 24px;
    left: 12.5px;
  }

  .posting_point_top img {
    width: 150px;
  }

  .posting_point_list {
    grid-template-columns: repeat(2, 1fr);
    margin: 50px 20px;
  }

  .tab {
    display: none;
  }

  /* PR */

  .pr {
    margin: 100px 20px;
  }

  .pr h3 {
    font-size: 48px;
  }

  .pr_txt p {
    font-size: 16px;
  }

  .pr_h_bottom {
    font-size: 36px;
  }

  /* 会社概要 */

  .posting_company {
    width: calc(100% - 40px);
    padding: 100px 20px;
  }

  /* ポスティング配布エリアのご案内 */

  .posting_area_top h3 {
    font-size: 36px;
    margin-top: 100px;
  }

  .posting_map {
    padding: 0 20px;
  }

  .hukidashi {
    font-size: 28px;
    width: 116px;
  }

  .parent {
    font-size: 20px;
  }

  .grid_big {
    font-size: 24px;
  }

  .map_img_wrap {
    padding: 0 20px;
  }

  .map_img_wrap img:nth-child(2) {
    width: 300px;
  }

  .map_img_wrap img:first-child,
  .map_img_wrap img:nth-child(3) {
    width: 230px;
  }

  .map_bottom_txt h4 {
    font-size: 24px;
  }

  .map_bottom_txt h4 .yellow::before {
    bottom: -5px;
    height: 20px;
  }

  .map_bottom_txt ul {
    font-size: 16px;
  }

  .map_bottom_txt ul li img {
    width: 25px;
  }

  /* サービスの流れ */

  .posting_flow_top {
    font-size: 24px;
  }

  .posting_flow_top h3 .small {
    font-size: 20px;
  }

  .posting_flow_top h3 .big {
    font-size: 36px;
  }

  .posting_flow_top h3 .yellow::before {
    height: 20px;
    bottom: -3px;
  }

  .posting_flow_top h3 img {
    width: 180px;
    right: -25px;
    bottom: 0;
  }

  .posting_service_flow {
    margin: 50px 20px;
  }

  .posting_service_flow .hukidashi {
    font-size: 24px;
    width: 116px;
    height: 84px;
  }

  .posting_service_flow img {
    width: calc(100% - 167px);
  }

  .posting_service_flow_bottom {
    gap: 25px;
    margin: 50px 20px;
  }

  .haihu_wrap h5 span {
    font-size: 28px;
  }

  .haihu_wrap .right {
    width: calc(100% - 167px);
  }

  .min_price_wrap {
    justify-content: flex-start;
    margin-bottom: 100px;
  }

  .min_price_wrap .hukidashi {
    padding: 28px 0;
  }

  .min_price_wrap h4 {
    font-size: 20px;
  }

  .min_price img {
    width: 30%;
  }

  /* お問い合わせ */

  .posting_contact h3 {
    margin: 100px 0;
  }
}

@media screen and (min-width:1101px) and (max-width:1500px) {

  .tab {
    display: none;
  }

  .posting_point_list {
    margin: 100px 20px;
  }

  .posting_point_list li h4 {
    font-size: 20px;
  }

}