@charset "UTF-8";
/* デフォルト */
/* レスポンシブ設定 */
@media screen and (min-width: 321px) {
  .ssp {
    display: none;
  }
}

@media screen and (min-width: 541px) {
  .sp {
    display: none;
  }
}

@media screen and (max-width: 540px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .tb {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .nb {
    display: none;
  }
}

.top_kv {
  padding: 290px 0 205px;
  background: url(../img/faq-h1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 1024px) {
  .top_kv {
    padding: 180px 0 100px;
  }
}

@media screen and (max-width: 768px) {
  .top_kv {
    padding-top: 140px;
  }
}

@media screen and (max-width: 540px) {
  .top_kv {
    background: url(../img/faq-h1_sp.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 170px 0 55px;
  }
}

@media screen and (max-width: 320px) {
  .top_kv {
    padding: 135px 0 40px;
  }
}

.top_kv h1 {
  color: #16B0DC;
  font-size: 45px;
  margin-bottom: 23px;
  text-align: left;
  font-weight: normal;
}

.top_kv h1 span {
  font-size: 52px;
}

@media screen and (max-width: 1024px) {
  .top_kv h1 {
    font-size: 30px;
  }
  .top_kv h1 span {
    font-size: 37px;
  }
}

@media screen and (max-width: 540px) {
  .top_kv h1 {
    font-size: 20px;
  }
  .top_kv h1 span {
    font-size: 25px;
  }
}

@media screen and (max-width: 320px) {
  .top_kv h1 {
    font-size: 18px;
  }
  .top_kv h1 span {
    font-size: 22px;
  }
}

.top_kv p.sub-text {
  font-size: 22px;
}

@media screen and (max-width: 1024px) {
  .top_kv p.sub-text {
    font-size: 18px;
  }
}

@media screen and (max-width: 540px) {
  .top_kv p.sub-text {
    font-size: 13px;
  }
}

/* faq Section */
.faq-section {
  background-color: #ffffff;
}

.faq-section .faq-container {
  max-width: 800px;
  margin: 0 auto;
  width: 90%;
}

.faq-section .faq-container .faq-header {
  text-align: center;
  margin-bottom: 53px;
}

.faq-section .faq-container .faq-header h2 {
  color: #16b0dc;
  margin-bottom: 33px;
}

@media screen and (max-width: 540px) {
  .faq-section .faq-container .faq-header h2 {
    margin-bottom: 30px;
  }
}

.faq-section .faq-container .column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  max-width: 770px;
  margin: auto;
  padding: 0 15px;
}

@media screen and (max-width: 540px) {
  .faq-section .faq-container .column {
    gap: 10px;
  }
}

.faq-section .faq-container .faq-item {
  border-radius: 10px;
}

.faq-section .faq-container .faq-item .faq-question {
  background: #fff;
  border: 1px solid #16B0DC;
  border-radius: 10px;
  padding: 20px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.faq-section .faq-container .faq-item .faq-question .faq-text {
  color: #16B0DC;
  font-size: 18px;
  font-weight: bold;
}

.faq-section .faq-container .faq-item .faq-question .faq-arrow {
  position: relative;
  width: 12px;
  height: 12px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.faq-section .faq-container .faq-item .faq-question .faq-arrow::before, .faq-section .faq-container .faq-item .faq-question .faq-arrow::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: #16B0DC;
  left: 0;
}

.faq-section .faq-container .faq-item .faq-question .faq-arrow::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 2px;
}

.faq-section .faq-container .faq-item .faq-question .faq-arrow::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 2px;
}

.faq-section .faq-container .faq-item .faq-answer {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0fr;
      grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows .4s ease;
  transition: grid-template-rows .4s ease;
  transition: grid-template-rows .4s ease, -ms-grid-rows .4s ease;
}

.faq-section .faq-container .faq-item .faq-answer > div {
  overflow: hidden;
}

.faq-section .faq-container .faq-item .faq-answer p {
  padding: 20px 40px;
  font-size: 18px;
  line-height: 1.6;
}

.faq-section .faq-container .faq-item .faq-answer a {
  color: #16B0DC;
  text-decoration: none;
  font-weight: bold;
  padding: 0px 40px 20px 40px;
  font-size: 18px;
}

.faq-section .faq-container .faq-item .faq-answer ol {
  list-style: none;
  padding: 20px 40px 0 40px;
  counter-reset: num;
}

@media screen and (max-width: 540px) {
  .faq-section .faq-container .faq-item .faq-answer ol {
    font-size: 14px;
    padding: 20px 15px 0 15px;
  }
}

.faq-section .faq-container .faq-item .faq-answer ol li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 2px;
}

.faq-section .faq-container .faq-item .faq-answer ol li::before {
  position: absolute;
  left: 0;
}

.faq-section .faq-container .faq-item .faq-answer ol li:nth-child(1)::before {
  content: "①";
}

.faq-section .faq-container .faq-item .faq-answer ol li:nth-child(2)::before {
  content: "②";
}

.faq-section .faq-container .faq-item .faq-answer ol li:nth-child(3)::before {
  content: "③";
}

.faq-section .faq-container .faq-item .faq-answer ol li:nth-child(4)::before {
  content: "④";
}

.faq-section .faq-container .faq-item .faq-answer ol li:nth-child(5)::before {
  content: "⑤";
}

