@charset "utf-8";

/*============================
ヘッダー
============================*/
header {
  transition: transform 0.5s 0.3s;
  height: 1.2rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

@media screen and (max-width: 640px) {
  header {
    /* スマホ用の記述 */
    height: auto;
    min-height: 0.6rem;
    min-width: 100%;
    backdrop-filter: initial;
    z-index: 1111;
  }
}

/* ロゴ */
header .logo {
  width: 100%;
  max-width: 3.4rem;
  position: absolute;
  top: 50%;
  left: 0.47rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 640px) {
  header .logo {
    left: 0.2rem;
    width: 1.5rem;
		z-index: 10;
    display: block;
  }
  header.scr {
    background-color: #fff;
  }
  header.scr #SPnaviBtn span {
    background-color: #191919;
  }

}

header .logo a:hover {
  opacity: 0.7;
}

/* ナビゲーション */
header .glo_navi {
  position: absolute;
  top: 50%;
  right: 0.47rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 640px) {
	header .glo_navi {
		top: 0;
		left: 0;
		right: auto;
		z-index: 1;
		transform: translate(0);
		width: 100%;
    height: 100vh;
		display: none;
	}
  header .glo_navi::after {
    content: "";
    background-color: rgba(255, 255, 255, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100vh;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}

header .glo_navi .list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 0.36rem;
}
@media screen and (max-width: 640px) {
  header .glo_navi .list{
    gap: 0.4rem 0;
    flex-wrap: wrap;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
    justify-content: center;
  }

  header .glo_navi .list .link {
    width: 100%;
    text-align: center;
  }
}

header .glo_navi .list .link a {
  font-size: 0.18rem;
  font-weight: 700;
  color: #1a1a1a;
  display: block;
}

header .glo_navi .list .link a span {
  position: relative;
}

header .glo_navi .list .link a span::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #1a1a1a;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
@media screen and (max-width: 640px) {
  header .glo_navi .list .link a span::after {
    content: none;
  }
}

header .glo_navi .list .link a:hover span::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

/* お問い合わせ */
header .glo_navi .list .link.contact {
  border: 1px solid #3d9be3;
  border-radius: 0.4rem;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  header .glo_navi .list .link.contact {
    width: auto;
  }
}

header .glo_navi .list .link.contact a {
  font-size: 0.18rem;
  font-weight: 700;
  color: #fff;
  background-color: #3d9be3;
  width: 2.2rem;
  padding: 0.18rem 0 0.2rem;
  text-align: center;
  position: relative;
}

header .glo_navi .list .link.contact a::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
  z-index: 0;
}

header .glo_navi .list .link.contact a:hover {
  color: #3d9be3;
  background-color: #fff;
}

header .glo_navi .list .link.contact a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

header .glo_navi .list .link.contact a span::after {
  content: none;
}

header .glo_navi .list .link.contact a span {
  z-index: 1;
}

/* --------- 以下、必要に応じて有効化 ---------- */

/* ヘッダーが上に消える
header.hide {
	transform: translateY(-1.50rem);
}
*/

/* スクロールで表示された状態
header.scr {
	background-color: rgba(255, 255, 255, 0.85);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}
*/

/*============================
セクションタイトル
============================*/
.sec_ttl_wrap {
  text-align: center;
  padding-bottom: 0.7rem;
}
@media screen and (max-width: 640px) {
  .sec_ttl_wrap {
    padding-bottom: 0.2rem;
  }
}

.sec_ttl_wrap .en {
  font-family: "Sansita", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.05em;
  color: rgba(61, 155, 227, 0.2);
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 640px) {
  .sec_ttl_wrap .en {
    font-size: 0.6rem;
  }
}

.sec_ttl_wrap .sec_ttl {
  font-size: 0.4rem;
  font-weight: 700;
  position: relative;
  top: -0.3rem;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .sec_ttl_wrap .sec_ttl {
    font-size: 0.2rem;
    top: -0.2rem;
  }
}

/*============================
MV
============================*/
#mv {
  padding-top: 1.6rem;
  padding-bottom: 2.9rem;
}

@media screen and (max-width: 640px) {
  #mv {
    padding-top: 1.2rem;
    padding-bottom: 2.2rem;
  }
}
#mv .mv_title {
  text-align: center;
  font-size: 0.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 64px */
  letter-spacing: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 640px) {
  #mv .mv_title {
    font-size: 0.22rem;
    width: 100%;
  }
}

#mv .ph_wrap {
  max-width: 14rem;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  #mv .ph_wrap {
    padding-top: 0.8rem;
  }
}

#mv .ph_wrap img {
  height: 50vh;
  max-height: 5.28rem;
  min-height: 3rem;
  display: block;
  margin: auto;
}
@media screen and (max-width: 640px) {
  #mv .ph_wrap img {
    height: auto;
  }
}

#mv .lead {
  text-align: center;
  font-size: 0.26rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 1.3px;
  margin-top: 0.3rem;
}
@media screen and (max-width: 640px) {
  #mv .lead {
    font-size: 0.18rem;
    line-height: 1.8;
  }
}

#mv .text {
  text-align: center;
  font-size: 0.16rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.8px;
  margin-top: 0.2rem;
}
@media screen and (max-width: 640px) {
  #mv .text {
    font-size: 0.15rem;
    text-align: left;
    padding: 0 0.2rem;
  }
}

/*============================
おなやみ
============================*/
#onayami {
  padding-top: 3rem;
  background: #c7e5dc;
  position: relative;
}
@media screen and (max-width: 640px) {
  #onayami {
    padding-top: 1.5rem;
  }
}

#onayami .slider_wrap {
  position: absolute;
  top: -2.6rem;
  left: 0;
  z-index: 2;
  width: 100%;
}
@media screen and (max-width: 640px) {
  #onayami .slider_wrap {
    top: -1.9rem;
  }
}

#onayami .slider_wrap .slick-list {
  padding: 0.3rem 0;
}

#onayami .slider_wrap .slick-slide {
  margin: 0 0.08rem;
}
@media screen and (max-width: 640px) {
  #onayami .slider_wrap .slick-slide {
    margin: 0 0.04rem;
  }
}

#onayami .slider_wrap .slides .slide {
  width: 4.4rem;
  height: 3.75rem;
  overflow: hidden;
  border-radius: 0.2rem;
  box-shadow: 0.1rem 0.1rem 0.2rem rgba(0, 0, 0, 0.2);
  position: relative;
}
@media screen and (max-width: 640px) {
  #onayami .slider_wrap .slides .slide {
    width: 100%;
    height: 50vw;
  }
}

