@charset "UTF-8";
/*===
  #common
  ===*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

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

body {
  color: #333;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  line-height: 1.5;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

a:hover {
  opacity: 0.6;
}

.container {
  width: 1360px;
  max-width: 100%;
  padding: 0 40px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}

.main {
  padding-top: 124px;
}

@media screen and (max-width: 767px) {
  .main {
    padding-top: 52px;
  }
}

.section {
  padding: 120px 0;
}

@media screen and (max-width: 767px) {
  .section {
    padding: 60px 0;
  }
}

.sec_ttl {
  display: block;
  text-align: center;
}

.sec_ttl .ttl {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .sec_ttl .ttl {
    font-size: 28px;
  }
}

.sec_ttl .sub_ttl {
  display: inline-block;
  font-size: 24px;
  font-family: neue-haas-grotesk-display, sans-serif;
  color: #20bbcd;
  letter-spacing: 0.1em;
  line-height: 1;
  position: relative;
}

@media screen and (max-width: 767px) {
  .sec_ttl .sub_ttl {
    font-size: 18px;
  }
}

.sec_ttl .sub_ttl::after, .sec_ttl .sub_ttl::before {
  position: absolute;
  content: "";
  background-color: #20bbcd;
  width: 20px;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.sec_ttl .sub_ttl::before {
  left: -30px;
}

.sec_ttl .sub_ttl::after {
  right: -30px;
}

.sec_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 218px;
  height: 50px;
  border-radius: 999px;
  background-color: #20bbcd;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .sec_btn a {
    font-size: 16px;
  }
}

/* ===============================================
# ヘッダー
=============================================== */
#header {
  z-index: 20;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  #header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
  }
}

#header > .inner {
  display: flex;
  align-items: center;
  padding: 40px;
  background-color: #fff;
  position: relative;
}

@media screen and (max-width: 767px) {
  #header > .inner {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 50px;
  }
}

#header > .inner .description {
  position: absolute;
  top: 10px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  #header > .inner .description {
    font-size: 10px;
    top: 0;
  }
}

@media screen and (max-width: 767px) {
  .header-logo {
    margin-top: 5px;
  }
}

.header-logo a {
  transition: all 0.3s ease 0s;
  font-size: 24px;
  color: #333;
  font-weight: 600;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .header-logo a {
    font-size: 18px;
  }
}

.header-logo a:hover {
  opacity: 0.6;
}

.header-sub {
  color: #333;
  font-family: "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Meiryo", "Noto Sans Japanese", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.71429;
  padding: 0 38px;
}

.header-sub span {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .header-sub span {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .header-sub {
    font-size: 10px;
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
}

.header-nav {
  background: #fff;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .header-nav {
    display: none;
  }
}

.header-nav > .inner {
  display: flex;
}

.header-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  height: 40px;
  line-height: 40px;
}

.header-nav li {
  margin-right: clamp(15px, 2.08333vw, 40px);
}

.header-nav li > a {
  color: #325151;
  display: block;
  font-family: "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Meiryo", "Noto Sans Japanese", sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease 0s;
  opacity: 1;
}

.header-nav li > a:hover {
  opacity: 0.6;
}

.header-line a {
  display: block;
  background-color: #00B900;
  color: #fbfbfb;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .header-line a {
    font-size: 14px;
    padding: 5px 10px;
  }
}

.header-contact {
  background-image: linear-gradient(45deg, #5accb0, #20bbcd);
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(180px, 12.1875vw, 234px);
  height: 164px;
  right: 0;
  top: 0;
  border-radius: 0 0 0 14px;
}

.header-contact img {
  display: block;
  margin: 0 auto;
  width: 52px;
}

.header-contact span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fbfbfb;
}

/* ===============================================
# ドロワー 
=============================================== */
.drawer {
  display: none;
}

@media screen and (max-width: 767px) {
  .drawer {
    display: block;
  }
}

.drawer-icon {
  color: #20bbcd;
  cursor: pointer;
  font-size: 20px;
  position: fixed;
  right: 17px;
  text-align: center;
  top: 10px;
  z-index: 41;
}

.drawer-open {
  display: block;
}

.m_checked .drawer-open {
  display: none;
}

.drawer-close {
  display: none;
}

.m_checked .drawer-close {
  display: block;
}

.drawer-content {
  background: rgba(51, 51, 51, 0.9);
  background-image: linear-gradient(45deg, #b4e683 -10%, #68d0a9 10%, #20bbcd 100%);
  height: 100vh;
  left: 0;
  opacity: 0;
  overflow: auto;
  padding: 100px 16px 16px;
  position: fixed;
  text-align: left;
  top: 0;
  transition: all 0.3s ease 0s;
  visibility: hidden;
  width: 100%;
  z-index: 40;
}

.m_checked .drawer-content {
  opacity: 1;
  visibility: visible;
}

.drawer-nav li a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 6px solid transparent;
  color: #fff;
  display: block;
  font-size: 16px;
  padding: 20px 12px 24px 5px;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
}

