/* 共通 */
:root {
  --main-color: #333333;
  --nett-color: #fff4fb;
  --nettpack-color: #f2fbff;
  --btn-color: #fff;
}

.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-transform: none;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

  -moz-osx-font-smoothing: grayscale;

  font-feature-settings: "liga";
}

.material-icons.md-60 {
  font-size: 60px;
}
.material-icons.md-24 {
  font-size: 24px;
}
/* 幅指定ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

.width_wrap {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

/* 共通項目ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
html {
  color: #333333;
  scroll-behavior: smooth;
}

.container {
  overflow: hidden;
}

img {
  max-width: 100%;
  margin: 0 auto;
  height: auto;
  vertical-align: top;
}

a {
  text-decoration: none;
  display: inline-block;
  transition: 0.5s;
  cursor: pointer;
  color: #fff;
}

a[href^="tel:"] {
  pointer-events: none;
}

a:hover {
  opacity: 0.7;
}

.green_link {
  color: #0f797f;
  text-decoration: underline;
}

.weight {
  font-weight: bold;
  color: #000;
}

.br_sp {
  display: none;
}

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

.nettpackcolor_wrap {
  background-color: var(--nettpack-color);
}

.nettcolor_wrap {
  background-color: var(--nett-color);
}

/* ヘッダーリストーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

.container header .header_list a {
  color: #333333;
}

header .header_list .header-list_title {
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .header_list .header-list_title p {
  padding-right: 10px;
}

.header_list .header_box {
  display: flex;
  align-items: center;
  justify-content: space-around;
  cursor: pointer;
}

.header_list .header_box a {
  display: inline-block;
  position: relative;
  padding: 5px;
  margin: 5px;
}
.header_list .header_box a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}

.header_list .header_box a:hover::after {
  transform: scale(1, 1);
}

.container header .header_list {
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 40px;
  padding-right: 40px;
  background-color: #fafafa;
  width: 100%;
}

.fixedWidget {
  position: fixed;
  top: 0px;
}

.hamburger {
  display: none;
}

@media screen and (max-width: 415px) {
  .hamburger {
    display: block;
    position: fixed;
    z-index: 100000;
    right: 13px;
    top: 6px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
  .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #555;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 10px;
  }
  .hamburger span:nth-child(2) {
    top: 20px;
  }
  .hamburger span:nth-child(3) {
    top: 30px;
  }

  /* ナビ開いてる時のボタン */
  .hamburger.active {
    transition: all 0.3s ease-in-out;
    transition-delay: 0.6s;
    transform: rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    width: 0px;
  }
  .hamburger.active span:nth-child(1),
  .hamburger.active span:nth-child(3) {
    transition-delay: 0.3s;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(4px);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-16px) rotate(90deg);
  }
}

@media screen and (max-width: 321px) {
  .hamburger {
    right: 3px;
  }
}

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

.footer {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #fafafa;
  color: #666666;
}