#onayami .slider_wrap .slides .slide.-type02 {
  margin-top: 0.6rem;
}
@media screen and (max-width: 640px) {
  #onayami .slider_wrap .slides .slide.-type02 {
    margin-top: 0.3rem;
  }
}

#onayami .slider_wrap .slides .slide.-type03 {
  margin-top: 0.13rem;
}
@media screen and (max-width: 640px) {
  #onayami .slider_wrap .slides .slide.-type03 {
    margin-top: 0.1rem;
  }
}

#onayami .slider_wrap .slides .slide.-type04 {
  margin-top: 0.42rem;
}
@media screen and (max-width: 640px) {
  #onayami .slider_wrap .slides .slide.-type04 {
    margin-top: 0.2rem;
  }
} 

#onayami .slider_wrap .slides .slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#onayami .title {
  text-align: center;
  font-size: 0.4rem;
  font-weight: 700;
  font-feature-settings: normal;
}
@media screen and (max-width: 640px) {
  #onayami .title {
    font-size: 0.24rem;
  }
}

#onayami .title span {
  position: relative;
}

#onayami .title span::before {
  content: "";
  width: 0.1rem;
  height: 0.1rem;
  background-color: #199332;
  border-radius: 50%;
  position: absolute;
  top: -0.2rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 640px) {
  #onayami .title span::before {
    width: 0.05rem;
    height: 0.05rem;
    top: -0.1rem;
  }
}

#onayami .onayami_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 10rem;
  margin: 0 auto;
  margin-top: 0.5rem;
}
@media screen and (max-width: 640px) {
  #onayami .onayami_wrap {
    margin-top: 0.3rem;
    padding-bottom: 0.5rem;
  }
}

#onayami .onayami_box {
  width: 45%;
  padding: 0.2rem;
  position: relative;
  z-index: 1;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 640px) {
  #onayami .onayami_box {
    width: 100%;
    margin-bottom: 0.3rem;
  }
}

#onayami .onayami_box:after {
  content: "";
  width: 3.85rem;
  height: 3.85rem;
  border-radius: 385px;
  background: #fff;
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 640px) {
  #onayami .onayami_box:after {
    width: calc(100% - 0.8rem);
    height: auto;
    aspect-ratio: 1 / 1;
    top: 0.6rem;
  }
}

#onayami .onayami_box .ph_wrap {
  text-align: center;
}
@media screen and (max-width: 640px) {
  #onayami .onayami_box .ph_wrap {
    width: auto;
    height: 1.20rem;
    margin: auto;
  }
  #onayami .onayami_box .ph_wrap img {
    height: 100%;
  }
}

#onayami .onayami_box .text_wrap .item_title {
  text-align: center;
  font-size: 0.27rem;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0.1rem;
}
@media screen and (max-width: 640px) {
  #onayami .onayami_box .text_wrap .item_title {
    font-size: 0.2rem;
  }
}

#onayami .onayami_box .text_wrap .list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#onayami .onayami_box .text_wrap .list .item {
  font-size: 0.17rem;
  font-weight: 500;
  line-height: 2;
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 0.3rem;
}
@media screen and (max-width: 640px) {
  #onayami .onayami_box .text_wrap .list .item {
    font-size: 0.13rem;
    letter-spacing: 0;
    margin-left: 0;
    align-items: baseline;
  }
}

#onayami .onayami_box .text_wrap .list .item:before {
  content: "";
  width: 0.11rem;
  height: 0.11rem;
  border-radius: 50%;
  background: #0c9e68;
  left: 0;
  top: 0;
  margin-right: 0.1rem;
}
@media screen and (max-width: 640px) {
  #onayami .onayami_box .text_wrap .list .item:before {
    width: 0.09rem;
    height: 0.09rem;
    top: -0.01rem;
    position: relative;
    margin-right: 0.06rem;
  }
}

/*============================
SD47（Social Design 47）とは？
============================*/
.about {
  position: relative;
  font-feature-settings: normal;
  padding-bottom: 1.8rem;
}
@media screen and (max-width: 640px) {
  .about {
    padding-bottom: 0.8rem;
    font-feature-settings: "palt";
  }
}

.about .header {
  height: 2.78rem;
  position: relative;
  background-image: url(../img/about_header_bg.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 2.19rem;
}
@media screen and (max-width: 640px) {
  .about .header {
    height: 1rem;
    background-size: 100% auto;
  }
}

.about .header .deco {
  width: 3.64rem;
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 640px) {
  .about .header .deco {
    width: 1.8rem;
  }
}
.about .header .deco img {
  display: block;
}

.about .sec_ttl_wrap {
  padding-top: 0.2rem;
}

.about .sec_ttl_wrap .sec_ttl {
  top: auto;
}

.about .about_list_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem 0;
}
@media screen and (max-width: 640px) {
  .about .about_list_wrap {
    gap: 0.8rem 0;
  }
}

.about .about_list_wrap .about_box {
  width: 100%;
  position: relative;
}

.about .about_list_wrap .about_box .about_ttl_wrap {
  text-align: center;
  position: relative;
  margin-bottom: 0.3rem;
}
@media screen and (max-width: 640px) {
  .about .about_list_wrap .about_box .about_ttl_wrap {
    margin-bottom: 0.20rem;
  }
}

.about .about_list_wrap .about_box .about_ttl_wrap .num {
  font-family: "Sansita", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.05em;
  color: rgba(61, 155, 227, 0.2);
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 640px) {
  .about .about_list_wrap .about_box .about_ttl_wrap .num {
    font-size: 0.8rem;
  }
}

.about .about_list_wrap .about_box .about_ttl_wrap .about_ttl {
  font-size: 0.27rem;
  font-weight: 700;
  position: absolute;
  top: 60%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .about .about_list_wrap .about_box .about_ttl_wrap .about_ttl {
    font-size: 0.18rem;
    line-height: 1.4;
  }
}

.about .about_list_wrap .about_box .-img01 {
  /* max-width: 5.88rem; */
  max-width: 6.00rem;
  margin: auto;
  padding-bottom: 0.3rem;
}

.about .about_list_wrap .about_box .txt_box {
  width: 100%;
  max-width: 8rem;
  margin: auto;
  position: relative;
}

.about .about_list_wrap .about_box .txt_box .txt {
  font-size: 0.16rem;
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 640px) {
  .about .about_list_wrap .about_box .txt_box .txt {
    font-size: 0.14rem;
  }
}

.about .about_list_wrap .about_box .-deco02 {
  width: 1.19rem;
  position: absolute;
  bottom: 0;
  right: -2rem;
}

.about .about_list_wrap .about_box .-img02 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 0.3rem;
}
@media screen and (max-width: 640px) {
  .about .about_list_wrap .about_box .-img02 {
    flex-wrap: wrap;
    gap: 0.1rem 0;
  }
}

