/* サービス共通 */
.service_h3 {
  font-weight: 500;
  font-size: clamp(24px, 5.16vW, 32px);
}

/* メインビジュアル */

.mv_container {
  position: relative;
}

.mv_img {
  min-height: 150px;
  max-height: 300px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv_text {
  position: absolute;
  top: clamp(44px, 4.58vw, 57px);
  left: -1%;
  z-index: 1;
  width: clamp(130px, 20.83vw, 300px);
  height: clamp(130px, 20.83vw, 300px);
  border-radius: 50%;
  background-color: rgba(0, 68, 19, .8);
}

.service_title {
  position: absolute;
  top: 50%;
  left: 13%;
  z-index: 2;
  color: #f4efeb;
  font-size: clamp(24px, 3.88vw, 56px);
  transform: translateY(-50%);
}

/* 内部リンク */
.link_container {
  justify-content: center;
  padding-top: 100px;
}

.link_btn {
  position: relative;
  display: inline-block;
  width: clamp(156px, 42vw, 420px);
  height: clamp(40px, 8vw, 80px);
  background-size: cover;
  background-repeat: no-repeat;
  color: #f4efeb;
  font-weight: 700;
  font-size: clamp(14px, 3vw, 30px);
  transition: .8s;
}

.link_btn:hover {
  opacity: .5;
}

/* ボタン内の文字中央揃え */
.link_btn::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bg_layout {
  margin-right: clamp(31px, 6.94vw, 100px);
  background-image: url(../../img/service/layout_button.jpg);
}

.bg_layout::before {
  content: '出張レイアウト';
  width: 100%;
  text-align: center;
}

.bg_maintenance {
  background-image: url(../../img/service/maintenance_button.jpg);
}

.bg_maintenance::before {
  content: '出張メンテナンス';
  width: 100%;
  text-align: center;
}

.link_btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 4.9%;
  border-top: clamp(6.9px, 1.2vw, 17.3px) solid #f4efeb;
  border-right: clamp(4px, .8vw, 10px) solid transparent;
  border-left: clamp(4px, .8vw, 10px) solid transparent;
  transform: translateY(-50%);
}

/* 出張レイアウト */
.layout_container {
  overflow: hidden;
  padding: 100px 0 119px;
}

.layout_inner {
  margin-left: 1.4%;
  max-width: 1264px;
}

.layout_img_1 {
  margin-right: 40px;
  width: 55.4%;
}

.layout_explan {
  position: relative;
  min-width: 419px;
  width: 40%;
}

.service_h3 .new_line {
  margin-top: 10px;
}

.layout_img_2 {
  position: absolute;
  top: max(-171px, -13vw);
  left: 58px;
  width: clamp(55px, 11.11vw, 160px);
}

.layout_img_3 {
  position: absolute;
  top: -53px;
  left: 500px;
  width: clamp(59px, 13.26vw, 191px);
}

.layout_img_4 {
  position: absolute;
  bottom: max(-156px, -11.88vw);
  left: 266px;
  width: 12%;
  width: clamp(76px, 9.44vw, 136px);
}

.layout_img_5 {
  position: absolute;
  bottom: max(-214px, -16.25vw);
  left: -21px;
  width: 33%;
  width: clamp(107px, 13.26vw, 191px);
}

.responsive_layout_img_2 {
  display: none;
}

/* 出張レイアウト・出張メンテナンスお客様の声 */
.voice_container {
  margin: 0 auto;
  max-width: 1440px;
  width: 94.5%;
}

