/*! Theme Name: tech-tech Theme URI: https://waraku18.com/ Author: WARACRO Author URI: https://waraku18.com/ Description: Description Version: 1.0.0 Tested up to: 5.4 Requires PHP: 5.6 License: GNU General Public License v2 or later License URI: LICENSE Text Domain: waracro Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready This theme, like WordPress, is licensed under the GPL. Use it to make something cool, have fun, and share what you've learned.

WARACRO is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');

:root {
  --main-color: #50ABD3;
  --btn-color: #FCA646;
  --accent-color: rgba(80, 171, 211, 0.1);
  --inner: min(960px, 94%)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-wrap: anywhere;
  word-break: keep-all;
  line-break: strict;
}
body {
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #333;
}
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
  &:hover {
  cursor: pointer;
  opacity: .7;
  }
}
button {
  all: unset; 
  display: inline-block;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
br.sp {
  display: none;
  @media screen and (max-width: 768px) {
    display: block;
  }
}
/*  header  */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  z-index: 5;
  transition: background-color 0.3s ease;
  @media screen and (max-width: 768px) {
    padding: 15px;
  }
  .logo {
    width: min(30%, 240px);
  }
  .contact {
    background-color: var(--btn-color);
    color: #fff;
    border-radius: 50px;
    width: min(300px, 40%);
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    font-weight: 500;
    font-size: 18px;
    @media screen and (max-width: 768px) {
      height: 38px;
      font-size: 14px;
    }
  }
}

/* ヘッダーの背景色（FVを過ぎた時） */
.header.has-background {
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

/*  mv  */
.mv {
  position: relative;
  background-color: var(--main-color);
  > img {
    width: 100%;
    min-height: 100vh;
    object-fit: cover;
  }
  .text_block {
    position: absolute;
    left: 40px;
    top: 13%;
    color: #fff;
    letter-spacing: 0.09em;
    @media screen and (max-width: 768px) {
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
    }
    > p {
      font-size: 4rem;
      margin-bottom: 30px;
      font-weight: 700;
      @media screen and (max-width: 768px) {
        font-size: 2.2rem;
      }
    }
    .text {
      font-size: 2.3rem;
      font-weight: 500;
      text-shadow: 1px 0px 9px rgba(0, 0, 0, 0.6);
      p {
        margin-bottom: 20px;
      }
      @media screen and (max-width: 768px) {
        font-size: 1.4rem;
      }
    }
  }
  .sme_block {
    position: absolute;
    right: 40px;
    bottom: 30px;
    width: min(448px, 90%);
    background-color: #fff;
    border-radius: 20px;
    padding: 14px;
    @media screen and (max-width: 768px) {
      position: relative;
      right: inherit;
      left: 50%;
      transform: translateX(-50%);
    }
    .dog {
      position: absolute;
      width: 90px;
      top: -78px;
      left: 50%;
      transform: translateX(-50%);
    }
    .sme-logo {
      width: min(300px, 80%);
      margin: 0 auto 10px;
      display: block;
    }
    p {
      text-align: center;
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 20px;
      @media screen and (max-width: 768px) {
        font-size: 14px;
      }
    }
    .sme_btn {
      font-size: 14px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
      &::after {
        content: " ";
        background-image: url('img/question.svg');
        width: 16px;
        height: 16px;
        margin-left: 3px;
      }
      &:hover {
        text-decoration: underline;
      }
    }
  }
}
.myModal + .btn_block {
  margin-top: -1px;
}
/*  モーダル  */
body.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
}
.modal-content {
  background: #fff;
  width: min(800px, 80%);
  padding: 30px 60px;
  margin: 100px auto;
  position: relative;
  border-radius: 8px;
  @media screen and (max-width: 768px) {
    padding: 30px 15px;
  }
  .modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: #333;
    color: #fff;
    text-align: center;
    line-height: 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
  }
  .sme-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 3rem;
    font-weight: 600;
    @media screen and (max-width: 768px) {
      font-size: 1.6rem;
    }
  }
  .sme-text-box {
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.6;
  }
  .sme-text-small {
    margin-top: 20px;
    @media screen and (max-width: 768px) {
      font-size: 1.2rem;
    }
  }
}