.about .about_list_wrap .about_box .-img02 img {
  width: 3.85rem;
}

.about .about_list_wrap .about_box .-img03 {
  width: 6.2rem;
  display: flex;
  justify-content: space-between;
  padding-top: 0.3rem;
  margin: auto;
  gap: 0 0.33rem;
}
@media screen and (max-width: 640px) {
  .about .about_list_wrap .about_box .-img03 {
    width: 100%;
    gap: 0 0.15rem;
  }
}

.about .about_list_wrap .about_box .-img03 img {
  display: block;
}

.about .about_list_wrap .about_box .-deco03-01 {
  width: 1.95rem;
  left: 0.5rem;
  bottom: 0;
  position: absolute;
}

.about .about_list_wrap .about_box .-deco03-02 {
  width: 1.47rem;
  right: 0.5rem;
  bottom: 0;
  position: absolute;
}
@media screen and (max-width: 640px) {
  .about .about_list_wrap .about_box .-deco03-01 {
    display: none;
  }
  .about .about_list_wrap .about_box .-deco03-02 {
    width: 0.8rem;
    bottom: -0.6rem;
    right: -0.15rem;
  }
}

.about .cont_box {
  width: 100%;
  max-width: 10rem;
  margin: auto;
  position: relative;
}

.about .cont_box .lead {
  font-size: 0.2rem;
  line-height: 2;
  text-align: center;
  margin-bottom: 0.3rem;
}
@media screen and (max-width: 640px) {
  .about .cont_box .lead {
    font-size: 0.15rem;
    margin-bottom: 0.2rem;
    text-align: left;
  }
}

.about .cont_box .ph_wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 0.3rem;
  position: relative;
  left: 0.2rem;
}
@media screen and (max-width: 640px) {
  .about .cont_box .ph_wrap {
    left: 0;
    padding-top: 0;
  }
}

.about .cont_box .ph_wrap img {
  width: 100%;
  display: block;
}

.about .cont_box .bottom_text {
  font-size: 0.3rem;
  font-weight: 700;
  text-align: center;
  margin-top: 0.3rem;
}
@media screen and (max-width: 640px) {
  .about .cont_box .bottom_text {
    font-size: 0.24rem;
    margin-top: 0.2rem;
  }
}


/*============================
導入事例
============================*/
.case {
  padding-top: 0.8rem;
  position: relative;
  font-feature-settings: normal;
  margin-bottom: 1rem;
}
@media screen and (max-width: 640px) {
  .case {
    padding-top: 0.5rem;
    font-feature-settings: "palt";
  }
}

.case::after {
  content: "";
  display: block;
  width: 100%;
  height: 6rem;
  background-color: #FEF8E3;
  position: absolute;
  bottom: 0.3rem;
  left: 0;
  z-index: -1;
}

.case .lead {
  font-size: 0.2rem;
  line-height: 2;
  text-align: center;
  margin-top: -0.3rem;
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 640px) {
  .case .lead {
    font-size: 0.16rem;
    margin-bottom: 0.2rem;
  }
}

.case .slide_wrap .slides .slick-list {
  padding: 0.2rem 0 0.5rem;
  overflow: visible;
}

.case .slide_wrap .slides .slick-track {
  display: flex;
  align-items: stretch;
}

.case .slide_wrap .slides .slick-slide {
  margin: 0 0.3rem;
}
@media screen and (max-width: 640px) {
  .case .slide_wrap .slides .slick-slide {
    margin: 0 0.1rem;
    height: 100% !important;
    display: flex;
    align-items: stretch;
  }
  .case .slide_wrap .slides .slick-slide > div {
    width: 100%;
    height: 100%;
  }
  .case .slide_wrap .slides .slick-track {
    align-items: stretch;
  }
}

.case .slide_wrap .slides .slide {
  width: 12rem;
  max-width: 12rem;
  display: flex !important;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 0.2rem;
  box-shadow: 0 0.03rem 0.1rem rgba(0, 0, 0, 0.25);
  padding: 0.6rem 0.55rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  min-height: 100%;
  height: 5rem;
}
@media screen and (max-width: 640px) {
  .case .slide_wrap .slides .slide {
    padding: 0.3rem 0.25rem;
    width: 100% !important;
    max-width: 100% !important;
    flex-direction: column;
    min-height: 100%;
    box-sizing: border-box;
    display: block!important;
    height: auto;
  }
} 
.case .slide_wrap .slides .slide .deco {
  width: 1.2rem;
  height: 1.2rem;
  position: absolute;
  top: -0.5rem;
  right: 0.5rem;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .case .slide_wrap .slides .slide .deco {
    width: 0.6rem;
    height: 0.6rem;
    top: -0.4rem;
    right: 0.1rem;
  }
}

.case .slide_wrap .slides .slide .ph_wrap {
  width: 5.5rem;
}
@media screen and (max-width: 640px) {
  .case .slide_wrap .slides .slide .ph_wrap {
    width: 100%;
  }
}
.case .slide_wrap .slides .slide .ph_wrap img {
  display: block;
  width: 100%;
}

.case .slide_wrap .slides .slide .txt_box {
  width: 100%;
  max-width: 4.85rem;
  padding-left: 0.3rem;
}
@media screen and (max-width: 640px) {
  .case .slide_wrap .slides .slide .txt_box {
    max-width: 100%;
    padding-left: 0;
    padding-top: 0.24rem;
  }
}
.case .slide_wrap .slides .slide .txt_box .cat_wrap {
  display: flex;
  align-items: center;
  gap: 0 0.1rem;
}
@media screen and (max-width: 640px) {
  .case .slide_wrap .slides .slide .txt_box .cat_wrap {
    gap: 0 0.08rem;
  }
}

.case .slide_wrap .slides .slide .txt_box .cat_wrap .num {
  width: 0.93rem;
  text-align: center;
  font-size: 0.16rem;
  font-weight: 700;
  background-color: #3d9be3;
  padding: 0.1rem 0;
  border-radius: 0.4rem;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .case .slide_wrap .slides .slide .txt_box .cat_wrap .num {
    padding: 0.08rem 0;
    font-size: 0.12rem;
    width: 0.80rem;
  }
}

.case .slide_wrap .slides .slide .txt_box .cat_wrap .cat {
  font-size: 0.18rem;
  font-weight: 700;
}
@media screen and (max-width: 640px) {
  .case .slide_wrap .slides .slide .txt_box .cat_wrap .cat {
    font-size: 0.16rem;
  }
}

