@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500&display=swap");
body {
  font-size: 20px;
  max-width: 2000px;
  margin-left: auto;
  margin-right: auto;
}

img {
  max-width: 100%;
}

a:hover {
  text-decoration: none;
}

/* 変数 */
/* @mixin */
.fadein {
  transition: 1s;
  opacity: 0;
}

.fadein.animated {
  opacity: 1;
}

section {
  padding: 60px 0;
}

.sec_title {
  text-align: center;
  margin-bottom: 80px;
}
.sec_title img {
  max-width: 80%;
}
@media (max-width: 1200px) {
  .sec_title img {
    max-width: 60%;
  }
}

@media (max-width: 768px) {
  .sec_title {
    margin-bottom: 40px;
  }
}
.mainv {
  position: relative;
}
.mainv .title {
  width: 180px;
  position: absolute;
  top: 10px;
  left: 10px;
}
.mainv img {
  width: 100%;
}
.mainv_btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 11%;
  margin: 0 auto;
  z-index: 1;
  display: block;
  width: 200px;
}
@media (max-width: 1200px) {
  .mainv_btn {
    bottom: 12%;
    padding: 6px 30px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .mainv .title {
    width: 100px;
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .mainv_btn {
    bottom: 45px;
    font-size: 14px;
    width: 300px;
  }
}
@media (max-width: 576px) {
  .mainv_btn {
    bottom: 10px;
    font-size: 14px;
    width: 200px;
  }
}

#cv_f {
  position: fixed;
  bottom: 7%;
  right: 2px;
  z-index: 100;
  width: 30%;
  max-width: 350px;
}

@media (max-width: 992px) {
  #cv_f {
    max-width: 260px;
  }
}
@media (max-width: 576px) {
  #cv_f {
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
}
.ttl_txt {
  text-align: center;
}

.bg_beige {
  background-color: #faf8f4;
}
.bg_grn-g {
  background-image: url(./images/bg_grn.jpg);
  background-size: cover;
}
.bg_grn {
  background-color: #cff0e7;
}

.joint {
  background-color: #373f66;
  text-align: center;
  color: #fff;
  padding: 40px;
  font-size: 24px;
  position: relative;
}
.joint::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 30px 0 30px;
  border-color: #faf8f4 transparent transparent transparent;
}

.benefits_box {
  background: rgba(255, 255, 255, 0.8);
  width: 1000px;
  max-width: 100%;
  margin: 0 auto 160px;
  padding: 120px 60px 60px 60px;
  position: relative;
  font-size: 24px;
}
.benefits_box h3 {
  position: absolute;
  right: 0;
}
.benefits_box:nth-of-type(1) h3 {
  top: -80px;
}
.benefits_box:nth-of-type(2) h3 {
  top: -120px;
}
.benefits_box:nth-of-type(3) h3 {
  top: -120px;
}
.benefits_box:nth-of-type(4) h3 {
  top: -80px;
}

.w_100 {
  max-width: 100%;
}