.fa-times::before {
  color: #fff;
}

/* ===============================================
# fv
=============================================== */
.fv {
  background: url(../img/mv.webp) center center/cover no-repeat;
  height: calc(100vh - 138px);
  border-radius: 28px;
  margin: 0 40px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .fv {
    margin: 0 10px;
    height: 500px;
    background-position: 80% center;
  }
}

.fv .container {
  position: relative;
  height: 100%;
}

.fv_logo {
  position: absolute;
  top: 0;
  right: 0;
}

.fv_logo img {
  width: 200px;
}

@media screen and (max-width: 767px) {
  .fv_logo img {
    width: 100px;
  }
}

.fv_txt-box {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.fv_txt-box h2 {
  font-size: clamp(40px, 3.17708vw, 61px);
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 700;
  color: #fbfbfb;
}

@media screen and (max-width: 767px) {
  .fv_txt-box h2 {
    font-size: 24px;
  }
}

.fv_txt-box h2 span {
  display: inline-block;
  background-color: #20bbcd;
  padding: 0 30px;
  border-radius: 10px;
}

.fv_txt-box h2 span:last-child {
  margin-top: 13px;
  margin-left: clamp(100px, 10.1vw, 200px);
}

@media screen and (max-width: 767px) {
  .fv_txt-box h2 span:last-child {
    margin-left: 30px;
  }
}

.fv_news {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.665);
  border-radius: 40px;
  width: 100%;
  height: 80px;
  line-height: 80px;
  padding: 0 18px 0 60px;
}

@media screen and (max-width: 767px) {
  .fv_news {
    height: auto;
    padding: 10px;
    bottom: 0;
    border-radius: 20px;
  }
}

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

@media screen and (max-width: 767px) {
  .fv_news-inner {
    flex-direction: column;
  }
}

.fv_news-inner h2 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 26px;
  letter-spacing: 0.06em;
  color: #20bbcd;
  margin-right: 36px;
}

@media screen and (max-width: 767px) {
  .fv_news-inner h2 {
    margin-right: 0;
    line-height: 1;
  }
}

.fv_news-left {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .fv_news-left {
    flex-direction: column;
  }
}

.fv_news-center {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .fv_news-center {
    flex-direction: column;
  }
}

.fv_news-center .info {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .fv_news-center .info {
    margin-top: 5px;
  }
}

.fv_news-center time {
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: 500;
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .fv_news-center time {
    margin-right: 10px;
    line-height: 1;
  }
}

.fv_news-center .cat {
  background-color: #20bbcd;
  line-height: 1;
  padding: 5px 15px;
  margin-right: 15px;
  color: #fbfbfb;
}

@media screen and (max-width: 767px) {
  .fv_news-center .cat {
    margin-right: 0;
    margin-top: 5px;
    font-size: 12px;
  }
}

.fv_news-center h3 {
  font-size: clamp(16px, 1.0416vw, 20px);
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .fv_news-center h3 {
    line-height: 1;
    margin-top: 5px;
  }
}

.fv_news-btn {
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .fv_news-btn {
    margin: 15px auto 0;
  }
}

.fv_news-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 218px;
  height: 50px;
  border-radius: 999px;
  background-color: #20bbcd;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .fv_news-btn a {
    height: 40px;
    width: 150px;
  }
}

/* ===============================================
# message
=============================================== */
.message_wrapper {
  margin-top: 60px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .message_wrapper {
    flex-direction: column;
    margin-top: 30px;
  }
}

.message_left {
  width: 50%;
  margin-right: 40px;
}

@media screen and (max-width: 767px) {
  .message_left {
    width: 100%;
    margin-right: 0;
  }
}

.message_left img {
  display: block;
  border-radius: 20px;
  height: 380px;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .message_left img {
    height: 200px;
  }
}

.message_right {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .message_right {
    width: 100%;
    margin-top: 20px;
  }
}

.message_right .ttl {
  font-size: 32px;
  font-weight: 600;
  position: relative;
}

@media screen and (max-width: 767px) {
  .message_right .ttl {
    font-size: 24px;
  }
}

.message_right .ttl span {
  display: block;
  position: absolute;
  top: -5vw;
  font-size: 9vw;
  line-height: 1;
  letter-spacing: 0.1em;
  z-index: -1;
  color: #20bbcd;
  font-family: "neue-haas-unica", sans-serif;
  opacity: 0.1;
}

@media screen and (max-width: 767px) {
  .message_right .ttl span {
    font-size: 60px;
  }
}

.message_right .txt {
  margin-top: 30px;
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .message_right .txt {
    margin-top: 20px;
    font-size: 16px;
  }
}

.message_right .name {
  font-size: 24px;
  font-weight: 600;
  margin-top: 20px;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .message_right .name {
    font-size: 16px;
    margin-top: 10px;
  }
}