.case .slide_wrap .slides .slide .txt_box .ttl {
  padding: 0.15rem 0 0.2rem;
  font-size: 0.22rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 640px) {
  .case .slide_wrap .slides .slide .txt_box .ttl {
    font-size: 0.18rem;
    padding: 0.15rem 0;
    line-height: 1.4;
  }
}
.case .slide_wrap .slides .slide .txt_box .txt {
  font-size: 0.16rem;
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 640px) {
  .case .slide_wrap .slides .slide .txt_box .txt {
    font-size: 0.14rem;
    line-height: 1.6;
  }
}

.case .slick-track {
  display: flex;
}
.case .slick-slide {
  height: auto !important;
}

/* 矢印 */
.case .slide_wrap .slides .arrow {
  width: 0.47rem;
  height: 0.47rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  box-shadow: 0 0.03rem 0.1rem rgba(0, 0, 0, 0.25);
  z-index: 2;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .case .slide_wrap .slides .arrow {
    width: 0.3rem;
    height: 0.3rem;
  }
}

.case .slide_wrap .slides .arrow.-prev {
  background-image: url(../img/case_slide_arrow_prev.png);
  left: calc(50% - 6.15rem);
}

.case .slide_wrap .slides .arrow.-next {
  background-image: url(../img/case_slide_arrow_next.png);
  right: calc(50% - 6.15rem);
}
@media screen and (max-width: 640px) {
  .case .slide_wrap .slides .arrow.-prev {
    left: 0.1rem;
  }
  .case .slide_wrap .slides .arrow.-next {
    right: 0.1rem;
  }
}

.case .slide_wrap .slick-dots {
  bottom: -0.4rem;
}

.case .slide_wrap .slick-dots li button:before {
  font-size: 0.12rem;
  opacity: 1;
  color: #ccc;
}

.case .slide_wrap .slick-dots li.slick-active button:before {
  color: #3d9be3;
}

.case .bottom_box {
  width: 100%;
  max-width: 10rem;
  margin: auto;
  text-align: center;
  margin-top: 0.5rem;
}

.case .bottom_box .bottom_lead {
  font-size: 0.2rem;
  font-weight: 700;
  line-height: 2;
  text-align: center;
  margin-bottom: 0.3rem;
}

@media screen and (max-width: 640px) {
  .case .bottom_box .bottom_lead {
    font-size: 0.15rem;
    margin-bottom: 0.2rem;
  }
}


.case .bottom_box .btn,
.case .txt_box .btn {
  width: 100%;
  max-width: 3.5rem;
  margin: auto;
  border: 1px solid #3d9be3;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .case .bottom_box .btn,
  .case .txt_box .btn {
    max-width: 2.7rem;
  }
}

.case .bottom_box .btn a,
.case .txt_box .btn a {
  display: block;
  background-color: #3d9be3;
  color: #fff;
  text-align: center;
  font-size: 0.24rem;
  font-weight: 700;
  position: relative;
  padding: 0.2rem 0;
}
@media screen and (max-width: 640px) {
  .case .bottom_box .btn a,
  .case .txt_box .btn a {
    font-size: 0.18rem;
  }
}

.case .txt_box .btn  {
  max-width: 2rem;
  margin: 0.25rem 0 0;
}
.case .txt_box .btn a {
  font-size: 0.16rem;
  cursor: pointer;
  padding: 0.13rem 0;
}

@media screen and (max-width: 640px) {
  .case .txt_box .btn {
    margin: 0.25rem auto 0;
  }
  .case .txt_box .btn a {
    font-size: 0.14rem;
    padding: 0.1rem 0;
  }
}
.case .bottom_box .btn a:hover,
.case .txt_box .btn a:hover {
  color: #3d9be3;
}

.case .bottom_box .btn a::after,
.case .txt_box .btn a::after {
  content: "";
  width: 0.14rem;
  height: 0.14rem;
  background-image: url(../img/icon_cta_arrow.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0.15rem;
  transform: translateY(-50%);
  z-index: 1;
  transition: all 0.3s;
}

.case .bottom_box .btn a:hover::after,
.case .txt_box .btn a:hover::after {
  background-image: url(../img/icon_cta_arrow_blue.svg);
  right: 0.12rem;
}

.case .bottom_box .btn a::before,
.case .txt_box .btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
  z-index: 0;
}

.case .bottom_box .btn a:hover,
.case .txt_box .btn a:hover {
  color: #3d9be3;
  background-color: #fff;
}

.case .bottom_box .btn a:hover::before,
.case .txt_box .btn a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.case .bottom_box .btn a span,
.case .txt_box .btn a span {
  position: relative;
  z-index: 1;
}


/*============================
初期費用・維持コスト
============================*/
.price {
  padding: 1.3rem 0 3.1rem;
  position: relative;
  font-feature-settings: normal;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .price {
    padding: 0 0 1.5rem;
    font-feature-settings: "palt";
  }
}