.faq-section .faq-container .faq-item .faq-answer ul {
  list-style: none;
  padding: 0px 40px 20px 40px;
}

@media screen and (max-width: 540px) {
  .faq-section .faq-container .faq-item .faq-answer ul {
    font-size: 14px;
    padding: 0px 15px 20px 15px;
  }
}

.faq-section .faq-container .faq-item .faq-answer ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 2px;
}

.faq-section .faq-container .faq-item .faq-answer ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.faq-section .faq-container .faq-item .faq-answer .faq-subheading {
  border-bottom: 1px solid black;
  margin: 5px 40px 0;
  padding: 20px 0 10px 0;
}

@media screen and (max-width: 540px) {
  .faq-section .faq-container .faq-item .faq-answer .faq-subheading {
    margin: 5px 15px -10px;
    padding: 10px 0 5px 0;
  }
}

.faq-section .faq-container .faq-item.active .faq-arrow {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.faq-section .faq-container .faq-item.active .faq-answer {
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
}

@media screen and (max-width: 540px) {
  .faq-section .faq-container .faq-item .faq-question {
    border-radius: 5px;
    padding: 15px 15px;
  }
  .faq-section .faq-container .faq-item .faq-question .faq-text {
    font-size: 14px;
  }
  .faq-section .faq-container .faq-item .faq-answer p {
    padding: 20px 15px;
    font-size: 14px;
  }
  .faq-section .faq-container .faq-item .faq-answer a {
    padding: 0px 15px 20px 15px;
    font-size: 14px;
  }
}

/* Contact Section */
.contact-section {
  position: relative;
  padding: 60px 0 100px;
  background: url(../img/about-contact-bg.png) center/cover;
}

@media screen and (max-width: 540px) {
  .contact-section {
    background: url(../img/about-contact-bg_sp.png) center/cover;
    padding: 40px 0 70px;
  }
}

.contact-section .contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 173, 222, 0.58);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.contact-section .contact-container {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
  width: 90%;
}

.contact-section .contact-container .contact-header h2 {
  color: white;
  font-weight: bold;
  text-shadow: 0px 0px 15px rgba(0, 49, 76, 0.52);
  margin-bottom: 4px;
  padding: 20px 0;
  background: radial-gradient(rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
}

@media screen and (max-width: 540px) {
  .contact-section .contact-container .contact-header h2 {
    text-shadow: 0px 0px 10px rgba(0, 49, 76, 0.52);
  }
}

.contact-section .contact-container .contact-header p {
  font-size: 18px;
  color: white;
  font-weight: bold;
  margin-bottom: 45px;
}

@media screen and (max-width: 540px) {
  .contact-section .contact-container .contact-header p {
    font-size: 14px;
    margin-bottom: 35px;
  }
}

.contact-section .contact-container .service-cards-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 31px;
  margin-bottom: 65px;
}

@media screen and (max-width: 768px) {
  .contact-section .contact-container .service-cards-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 540px) {
  .contact-section .contact-container .service-cards-grid {
    max-width: 280px;
    margin: 0 auto 40px;
  }
}

.contact-section .contact-container .service-cards-grid .service-card {
  background: white;
  border-radius: 13px;
  padding: 39px 28px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .contact-section .contact-container .service-cards-grid .service-card {
    width: 100%;
  }
}

@media screen and (max-width: 540px) {
  .contact-section .contact-container .service-cards-grid .service-card {
    padding: 24px;
  }
}

.contact-section .contact-container .service-cards-grid .service-card h3 {
  font-size: 20px;
  color: #16b0dc;
  margin-bottom: 12px;
}

@media screen and (max-width: 540px) {
  .contact-section .contact-container .service-cards-grid .service-card h3 {
    margin-bottom: 5px;
    font-size: 18px;
  }
}

.contact-section .contact-container .service-cards-grid .service-card img {
  width: 258px;
  margin: 0 auto 12px;
}

@media screen and (max-width: 1024px) {
  .contact-section .contact-container .service-cards-grid .service-card img {
    width: 225px;
  }
}

@media screen and (max-width: 540px) {
  .contact-section .contact-container .service-cards-grid .service-card img {
    margin-bottom: 0;
  }
}

.contact-section .contact-container .service-cards-grid .service-card p {
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .contact-section .contact-container .service-cards-grid .service-card p {
    text-align: center;
  }
}

@media screen and (max-width: 540px) {
  .contact-section .contact-container .service-cards-grid .service-card p {
    text-align: justify;
  }
}

@media screen and (max-width: 540px) {
  .contact-section .contact-container .service-cards-grid .service-card br.tb {
    display: none;
  }
}

.contact-section a.cta-btn {
  max-width: 300px;
  font-size: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

@media screen and (max-width: 540px) {
  .contact-section a.cta-btn {
    max-width: 230px;
    font-size: 15px;
  }
}

.contact-section a.cta-btn::before {
  width: 26px;
  height: 20px;
  left: 35px;
}

@media screen and (max-width: 540px) {
  .contact-section a.cta-btn::before {
    width: 21px;
    height: 17px;
    left: 31px;
  }
}

a.cta-btn::before {
  position: absolute;
  content: '';
  width: 24px;
  height: 20px;
  background: url(../img/cta-line-white.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  left: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
/*# sourceMappingURL=style.css.map */