.message_txt {
  margin-top: 30px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .message_txt {
    font-size: 14px;
  }
}

/* ===============================================
# feature
=============================================== */
.feature {
  background-image: linear-gradient(45deg, #b4e683 -10%, #68d0a9 10%, #20bbcd 100%);
}

.feature .sec_ttl {
  color: #fbfbfb;
}

.feature .sub_ttl {
  color: #fbfbfb;
}

.feature .sub_ttl::before, .feature .sub_ttl::after {
  background-color: #fbfbfb;
}

.feature_wrapper {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .feature_wrapper {
    margin-top: 30px;
  }
}

.feature_item {
  display: flex;
  position: relative;
}

@media screen and (max-width: 767px) {
  .feature_item {
    flex-direction: column;
  }
}

.feature_item + .feature_item {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .feature_item + .feature_item {
    margin-top: 30px;
  }
}

.feature_item-reverse {
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .feature_item-reverse {
    flex-direction: column;
  }
}

.feature_item-reverse .feature_right {
  left: 0;
}

.feature_left {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .feature_left {
    width: 100%;
  }
}

.feature_left img {
  border-radius: 20px;
}

@media screen and (max-width: 767px) {
  .feature_left img {
    border-radius: 20px 20px 0 0;
  }
}

.feature_right {
  width: 55%;
  position: absolute;
  right: 0;
  bottom: -10%;
  background-color: #fff;
  padding: 60px;
  border-radius: 20px;
}

@media screen and (max-width: 767px) {
  .feature_right {
    position: static;
    width: 100%;
    padding: 30px 15px;
    border-radius: 0 0 20px 20px;
  }
}

.feature_right-inner {
  position: relative;
}

.feature_right-inner .point {
  position: absolute;
  top: -85px;
  left: -30px;
  font-size: 40px;
  font-weight: 600;
  font-family: "neue-haas-unica", sans-serif;
  letter-spacing: 0.06em;
  color: #fbfbfb;
  background-color: #dbdb00;
  line-height: 1;
  padding: 0 5px 5px 10px;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .feature_right-inner .point {
    font-size: 24px;
    top: -40px;
    left: -10px;
  }
}

.feature_right-inner .point span {
  font-size: 60px;
}

@media screen and (max-width: 767px) {
  .feature_right-inner .point span {
    font-size: 30px;
  }
}

.feature_right-inner .ttl {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #20bbcd;
}

@media screen and (max-width: 767px) {
  .feature_right-inner .ttl {
    font-size: 20px;
  }
}

.feature_right-inner .txt {
  margin-top: 30px;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .feature_right-inner .txt {
    margin-top: 15px;
  }
}

/* ===============================================
# about
=============================================== */
.about {
  background: url(../img/about-back.webp) center center/cover no-repeat;
}

@media screen and (max-width: 767px) {
  .about {
    background: url(../img/about-back.webp) 70% center/cover no-repeat;
    position: relative;
  }
  .about::after {
    position: absolute;
    content: "";
    background-color: rgba(255, 255, 255, 0.856);
    width: 100%;
    height: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
  }
}

.about_wrapper {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .about_wrapper {
    width: 100%;
    position: relative;
    z-index: 1;
  }
}

.about_ttl {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #20bbcd;
}

@media screen and (max-width: 767px) {
  .about_ttl {
    font-size: 24px;
  }
}

.about_ttl span {
  display: inline-block;
  font-size: 42px;
  margin-right: 10px;
  font-family: "neue-haas-unica", sans-serif;
  font-weight: 600;
  color: #fbfbfb;
  letter-spacing: 0.1em;
  background-color: #20bbcd;
  padding: 0 15px;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .about_ttl span {
    font-size: 32px;
  }
}

.about_txt {
  margin-top: 30px;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ===============================================
# 料金
=============================================== */
.price .sec_ttl .txt {
  margin-top: 10px;
  font-weight: 500;
  color: #ff6a00;
}

.price_wrapper {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .price_wrapper {
    margin-top: 20px;
  }
}

.price_wrapper .slick-track {
  padding: 50px 0 20px;
}

.price_wrapper .slick-prev,
.price_wrapper .slick-next {
  border: 2px solid #ff6a00;
  border-radius: 50%;
  background-color: #ff6a00;
  width: 50px;
  height: 50px;
  z-index: 11;
}

@media screen and (max-width: 767px) {
  .price_wrapper .slick-prev,
  .price_wrapper .slick-next {
    width: 30px;
    height: 30px;
  }
}

.price_wrapper .slick-prev::before,
.price_wrapper .slick-next::before {
  content: "";
  color: #20bbcd;
  opacity: 1;
}

.price_wrapper .slick-prev {
  left: -35px;
}

@media screen and (max-width: 767px) {
  .price_wrapper .slick-prev {
    left: -15px;
  }
}

.price_wrapper .slick-prev::before {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 20px solid #fff;
  border-left: 0;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .price_wrapper .slick-prev::before {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 14px solid #fff;
  }
}

.price_wrapper .slick-next {
  right: -35px;
}

@media screen and (max-width: 767px) {
  .price_wrapper .slick-next {
    right: -15px;
  }
}

.price_wrapper .slick-next::before {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 20px solid #fff;
  border-right: 0;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .price_wrapper .slick-next::before {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 14px solid #fff;
  }
}

.price_wrapper .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 10px;
}

.price_wrapper .slick-dots li button {
  background-color: #c5c5c5;
  border-radius: 50%;
  width: 15px;
  height: 15px;
}

.price_wrapper .slick-dots li.slick-active button {
  background-color: #20bbcd;
}

.price_list {
  width: 45%;
  padding: 50px 15px 30px;
  margin: 0 20px;
  border-radius: 20px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .price_list {
    padding: 30px 10px 20px;
    margin: 0 5px;
  }
}

.price_list picture {
  display: block;
  width: 70%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .price_list picture {
    width: 90%;
  }
}

.price_list picture img {
  border-radius: 10px;
}

.price_list-first {
  background-color: #20bbcd;
}

.price_list-first .price_course {
  border: 3px solid #20bbcd;
}

.price_list-second {
  background-color: #7fd4a3;
}

.price_list-second .price_course {
  border: 3px solid #7fd4a3;
}

.price_list-third {
  background-color: #9fd580;
}

.price_list-third .price_course {
  border: 3px solid #9fd580;
}

.price_list-four {
  background-color: #2096cd;
}

.price_list-four .price_course {
  border: 3px solid #2096cd;
}

.price_course {
  position: absolute;
  text-align: center;
  border: 5px solid #20bbcd;
  background-color: #fff;
  top: -5.5%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  padding: 5px 10px;
  width: 90%;
}

@media screen and (max-width: 767px) {
  .price_course {
    top: -3.5%;
  }
}

.price_course .ttl {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .price_course .ttl {
    font-size: 20px;
    line-height: 1;
  }
}

.price_course .subject {
  font-weight: 500;
  letter-spacing: 0.06em;
}

.price_txt {
  margin-top: 10px;
  color: #fbfbfb;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
  padding: 0 10px;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .price_txt {
    padding: 0;
  }
}

.price_content {
  margin-top: 10px;
}

.price_content dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 20px;
  padding: 10px 40px;
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .price_content dl {
    padding: 10px;
  }
}