.price::before {
  content: "";
  width: 100%;
  height: calc(100% - 7rem);
  background-image: url(../img/price_bottom_bg.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: auto 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 640px) {
  .price::before {
    content: none;
  }
}

.price::after {
  content: "";
  width: 15.53rem;
  height: 2.69rem;
  background-image: url(../img/price_bottom_deco.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 0;
}
@media screen and (max-width: 640px) {
  .price::after {
    height: 1.5rem;
    width: 10rem;
    bottom: 0.5rem;
    z-index: 1;
  }
}

.price .white_box {
  width: 100%;
  max-width: 10rem;
  margin: auto;
  background-color: #fff;
  border-radius: 0.2rem;
  padding-bottom: 0.7rem;
  position: relative;
  z-index: 1;
}

.price .white_box .upper_box .catch {
  font-size: 0.4rem;
  font-weight: 700;
  color: #3d9be3;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 0.3rem;
}
@media screen and (max-width: 640px) {
  .price .white_box .upper_box .catch {
    font-size: 0.24rem;
    margin-bottom: 0.2rem;
  }
}
.price .white_box .upper_box .catch span {
  position: relative;
}

.price .white_box .upper_box .catch span::after {
  content: "";
  width: 100%;
  height: 0.05rem;
  background-color: #ffa600;
  position: absolute;
  bottom: -0.03rem;
  left: 0;
}

.price .white_box .upper_box .txt {
  font-size: 0.16rem;
  font-weight: 500;
  text-align: center;
  padding: 0.3rem 0;
}
@media screen and (max-width: 640px) {
  .price .white_box .upper_box .txt {
    font-size: 0.14rem;
    padding: 0.2rem 0;
    line-height: 1.4;
  }
}

.price .white_box .img_box {
  width: 100%;
  max-width: 6rem;
  margin: auto;
}

.price .white_box .bottom_box {
  padding-top: 0.3rem;
}

.price .white_box .bottom_box .lead {
  font-size: 0.2rem;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .price .white_box .bottom_box .lead {
    font-size: 0.18rem;
  }
}

.price .white_box .bottom_box .list {
  padding: 0.3rem 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 0.8rem;
}

@media screen and (max-width: 640px) {
  .price .white_box .bottom_box .list {
    padding: 0.2rem 0;
    gap: 0;
    justify-content: space-between;
  }
  .price .white_box .bottom_box .list .detail {
    width: 30%;
    gap: 0;
  }
}

.price .white_box .bottom_box .list .detail .icon {
  width: 1.5rem;
  margin: auto;
}
@media screen and (max-width: 640px) {
  .price .white_box .bottom_box .list .detail .icon {
    width: 0.7rem;
  }
}
.price .white_box .bottom_box .list .detail .icon img {
  display: block;
}

.price .white_box .bottom_box .list .detail .txt {
  font-size: 0.18rem;
  font-weight: 700;
  text-align: center;
  padding-top: 0.2rem;
  line-height: 1.3;
}
@media screen and (max-width: 640px) {
  .price .white_box .bottom_box .list .detail .txt {
    font-size: 0.14rem;
    padding-top: 0.1rem;
    line-height: 1.4;
  }
}

.price .white_box .bottom_box .catch {
  font-size: 0.2rem;
  font-weight: 700;
  line-height: 2;
  color: #3d9be3;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .price .white_box .bottom_box .catch {
    font-size: 0.16rem;
    text-align: left;
  }
}

.price .white_box .bottom_box .catch span {
  position: relative;
}

@media screen and (max-width: 640px) {
  .price .white_box .bottom_box .catch span {
    border-bottom: 1px solid #3d9be3;
  }
}

.price .white_box .bottom_box .catch span::after {
  content: "";
  display: inline;
  width: 100%;
  height: 0.02rem;
  background-color: #3d9be3;
  position: absolute;
  bottom: -0.02rem;
  left: 0;
}
@media screen and (max-width: 640px) {
  .price .white_box .bottom_box .catch span::after {
    display: none;
  }
}

.price .last_box {
  padding-top: 0.5rem;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .price .last_box {
    padding-top: 0.3rem;
    position: relative;
    padding-bottom: 1rem;
  }
  .price .last_box::before {
    content: "";
    width: calc(100% + 0.4rem);
    height: 100%;
    background-image: url(../img/price_bottom_bg.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: -1;
  }
}

.price .last_box .txt {
  font-size: 0.24rem;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 640px) {
  .price .last_box .txt {
    font-size: 0.16rem;
  }
}

.price .last_box .txt em {
  font-size: 0.4rem;
  font-family: "Sansita", sans-serif;
  font-weight: 700;
  color: #3d9be3;
  font-style: italic;
  letter-spacing: 0.05em;
}

.price .last_box .catch {
  font-size: 0.4rem;
  font-weight: 700;
  padding: 0.3rem 0;
}
@media screen and (max-width: 640px) {
  .price .last_box .catch {
    font-size: 0.3rem;
    line-height: 1.5;
    padding-bottom: 0;
  }
}
/*============================
CTA
============================*/
.cta_wrap {
  background-image: url(../img/cta_bg.png);
  background-position: center;
  background-repeat: repeat;
  padding: 1.1rem 0 0.6rem;
  font-feature-settings: normal;
}
@media screen and (max-width: 640px) {
  .cta_wrap {
    padding: 0.7rem 0 0.5rem;
    font-feature-settings: "palt";
    background-size: 250% auto;
  }
}

.cta_wrap .inner {
  width: 100%;
  max-width: 10rem;
  background-color: #fff;
  border-radius: 0.3rem;
  box-shadow: 0 0.03rem 0.1rem rgba(0, 0, 0, 0.25);
  margin: auto;
  position: relative;
  padding: 1rem 0 0.55rem;
}
@media screen and (max-width: 640px) {
  .cta_wrap .inner {
    width: calc(100% - 0.4rem);
    padding: 0.45rem 0 0.3rem;
  }
}

/* ヘッダーの吹き出し */
.cta_wrap .inner .header_deco {
  width: 100%;
  max-width: 8.1rem;
  position: absolute;
  top: -0.72rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .cta_wrap .inner .header_deco {
    top: -0.4rem;
  }
}

/* 人物イラスト */
.cta_wrap .inner .deco_wrap .deco {
  position: absolute;
  z-index: 1;
}

.cta_wrap .inner .deco_wrap .deco.-deco01 {
  width: 1.88rem;
  height: 1.33rem;
  top: 1.09rem;
  left: -0.1rem;
}

.cta_wrap .inner .deco_wrap .deco.-deco02 {
  width: 1.55rem;
  height: 1.3rem;
  top: 1.11rem;
  right: -0.06rem;
}

@media screen and (max-width: 640px) {
  .cta_wrap .inner .deco_wrap .deco.-deco02 {
    width: 0.70rem;
    aspect-ratio: 1 / 1;
    top: 0.9rem;
    right: -0.1rem;
  }
} 
.cta_wrap .inner .deco_wrap .deco.-deco03 {
  width: 1.24rem;
  height: 1.44rem;
  bottom: -0.1rem;
  left: 0.9rem;
}
@media screen and (max-width: 640px) {
  .cta_wrap .inner .deco_wrap .deco.-deco03 {
    width: 0.60rem;
    top: 0.85rem;
    left: -0.1rem;
  }
}
.cta_wrap .inner .deco_wrap .deco.-deco04 {
  width: 1.66rem;
  height: 1.3rem;
  bottom: -0.05rem;
  right: 0.96rem;
}

.cta_wrap .inner .ttl {
  text-align: center;
  font-size: 0.4rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  .cta_wrap .inner .ttl {
    font-size: 0.2rem;
  }
}

.cta_wrap .inner .txt_box {
  padding: 0.25rem 0 0.4rem;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 640px) {
  .cta_wrap .inner .txt_box {
    padding: 0.15rem 0 0.2rem;
  }
}

.cta_wrap .inner .txt_box .txt {
  font-size: 0.2rem;
}
@media screen and (max-width: 640px) {
  .cta_wrap .inner .txt_box .txt {
    font-size: 0.17rem;
    line-height: 1.6;
  }
}

.cta_wrap .inner .txt_box .txt em {
  font-size: 0.3rem;
  font-family: "Sansita", sans-serif;
  font-weight: 700;
  color: #3d9be3;
  font-style: italic;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 640px) {
  .cta_wrap .inner .txt_box .txt em {
    font-size: 0.20rem;
  }
}

.cta_wrap .inner .txt_box .txt img {
  position: relative;
  top: 0.03rem;
}

.cta_wrap .inner .txt_box .txt span {
  font-size: 0.16rem;
  position: relative;
  top: -0.01rem;
  display: inline-block;
  padding: 0 0.04rem;
}


.cta_wrap .inner .btn {
  width: 100%;
  max-width: 3.5rem;
  margin: auto;
  border: 1px solid #3d9be3;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .cta_wrap .inner .btn {
    max-width: 2.7rem;
  }
}

.cta_wrap .inner .btn a {
  display: block;
  background-color: #3d9be3;
  color: #fff;
  text-align: center;
  font-size: 0.24rem;
  font-weight: 700;
  position: relative;
  padding: 0.2rem 0;
}
@media screen and (max-width: 640px) {
  .cta_wrap .inner .btn a {
    font-size: 0.18rem;
  }
}

.cta_wrap .inner .btn a:hover {
  color: #3d9be3;
}

.cta_wrap .inner .btn a::after {
  content: "";
  width: 0.14rem;
  height: 0.14rem;
  background-image: url(../img/icon_cta_arrow.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0.15rem;
  transform: translateY(-50%);
  z-index: 1;
  transition: all 0.3s;
}

.cta_wrap .inner .btn a:hover::after {
  background-image: url(../img/icon_cta_arrow_blue.svg);
  right: 0.12rem;
}

.cta_wrap .inner .btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
  z-index: 0;
}

.cta_wrap .inner .btn a:hover {
  color: #3d9be3;
  background-color: #fff;
}

.cta_wrap .inner .btn a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.cta_wrap .inner .btn a span {
  position: relative;
}

/*============================
導入までの流れ
============================*/
.flow {
  padding: 1.3rem 0 2.3rem;
}
@media screen and (max-width: 640px) {
  .flow {
    padding: 0 0 1.5rem;
  }
}
.flow .flow_list_wrap {
  width: 100%;
  max-width: 10rem;
  margin: auto;
}

.flow .flow_list_wrap .list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0;
}