.uservoice-area {
  margin: 0 auto;
}
.uservoice-list {
  display: flex;
  padding-left: 0;
  position: relative;
}
.uservoice-list::before {
  content: "";
  display: block;
  width: 30px;
  height: 100%;
  background: white;
  background: linear-gradient(90deg, white 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.uservoice-list::after {
  content: "";
  display: block;
  width: 30px;
  height: 100%;
  background: white;
  background: linear-gradient(-90deg, white 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}
@media (max-width: 768px) {
  .uservoice-list::before {
    display: none;
  }
  .uservoice-list::after {
    display: none;
  }
}
.uservoice-list-item {
  list-style: none;
  max-width: 380px;
  position: relative;
}
.uservoice-list-item-img {
  width: 150px;
  height: 150px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 50%;
  overflow: hidden;
}
.uservoice-list-item-img img {
  width: 100%;
}
.uservoice-list-item-contents {
  margin-top: 80px;
  background-color: #373f66;
  min-height: 500px;
  padding: 24px;
  padding-top: 120px;
}
.uservoice-list-item-contents-title {
  color: #fff;
  margin-bottom: 20px;
}
.uservoice-list-item-contents-title-cate {
  font-size: 22px;
  font-family: "Oswald", sans-serif;
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}
.uservoice-list-item-contents-title-cate::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: block;
  width: 16px;
  height: 2px;
  background-color: #b6bacc;
}
.uservoice-list-item-contents-title-name {
  font-size: 20px;
  font-family: "Oswald", sans-serif;
  text-align: center;
}
.uservoice-list-item-contents-text {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
}

.slider {
  margin: 0 auto;
}
.slider .slick-slide {
  margin: 0 40px;
}
@media (max-width: 576px) {
  .slider .slick-slide {
    margin: 0 20px;
  }
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute;
  /*絶対配置にする*/
  top: 42%;
  cursor: pointer;
  /*マウスカーソルを指マークに*/
  outline: none;
  /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #666;
  /*矢印の色*/
  border-right: 2px solid #666;
  /*矢印の色*/
  height: 15px;
  width: 15px;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}
.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px;
  /*ドットボタンのサイズ*/
  height: 8px;
  /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc;
  /*ドットボタンの色*/
}
.slick-dots .slick-active button {
  background: #333;
  /*ドットボタンの現在地表示の色*/
}

.price {
  background-image: url(images/bg_price.jpg);
  background-size: cover;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 60px;
}

.price_box {
  width: 90%;
  max-width: 400px;
  border: 2px solid #373f66;
  text-align: center;
  background: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.price_box h3 {
  text-align: center;
  background-color: #373f66;
  padding: 10px;
  color: #fff;
}

.p_round {
  border-radius: 30px;
  border: 2px solid #373f66;
  letter-spacing: 0.2em;
  width: 170px;
  padding: 4px 30px;
  margin: 10px auto 10px;
}

.price_price {
  color: #373f66;
  border-bottom: 1px solid #373f66;
  width: 80%;
  margin: 0 auto 30px;
}
.price_price span {
  font-size: 70px;
  font-family: "Oswald", sans-serif;
  margin-right: 5px;
}

.price_merit {
  width: 80%;
  margin: 0 auto 40px;
  text-align: left;
  list-style-type: square;
}
.price_merit li + li {
  margin-top: 10px;
}

.price_btn {
  margin: auto auto 30px auto;
  border-radius: 50px;
  width: 100%;
}
.price_btn a {
  color: #fff;
  display: block;
  padding: 10px;
}

.btn_pink {
  background-color: #df3888;
}

.btn_grn {
  background-color: #00a99d;
}

@media (max-width: 768px) {
  .price_box {
    padding: 20px;
    margin: 30px auto;
  }

  .price_price {
    width: 90%;
  }

  .price_merit {
    padding: 0 10px;
  }

  .price_btn {
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  .price {
    display: block;
    gap: 0;
    padding: 20px;
  }
}
.footer {
  background-color: #373f66;
  color: #fff;
  text-align: center;
  padding: 10px;
}

.actbox {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.actbox h3 {
  background-color: #373f66;
  color: #fff;
  padding: 10px;
  margin: 20px 0;
}

.actbox_txt {
  width: 48%;
}

.actbox_img {
  width: 47%;
}

.box_l .actbox_img {
  margin-right: 30px;
}
.box_r {
  flex-direction: row-reverse;
}
.box_r .actbox_img {
  margin-left: 30px;
}

@media (max-width: 768px) {
  .actbox_img {
    width: 100%;
    margin: 0 !important;
  }

  .actbox img {
    margin: 0 0 30px;
  }

  .actbox_txt {
    width: 100%;
  }
}
.info {
  display: flex;
  align-items: stretch;
  font-size: 17px;
}
.info dt {
  width: 150px;
  text-align: right;
  padding: 10px;
  border-bottom: 1px solid #aaa;
}
.info dd {
  width: calc(100% - 150px);
  padding: 10px;
  border-bottom: 1px solid #aaa;
  margin: 0;
}

@media (max-width: 768px) {
  .info {
    font-size: 15px;
    margin: 10px 0;
  }
  .info dt {
    width: 100px;
  }
  .info dd {
    width: calc(100% - 100px);
  }
}
.medialist {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.medialist li {
  width: calc(100% / 6);
  padding: 20px;
}
@media (max-width: 768px) {
  .medialist li {
    width: calc(100% / 4);
    padding: 10px;
  }
}/*# sourceMappingURL=style_lp.css.map */