.price_content dl:first-child {
  margin-top: 0;
}

.price_content dl dt {
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .price_content dl dt {
    font-size: 16px;
  }
}

.price_content dl dd {
  text-align: right;
}

.price_link {
  margin-top: 10px;
  text-align: center;
}

.price_link a {
  font-weight: 500;
  letter-spacing: 0.06em;
}

.price_bottom-txt {
  text-align: center;
  margin-top: 40px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.price_bottom-txt span {
  color: #ff6a00;
}

/* ===============================================
# ご利用者の声
=============================================== */
.voice {
  padding: 120px 0;
  background-color: #f4f4f4;
}

@media screen and (max-width: 767px) {
  .voice {
    padding: 80px 0;
  }
}

@media screen and (max-width: 767px) {
  .voice_ttl {
    text-align: center;
  }
}

.voice_ttl h2 {
  font-size: clamp(32px, 2.08333vw, 40px);
  font-weight: 700;
  color: #20bbcd;
}

@media screen and (max-width: 767px) {
  .voice_ttl h2 {
    font-size: 24px;
  }
}

.voice_ttl p {
  font-size: clamp(75px, 4.6875vw, 90px);
  font-family: neue-haas-grotesk-display, sans-serif;
  letter-spacing: 0.06em;
  margin-left: 30px;
}

@media screen and (max-width: 767px) {
  .voice_ttl p {
    font-size: 42px;
    margin-left: 0;
  }
}

.voice_txt {
  margin-left: 60px;
  letter-spacing: 0.06em;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .voice_txt {
    margin-left: 0;
  }
}

.voice_wrapper {
  margin-top: 50px;
  display: flex;
  position: relative;
}

@media screen and (max-width: 767px) {
  .voice_wrapper {
    flex-direction: column;
    margin-top: 30px;
  }
}

.voice_wrapper::after {
  position: absolute;
  content: "";
  background: url(../img/icon-voice.png) center center/cover no-repeat;
  width: 139px;
  height: 176px;
  right: 30px;
  top: -175px;
}

@media screen and (max-width: 767px) {
  .voice_wrapper::after {
    display: none;
  }
}

.voice_item {
  width: calc((100% - 4.1666vw) / 3);
  margin: 0 15px;
}

@media screen and (max-width: 767px) {
  .voice_item {
    width: 100%;
  }
}

.voice_item picture {
  display: block;
  position: relative;
}

.voice_item picture img {
  height: clamp(250px, 18.75vw, 360px);
  object-fit: cover;
  border-radius: 20px;
}

.voice_item .cat {
  position: absolute;
  bottom: -23px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 245px;
  display: inline-block;
  z-index: 1;
  background-color: #9fd580;
  font-size: 18px;
  padding: 10px 0;
  text-align: center;
  border-radius: 999px;
  color: #fff;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.voice_item .name {
  text-align: center;
  margin-top: 45px;
  color: #aaaaaa;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.voice_item .txt {
  margin-top: 40px;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: #191919;
}

@media screen and (max-width: 767px) {
  .voice_item .txt {
    font-size: 14px !important;
    line-height: 1.5;
  }
}

.voice_btn {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .voice_btn {
    margin-top: 40px;
  }
}

.voice_btn a {
  margin: 0 auto;
}

/* ===============================================
# insta
=============================================== */
.insta_wrapper {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .insta_wrapper {
  margin-top: 40px;
}
}

/* ===============================================
# アクセス
=============================================== */
.access {
  background-color: #f8feff;
}

.access_wrapper {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .access_wrapper {
    margin-top: 30px;
  }
}

.access_map {
  position: relative;
  width: 100%;
  padding-top: 50%;
  /* 600 / 1200 = 0.5 → 50% */
  overflow: hidden;
}

.access_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.access_txt {
  text-align: center;
  margin-top: 30px;
}

.access_txt p {
  font-weight: 500;
  letter-spacing: 0.06em;
}

.access_txt a {
  display: block;
  margin-top: 5px;
  color: #333;
  font-weight: 500;
}

/* ===============================================
# よくある質問
=============================================== */
.qa {
  background-color: #f8feff;
  padding: 120px 0;
}

@media screen and (max-width: 767px) {
  .qa {
    padding: 80px 0;
  }
}

.qa_ttl {
  text-align: center;
}

.qa_ttl h2 {
  font-size: clamp(32px, 2.08333vw, 40px);
  font-weight: 700;
  color: #20bbcd;
}

@media screen and (max-width: 767px) {
  .qa_ttl h2 {
    font-size: 24px;
  }
}

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

.qa_ttl .box img {
  width: 90px;
}

@media screen and (max-width: 767px) {
  .qa_ttl .box img {
    width: 50px;
  }
}

.qa_ttl .box p {
  font-size: clamp(75px, 4.6875vw, 90px);
  font-family: neue-haas-grotesk-display, sans-serif;
  letter-spacing: 0.06em;
  margin-left: 25px;
}

@media screen and (max-width: 767px) {
  .qa_ttl .box p {
    font-size: 42px;
  }
}

.qa_wrapper {
  max-width: 1000px;
  margin: 40px auto 0;
}

.qa_wrapper dl {
  margin-top: 20px;
}

.qa_wrapper dl:first-child {
  margin-top: 0;
}

.qa_wrapper dl dt {
  min-height: 98px;
  padding: 15px 30px 15px 120px;
  background-color: #fff;
  display: flex;
  align-items: center;
  border-radius: 20px;
  border: 1px dotted #d9e5e5;
  font-size: clamp(16px, 1.04167vw, 20px);
  font-weight: 500;
  position: relative;
}

@media screen and (max-width: 767px) {
  .qa_wrapper dl dt {
    padding: 10px 15px 10px 70px;
  }
}

.qa_wrapper dl dt::after {
  position: absolute;
  content: "";
  background: url(../img/icon-q.png) center center/cover no-repeat;
  width: 59px;
  height: 54px;
  left: 35px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .qa_wrapper dl dt::after {
    width: 40px;
    height: 36px;
    left: 15px;
  }
}

.qa_wrapper dl dd {
  color: #52cad8;
  font-size: clamp(16px, 1.04167vw, 20px);
  font-weight: 500;
  line-height: 2.1;
  padding: 0 25px;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .qa_wrapper dl dd {
    margin-top: 15px;
  }
}

/* ===============================================
# お問い合わせ
=============================================== */
.contact {
  background-image: linear-gradient(45deg, #58cbb1, #20bbcd);
  padding: 120px 0;
}

@media screen and (max-width: 767px) {
  .contact {
    padding: 80px 0;
  }
}

.contact_ttl {
  text-align: center;
  color: #fff;
}

.contact_ttl h2 {
  font-size: 30px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .contact_ttl h2 {
    font-size: 24px;
  }
}

.contact_ttl p {
  font-size: 60px;
  letter-spacing: 0.09em;
  font-family: neue-haas-grotesk-display, sans-serif;
}

@media screen and (max-width: 767px) {
  .contact_ttl p {
    font-size: 42px;
  }
}

.contact_wrapper {
  max-width: 1080px;
  margin: 80px auto 0;
}

@media screen and (max-width: 767px) {
  .contact_wrapper {
    margin-top: 40px;
  }
}

.contact-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 60px 50px;
  margin-top: 50px;
  border-bottom: 2px dotted #ffffff;
}

@media screen and (max-width: 767px) {
  .contact-block {
    padding: 0 10px 20px;
    margin-top: 10px;
    flex-direction: column;
  }
}

.contact-block:first-child {
  margin-top: 0;
}

.contact-contents__item--required {
  width: 46.05%;
}

@media screen and (max-width: 767px) {
  .contact-contents__item--required {
    flex-direction: column;
    margin-top: 20px;
    width: 100%;
  }
}

.item-radio {
  width: 100%;
}

.item-textarea {
  width: 100%;
}

.contact-contents__item-title {
  font-size: clamp(18px, 1.14583vw, 22px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  margin-left: 15px;
}

@media screen and (max-width: 767px) {
  .contact-contents__item-title {
    display: inline;
    width: auto;
    font-size: 16px;
    margin-bottom: 5px;
    width: 100%;
    margin-left: 0;
  }
}

.contact-contents__item-input--text {
  margin-top: 28px;
}

@media screen and (max-width: 767px) {
  .contact-contents__item-input--text {
    width: 100%;
    margin-top: 15px;
  }
}

.wpcf7-form-control-wrap {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .wpcf7-form-control-wrap {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .contact-contents__item-textarea {
    width: 100%;
  }
}

.contact-btn-wrap {
  text-align: center;
  margin-top: 28px;
}

.contact-contents__submit {
  display: inline-block;
}

.contact-contents__btn {
  width: 530px;
  height: clamp(80px, 6.25vw, 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: none;
  background-image: linear-gradient(135deg, #d9e982, #bbe783);
  color: #0a8f9f;
  text-align: center;
  font-size: 24px;
  font-size: clamp(18px, 1.25vw, 24px);
  letter-spacing: 0.06em;
  border-radius: 999px;
  cursor: pointer;
}

.contact-contents__btn:hover {
  opacity: 0.6;
}

@media screen and (max-width: 767px) {
  .contact-contents__btn {
    width: 300px;
    font-size: 18px;
    height: 60px;
    display: flex;
    justify-content: center;
  }
}

input[type="text"], input[type="email"], input[type="tel"] {
  width: 100%;
  border: none;
  height: 98px;
  border-radius: 20px;
  background: #f8f8f8;
  padding-left: 10px;
}

@media screen and (max-width: 767px) {
  input[type="text"], input[type="email"], input[type="tel"] {
    height: 42px;
  }
}

textarea {
  width: 100%;
  min-height: 330px;
  margin-top: 28px;
  border-radius: 20px;
  resize: vertical;
  border: none;
  background: #ffffff;
  padding: 10px;
}

@media screen and (max-width: 767px) {
  textarea {
    min-height: 200px;
  }
}

.wpcf7-form-control {
  display: flex;
  flex-wrap: wrap;
}

input[type="radio"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.wpcf7-list-item.first {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .wpcf7-list-item.first {
    margin-top: 0;
  }
}

.wpcf7-list-item {
  display: block;
  font-size: 16px;
  margin-left: 40px;
}

@media screen and (max-width: 767px) {
  .wpcf7-list-item {
    font-size: 16px;
    width: 100%;
    margin-left: 0;
    margin-top: 15px;
  }
}

span.wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #fff;
  font-size: clamp(16px, 1.04167vw, 20px);
  font-weight: 500;
}

span.wpcf7-list-item-label::before {
  display: block;
  content: "";
  border-radius: 5px;
  background-color: #ffffff;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

span.wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background-color: #20bbcd;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

input[type="radio"]:checked + span.wpcf7-list-item-label::after {
  display: block;
}

.wpcf7-spinner {
  display: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* ===============================================
# 会社概要
=============================================== */
.company {
  padding: 120px 0;
}

@media screen and (max-width: 767px) {
  .company {
    padding: 80px 0;
  }
}

.company_wrapper {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .company_wrapper {
    flex-direction: column-reverse;
  }
}

.company_left {
  width: 46.88%;
}

@media screen and (max-width: 767px) {
  .company_left {
    width: 100%;
    margin-top: 30px;
  }
}

.company_right {
  margin-left: clamp(50px, 4.94792vw, 95px);
}

@media screen and (max-width: 767px) {
  .company_right {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .company_ttl {
    text-align: center;
  }
}

.company_ttl h2 {
  font-size: clamp(32px, 2.08333vw, 40px);
  font-weight: 700;
  color: #20bbcd;
}

@media screen and (max-width: 767px) {
  .company_ttl h2 {
    font-size: 24px;
  }
}

.company_ttl p {
  font-size: clamp(75px, 4.6875vw, 90px);
  font-family: neue-haas-grotesk-display, sans-serif;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-left: 30px;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .company_ttl p {
    font-size: 42px;
    margin-left: 0;
    margin-top: 10px;
  }
}

.company_content {
  margin-top: 50px;
  margin-left: 50px;
}

@media screen and (max-width: 767px) {
  .company_content {
    margin-left: 0;
  }
}

.company_content dl {
  display: flex;
  align-items: center;
  margin-top: 40px;
}

.company_content dl:first-child {
  margin-top: 0;
}

.company_content dl dt {
  font-size: clamp(16px, 1.04167vw, 20px);
  font-weight: 700;
  letter-spacing: 0.06em;
  width: 107px;
}

.company_content dl dd {
  width: calc(100% - 107px);
}

/* ===============================================
# footer
=============================================== */
.footer {
  background-color: #20bbcd;
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  width: 300px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .footer-logo img {
    width: 150px;
  }
}

.footer_content {
  margin-top: 60px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .footer_content {
    padding-bottom: 60px;
  }
}

.footer_logo-white {
  width: 400px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .footer_logo-white {
    width: 300px;
  }
}

.footer-list {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .footer-list {
    flex-direction: column;
  }
}

.footer-list li {
  margin-left: 50px;
}

@media screen and (max-width: 767px) {
  .footer-list li {
    margin-left: 0;
    margin-top: 15px;
  }
}

.footer-list li:first-child {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .footer-list li:first-child {
    margin-top: 0;
  }
}

.footer-list li a {
  color: #fff;
  font-weight: 500;
}

.copy {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-top: 50px;
}

/* ===============================================
# cta
=============================================== */
.cta {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 999;
}

@media screen and (max-width: 767px) {
  .cta {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .cta_wrapper {
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .cta_list {
    width: 33.33%;
  }
}

.cta_list a {
  width: 270px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fbfbfb;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  border: 2px solid #fff;
}

@media screen and (max-width: 767px) {
  .cta_list a {
    width: 100%;
    display: block;
    font-size: 12px;
    text-align: center;
  }
}

.cta_list a img {
  display: block;
  margin-right: 10px;
  width: 45px;
}

@media screen and (max-width: 767px) {
  .cta_list a img {
    width: 35px;
    margin: 0 auto;
  }
}

.cta_list:nth-child(1) {
  background-color: #2096cd;
}

.cta_list:nth-child(1) a {
  border-bottom: none;
}

@media screen and (max-width: 767px) {
  .cta_list:nth-child(1) a {
    border-bottom: 2px solid #fff;
  }
}

.cta_list:nth-child(2) {
  background-color: #7fd4a3;
}

.cta_list:nth-child(3) {
  background-color: #ff6a00;
}

/* ===============================================
# 下層ページ
=============================================== */
.l_fv_common {
  background: url(../img/mv-common.webp) center center/cover no-repeat;
  padding: clamp(70px, 7.5757vw, 150px) 0;
  margin: 0 40px;
  border-radius: 25px;
}

@media screen and (max-width: 767px) {
  .l_fv_common {
    padding: 40px 0;
    margin: 0 15px;
    background-position: 80% center;
  }
}

.p_fv_common-box {
  position: relative;
}

.c_fv_common-ttl {
  font-size: 70px;
  font-size: clamp(35px, 3.53535vw, 70px);
  font-family: neue-haas-grotesk-display, sans-serif;
  letter-spacing: 0.06em;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .c_fv_common-ttl {
    font-size: 24px;
  }
}

.breadcrumb {
  position: absolute;
  right: 0;
  bottom: -100px;
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    bottom: -80px;
  }
}

/* ===============================================
# アーカイブページ
=============================================== */
.l_archive {
  margin-top: 90px;
  margin-bottom: 90px;
}

.p_archive-wrapper {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .p_archive-wrapper {
    flex-direction: column;
  }
}

.c_archive-item {
  width: calc((100% - 4.1666vw) / 3);
  margin-right: 2.08333vw;
}

@media screen and (max-width: 767px) {
  .c_archive-item {
    width: 100%;
  }
  .c_archive-item + .c_archive-item {
    margin-top: 30px;
  }
}

.c_archive-item:nth-child(3n) {
  margin-right: 0;
}

.c_archive-item:nth-child(n + 4) {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .c_archive-item:nth-child(n + 4) {
    margin-top: 30px;
  }
}

.c_archive-item picture {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.c_archive-item picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.c_archive-item picture .cat {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 245px;
  display: inline-block;
  z-index: 1;
  background-color: #9fd580;
  font-size: 18px;
  padding: 10px 0;
  text-align: center;
  border-radius: 999px;
  color: #fff;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.c_archive-content {
  margin-top: 20px;
  padding: 0 20px;
}

.c_archive-content .published {
  display: block;
  text-align: center;
  color: #90acb5;
  font-weight: 500;
}

.c_archive-content .txt {
  margin-top: 15px;
  letter-spacing: 0.06em;
  line-height: 2;
  color: #191919;
}

.single_btn {
  margin-top: 60px;
}

.single_btn a {
  margin: 0 auto;
}

.l_breadcrumb {
  position: static;
  right: 0;
  bottom: -9.5vw;
  color: white;
}

@media screen and (max-width: 767px) {
  .l_breadcrumb {
    bottom: -80px;
    color: #333;
  }
}

.l_breadcrumb span a {
  color: white;
}

@media screen and (max-width: 767px) {
  .l_breadcrumb span a {
    color: #333;
  }
}

.pagination {
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .pagination {
    margin-top: 60px;
  }
}

.pagination a {
  transition: all 0.3s ease 0s;
}

.pagination a:hover {
  color: #004bb1;
}

.pagination a.next,
.pagination a.prev {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #424e57;
  background-color: transparent;
  border-radius: 5px;
  width: 40px;
  height: 58px;
  position: relative;
}

.pagination a.next img,
.pagination a.prev img {
  width: 34px;
}

.pagination a.next:hover,
.pagination a.prev:hover {
  opacity: 0.6;
}

.page-numbers {
  display: inline-block;
  font-size: 16px;
  margin-right: 10px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #fff;
  padding: 17px 12px;
  color: #424e57;
}

.page-numbers:last-child {
  margin-right: 0;
}

.page-numbers.current {
  color: #fff;
  padding: 17px 12px;
  background-color: #20bbcd;
}

.page-numbers.dots,
.page-numbers.next,
.page-numbers.prev {
  border: none;
  line-height: 40px;
  min-width: initial;
  width: auto;
}

/* ===============================================
# 詳細ページ
=============================================== */
.l_single {
  margin-top: 90px;
  margin-bottom: 90px;
}

.p_single-info {
  display: flex;
  align-items: center;
}

.p_single-info .published {
  margin-left: 47px;
  color: #90acb5;
  font-weight: 500;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .p_single-info .published {
    margin-left: 20px;
  }
}

.c_single-cat {
  padding: 10px 80px;
  background-color: #9fd580;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.06em;
  border-radius: 999px;
}

@media screen and (max-width: 767px) {
  .c_single-cat {
    padding: 5px 15px;
    font-size: 14px;
  }
}

.c_single-ttl {
  font-size: 22px;
  font-weight: 500;
  margin-top: 30px;
  margin-left: 20px;
}

@media screen and (max-width: 767px) {
  .c_single-ttl {
    font-size: 16px;
    margin-left: 0;
    margin-top: 10px;
  }
}

.c_single-thumnail {
  display: block;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .c_single-thumnail {
    margin-top: 20px;
  }
}

.c_single-content {
  margin-top: 40px;
}

.c_single-content h2,
.c_single-content h3,
.c_single-content h4,
.c_single-content h5,
.c_single-content p,
.c_single-content img {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .c_single-content h2,
  .c_single-content h3,
  .c_single-content h4,
  .c_single-content h5,
  .c_single-content p,
  .c_single-content img {
    margin-top: 20px;
  }
}

.c_single-content h2 {
  background-image: linear-gradient(45deg, #5accb0, #20bbcd);
  padding: 10px 30px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .c_single-content h2 {
    font-size: 20px;
    padding: 5px 15px;
  }
}

.c_single-content h3 {
  border-top: 1px dotted #20bbcd;
  border-bottom: 1px dotted #20bbcd;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 10px 30px;
}

@media screen and (max-width: 767px) {
  .c_single-content h3 {
    font-size: 18px;
    padding: 10px 15px;
  }
}

.c_single-content h4 {
  font-size: 20px;
  letter-spacing: 0.06em;
  font-weight: 500;
  padding-left: 50px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .c_single-content h4 {
    font-size: 18px;
  }
}

.c_single-content h4::before {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.c_single-content h4::after {
  position: absolute;
  content: "";
  background-color: #20bbcd;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.c_single-content h5 {
  font-size: 20px;
  letter-spacing: 0.06em;
  color: #8bc0c6;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .c_single-content h5 {
    font-size: 18px;
  }
}

.c_single-content p {
  font-weight: 500;
  line-height: 2.5;
  padding: 0 30px;
  margin-top: 15px;
}

@media screen and (max-width: 767px) {
  .c_single-content p {
    padding: 0;
  }
}

/* ===============================================
# お客様の声詳細
=============================================== */
.c_single-voice-comment {
  display: flex;
  align-items: center;
  border: 1px dotted #707070;
  padding: 50px;
  margin-top: 60px;
}

.c_single-voice-img {
  margin-right: 50px;
}

.c_single-voice-img img {
  margin-top: 0;
  width: 150px;
}

.c_single-voice-ttl {
  font-size: 20px;
  color: #8bc0c6;
  letter-spacing: 0.06em;
}

.c_single-voice-txt {
  font-weight: 500;
  line-height: 2.2;
  margin-top: 20px;
}