.flow .flow_list_wrap .list .detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.3rem;
  width: 100%;
  box-sizing: border-box;
  border-radius: 0.2rem;
  position: relative;
}
@media screen and (max-width: 640px) {
  .flow .flow_list_wrap .list .detail {
    padding: 0.2rem;
  }
}

.flow .flow_list_wrap .list .detail .num {
  width: 2.2rem;
  text-align: center;
  position: relative;
  font-family: "Sansita", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(61, 155, 227, 0.2);
  line-height: 1;
  top: -0.1rem;
}
@media screen and (max-width: 640px) {
  .flow .flow_list_wrap .list .detail .num {
    width: 100%;
    font-size: 0.7rem;
    top: -0.05rem;
  }
}

.flow .flow_list_wrap .list .detail .num::before {
  content: "STEP";
  font-family: "Sansita", sans-serif;
  font-size: 0.32rem;
  font-weight: 700;
  line-height: 1;
  color: #1a1a1a;
  font-style: italic;
  text-align: center;
  display: block;
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 640px) {
  .flow .flow_list_wrap .list .detail .num::before {
    font-size: 0.2rem;
  }
  .flow .flow_list_wrap .list .detail .num::after {
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.flow .flow_list_wrap .list .detail .txt_box {
  width: calc(100% - 2.3rem);
}
@media screen and (max-width: 640px) {
  .flow .flow_list_wrap .list .detail .txt_box {
    width: 100%;
  }
}

.flow .flow_list_wrap .list .detail .txt_box .ttl {
  font-size: 0.28rem;
  font-weight: 700;
  padding-bottom: 0.15rem;
  padding-top: 0.1rem;
}
@media screen and (max-width: 640px) {
  .flow .flow_list_wrap .list .detail .txt_box .ttl {
    font-size: 0.2rem;
    text-align: center;
  }
}

.flow .flow_list_wrap .list .detail .txt_box .txt {
  font-size: 0.16rem;
  font-weight: 500;
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 640px) {
  .flow .flow_list_wrap .list .detail .txt_box .txt {
    font-size: 0.14rem;
  }
}
/* 背景色 */
.flow .flow_list_wrap .list .detail.-step01 {
  background-color: rgba(61, 155, 227, 0.1);
}

.flow .flow_list_wrap .list .detail.-step02 {
  background-color: rgba(61, 155, 227, 0.2);
}

.flow .flow_list_wrap .list .detail.-step03 {
  background-color: rgba(61, 155, 227, 0.3);
}

.flow .flow_list_wrap .list .detail.-step04 {
  background-color: #3d9be3;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .flow .flow_list_wrap .list .detail.-step04 {
    padding-bottom: 0.5rem;
  }
}

.flow .flow_list_wrap .list .detail.-step04 .num {
  color: rgba(255, 255, 255, 0.2);
}

.flow .flow_list_wrap .list .detail.-step04 .num::before {
  color: #fff;
}

/* STEP04のイラスト */
.flow .flow_list_wrap .list .detail.-step04 .deco {
  width: 1.82rem;
  height: 1.74rem;
  position: absolute;
  bottom: -0.2rem;
  right: 0.4rem;
}
@media screen and (max-width: 640px) {
  .flow .flow_list_wrap .list .detail.-step04 .deco {
    width: 1.07rem;
    bottom: -1rem;
    right: 0;
  }
}

/*============================
よくある質問
============================*/
.faq {
  padding: 0.7rem 0 1.3rem;
  background-color: #c7e5dc;
}
@media screen and (max-width: 640px) {
  .faq {
    padding: 0.5rem 0 0.8rem;
  }
}

.faq .deco_wrap .deco {
  position: absolute;
  z-index: 1;
}

.faq .deco_wrap .deco.-deco01 {
  width: 1.51rem;
  height: 2.39rem;
  top: -0.9rem;
  left: -0.5rem;
}
@media screen and (max-width: 640px) {
  .faq .deco_wrap .deco.-deco01 {
    width: 0.7rem;
    height: 1.3rem;
    top: -0.6rem;
    left: 0.2rem;
  }
}

.faq .deco_wrap .deco.-deco02 {
  width: 1.17rem;
  height: 0.58rem;
  top: 1.55rem;
  right: 0;
}
@media screen and (max-width: 640px) {
  .faq .deco_wrap .deco.-deco02 {
    width: 0.60rem;
    height: 0.58rem;
    top: -0.05rem;
    right: 0.2rem;
  }
}

.faq .deco_wrap .deco.-deco03 {
  width: 1.4rem;
  height: 2.65rem;
  top: 30%;
  left: -2rem;
}

.faq .deco_wrap .deco.-deco04 {
  width: 1.36rem;
  height: 2.9rem;
  top: 48%;
  right: -2rem;
}

.faq .deco_wrap .deco.-deco05 {
  width: 1.56rem;
  height: 1.58rem;
  bottom: 20%;
  left: -2.2rem;
}

.faq .deco_wrap .deco.-deco06 {
  width: 2.78rem;
  height: 2.21rem;
  bottom: -1.7rem;
  right: -2.1rem;
}

.faq .sec_ttl_wrap .en {
  color: rgba(255, 255, 255, 0.4);
}

.faq .faq_list_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0;
  width: 100%;
  max-width: 10rem;
  margin: auto;
}
@media screen and (max-width: 640px) {
  .faq .faq_list_wrap {
    gap: 0.2rem 0;
  }_
}