.voice_inner {
  display: grid;
  gap: 40px 3%;

  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.voice_explan {
  padding: 40px;
  width: 100%;
}

.voice_layout_bg {
  background-color: #c7e6c4;
}

.voice_overview {
  justify-content: space-between;
}

.voice_img {
  width: 52%;
}

.voice_text_innner {
  flex-direction: column;
  justify-content: space-between;
  width: 42%;
}

.voice_category {
  font-size: 14px;
}

.voice_title {
  font-weight: 500;
  font-size: clamp(18px, 1.69vw, 24px);
  line-height: 130%;

  font-feature-settings: 'palt';
}

.voice_memo_area {
  font-weight: 500;
  font-size: clamp(14px, 1.15vw, 16px);
}

.voice_mgl {
  margin-left: 15px;
}

.voice_text {
  margin-top: 20px;
}

/* 納品までの流れ */
.delivery_container {
  position: relative;
  overflow: hidden;
  margin-top: 100px;
  padding: 150px 0 160px;
}

/* 波背景 */
.wave_bg {
  position: absolute;
  top: 0;
  z-index: -1;
  display: flex;
  width: 100vw;
}

.wave1,
.wave2 {
  min-width: 1440px;
}

.wave1 {
  animation: wave1 17.3s -17.3s linear infinite;
}

.wave2 {
  animation: wave2 17.3s linear infinite;
}

@keyframes wave1 {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* 画像の繋ぎ目削除用 */
@keyframes wave2 {
  0% {
    transform: translateX(-.1%);
  }

  to {
    transform: translateX(-100%);
  }
}

/* 波背景ここまで */

.delivery_inner {
  margin: 40px auto 0;
  max-width: 1440px;
}

.delivery_inner_up {
  padding-right: 3.48%;
  padding-left: 8.82%;
}

.delivery_area_up {
  max-width: 330px;
  width: 22.917vw;
}

.delivery_img_up {
  margin: 0 auto;
  max-width: 272px;
  width: 18.889vw;
}

.arrow_img_up {
  margin-top: 8.394%;
  width: 3.889vw;
}

.delivery_inner_low {
  padding-right: 23.681%;
  padding-left: 18.334%;
}

.delivery_area_low {
  max-width: 330px;
  width: 28.1%;
  width: 22.917vw;
}

.delivery_area_low:nth-child(2) {
  margin-right: 2.516%;
}

.delivery_img_low {
  margin: 0 auto;
  max-width: 272px;
  width: 18.889vw;
}

.arrow_img_low {
  margin-top: 12.696%;
  margin-right: 2.516%;
  width: 3.889vw;
}

.delivery_heading {
  text-align: center;
  font-weight: 500;
  font-size: 18px;
}

/* 出張レイアウト料金 */
.layout_cost_container {
  margin: 0 auto;
  padding-top: 100px;
  max-width: 600px;
  width: 91.47%;
}

.layout_cost_table {
  width: 100%;
}

.layout_cost_line:nth-child(n+2) {
  margin-top: 5px;
}

.layout_cost_line_color:nth-child(2n+1) {
  background-color: #64b47a;
}

.layout_cost_line_color:nth-child(2n) {
  background-color: #c7e6c4;
}

.layout_aquarium_column,
.layout_cost_column {
  padding: 24px 0;
  width: 50%;
  text-align: center;
  font-weight: 500;
  font-size: clamp(16px, 3.61vw, 24px);

  font-feature-settings: 'palt';
}

/* 出張レイアウトお問い合わせ */
.layout_contact_bg {
  background-color: #c4e6e4;
}

.layout_contact_area_bg {
  background-color: #72b4bd;
}

.layout_contact_btn:hover {
  background-color: #59949c;
  color: #f4efeb;
}

/* 出張メンテナンス */
.maintenance_inner {
  max-width: 1349px;
}

.maintenance_img_1 {
  width: 51.9%;
}

.maintenance_explan {
  min-width: 427px;
  width: 42.78%;
}

/* 出張メンテナンスお客様の声 */
.voice_maintenance_bg {
  background-color: #c4e6e4;
}

/* 出張メンテナンス料金 */
.maintenance_cost_container {
  margin: 0 auto;
  padding-top: 100px;
  max-width: 600px;
  width: 91.47%;
}

.maintenance_cost_table {
  width: 100%;
}

.maintenance_cost_line:nth-child(n+2) {
  margin-top: 5px;
}

.maintenance_cost_line_color:nth-child(2n+1) {
  background-color: #72b4bd;
}

.maintenance_cost_line_color:nth-child(2n) {
  background-color: #c4e6e4;
}

.maintenance_aquarium_column,
.maintenance_cost_column {
  padding: 24px 0;
  width: 50%;
  text-align: center;
  font-weight: 500;
  font-size: clamp(16px, 3.61vw, 24px);

  font-feature-settings: 'palt';
}

.maintenance_aquarium_column_1,
.maintenance_aquarium_column_2 {
  padding: 24px 50px 24px 67px;
  width: 300px;
  font-weight: 500;
  font-size: 24px;
}

.maintenance_aquarium_column_3 {
  padding: 24px 41px 24px 60px;
  width: 300px;
  font-weight: 500;
  font-size: 24px;
}

.maintenance_cost_column_1,
.maintenance_cost_column_2,
.maintenance_cost_column_3 {
  padding: 24px 0;
  width: 300px;
  text-align: center;
  font-weight: 500;
  font-size: 24px;
}

.maintenance_notes {
  font-weight: 500;
  font-size: 14px;
}


/* 波背景高さ調整 */

@media (min-width: 1441px) {

  .wave1,
  .wave2 {
    min-width: 2560px;
  }
}

@media (max-width: 1160px) {

  .wave1,
  .wave2 {
    min-width: 1400px;
  }

  .wave1 {
    animation: wave1 12.3s -12.3s linear infinite;
  }

  .wave2 {
    animation: wave2 12.3s linear infinite;
  }
}

@media (max-width: 1050px) {

  .wave1,
  .wave2 {
    min-width: 1360px;
  }
}

@media (max-width: 830px) {

  .wave1,
  .wave2 {
    min-width: 1320px;
  }

  .wave1 {
    animation: wave1 13.3s -13.3s linear infinite;
  }

  .wave2 {
    animation: wave2 13.3s linear infinite;
  }
}

@media (max-width: 768px) {

  .wave1,
  .wave2 {
    min-width: 758px;
  }

  .wave1 {
    animation: wave1 12.3s -12.3s linear infinite;
  }

  .wave2 {
    animation: wave2 12.3s linear infinite;
  }
}

@media (max-width: 743px) {

  .wave1,
  .wave2 {
    min-width: 733px;
  }
}

@media (max-width: 710px) {

  .wave1,
  .wave2 {
    min-width: 710px;
  }
}

@media (max-width: 670px) {

  .wave1,
  .wave2 {
    min-width: 690px;
  }
}

@media (max-width: 635px) {

  .wave1,
  .wave2 {
    min-width: 665px;
  }
}

@media (max-width: 590px) {

  .wave1,
  .wave2 {
    min-width: 645px;
  }

  .wave1 {
    animation: wave1 10.3s -10.3s linear infinite;
  }

  .wave2 {
    animation: wave2 10.3s linear infinite;
  }
}

@media (max-width: 550px) {

  .wave1,
  .wave2 {
    min-width: 625px;
  }
}

@media (max-width: 479px) {

  .wave1,
  .wave2 {
    min-width: 635px;
  }
}

@media (max-width: 433px) {

  .wave1,
  .wave2 {
    min-width: 645px;
  }
}

@media (max-width: 420px) {

  .wave1,
  .wave2 {
    min-width: 660px;
  }
}

@media (max-width: 351px) {

  .wave1,
  .wave2 {
    min-width: 690px;
  }
}

/* 波背景高さ調整ここまで */

/* レスポンシブ 1086px */

@media (max-width: 1086px) {
  /* 出張レイアウト */

  .layout_img_2 {
    top: -110px;
    left: 208px;
  }
}

/* レスポンシブ 1000px */

@media (max-width: 1000px) {
  /* 余白 */

  .mv {
    margin-top: 120px;
  }

  /* 出張レイアウト・出張メンテナンスお客様の声 */

  .voice_overview.responsive_column-reverse {
    flex-direction: column-reverse;
  }

  .voice_explan {
    padding: 24px;
  }

  .voice_img {
    margin-top: 20px;
    width: 100%;
  }

  .voice_text_innner {
    width: 100%;
  }

  .voice_title {
    margin-top: 15px;
    font-size: 20px;
  }

  .voice_memo_area {
    margin-top: 20px;
    font-size: 14px;
  }
}

/* レスポンシブ 960px */

@media (max-width: 960px) {
  /* 出張レイアウト */

  .layout .responsive_column {
    flex-direction: column;
  }

  .layout_container {
    padding: 100px 0 222px;
  }

  .layout .wraper_1400 {
    width: 91.47%;
  }

  .layout_inner {
    margin-left: auto;
  }

  .layout_explan {
    margin-top: 20px;
    min-width: 311px;
    width: 57.4%;
  }

  .layout_explan .service_h3 {
    text-align: center;
    font-size: max(24px, 3.33vw);
  }

  .layout_img_1 {
    margin: 0 auto;
    width: 100%;
  }

  .layout_img_2 {
    top: -50px;
    left: -24vw;
    width: max(55px, 16.66vw);
  }

  .layout_img_3 {
    top: 38px;
    left: 60vw;
    width: max(59px, 19.89vw);
  }

  .layout_img_4 {
    right: 3vw;
    bottom: min(-69px, -14.5vw);
    left: auto;
    width: max(76px, 14.16vw);
  }

  .layout_img_5 {
    bottom: min(-120px, -22.91vw);
    left: -10.53vw;
    width: max(107px, 19.89vw);
  }

  /* 出張レイアウト・出張メンテナンスお客様の声 */
  .voice_new_line {
    display: inline-block;
    margin-top: 10px;
  }

  /* 出張メンテナンス */

  .maintenance .responsive_column {
    flex-direction: column;
  }

  .maintenance_img_1 {
    min-width: 343px;
    width: 80%;
  }

  .maintenance_explan .service_h3 {
    text-align: center;
    font-size: clamp(24px, 4.666vw, 32px);
  }

  .maintenance_explan {
    margin-top: max(20px, 4.166vw);
  }

  .maintenance_explan,
  .maintenance_explan {
    min-width: 311px;
    width: 61.34%;
  }

  .maintenance_text_innner .responsive_mg_top {
    margin-top: 10px;
  }
}

/* レスポンシブ 768px */

@media (max-width: 768px) {
  .layout_container {
    padding: 100px 0 178px;
  }

  /* 出張レイアウト・出張メンテナンスお客様の声 */

  .voice_inner.mg_top_40 {
    margin-top: auto;
    width: 100%;
  }

  .voice .responsive_column {
    display: flex;
    flex-direction: column;
  }

  .voice_explan .voice_text {
    display: block;
  }

  .voice_overview.responsive_column-reverse {
    flex-direction: row;
  }

  .voice_inner {
    gap: inherit;
  }

  .voice_explan {
    margin: 40px auto 0;
    padding: 24px;
    width: 100%;
  }

  .voice_img {
    margin-top: auto;
    width: 52%;
  }

  .voice_text_innner {
    width: 44%;
  }

  .voice_title {
    margin-top: 20px;
    font-size: clamp(18px, 3vw, 24px);
  }

  .voice_memo_area {
    font-size: clamp(14px, 2.2vw, 16px);
  }


  .voice_new_line {
    display: inline;
  }

  /* 納品までの流れ */

  .delivery_inner_up.responsive_column,
  .delivery_inner_low.responsive_column {
    flex-direction: column;
  }

  .delivery_inner_up,
  .delivery_inner_low {
    padding: inherit;
  }

  .delivery_area_up,
  .delivery_area_low {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    max-width: inherit;
    width: 91.668vw;
  }

  .delivery_img_up,
  .delivery_img_low {
    margin: 0;
    width: max(100px, 23.31vw);
  }

  .delivery_text {
    width: max(227px, 64.194vw);
  }

  .delivery_heading {
    text-align: inherit;
  }

  .delivery_heading.mg_top_20 {
    margin-top: 0;
  }

  .delivery_inner_low.mg_top_40 {
    margin-top: 0;
  }

  .arrow_img_up,
  .arrow_img_low {
    margin: 20px auto;
    width: max(38px, 7.29vw);
  }

  .arrow_img_up:nth-child(2),
  .arrow_img_up:nth-child(6) {
    transform: rotate(58.65deg);
  }

  .arrow_img_up:nth-child(4),
  .arrow_img_low:nth-child(3) {
    transform: scale(-1, 1) rotate(58.65deg);
  }

  .arrow_img_low:nth-child(1) {
    display: none;
  }

  .delivery_area_low:nth-child(2) {
    margin-right: auto;
  }

  .delivery_container {
    padding: 100px 0 130px;
  }
}

/* レスポンシブ 620px */

@media (max-width: 620px) {
  /* 余白 */

  .mv {
    margin-top: 70px;
  }

  .link_container {
    padding-top: 50px;
  }

  .layout_container {
    padding: 50px 0 144px;
  }

  .voice_container.pd_top_150 {
    padding-top: 100px;
  }

  /* 出張レイアウト・出張メンテナンスお客様の声 */

  .voice_overview.responsive_column-reverse {
    flex-direction: column-reverse;
  }

  .voice_container {
    max-width: 620px;
  }

  .voice_explan {
    width: 92.3%;
  }

  .voice_img {
    margin-top: 20px;
    width: 100%;
  }

  .voice_text_innner {
    width: 100%;
  }

  .voice_title {
    margin-top: 15px;
    font-size: 20px;
  }

  .voice_memo_area {
    font-size: 14px;
  }

  .voice_new_line {
    display: inline-block;
    margin-top: 10px;
  }
}

/* レスポンシブ 560px */

@media (max-width: 560px) {
  /* 出張レイアウト */

  .layout_img_2 {
    right: 62.5vw;
    left: auto;
    width: max(55px, 16.66vw);
  }

  .layout_img_3 {
    left: max(293px, 65vw);
    width: max(59px, 15.73vw);
  }
}

/* レスポンシブ 487px */

@media (max-width: 487px) {

  /* 出張レイアウト */
  .layout_img_2 {
    right: 67.5vw;
  }

  /* 出張メンテナンス料金 */
  .maintenance_notes {
    text-align: center;
    line-height: 150%;
  }
}

/* レスポンシブ 420px */

@media (max-width: 420px) {

  /* 出張レイアウト */
  .layout_img_2 {
    right: 73.5vw;
  }

  /* 納品までの流れ */
  .delivery_text {
    width: max(227px, 60.53vw);
  }

  .arrow_img_up,
  .arrow_img_low {
    width: max(38px, 10.13vw);
  }
}


/* レスポンシブ 395px */

@media (max-width: 395px) {
  /* 出張レイアウト */

  .layout_img_5 {
    left: -5.53vw;
  }
}

/* レスポンシブ 375px */

@media (max-width: 375px) {

  /* 出張レイアウト */
  .layout_img_2 {
    right: 74.5vw;
  }

  /* 出張レイアウト・出張メンテナンスお客様の声 */

  .voice_explan {
    padding: 20px;
  }
}