/*  ボタンブロック  */
.btn_block {
  background-color: var(--main-color);
  padding: 30px 0;
  font-weight: 500;
  p {
    color: #fff;
    font-size: 2.6rem;
    letter-spacing: 0.08em;
    margin-bottom: 30px;
    text-align: center;
    @media screen and (max-width: 768px) {
      font-size: 1.6rem;
    }
  }
  a {
    width: min(609px, 90%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
    background-color: var(--btn-color);
    border: 2px solid #fff;
    border-radius: 50px;
    height: 90px;
    position: relative;
    &::after,
    &::before {
      content: " ";
      position: absolute;
      background-size: cover;
    }
    &::before {
      background-image: url('img/btn-dog.png');
      width: 88px;
      height: 96px;
      bottom: 0;
      left: 30px;
    }
    &::after {
      background-image: url('img/btn-arrow.svg');
      width: 20px;
      top: 50%;
      transform: translateY(-50%);
      height: 20px;
      right: 30px;
    }
    @media screen and (max-width: 768px) {
      font-size: 1.6rem;
      height: 55px;
      &::before {
        width: 60px;
        height: 62px;
      }
    }
  }
}
/*  セクションのタイトル  */
.e_title {
  font-size: 4.6rem;
  position: relative;
  text-align: center;
  font-weight: 600;
  margin-bottom: 60px;
  @media screen and (max-width: 768px) {
    font-size: 2.2rem;
  }
}
.e_title span {
    position: absolute;
    color: rgba(34, 34, 34, 0.04);
    font-size: 4rem;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    @media screen and (max-width: 768px) {
    font-size: 1.8rem;
  }
  }
/*  こんなお悩みありませんか？  */
.sec1 {
  padding: 70px 0 0 0;
  .title {
    text-align: center;
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 30px;
    span {
      color: var(--main-color);
      font-size: 5rem;
      font-weight: 600;
      margin: 0 9px;
    }
    @media screen and (max-width: 768px) {
      font-size: 2rem;
      span {
        font-size: 3rem;
      }
    }
  }
  .nayami {
    margin: 0 auto;
    width: var(--inner);
    display: flex;
    align-items: self-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .item {
    width: 48%;
    display: flex;
    align-items: self-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
    @media screen and (max-width: 768px) {
      width: 100%;
      margin-bottom: 30px;
    }
    img {
      width: 66px;
    }
    p {
      background-color: var(--main-color);
      flex: 1;
      border-radius: 10px;
      padding: 40px 42px;
      position: relative;
      color: #fff;
      font-weight: 400;
      font-size: 1.6rem;
      position: relative;
      @media screen and (max-width: 768px) {
        font-size: 1.2rem;
        padding: 20px 22px;
      }
    }
    p::before {
      content: " ";
      position: absolute;
      width: 16px;
      height: 22px;
      background-image: url('img/nayami-arrow.svg');
      background-size: cover;
    }
    p:nth-child(odd)::before {
        right: -11px;
        top: 20px;
        transform: scaleX(-1);
    }
    p:nth-child(even)::before {
        left: -11px;
        top: 20px;
    }
  }
  .text_contents {
    background-color: rgba(80, 171, 211, 0.4);
    padding: 170px 0 135px 0;
    text-align: center;
    font-weight: 500;
    position: relative;
    &::before {
      content: " ";
      position: absolute;
      background-image: url('img/nayami-bg-before.svg');
      width: 100%;
      height: 100px;
      background-position: top;
      background-repeat: no-repeat;
      left: 0;
      top: 0;
    }
    .inner {
      width: var(--inner);
      margin: 0 auto;
    }
    .sbtitle {
      font-size: 2.6rem;
      letter-spacing: 0.04em;
      margin-bottom: 60px;
      @media screen and (max-width: 768px) {
        font-size: 1.8rem;
      }
    }
    .text_block {
      background-color: #fff;
      border-radius: 10px;
      padding: 30px 0;
      p {
        letter-spacing: 0.06em;
        line-height: 1.8;
      }
      p:nth-child(1),
      p:nth-child(3) {
        font-size: 2.6rem;
        @media screen and (max-width: 768px) {
          font-size: 1.6rem;
        }
      }
      p:nth-child(2) {
        font-size: 3rem;
        color: var(--btn-color);
        text-decoration: underline;
        @media screen and (max-width: 768px) {
        font-size: 1.8rem;
      }
      }
    }
  }
}

/*  そのつまずき、私たちが一緒に乗り越えます  */
.sec2 {
  padding: 60px 0;
  .inner {
    width: var(--inner);
    margin: 0 auto;
  }
  .title {
    background-color: var(--main-color);
    border-radius: 50px;
    color: #fff;
    font-size: 3.2rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 60px;
    padding: 12px 0;
    @media screen and (max-width: 768px) {
      font-size: 2rem;
    }
  }
  .text {
    text-align: center;
    letter-spacing: 0.03em;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 2;
    margin-bottom: 50px;
    @media screen and (max-width: 768px) {
      font-size: 1.6rem;
    }
  }
  .text span {
    font-size: 3rem;
    font-weight: 600;
    position: relative;
    margin: 0 5px;
    @media screen and (max-width: 768px) {
      font-size: 2.2rem;
    }
    &::after {
      content: ""; 
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0; 
      height: 13px;
      background-color: rgba(237, 140, 31, 0.6);
      transform: translateY(-10%);
      z-index: -1;
    }
  }
  .items {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
    @media screen and (max-width: 768px) {
      margin-bottom: 60px;
    }
    .item {
      width: 27%;
      position: relative;
      img {
        margin-bottom: 10px;
      }
      p {
        font-size: 2.4rem;
        font-weight: 500;
        text-align: center;
        letter-spacing: 0.03em;
        @media screen and (max-width: 768px) {
          font-size: 1.8rem;
        }
      }
    }
    .item:not(:last-child)::after {
      content: " ";
      position: absolute;
      background-repeat: no-repeat;
      background-size: contain;
      background-image: url('img/fuan-arrow1.svg');
      width: 56px;
      height: 56px;
      right: -75px;
      top: 34%;
      @media screen and (max-width: 768px) {
        width: 30px;
        height: 30px;
        right: -45px;
      }
      @media screen and (max-width: 481px) {
        width: 15px;
        height: 15px;
        right: -24px;
        top: 28%;
      }
    }
  }
  .block {
    margin-bottom: 50px;
    .item {
      background-color: #F5F5F5;
      position: relative;
      padding: 30px 40px;
      border-radius: 10px;
      margin-bottom: 100px;
      @media screen and (max-width: 768px) {
        padding: 10px 20px;
      }
      p {
        color: var(--main-color);
        font-size: 2.8rem;
        margin-bottom: 20px;
        font-weight: 600;
        @media screen and (max-width: 768px) {
          font-size: 2rem;
        }
      }
      ul {
        list-style: none;
      }
      ul li {
        font-size: 1.8rem;
        letter-spacing: 0.04em;
        font-weight: 400;
        line-height: 1.6;
        margin-bottom: 30px;
        display: flex;
        align-items: self-start;
        @media screen and (max-width: 768px) {
          font-size: 1.6rem;
        }
      }
      ul li::before {
        content: " ";
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        background-image: url('img/check-icon.svg');
        width: 30px;
        height: 30px;
        margin-right: 5px;
      }
    }
    .item:not(:last-child)::after {
      content: " ";
      position: absolute;
      background-repeat: no-repeat;
      background-size: contain;
      background-image: url('img/fuan-arrow2.svg');
      width: 56px;
      height: 56px;
      transform: translateX(-50%);
      left: 50%;
      bottom: -75px;
      @media screen and (max-width: 768px) {
        width: 30px;
        height: 30px;
        bottom: -50px;
      }
    }
  }
  .block + p {
    text-align: center;
    color: var(--main-color);
    font-size: 2.6rem;
    letter-spacing: 0.04em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
    @media screen and (max-width: 768px) {
      font-size: 2rem;
    }
    span {
      background-color: var(--main-color);
      color: #fff;
      padding: 5px 20px;
      width: max-content;
    }
  }
}

/*  私たちが選ばれる3つの理由  */
.sec3 {
  background-image: url('img/reason-bg.png');
  padding: 60px 0;
  background-size: cover;
  .e_title {
    color: #fff;
    margin-bottom: 80px;
    span {
      color: rgba(255, 255, 255, 0.2);
    }
  }
  .point {
    width: var(--inner);
    margin: 0 auto 80px;
    position: relative;
    border: 5px solid var(--main-color);
    border-radius: 10px;
    background-color: #fff;
    padding: 40px;
    @media screen and (max-width: 768px) {
      padding: 20px;
    }
    span {
      background-color: var(--main-color);
      color: #fff;
      font-size: 1.8rem;
      border-radius: 10px 10px 0 0;
      padding: 10px 30px;
      position: absolute;
      top: -47px;
      left: 20px;
      letter-spacing: 0.2em;
      font-weight: 500;
    }
    .wrap {
      display: flex;
      align-items: center;
      @media screen and (max-width: 768px) {
        flex-direction: column;
      }
    }
    .wrap .img_wrap {
      width: 150px;
      height: auto;
      margin-right: 50px;
      @media screen and (max-width: 768px) {
        width: 100px;
        height: 100px;
        margin-right: 0;
        margin-bottom: 30px;
      }
    }
    .wrap .text_wrap {
      flex: 1 1 0%;
      min-width: 0; 
      
    }
    .wrap .text_wrap p:nth-child(1) {
      font-size: 2.6rem;
      font-weight: 500;
      margin-bottom: 20px;
      @media screen and (max-width: 768px) {
        font-size: 1.6rem;
        text-align: center;
      }
    }
    .wrap .text_wrap p:nth-child(2) {
      font-size: 1.8rem;
      font-weight: 400;
      word-break: break-word;
      overflow-wrap: break-word;
      line-break: strict;
      @media screen and (max-width: 768px) {
        font-size: 1.4rem;
      }
    }
  }
}

/*  たとえば、こんなご相談をいただいています  */
.sec4 {
  padding: 60px 0;
  background-color: rgba(80, 171, 211, 0.1);
  background-image: url('img/sodan-dog.png');
  background-repeat: no-repeat;
  background-size: 125px;
  background-position: right 5% bottom -35px;
  overflow: hidden;
  @media screen and (max-width: 768px) {
    padding: 60px 0 100px 0;
  }
  .inner {
    width: var(--inner);
    margin: 0 auto;
  }
  .inner > .title {
    background-color: var(--main-color);
    border-radius: 50px;
    color: #fff;
    font-size: 3.2rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 60px;
    padding: 12px 0;
    @media screen and (max-width: 768px) {
      font-size: 1.8rem;
    }
  }
  .item {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 30px 50px;
    @media screen and (max-width: 768px) {
      padding: 20px;
    }
  }
  .item .title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 500;
    word-break: break-word;
    overflow-wrap: break-word;
    line-break: strict;
    @media screen and (max-width: 768px) {
      font-size: 1.6rem;
    }
  }
  .item .text {
    font-size: 1.8rem;
    position: relative;
    padding-left: 55px;
    word-break: break-word;
    overflow-wrap: break-word;
    line-break: strict;
    @media screen and (max-width: 768px) {
      font-size: 1.4rem;
      padding-left: 40px;
    }
  }
  .item .text::before {
    content: "例";
    color: #fff;
    position: absolute;
    background-color: var(--main-color);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    @media screen and (max-width: 768px) {
      font-size: 1.4rem;
      width: 34px;
      height: 34px;
    }
  }
}

/*  料金プラン  */
.sec5 {
  padding: 60px 0;
  background-image: url('img/plan-dog.png');
  background-repeat: no-repeat;
  background-size: 125px;
  background-position: left 5% bottom 17px;
  @media screen and (max-width: 768px) {
    padding: 60px 0 180px 0;
  }
  .plan_title {
    font-size: 3rem;
    text-align: center;
    color: var(--btn-color);
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 60px;
    @media screen and (max-width: 768px) {
      font-size: 2rem;
      margin-bottom: 30px;
    }
    span {
      font-size: 4rem;
      margin: 0 10px;
      @media screen and (max-width: 768px) {
      font-size: 3rem;
    }
    }
  }
  .items {
    width: var(--inner);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  .items .item {
    width: 30%;
    @media screen and (max-width: 768px) {
      width: 100%;
      margin-bottom: 30px;
    }
  }
  .item .title {
    background-color: var(--main-color);
    border-radius: 10px;
    color: #fff;
    font-size: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    height: 50px;
    margin-bottom: 30px;
    @media screen and (max-width: 768px) {
      font-size: 1.8rem;
      height: 40px;
      margin-bottom: 10px;
    }
    span {
      font-size: 4rem;
      margin: 0 0 7px 10px;
      @media screen and (max-width: 768px) {
      font-size: 3.3rem;
      }
    }
  }
  .item .text {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 30px;
    font-weight: 500;
    @media screen and (max-width: 768px) {
      font-size: 1.8rem;
      margin-bottom: 10px;
    }
  }
  .item .price {
    text-align: center;
    font-size: 5.8rem;
    font-weight: 600;
    margin-bottom: 40px;
    @media screen and (max-width: 768px) {
      font-size: 3rem;
      margin-bottom: 10px;
    }
    span:nth-child(1) {
      font-size: 3rem;
      @media screen and (max-width: 768px) {
      font-size: 2rem;
      }
    }
    span:nth-child(2) {
      font-size: 2rem;
      font-weight: 400;
      margin-left: 8px;
      @media screen and (max-width: 768px) {
      font-size: 1.6rem;
      }
    }
  }
  .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(80, 171, 211, 0.1);
    border-radius: 10px;
    margin-bottom: 8px;
    padding: 7px 20px;
    p {
      font-size: 1.6rem;
      font-weight: 400;
    }
    p span {
      font-size: 1.2rem;
    }
  }
}

/*  サービスご利用の流れ  */
.sec6 {
  padding: 60px 0;
  background-color: #F5F5F5;
  .inner {
    width: var(--inner);
    margin: 0 auto;
  }
  .item {
    display: flex;
    align-items: self-start;
    justify-content: space-between;
    gap: 66px;
    @media screen and (max-width: 768px) {
      gap: 20px;
    }
  }
  .item .step {
    width: 135px;
    height: 135px;
    border-radius: 50%;
    background-color: var(--main-color);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 60px;
    position: relative;
    @media screen and (max-width: 768px) {
      width: 56px;
      height: 56px;
      font-size: 2rem;
    }
    span {
      font-size: 1.8rem;
      letter-spacing: 0.2em;
      @media screen and (max-width: 768px) {
        font-size: 1rem;
      }
    }
  }
  .item:not(:last-child) .step::after {
      content: " ";
      background-color: var(--main-color);
      width: 10px;
      height: 100px;
      position: absolute;
      bottom: -100px;
      @media screen and (max-width: 768px) {
        content: none;
      }
    }
  .item .wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: #fff;
    border-radius: 10px;
    padding: 35px 50px;
    position: relative;
    @media screen and (max-width: 768px) {
      padding: 10px 20px;
      gap: 18px;
    }
    img {
      width: 60px;
      @media screen and (max-width: 768px) {
        width: 24px;
      }
    }
    
  }
  .item .wrap::before {
    content: " ";
    position: absolute;
    left: -44px;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background-image: url('img/service-item-before.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    @media screen and (max-width: 768px) {
      content: none;
    }
  }
  .text_wrap {
    .title {
      font-size: 3rem;
      margin-bottom: 10px;
      font-weight: 400;
      @media screen and (max-width: 768px) {
        font-size: 1.6rem;
        margin-bottom: 6px;
      }
    }
    .text {
      font-size: 2rem;
      word-break: break-word;
      overflow-wrap: break-word;
      line-break: strict;
      @media screen and (max-width: 768px) {
        font-size: 1.4rem;
      }
    }
  }
}