.faq .faq_list_wrap .faq_box {
  width: 100%;
  background-color: #fff;
  border-radius: 0.1rem;
}

.faq .faq_list_wrap .faq_box .faq_ttl {
  position: relative;
  padding: 0.2rem 0.25rem 0.2rem 0.85rem;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .faq .faq_list_wrap .faq_box .faq_ttl {
    padding: 0.15rem 0.35rem 0.15rem 0.5rem;
  }
}

.faq .faq_list_wrap .faq_box .faq_ttl .q_box {
  width: 0.4rem;
  height: 0.4rem;
  background-color: #3d9be3;
  border-radius: 50%;
  position: absolute;
  top: 0.17rem;
  left: 0.25rem;
}
@media screen and (max-width: 640px) {
  .faq .faq_list_wrap .faq_box .faq_ttl .q_box {
    width: 0.3rem;
    height: 0.3rem;
    left: 0.1rem;
    top: 0.15rem;
  }
}

.faq .faq_list_wrap .faq_box .faq_ttl .q_box span {
  font-size: 0.18rem;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq .faq_list_wrap .faq_box .faq_ttl .ttl {
  font-size: 0.18rem;
  font-weight: 700;
  line-height: 1.75;
  padding: 0.05rem 0;
}
@media screen and (max-width: 640px) {
  .faq .faq_list_wrap .faq_box .faq_ttl .ttl {
    font-size: 0.14rem;
    line-height: 1.4;
  }
}

.faq .faq_list_wrap .faq_box .faq_ttl i {
  width: 0.14rem;
  height: 0.14rem;
  position: absolute;
  top: 0.3rem;
  right: 0.2rem;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .faq .faq_list_wrap .faq_box .faq_ttl i {
    right: 0.15rem;
    top: 50%;
    transform: translateY(-50%);
  }
}

.faq .faq_list_wrap .faq_box .faq_ttl i::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #1a1a1a;
  top: 50%;
  left: 0;
  z-index: 1;
  position: absolute;
}

.faq .faq_list_wrap .faq_box .faq_ttl i::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #1a1a1a;
  left: 50%;
  top: 0;
  z-index: 1;
  position: absolute;
  transition: all 0.3s;
}

.faq .faq_list_wrap .faq_box .faq_ttl.active i::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq .faq_list_wrap .faq_box .faq_txt {
  padding: 0 0.25rem 0.4rem 0.85rem;
  font-size: 0.16rem;
  line-height: 2;
  display: none;
  text-align: justify;
}
@media screen and (max-width: 640px) {
  .faq .faq_list_wrap .faq_box .faq_txt {
    font-size: 0.14rem;
    line-height: 1.4;
    padding: 0 0.25rem 0.15rem 0.5rem;
    line-height: 2;
  }
}
/*============================
運営会社
============================*/
.company {
  padding: 1.3rem 0;
}
@media screen and (max-width: 640px) {
  .company {
    padding: 0.5rem 0;
  }
}

.company .company_table {
  width: 100%;
  max-width: 8rem;
  margin: auto;
  border-top: 1px solid #ccc;
}

.company .company_table .list {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #ccc;
  padding: 0.2rem 0;
  font-size: 0.18rem;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .company .company_table .list {
    font-size: 0.14rem;
    padding: 0.15rem 0;
    line-height: 1.85;
  }
}

.company .company_table .list .ttl {
  width: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 640px) {
  .company .company_table .list .ttl {
    width: 100%;
    font-size: 0.16rem;
    padding-bottom: 0.10rem;
  }
}
.company .company_table .list .txt_box {
  width: calc(100% - 1.8rem);
}
@media screen and (max-width: 640px) {
  .company .company_table .list .txt_box {
    width: 100%;
  }

}
.company .company_table .list .txt_box .txt a {
  color: #3d9be3;
  text-decoration: underline;
}
.company .company_table .list .txt_box .txt a:hover {
  text-decoration: none;
  opacity: 0.7;
}

/*============================
お問い合わせ
============================*/
.contact_form {
  padding: 1.3rem 0;
  background-image: url(../img/contact_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 640px) {
  .contact_form {
    padding: 0.5rem 0;
  }
}

.contact_form .form_wrap {
  width: 100%;
  max-width: 10rem;
  margin: auto;
  box-sizing: border-box;
  padding: 0.75rem 1rem;
  background-color: #fff;
  border-radius: 0.2rem;
  box-shadow: 0 0.03rem 0.1rem rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 640px) {
  .contact_form .form_wrap {
    padding: 0.3rem 0.2rem;
  }
}

.contact_form .form_wrap .sec_ttl_wrap {
  padding-bottom: 0.3rem;
}

.contact_form .form_wrap .lead {
  font-size: 0.16rem;
  line-height: 1.91;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .contact_form .form_wrap .lead {
    font-size: 0.14rem;
  }
}

.contact_form .form_wrap .form_box {
  padding-top: 0.5rem;
}

@media screen and (max-width: 640px) {
  .contact_form .form_wrap .form_box {
    padding-top: 0.3rem;
  }
}
.contact_form .form_wrap .form_box .list {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #ccc;
  padding: 0.2rem 0;
  font-size: 0.16rem;
  line-height: 1.91;
}
@media screen and (max-width: 640px) {
  .contact_form .form_wrap .form_box .list {
    font-size: 0.14rem;
    padding: 0.15rem 0;
  }
}

.contact_form .form_wrap .form_box .list .ttl {
  width: 2.2rem;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 640px) {
  .contact_form .form_wrap .form_box .list .ttl {
    width: 100%;
    padding-bottom: 0.15rem;
  }
}

.contact_form .form_wrap .form_box .list .ttl.-req::after {
  content: "必須";
  font-size: 0.12rem;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  padding: 0.03rem 0.06rem;
  line-height: 1;
  background-color: #fb3131;
  position: absolute;
  top: 0.06rem;
  right: 0.15rem;
}
@media screen and (max-width: 640px) {
  .contact_form .form_wrap .form_box .list .ttl.-req::after {
    font-size: 0.11rem;
    top: 0.05rem;
    right: 0;
  }
}

.contact_form .form_wrap .form_box .list .txt_box {
  width: calc(100% - 2.2rem);
}
@media screen and (max-width: 640px) {
  .contact_form .form_wrap .form_box .list .txt_box {
    width: 100%;
    padding-bottom: 0.10rem;
  }
}

.contact_form .form_wrap .form_box .list .txt_box input[type="text"],
.contact_form .form_wrap .form_box .list .txt_box input[type="email"],
.contact_form .form_wrap .form_box .list .txt_box input[type="tel"] {
  width: 100%;
  padding: 0.06rem;
  border: 1px solid #999;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 0.04rem;
  font-size: 0.16rem;
}

.contact_form .form_wrap .form_box .list .txt_box textarea {
  width: 100%;
  min-height: 2rem;
  padding: 0.06rem;
  border: 1px solid #999;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 0.04rem;
  font-size: 0.16rem;
}

.contact_form .form_wrap .doui_box p {
  padding: 0.3rem 0;
  display: flex;
  justify-content: center;
  gap: 0 0.1rem;
  align-items: center;
}

.contact_form .form_wrap .doui_box input[type="checkbox"] {
  width: 0.2rem;
  height: 0.2rem;
  border: 1px solid #999;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 0.04rem;
}

.contact_form .form_wrap .doui_box .txt {
  font-size: 0.16rem;
  line-height: 0;
}
@media screen and (max-width: 640px) {
  .contact_form .form_wrap .doui_box .txt {
    font-size: 0.14rem;
  }
}

.contact_form .form_wrap .doui_box .txt a {
  font-weight: 500;
  color: #3d9be3;
  text-decoration: underline;
}

.contact_form .form_wrap .doui_box .txt a:hover {
  text-decoration: none;
}

.contact_form .form_wrap .btn_wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 0.2rem;
}