@media screen and (max-width: 415px) {
  .footer {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
/* ユーザーアイコン ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.user_icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid #cccccc;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 150%;
}

/* アニメーションボタンーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
.btn_common_wrap {
  width: 400px;
  height: 60px;
  display: block;
  perspective: 500px;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
}

.btn_common_wrap:hover {
  opacity: 1;
}

.btn_common_wrap .btn_common {
  position: absolute;
  text-align: center;
  width: 100%;
  height: 50px;
  padding: 10px;
  pointer-events: none;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.btn_common_wrap .btn_common:nth-child(1) {
  color: #ffffff;
  background-color: #fff;
  transform: rotateX(90deg);
  -webkit-transform: rotateX(90deg);
  -moz-transform: rotateX(90deg);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transform-origin: 50% 50% -25px;
  -webkit-transform-origin: 50% 50% -25px;
  -moz-transform-origin: 50% 50% -25px;
}

.btn_common_wrap .btn_common:nth-child(2) {
  color: #ffffff;
  background-color: #0f797f;
  transform: rotateX(0deg);
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transform-origin: 50% 50% -25px;
  -webkit-transform-origin: 50% 50% -25px;
  -moz-transform-origin: 50% 50% -25px;
}

.btn_common_wrap:hover .btn_common:nth-child(1) {
  color: #ffffff;
  background-color: #0f797f;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transform: rotateX(0deg);
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
}

.btn_common_wrap:hover .btn_common:nth-child(2) {
  background-color: #000000;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transform: rotateX(-90deg);
  -webkit-transform: rotateX(-90deg);
  -moz-transform: rotateX(-90deg);
  color: #0f797f;
}

.btn_regdbtn_color:hover .btn_common:nth-child(2) {
  color: #e5721f;
}

.btn_common {
  font-size: 18px;
  color: #fff;
  border-radius: 3px;
  width: 100%;
  height: 100%;
  padding-top: 17px;
  padding-bottom: 17px;
}

.orangebtn {
  background-color: #e5721f !important;
}

.btn_common_wrap .greenbtn {
  background-color: #00797f;
}

.form_btn {
  display: inline-block;
  width: 350px;
  height: 50px;
  margin: 0 auto;
}

.form_btn .btn_common {
  padding-top: 10px;
  padding-bottom: 10px;
}

.btn_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.btn_common_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
}

.btn_wrap .btn_common_wrap:last-child {
  margin-top: 40px;
}

.btn_wrap .form_btn:last-child .btn_common {
  background-color: #a7a7a7;
}

.btn_wrap .form_btn:last-child .btn_common:nth-of-type(2) {
  color: #fff;
}

@media screen and (max-width: 321px) {
  .btn_common_wrap {
    width: 260px;
  }
}

/* 下線部の黄色マーカー ーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.yellow_marker {
  background: linear-gradient(transparent 50%, #fff500 50%);
}

header .header_mv {
  color: #fff;
  background: linear-gradient(
    90deg,
    var(--nett-color) 0%,
    var(--nett-color) 50%,
    var(--netopack-color) 50%,
    var(--netopack-color) 100%
  );
  max-height: 650px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

header .header_mv .mv_common {
  max-width: 48%;
  width: 100%;
  height: 610px;
  margin: 20px;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .header_mv .mv_back01 {
  background-image: url(../img/nett_top/img_mv01);
}

header .header_mv .mv_back02 {
  background-image: url(../img/nett_top/img_mv02);
}

header .header_mv .mv_common .mv_title {
  color: #fff;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  padding-top: 30px;
  padding-bottom: 10px;
}

header .header_mv .mv_common .mv_title:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
}

.mv_title .mv_title_text {
  font-size: 16px;
  padding-bottom: 15px;
}

.mv_title .mv_title_plan {
  font-size: 36px;
}

.fuwafuwa {
  animation-name: fuwafuwa;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0px);
  }

  100% {
    transform: translate(0, 10px);
  }
}

/* 各セクション */

/* 共通部分 */
section {
  text-align: center;
}

.section_title {
  font-size: 32px;
  padding-bottom: 30px;
  padding-top: 60px;
  font-weight: normal;
  color: #666666;
}

.section_subtitle {
  font-size: 24px;
  text-align: center;
  color: #666666;
  padding-top: 30px;
  padding-bottom: 30px;
  font-weight: bold;
  letter-spacing: 2px;
}

.section_heading {
  font-size: 20px;
  opacity: 0.7;
  letter-spacing: -0.1px;
}

/* こだわり */

.commitment_wrap {
  background-color: #fff;
  padding-bottom: 80px;
}

.commitment {
  position: relative;
  width: 85%;
  margin: 0 auto;
  color: #333333;
}

.commitment_heading {
  position: relative;
}

.commitment_box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 60px;
}

.commitment_box .commitment_img {
  flex: 1;
  height: 270px;
  background: url(../img/nett_top/commitment);
  background-position: top 5% left 41%;
  background-size: 120%;
  background-repeat: no-repeat;
  border-radius: 10px;
  margin-right: 20px;
}

.commitment_box p {
  flex: 1;
  text-align: left;
  line-height: 2.2rem;
  color: #666666;
  font-weight: lighter;
}

.arrow_box {
  padding: 30px 30px 40px 30px;
  position: absolute;
  top: 5.5%;
  right: 4%;
  background: url(../img/nett_top/fukidasi.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* 〜 CLEANett W2 〜 */

/* 利用の流れ */

.w2_wrap {
  position: relative;
  background-color: #fff4fb;
}

.w2 {
  width: 85%;
  color: #666666;
  margin: 0 auto;
}

.heading_btm30 {
  margin-bottom: 30px;
}

.common_text {
  font-size: 18px;
  line-height: 2rem;
  text-align: center;
}

.w2_text {
  padding-bottom: 50px;
  font-weight: lighter;
}

.flow {
  margin-bottom: 50px;
}

.flow .flow_list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.flow .flow_list .flow_box {
  width: 21.5%;
  position: relative;
  height: 360px;
}

.flow .flow_list .flow_box::after {
  position: absolute;
  content: url(../img/nett_top/right_arrow.svg);
  width: 18px;
  height: 36px;
  top: 164px;
  right: -35px;
  transform: translateY(-50%);
}

.flow .flow_list .flow_box:last-child::after {
  display: none;
}

.flow .flow_list .flow_box .flow_box_img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 240px;
  width: 100%;
  height: 220px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.pink_border {
  border: 3px solid #ff96d9;
}

.lightblue_border {
  border: solid 3px #88daff;
}

.flow .flow_list .flow_box .flow_box_mask {
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
}

.flow .flow_list .flow_box .flow_box_img_text {
  color: #000;
}

.flow .flow_list .flow_box .flow_box_img01 {
  position: relative;
  background: url(../img/nett_top/img_W2_01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.flow .flow_list .flow_box .flow_box_img::before {
  position: absolute;
  top: 2%;
  left: 3%;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  padding: 0px 10px;
  background-color: #fe96d9;
  border-radius: 50%;
}

.flow .flow_list .flow_box .flow_box_img01::before {
  content: "1";
  position: absolute;
  top: 2%;
  left: 3%;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  padding: 0px 10px;
  background-color: #fe96d9;
  border-radius: 50%;
}

.flow .flow_list .flow_box .flow_box_img02 {
  content: "2";
  background: url(../img/nett_top/img_W2_02);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.flow .flow_list .flow_box .flow_box_img02::before {
  content: "2";
  position: absolute;
  top: 2%;
  left: 3%;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  padding: 0px 10px;
  background-color: #fe96d9;
  border-radius: 50%;
}

.flow .flow_list .flow_box .flow_box_img03 {
  content: "3";
  background: url(../img/nett_top/img_W2_03.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.flow .flow_list .flow_box .flow_box_img03::before {
  content: "3";
  position: absolute;
  top: 2%;
  left: 3%;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  padding: 0px 10px;
  background-color: #fe96d9;
  border-radius: 50%;
}

.flow .flow_list .flow_box .flow_box_img04 {
  content: "4";
  background: url(../img/nett_top/img_W2_04.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.flow .flow_list .flow_box .flow_box_img04::before {
  content: "4";
  position: absolute;
  top: 2%;
  left: 3%;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  padding: 0px 10px;
  background-color: #fe96d9;
  border-radius: 50%;
}

.flow .flow_list .flow_box .flow_box_text {
  font-size: 12px;
  color: #666666;
  text-align: left;
  line-height: 1.5rem;
  font-weight: lighter;
}

/* こんな方におすすめ */
.recommended {
  padding-bottom: 50px;
}

.recommended_list {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.recommended_box {
  z-index: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 30%;
}

.recommended_text {
  font-size: 16px;
  color: #666666;
  margin-top: 30px;
}

.recommended_img {
  position: relative;
  width: 200px;
  height: 140px;
  object-fit: contain;
}

.recommended_img::after {
  z-index: -1;
  position: absolute;
  bottom: -18px;
  left: 0;
  right: 0;
  content: "";
  width: 200px;
  height: 80px;
  background-color: #fff;
  border-radius: 50%;
}

/* サービス利用基本料金 */

.servicefee {
  padding-bottom: 50px;
}

.servicefee .servicefee_table {
  width: 100%;
  margin: 0 auto;
  height: 160px;
}

.servicefee_tr th {
  font-weight: normal;
}

.servicefee_table,
.servicefee_tr,
td,
th {
  border: 1px solid #595959;
  border-collapse: collapse;
  padding: 30px 24px;
  width: 18%;
  font-size: 18px;
  color: #666;
  font-weight: lighter;
}

.servicefee_table .servicefee_tr th:nth-of-type(4),
.servicefee_table .servicefee_tr td:nth-of-type(4) {
  width: 46%;
}

.nettpack_product {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-auto-rows: 1fr;
  grid-gap: 0.8em;
  padding-top: 60px;
  padding-bottom: 60px;
}

.servicefee_product {
  display: flex;
}

.servicefee_product_box {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.servicefee_product_img01 {
  background: url(../img/cleanett-pack/colorful_back.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.nettpack_product_box {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  padding-bottom: 20px;
}

.servicefee_product_title {
  background-color: rgba(237, 56, 173, 0.7);
  color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
}

.servicefee_product_count {
  display: flex;
  align-items: center;
  justify-content: center;
}

.servicefee_product_count span {
  font-weight: bold;
  color: #000;
  font-size: 18px;
  margin-left: 10px;
  margin-right: 10px;
}

.servicefee_product_price {
  font-weight: bold;
  color: #000;
  font-size: 24px;
  padding: 10px;
}

.servicefee_product_price span {
  font-size: 18px;
  padding-right: 10px;
}

.servicefee_product_person {
  color: #000;
}

.nettpack_product_img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px 10px 0px 0px;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
}

.nettpack_product_img01 {
  background: url(../img/cleanett-pack/cleanett-pack_01);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.nettpack_product_img02 {
  background: url(../img/cleanett-pack/cleanett-pack_02);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.nettpack_product_img03 {
  background: url(../img/cleanett-pack/cleanett-pack_03);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.nettpack_product_img::after {
  position: absolute;
  bottom: -20%;
  right: 3%;
  width: 80px;
  height: 80px;
  content: "";
  border-radius: 50%;
}

.nettpack_product_img01::after {
  background: url(../img/cleanett-pack/cleanett-pack_logo01.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.nettpack_product_img02::after {
  background: url(../img/cleanett-pack/cleanett-pack_logo02.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.nettpack_product_img03::after {
  background: url(../img/cleanett-pack/cleanett-pack_logo03.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.nettpack_product_title {
  background-color: rgba(15, 121, 127, 0.7);
  padding-top: 10px;
  padding-bottom: 10px;
  color: #fff;
}

.product_subtitle {
  font-size: 14px;
}

.product_title {
  font-size: 24px;
}

.nettpack_product_pricetable {
  margin-top: 222px;
}

.product_price {
  font-size: 12px;
}

.line_fr {
  font-weight: bold;
  padding-left: 5px;
  font-size: 18px;
}

.product_campaign {
  font-size: 18px;
  color: #e51f1f;
  margin-top: 20px;
}

.product_campaing_price {
  font-size: 24px;
  font-weight: bold;
}

.product_note {
  font-size: 18px;
  margin-top: 25px;
}

.weight_fr {
  font-weight: bold;
  font-size: 24px;
}

.line_fr {
  text-decoration: line-through;
}

th {
  background: #fafafa;
}

td {
  background-color: #ffffff;
}

/* ご利用者様の声 */

.user_voice {
  padding-bottom: 80px;
}

.user_voice_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.user_voice_list .user_voice_box {
  width: 32%;
  padding: 20px;
}

.user_voice_list .user_voice_box .user_voice_name {
  display: flex;
  align-items: center;
  justify-content: left;
  padding-bottom: 10px;
}

.user_voice_list .user_voice_box .user_voice_name p {
  font-size: 18px;
  padding-left: 20px;
}

.user_voice_list .user_voice_box .user_voice_name .user_voice_img1 {
  background: url(../img/nett_top/user_logo01.png) #fff;
  background-position: center;
  background-repeat: no-repeat;
}

.user_voice_list .user_voice_box .user_voice_name .user_voice_img2 {
  background-image: url(../img/nett_top/user_logo02);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 150%;
}
.user_voice_list .user_voice_box .user_voice_name .user_voice_img3 {
  background-image: url(../img/nett_top/user_logo03);
}

.user_voice_list .user_voice_box .user_voice_name .user_voice_img4 {
  background: url(../img/nett_top/user_logo04);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 150%;
}

.user_voice_list .user_voice_box .user_voice_name .user_voice_img5 {
  background-image: url(../img/nett_top/user_logo05);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 150%;
}
.user_voice_list .user_voice_box .user_voice_name .user_voice_img6 {
  background-image: url(../img/nett_top/user_logo06);
}

.user_voice_list .user_voice_box .user_voice_text {
  font-size: 12px;
  text-align: left;
  line-height: 1.5rem;
  color: #666666;
}

/* 〜 CLEANett W2 専用窓口 〜 */

.window {
  padding-bottom: 30px;
  background-color: #fafafa;
}

.window_list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.window_common {
  text-align: center;
  padding: 30px;
  padding-top: 0px;
}

.window_fhere {
  font-size: 20px;
  color: #666666;
}

.w2_window_box1 .window_reseption {
  font-size: 18px;
  color: #666666;
}

.w2_window_box1 .window_tellbtn {
  font-size: 48px;
  color: #00797f;
  font-weight: bold;
  padding-bottom: 10px;
}

.w2_window_box2 .window_fhere {
  padding-bottom: 35px;
}

/* 〜 CLEANett PACK 〜 */

.pack_wrap {
  background-color: #f2fbff;
  padding-top: 20px;
}

.pack {
  width: 85%;
  margin: 0 auto;
  text-align: center;
}

.pack_window_title {
  padding-bottom: 0px;
}

.pack_text {
  padding-bottom: 40px;
}

.pack_window .pack_window_list .window_common .window_fhere {
  margin-bottom: 25px;
}

.banner {
  padding-bottom: 50px;
}

.flow .flow_list .flow_box .pack_flow_box_img01::before,
.flow .flow_list .flow_box .pack_flow_box_img02::before,
.flow .flow_list .flow_box .pack_flow_box_img03::before,
.flow .flow_list .flow_box .pack_flow_box_img04::before {
  background-color: #88dafe;
}

.flow .flow_list .flow_box .pack_flow_box_img01 {
  position: relative;
  background: url(../img/nett_top/img_flow1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.flow .flow_list .flow_box .pack_flow_box_img02 {
  position: relative;
  background: url(../img/nett_top/img_flow2.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.flow .flow_list .flow_box .pack_flow_box_img03 {
  position: relative;
  background: url(../img/nett_top/img_flow3.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.flow .flow_list .flow_box .pack_flow_box_img04 {
  position: relative;
  background: url(../img/nett_top/img_flow4.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* 会社情報 ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/

.company {
  color: #666666;
}

.company .company_info {
  display: flex;
  align-items: center;
  justify-content: center;
}

.company .company_info p {
  font-size: 16px;
  padding: 10px 7.5px 15px 10px;
}

.company_url {
  display: inline-block;
  position: relative;
  padding: 5px;
  font-size: 16px;
  margin: 5px;
}
.company_url::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #00797f;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}

.company_url:hover::after {
  transform: scale(1, 1);
}

.company .company_map {
  position: relative;
  padding-bottom: 30%;
  height: 0;
  overflow: hidden;
  margin-top: 40px;
}

.company .company-branch {
  font-weight: bold;
}

.company .company_map:nth-child(1) {
  margin-bottom: 40px;
}

.company_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.company > p:nth-of-type(2) {
  margin-top: 40px;
}

/* フォーム */

.form_checked {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 60px;
}

.form_checked dt,
.form_checked dd {
  margin-bottom: 30px;
}

.form_checked dt {
  width: 20%;
}

.form_checked dd {
  width: 75%;
  padding-bottom: 10px;
  border-bottom: solid 5px #f7f7f7;
  text-align: left;
  padding-left: 20px;
}

#select {
  max-width: 160px;
}

.select_wrap {
  position: relative;
}

.select_wrap::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/common/under_arrow_black.svg);
  background-size: contain;
  right: 0;
  top: 15px;
}

/* レスポンシブ */

@media screen and (max-width: 768px) {
  header .header_mv .mv_common {
    height: 510px;
    max-width: 95%;
  }

  header .header_mv .mv_back01 {
    margin-bottom: 10px;
  }

  header .header_mv .mv_back02 {
    margin-top: 10px;
  }

  .mv_title .mv_title_plan {
    font-size: 30px;
  }

  header .header_list {
    flex-direction: column;
    padding-bottom: 0px;
  }

  .header_list .header_box a {
    margin: 0px;
  }

  .section_title {
    margin-bottom: 15px;
  }

  .commitment_wrap {
    padding-bottom: 40px;
  }
  .commitment_box p {
    line-height: 1.4rem;
  }

  .w2 {
    padding-top: 40px;
  }

  .w2_text {
    padding-bottom: 20px;
  }

  .flow {
    margin-bottom: 20px;
  }

  .recommended {
    padding-bottom: 20px;
  }

  .recommended .recommended_list .recommended_box::after {
    height: 150px;
    width: 150px;
  }

  .servicefee {
    padding-bottom: 20px;
  }

  .nettpack_product {
    grid-template-columns: repeat(auto-fit, minmax(247px, 1fr));
  }

  .nettpack_product_pricetable {
    margin-top: 244px;
  }

  .nettpack_product_box {
    width: 95%;
    margin: 0 auto;
  }

  .nettpack_service_box {
    width: 90%;
  }

  .flow .flow_list .flow_box::after {
    right: -23px;
  }

  .window {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .window_common {
    padding: 20px;
  }

  .w2_window_box1 .window_tellbtn {
    font-size: 36px;
  }

  .window_fhere {
    font-size: 16px;
    color: #666666;
  }

  .w2_window_box2 .window_fhere {
    padding-bottom: 20px;
  }

  .btn_common_wrap {
    width: 300px;
    height: 60px;
  }

  .company .company_map {
    margin-top: 20px;
  }

  .form_checked dt {
    width: 30%;
  }

  .form_checked dd {
    width: 70%;
    padding-bottom: 10px;
    border-bottom: solid 5px #f7f7f7;
    text-align: left;
    padding-left: 20px;
  }
}

@media screen and (max-width: 414px) {
  a[href^="tel:"] {
    pointer-events: all;
  }
  header {
    position: relative;
    margin-top: 60px;
    flex-direction: row;
  }
  header .header_mv {
    background: linear-gradient(
      0deg,
      #fff4fb 0%,
      #fff4fb 50%,
      #f2fbff 50%,
      #f2fbff 100%
    );
    flex-direction: column;
  }

  .mv_title .mv_title_text {
    font-size: 4vw;
  }

  .commitment_heading {
    margin-top: 45px;
    font-size: 16px;
  }

  .form_checked {
    margin: 20px;
  }

  .form_checked dt,
  .form_checked dd {
    font-size: 10px;
  }

  .form_checked dd {
    border-bottom: 3px solid #f7f7f7;
  }

  .form_btn {
    width: 300px;
    height: 50px;
  }

  .servicefee_product_count {
    flex-direction: column;
  }

  .servicefee_product_count p {
    padding: 7px;
  }

  .nettpack_product {
    padding-top: 30px;
    padding-bottom: 30px;
    grid-gap: 2em;
  }
  .nettpack_product_box {
    width: 90%;
    margin: 0 auto;
  }

  .product_campaign {
    margin-top: 0px;
  }

  .product_note {
    margin-top: 5px;
  }

  .order_btn {
    margin-top: 5px;
  }

  .nettpack_product_pricetable {
    margin-top: 210px;
  }

  .w2 {
    width: 90%;
  }

  .br_sp {
    display: block;
  }

  .container header .header_list {
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    padding-left: 10px;
    padding-top: 15px;
    background-color: #fff;
    width: 100%;
  }

  header .header_list .header-list_title img {
    width: 65px;
    height: 24px;
  }

  .header_box_wrap {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    color: #000;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.9s;
    width: 100%;
  }
  .header_box_wrap.active {
    transform: translateY(0%);
  }

  header .header_list .header_box_wrap .header_box {
    z-index: 100;
    position: relative;
    flex-direction: column;
    margin-top: 40px;
    background-color: #fff;
  }

  header .header_list .header_box_wrap .header_box a {
    border-bottom: 1px solid #ccc;
    width: 100%;
    background-color: #fff;
  }

  .section_title {
    font-size: 18px;
    margin-top: 20px;
    padding-top: 30px;
  }

  .commitment_box {
    flex-direction: column;
    margin-top: 30px;
  }

  .commitment_box .commitment_img {
    flex: none;
    width: 100%;
    height: 270px;
    margin-right: 0px;
    margin-bottom: 20px;
  }

  .commitment_box p {
    line-height: 2rem;
  }

  .flow {
    margin-bottom: 0px;
  }

  .flow .flow_list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .flow .flow_list .flow_box {
    width: 100%;
    margin-bottom: 60px;
    height: 288px;
  }

  .flow .flow_list .flow_box:nth-child(1),
  .flow .flow_list .flow_box:nth-child(2) {
    height: 310px;
  }

  .flow .flow_list .flow_box .flow_box_img {
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .flow .flow_list .flow_box:first-child {
    margin-bottom: 70px;
  }

  .flow .flow_list .flow_box::after {
    top: 110%;
    right: 50%;
    bottom: 0px;
    content: url(../img/common/under_arrow_black.svg);
  }

  .recommended {
    padding-bottom: 0px;
  }

  .recommended .recommended_list {
    align-items: flex-start;
    flex-direction: column;
  }

  .recommended .recommended_list .recommended_box {
    width: 100%;
    margin-bottom: 30px;
  }

  .recommended .recommended_list .recommended_box:last-child {
    margin-bottom: 0px;
  }

  .servicefee {
    padding-bottom: 0px;
  }

  .servicefee_table,
  .servicefee_tr,
  td,
  th {
    border: 1px solid #595959;
    border-collapse: collapse;
    padding: 5px 5px;
    width: 21%;
    font-size: 14px;
    color: #666;
  }

  .weight_fr {
    font-weight: bold;
    font-size: 16px;
  }

  .user_voice_list {
    flex-direction: column;
  }

  .user_voice_list .user_voice_box {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
  }

  .user_voice {
    padding-bottom: 40px;
  }

  .window_list {
    align-items: center;
    flex-direction: column;
  }

  .company .company_info {
    flex-direction: column;
  }

  .company .company_info p {
    padding-bottom: 0px;
    font-size: 14px;
  }
}

@media screen and (max-width: 321px) {
  .section_title {
    font-size: 20px;
  }

  .section_heading {
    font-size: 16px;
  }

  .commitment_box .commitment_img {
    height: 200px;
  }

  .commitment_box p {
    font-size: 14px;
    line-height: 1.5rem;
  }

  .common_text {
    line-height: 1.5rem;
  }

  .arrow_box {
    top: 6.5%;
  }

  .section_subtitle {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 16px;
  }

  .nettpack_product_box .nettpack_product_img::after {
    width: 50px;
    height: 50px;
    bottom: -10%;
  }

  .weight_fr {
    font-size: 14px;
  }

  .servicefee_table,
  .servicefee_tr,
  td,
  th {
    font-size: 12px;
    padding: 5px 3px;
  }

  .user_voice {
    padding-bottom: 20px;
  }

  .window {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .window_common {
    padding-bottom: 0px;
  }
  .w2_window_box1 .window_tellbtn {
    font-size: 30px;
  }
  .w2_window_box1 .window_reseption {
    font-size: 16px;
  }

  .w2_window_box2 .window_fhere {
    padding-bottom: 10px;
    font-size: 14px;
  }

  .pack_wrap {
    padding-top: 20px;
  }

  .pack_window_title {
    font-size: 14px;
  }
}