/*  得意な技術  */
.sec7 {
  padding: 60px 0;
  background-color: var(--main-color);
  .e_title {
    color: #fff;
    margin-bottom: 80px;
    span {
      color: rgba(255, 255, 255, 0.2);
    }
  }
.items {
    width: var(--inner);
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .item {
    width: 18%;
    padding: 22px 0;
    background-color: #fff;
    margin-bottom: 50px;
    text-align: center;
    @media screen and (max-width: 768px) {
      width: 48%;
    }
    p {
      color: var(--main-color);
      font-size: 1.4rem;
      margin-bottom: 12px;
      font-weight: 500;
    }
    img {
      width: auto;
      height: 50px;
    }

  }
}

/*  質問  */
.sec8 {
  padding: 60px 0;
  .inner {
    width: var(--inner);
    margin: 0 auto;
  }
  .faq-item {
    background-color: rgba(80, 171, 211, 0.1);
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .faq-question {
    padding: 15px 50px 15px 20px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    font-size: 2rem;
    display: flex;
    align-items: center;
    @media screen and (max-width: 768px) {
      font-size: 1.6rem;
      padding: 10px 50px 10px 10px;
    }
  }
  .faq-question::before {
    content: "Q";
    color: var(--main-color);
    font-size: 4rem;
    margin-right: 20px;
    @media screen and (max-width: 768px) {
      font-size: 2.2rem;
    }
  }
  .faq-question::after {
    content: ' ';
    position: absolute;
    right: 20px;
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    background: url('img/fqa-down.svg') no-repeat center center / contain;
  }
  .faq-item.active .faq-question::after {
    background: url('img/fqa-up.svg')no-repeat center center / contain;
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 400;
    word-break: break-word;
    overflow-wrap: break-word;
    line-break: strict;
  }
  .faq-answer::before {
    content: "A";
    color: rgba(0, 0, 0, 0.5);
    font-size: 4rem;
    margin-right: 20px;
    font-weight: 600;
    @media screen and (max-width: 768px) {
      font-size: 2.2rem;
    }
  }
  .faq-item.active .faq-answer {
    max-height: 500px;
  }
}

/*  一番下のボタン  */
.btn_block.bottom {
  p:nth-child(1) {
    font-size: 3.3rem;
    @media screen and (max-width: 768px) {
      font-size: 2rem;
    }
  }
  p:nth-child(2) {
    font-size: 1.8rem;
    @media screen and (max-width: 768px) {
      font-size: 1.4rem;
    }
  }
  a::before {
    background-image: url(img/bottom-btn-dog.png);
  }
}

/*  footer  */
.footer {
  .footer-container {
    background-color: rgba(80, 171, 211, 0.4);
    padding: 60px 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  img {
    width: min(365px, 50%);
    margin-bottom: 60px;
  }
  .footer-nav ul {
    display: flex;
    list-style: none;
    @media screen and (max-width: 768px) {
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
  }
  .footer-nav ul li a {
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    font-weight: 400;
    @media screen and (max-width: 768px) {
      font-size: 1.4rem;
    }
  }
  .footer-nav ul li:not(:last-child) {
    margin-right: 30px;
    @media screen and (max-width: 768px) {
      margin-right: 0;
    }
  }
  .footer-copy {
    background-color: #333;
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    padding: 10px 0;
  }
}

/* お問い合わせ */
section.contact {
  background-color: rgba(80, 171, 211, 0.4);
  padding-top: 200px;
  @media screen and (max-width: 768px) {
    padding-top: 100px;
  }
  .e_title {
    color: #fff;
  }
  .inner {
    width: var(--inner);
    margin: 0 auto;
    padding: 80px 120px;
    background-color: #fff;
    @media screen and (max-width: 768px) {
      padding: 40px 20px;
    }
    > p {
      text-align: center;
      font-size: 1.8rem;
      margin-bottom: 10rem;
      @media screen and (max-width: 768px) {
        margin-bottom: 4rem;
        font-size: 1.6rem;
      }
    }
  }
  .item {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 3rem;
    @media screen and (max-width: 768px) {
        gap: 10px;
      }
    label {
      width: 200px;
      font-size: 16px;
      font-weight: bold;
      display: flex;
      justify-content: space-between;
      align-items: self-start;
      @media screen and (max-width: 768px) {
        width: 100%;
        justify-content: flex-start;
        align-items: center;
      }
    }
    input, textarea {
      flex: 1;
      padding: 8px 20px;
      border-radius: 10px;
      border: 2px solid #D9D9D9;
      @media screen and (max-width: 768px) {
        width: 100%;
      }
    }
    textarea {
      margin-bottom: 10rem;
    }
  }
  .required-mark {
    border-radius: 30px;
    background-color: #E83820;
    color: #fff;
    font-size: 12px;
    padding: 4px 20px;
    font-weight: 100;
    @media screen and (max-width: 768px) {
      margin-left: 10px;
      font-size: 10px;
      padding: 2px 10px;
    }
  }
  .policy {
    display: flex;
    align-items: center;
    justify-content: center;
    input {
      margin-right: 5px;
    }
    a {
      text-decoration: underline;
    }
    .required-mark {
      margin-left: 5px;
    }
  }
  .btn {
    background-color: var(--btn-color);
    color: #fff;
    border-radius: 50px;
    width: min(300px, 80%);
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    position: relative;
    margin: 40px auto 0;
    transition: opacity 0.3s ease;
    &::after {
      content: " ";
      position: absolute;
      background-size: cover;
      background-image: url(img/btn-arrow.svg);
      width: 20px;
      top: 50%;
      transform: translateY(-50%);
      height: 20px;
      right: 30px;
    }
    &:hover {
      cursor: pointer;
      opacity: .7;
    }
  }
}
.page404,
.request {
  background-color: rgba(80, 171, 211, 0.4);
  padding: 200px 0;
  .inner {
    margin: 0 auto;
    width: var(--inner);
    text-align: center;
    background: #fff;
    border-radius: 10px;
    padding: 30px 0;
  }
  .title {
    font-weight: 700;
    font-size: 4rem;
    margin-bottom: 4rem;
    @media screen and (max-width: 768px) {
      font-size: 2rem;
    }
  }
  .dog {
    width: 160px;
    margin-bottom: 4rem;
  }
  .text {
    line-height: 1.8;
    font-weight: 400;
  }
  .btn {
    background-color: var(--btn-color);
    color: #fff;
    border-radius: 50px;
    width: min(300px, 80%);
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    position: relative;
    margin: 40px auto 0;
    transition: opacity 0.3s ease;
    &::after {
      content: " ";
      position: absolute;
      background-size: cover;
      background-image: url(img/btn-arrow.svg);
      width: 20px;
      top: 50%;
      transform: translateY(-50%);
      height: 20px;
      right: 30px;
    }
    &:hover {
      cursor: pointer;
      opacity: .7;
    }
  }
} 