.contact_form .form_wrap .btn_wrap .btn {
  width: 100%;
  max-width: 3rem;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}

.contact_form .form_wrap .btn_wrap .btn:hover {
  opacity: 0.7;
}

.contact_form .form_wrap .btn_wrap .btn::after {
  content: "";
  width: 0.14rem;
  height: 0.14rem;
  background-image: url(../img/icon_cta_arrow.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0.15rem;
  transform: translateY(-50%);
  z-index: 1;
  transition: all 0.3s;
}

.contact_form .form_wrap .btn_wrap .btn.-back input,
.contact_form .form_wrap .btn_wrap .btn.-submit input {
  display: block;
  width: 100%;
  padding: 0.18rem 0 0.2rem;
  text-align: center;
  font-size: 0.18rem;
  font-weight: 700;
  border: 0;
  border-radius: 0.5rem;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .contact_form .form_wrap .btn_wrap .btn.-back input,
  .contact_form .form_wrap .btn_wrap .btn.-submit input {
    font-size: 0.16rem;
    padding: 0.15rem 0 0.15rem;
  }
}

.contact_form .form_wrap .btn_wrap .btn.-back input {
  background-color: #999;
}
.contact_form .form_wrap .btn_wrap .btn.-back::after {
  transform: translateY(-50%) rotate(-180deg);
  right: auto;
  left: 0.15rem;
}

.contact_form .form_wrap .btn_wrap .btn.-submit input {
  background-color: #3d9be3;
}

.wpcf7-spinner {
  display: none!important;
}

/* コンタクトフォーム７ */
.wpcf7-not-valid-tip {
  padding-top: 0.06rem;
  font-size: 0.14rem;
  font-weight: 500;
  color: #F27163;
}

@media screen and (max-width: 640px) {
  .wpcf7-not-valid-tip {
    font-size: 0.12rem;
  }
}

.wpcf7-response-output {
  text-align: center;
  padding: 0.15rem;
  font-size: 0.20rem;
  font-weight: 700;
  line-height: 1.5;
  border: 0;
  background-color: rgba(110, 204, 196, 0.3);
  border-radius: 0.40rem;
}

@media screen and (max-width: 640px) {
  .wpcf7-response-output {
    font-size: 0.16rem;
  }
}


.wpcf7 form.invalid .wpcf7-response-output {
  border: 0.03rem solid #F27163;
  background-color: rgba(242, 113, 99, 0.3);
}

.wpcf7-list-item-label {
  font-size: 0.14rem;
  font-weight: 500;
  line-height: 1.75;
  display: inline-block;
  /* margin-bottom: 0.10rem; */
}

@media screen and (max-width: 640px) {
  .wpcf7-list-item-label {
    font-size: 0.15rem;
  }
}
.wpcf7-list-item-label {
  /* 必要なら非表示に */
  display: none;
}
/*============================
footer
============================*/
footer {
  background-color: #fff;
}

footer .in {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 0.4rem;
}

footer .in .logo {
  width: 100%;
  max-width: 3.4rem;
}
@media screen and (max-width: 640px) {
  footer .in .logo {
    max-width: 2.5rem;
    margin: auto;
  }
}

footer .in .logo img {
  display: block;
  width: 100%;
}

footer .in .glo_navi .list {
  display: flex;
  align-items: center;
  gap: 0 0.36rem;
}
@media screen and (max-width: 640px) {
  footer .in .glo_navi .list {
    gap:0.2rem 0;
    flex-wrap: wrap;
    margin-top: 0.4rem;
  }
  footer .in .glo_navi .list .link {
    width: 50%;
  }
}

footer .in .glo_navi .list .link a {
  font-size: 0.16rem;
  font-weight: 500;
  color: #1a1a1a;
  display: block;
}
@media screen and (max-width: 640px) {
  footer .in .glo_navi .list .link a {
    font-size: 0.14rem;
    display: inline-flex;
    align-items: center;
  }
  footer .in .glo_navi .list .link a::before {
    content: "";
    width: 0.08rem;
    height: 1px;
    display: inline-block;
    background-color: #999;
    margin-right: 0.06rem;
  }
}

footer .in .glo_navi .list .link a span {
  position: relative;
}

footer .in .glo_navi .list .link a span::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #1a1a1a;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
@media screen and (max-width: 640px) {
  footer .in .glo_navi .list .link a span::after {
    content: none;
  }
}

footer .in .glo_navi .list .link a:hover span::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

footer .in .copyright {
  width: 100%;
  padding: 0.25rem 0;
  border-top: 1px solid #ccc;
  margin-top: 0.25rem;
}

footer .in .copyright .txt {
  text-align: center;
  font-size: 0.12rem;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 640px) {
  footer .in .copyright .txt {
    font-size: 0.10rem;
  }
}