@charset "UTF-8";
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
.pc {
  display: block;
}

.sp {
  display: none !important;
}

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

a:hover {
  opacity: 0.7;
}

p {
  line-height: 1.8em;
}

.tel {
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.6;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
/* ==== contents === */
html {
  font-size: 10px;
}

body {
  position: relative;
  box-sizing: border-box;
  color: #333333;
}

.hd {
  width: 100%;
  background: #fff;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.hd .hd_content {
  width: 100%;
  height: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.hd .hd_content .hd_logo {
  padding: 15px;
  width: 30%;
}
.hd .hd_content .hd_cv {
  width: 70%;
  display: flex;
  justify-content: flex-end;
}
.hd .hd_content .hd_cv .free_btn {
  width: 50%;
  max-width: 180px;
  background: #F4EC37;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
}
.hd .hd_content .hd_cv .free_btn .free {
  padding-left: 3rem;
  position: relative;
}
.hd .hd_content .hd_cv .free_btn .free::before {
  content: "";
  width: 2.5rem;
  height: 1.9rem;
  background: url(../img/free_icon.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.hd .hd_content .hd_cv .login_btn {
  width: 50%;
  max-width: 180px;
  background: #36B734;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
}
.hd .hd_content .hd_cv .login_btn .login {
  padding-left: 3rem;
  position: relative;
}
.hd .hd_content .hd_cv .login_btn .login::before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background: url(../img/login_icon.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.frame_bg {
  background: #F4F4E4;
  background-image: url(../img/frame01.png);
  background-repeat: repeat;
}

/*
.main_filter{

	&::before{
		content: "";
		background: url(../img/shading.png);
		width: 100%;
		height: 100%;
		z-index: 1000;
		position: fixed;
	}
}
		*/
.main_mv {
  width: 100%;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}
.main_mv .mv_circle {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #9BE34D;
  border-radius: 50%;
  width: 185vw;
  height: 90vw;
  z-index: 5;
  overflow: hidden;
}
.main_mv .mv_bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 7;
  /*
  width: 1440px;
  height: 650px;
  background: url(../img/aaa.webp) bottom center no-repeat;
  */
  width: 1820px;
  height: 650px;
  background: url(../img/main_bg_item.webp) bottom center no-repeat;
}
.main_mv .main_content {
  width: 100%;
  max-width: 1130px;
  padding: 120px 15px 175px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.main_mv .main_content .main_txt {
  width: 40%;
}
.main_mv .main_content .main_movie {
  width: 55%;
  background: url(../img/main_item01.webp) center no-repeat;
  background-size: contain;
  position: relative;
}
.main_mv .main_content .main_movie video {
  position: absolute;
  width: 70%;
  height: 81%;
  top: 20px;
  background: #333;
  left: 50%;
  transform: translateX(-50%);
}
.main_mv .main_content .main_movie::after {
  content: "";
  background: url(../img/main_item02.webp);
  background-repeat: no-repeat;
  width: 100%;
  height: 50%;
  background-size: contain;
  position: absolute;
  top: 20%;
  left: 0;
}

.mv_character {
  position: absolute;
  bottom: -70px;
  max-width: 183px;
  left: 50.1%;
  transform: translate(-50%, 70px);
  z-index: 7;
  opacity: 0;
  animation: slideFadeInOut01 6s infinite;
}

.mv_character_hand {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translate(-50%, -5px);
  z-index: 7;
  opacity: 0;
  animation: slideFadeInOut02 6s infinite;
}

/* アニメーション */
@keyframes slideFadeInOut01 {
  0% {
    opacity: 0;
    transform: translate(-50%, 70px); /* 下から開始 */
  }
  25% {
    opacity: 1;
    transform: translate(-50%, 0); /* 画面内に表示される */
  }
  50% {
    opacity: 1;
    transform: translate(-50%, 0); /* 2秒間固定 */
  }
  75% {
    opacity: 0;
    transform: translate(-50%, 70px); /* 元の位置に戻る */
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 70px); /* ループ用 */
  }
}
@keyframes slideFadeInOut02 {
  0% {
    opacity: 0;
    transform: translate(-50%, -5px); /* 下から開始 */
  }
  15% {
    opacity: 1;
    transform: translate(-50%, 0); /* 画面内に表示される */
  }
  40% {
    opacity: 1;
    transform: translate(-50%, 0); /* 2秒間固定 */
  }
  75% {
    opacity: 0;
    transform: translate(-50%, -5px); /* 元の位置に戻る */
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -5px); /* ループ用 */
  }
}
.content {
  width: 100%;
  max-width: 1030px;
  padding: 0 15px;
  margin: 0 auto;
}

.dot_top::before, .dot_top::after {
  content: "";
  width: 14px;
  height: 14px;
  background: #BFBFBF;
  border-radius: 50px;
  position: absolute;
  top: 14px;
}
.dot_top::before {
  left: 14px;
}
.dot_top::after {
  right: 14px;
}

.dot_bottom::before, .dot_bottom::after {
  content: "";
  width: 14px;
  height: 14px;
  background: #BFBFBF;
  border-radius: 50px;
  position: absolute;
  bottom: 14px;
}
.dot_bottom::before {
  left: 14px;
}
.dot_bottom::after {
  right: 14px;
}

.cost_sec {
  width: 100%;
  padding: 100px 0;
  position: relative;
}
.cost_sec .cost_ttl {
  font-size: 3.4rem;
  color: #fff;
  text-align: center;
  background: #36B734;
  padding: 10px;
  border-radius: 50px;
  position: relative;
  margin-bottom: 70px;
  font-weight: bold;
}
.cost_sec .cost_ttl::after {
  content: "";
  width: 40px;
  height: 25px;
  background: #36B734;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.cost_sec .cost_block {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.cost_sec .cost_block .cost_box {
  width: 48.7%;
  background: #fff;
  border-radius: 15px;
  padding: 60px 20px 40px;
  position: relative;
}
.cost_sec .cost_block .cost_box .item {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.cost_sec .cost_block .cost_box .item.pochita {
  width: 70px;
}
.cost_sec .cost_block .cost_box .item.pochiko {
  width: 70px;
}
.cost_sec .cost_block .cost_box .ttl {
  font-size: 3.4rem;
  font-weight: bold;
  text-align: center;
}
.cost_sec .cost_block .cost_box .cost {
  display: flex;
  justify-content: center;
  align-items: baseline;
  color: #67AB45;
  line-height: 1;
}
.cost_sec .cost_block .cost_box .cost .num {
  font-size: 12.7rem;
  font-weight: 900;
}
.cost_sec .cost_block .cost_box .cost .yen {
  font-size: 7.2rem;
  font-weight: 900;
}
.cost_sec .cost_block .cost_box .cost_list {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 30px;
}
.cost_sec .cost_block .cost_box .cost_list li {
  width: 100%;
  background: #F4F4E4;
  border-radius: 10px;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 12px;
  text-align: center;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s ease, transform 1s ease;
}
.cost_sec .cost_block .cost_box .cost_list li .green {
  color: #36B734;
}
.cost_sec .cost_block .cost_box .cost_list li.visible {
  opacity: 1;
  transform: translateX(0);
}
.cost_sec .cost_block .cost_box .cost_btn {
  width: 76.5%;
  margin: 30px auto 0;
}
.cost_sec .cost_block .cost_box .paid_version_txt {
  margin: 30px auto 0;
}
.cost_sec .cost_block .cost_box .paid_version_txt .txt {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
}
.cost_sec .cost_block .cost_box .paid_version_txt .txt .green {
  color: #36B734;
}
.cost_sec .cost_block .cost_box .paid_version_txt .txt .under {
  border-bottom: 1px solid #36B734;
}
.cost_sec .cost_block .cost_box .paid_version_txt .txt .num {
  font-size: 3.2rem;
  font-weight: 900;
}
.cost_sec .cost_block .cost_box .paid_version_txt .txt .tax {
  font-size: 1.8rem;
}

.common_btn01 a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  border: none;
  border-radius: 50px;
  background-color: #F4EC38;
  color: #333;
  font-weight: bold;
  font-size: 2.4rem;
  box-shadow: 0 5px 0 #D0C700;
  transition: 0.3s ease;
  position: relative;
}
.common_btn01 a:hover {
  box-shadow: 0 2px 0 #D0C700;
  top: 3px;
}

.commont_ttl01 {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
}
.commont_ttl01 span {
  position: relative;
  padding: 0 50px;
}
.commont_ttl01 span::before {
  content: "";
  width: 35px;
  height: 45px;
  background: url(../img/ttl_item.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 0;
}
.commont_ttl01 span::after {
  content: "";
  width: 35px;
  height: 45px;
  background: url(../img/ttl_item.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: scale(-1, 1);
}

.trouble_sec {
  width: 100%;
  background: #9BE34D;
  padding: 110px 0 50px;
  position: relative;
}
.trouble_sec .trouble_ttl {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 800px;
  font-size: 3.4rem;
  font-weight: bold;
  padding: 10px;
  background: #36B734;
  border-radius: 50px;
  color: #fff;
  text-align: center;
}
.trouble_sec .trouble_block {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.trouble_sec .trouble_block .trouble_box {
  width: 32%;
  position: relative;
}
.trouble_sec .trouble_block .trouble_box .img {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
}
.trouble_sec .trouble_block .trouble_box .img.kumakun {
  width: 85px;
}
.trouble_sec .trouble_block .trouble_box .img.usagichan {
  width: 83px;
}
.trouble_sec .trouble_block .trouble_box .img.inusan {
  width: 85px;
}
.trouble_sec .trouble_block .trouble_box .speech_bubble {
  width: 86.25%;
  margin-left: 8.75%;
  margin-bottom: 50px;
  background: #fff;
  border-radius: 6px;
  position: relative;
  padding: 30px 15px;
}
.trouble_sec .trouble_block .trouble_box .speech_bubble .txt {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
.trouble_sec .trouble_block .trouble_box .speech_bubble::after {
  content: "";
  width: 36px;
  height: 36px;
  background: #fff;
  clip-path: polygon(0 0, 0 100%, 100% 0);
  position: absolute;
  bottom: -25px;
  left: 30%;
}

.use_sec {
  padding: 80px 0 40px;
  position: relative;
  background: #F4F4E4;
}
.use_sec .content {
  max-width: 1130px;
}
.use_sec::before {
  content: "";
  width: 100%;
  aspect-ratio: 150/11;
  background: url(../img/curve02.svg) bottom center no-repeat;
  background-size: cover;
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.use_sec .use_block {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
.use_sec .use_block .use_box {
  width: 29.5%;
  position: relative;
}
.use_sec .use_block .use_box::after {
  content: "";
  height: 48px;
  width: 18px;
  background: #36B734;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  top: 40%;
  right: -40px;
  transform: translateY(-50%);
}
.use_sec .use_block .use_box:last-child::after {
  content: none;
}
.use_sec .use_block .use_box .img {
  position: relative;
  padding-top: 65%;
  margin-bottom: 20px;
}
.use_sec .use_block .use_box .img img {
  border-radius: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.use_sec .use_block .use_box .img .step {
  width: 70px;
  height: 70px;
  background: #F4EC37;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  position: absolute;
  transform: rotate(-20deg);
  top: -15px;
  left: -15px;
  z-index: 5;
}
.use_sec .use_block .use_box .img .step .en {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  display: block;
  width: 100%;
  text-align: center;
}
.use_sec .use_block .use_box .img .step .num {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1;
  display: block;
  width: 100%;
  text-align: center;
}
.use_sec .use_block .use_box .txt {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

.service {
  width: 100%;
  padding: 12vw 0 145px;
  position: relative;
  background: #36B734;
  background-image: url(../img/frame02.png);
  background-repeat: repeat;
}
.service::after {
  content: "";
  width: 100%;
  aspect-ratio: 150/11;
  background: url(../img/curve01.svg) bottom center no-repeat;
  background-size: cover;
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.service .content {
  max-width: 1130px;
}
.service .features_block {
  width: 100%;
  background: #fff;
  border-radius: 15px;
  padding: 120px 6% 70px;
  position: relative;
  margin-bottom: 100px;
}
.service .features_block .features_ttl {
  font-size: 3.4rem;
  color: #333;
  text-align: center;
  background: #F4EC37;
  padding: 10px;
  border-radius: 50px;
  font-weight: bold;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
}
.service .features_block .features_ttl::after {
  content: "";
  width: 40px;
  height: 25px;
  background: #F4EC37;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.service .features_block .features_flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service .features_block .features_flex.border_b {
  border-bottom: 3px solid rgba(51, 51, 51, 0.08);
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.service .features_block .features_flex .img {
  width: 45%;
}
.service .features_block .features_flex .img img {
  border-radius: 15px;
}
.service .features_block .features_flex .txt_box {
  width: 50%;
}
.service .features_block .features_flex .txt_box .ttl {
  font-size: 3rem;
  font-weight: bold;
  color: #36B734;
  margin-bottom: 20px;
}
.service .features_block .features_flex .txt_box .txt {
  font-size: 1.8rem;
  font-weight: 500;
}
.service .features_block .features_flex.even .img {
  order: 2;
}
.service .features_block .features_flex.even .txt_box {
  order: 1;
}
.service .function {
  width: 100%;
  background: #fff;
  border-radius: 15px;
  padding: 120px 6% 70px;
  position: relative;
}
.service .function .function_ttl {
  font-size: 3.4rem;
  color: #333;
  text-align: center;
  background: #F4EC37;
  padding: 10px;
  border-radius: 50px;
  font-weight: bold;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
}
.service .function .function_ttl::after {
  content: "";
  width: 40px;
  height: 25px;
  background: #F4EC37;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.service .function .function_list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.service .function .function_list .function_box {
  width: calc((100% - 20px) / 2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service .function .function_list .function_box .img {
  width: 25%;
}
.service .function .function_list .function_box .txt_box {
  width: 70%;
}
.service .function .function_list .function_box .txt_box .ttl {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.service .function .function_list .function_box .txt_box .txt {
  font-size: 1.6rem;
  font-weight: 400;
}

.voice {
  width: 100%;
  background: #F4F4E4;
  padding: 100px 0 60px;
}
.voice .voice_block {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.voice .voice_block .voice_box {
  background: #fff;
  border-radius: 15px;
  width: 48.7%;
  padding: 30px;
  position: relative;
}
.voice .voice_block .voice_box::after {
  content: "";
  width: 36px;
  height: 36px;
  background: #fff;
  clip-path: polygon(0 0, 0 100%, 100% 0);
  position: absolute;
  bottom: -25px;
  left: 20%;
}
.voice .voice_block .voice_box .info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  gap: 20px;
}
.voice .voice_block .voice_box .info .ttl_box .campany {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  font-weight: 500;
}
.voice .voice_block .voice_box .info .ttl_box .ttl {
  font-size: 2.8rem;
  font-weight: bold;
}
.voice .voice_block .voice_box .info .inukun {
  width: 71px;
}
.voice .voice_block .voice_box .info .kumakun {
  width: 71px;
}
.voice .voice_block .voice_box .txt {
  font-size: 1.6rem;
  font-weight: 400;
}

.faq {
  width: 100%;
  background: #F4F4E4;
  padding: 60px 0;
}
.faq .faq_block {
  margin-top: 50px;
}
.faq .faq_block .faq_box {
  margin-bottom: 30px;
}
.faq .faq_block .faq_box .question {
  width: 100%;
  background: #9BE34D;
  font-size: 2.2rem;
  font-weight: bold;
  padding: 18px;
  border-radius: 10px;
  text-align: left;
  position: relative;
  padding-left: 60px;
  padding-right: 60px;
}
.faq .faq_block .faq_box .question::before {
  content: "Q.";
  font-size: 3.2rem;
  color: #333;
  position: absolute;
  top: 15px;
  left: 13px;
  line-height: 1;
}
.faq .faq_block .faq_box .question::after {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../img/plus.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
.faq .faq_block .faq_box .question.open::after {
  background: url(../img/minus.svg) center no-repeat;
}
.faq .faq_block .faq_box .answer {
  width: 100%;
  text-align: left;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.faq .faq_block .faq_box .answer .answer_inner {
  padding: 18px;
  margin-top: 10px;
  background: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  border-radius: 10px;
  position: relative;
  padding-left: 60px;
  padding-right: 60px;
}
.faq .faq_block .faq_box .answer .answer_inner::before {
  content: "A.";
  font-size: 3.2rem;
  color: #36B734;
  position: absolute;
  top: 10px;
  left: 13px;
  line-height: 1;
}

.cv_sec {
  width: 100%;
  background: #F4F4E4;
  padding: 60px 0;
}
.cv_sec .cv_block {
  position: relative;
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  background: #36B734;
  border-radius: 20px;
}
.cv_sec .cv_block .cv_flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cv_sec .cv_block .cv_flex .img {
  width: 52%;
  background: url(../img/cv_item02.webp) center no-repeat;
  background-size: cover;
  padding: 30px 30px 60px 30px;
}
.cv_sec .cv_block .cv_flex .txt_box {
  width: 46%;
}
.cv_sec .cv_block .cv_flex .txt_box .cv_ttl {
  color: #fff;
  font-size: 5rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}
.cv_sec .dot_top::before, .cv_sec .dot_top::after {
  content: "";
  background: #fff;
  top: 14px;
}
.cv_sec .dot_top::before {
  left: 14px;
}
.cv_sec .dot_top::after {
  right: 14px;
}
.cv_sec .dot_bottom::before, .cv_sec .dot_bottom::after {
  content: "";
  background: #fff;
}

.floating_block {
  width: 200px;
  background: #fff;
  border: 2px solid #333;
  border-radius: 15px;
  padding: 10px 20px;
  position: fixed;
  bottom: 5%;
  right: 3%;
  z-index: 100;
}
.floating_block .ttl {
  font-size: 1.6rem;
  color: #333;
  text-align: center;
  font-weight: bold;
  margin-bottom: 5px;
}
.floating_block .ttl span {
  position: relative;
  padding: 0 25px;
}
.floating_block .ttl span::before {
  content: "";
  width: 15px;
  height: 18px;
  background: url(../img/ttl_item.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: calc(50% - 9px);
}
.floating_block .ttl span::after {
  content: "";
  width: 15px;
  height: 18px;
  background: url(../img/ttl_item.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: calc(50% - 9px);
  transform: scale(-1, 1);
}
.floating_block .free_btn {
  width: 100%;
  max-width: 180px;
  background: #F4EC37;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 50px;
  margin-bottom: 5px;
  padding: 9px 0;
}
.floating_block .free_btn .free {
  padding-left: 3rem;
  position: relative;
}
.floating_block .free_btn .free::before {
  content: "";
  width: 2rem;
  height: 1.5rem;
  background: url(../img/free_icon.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.floating_block .login_btn {
  width: 100%;
  max-width: 180px;
  background: #36B734;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  border-radius: 50px;
  padding: 9px 0;
}
.floating_block .login_btn .login {
  padding-left: 3rem;
  position: relative;
}
.floating_block .login_btn .login::before {
  content: "";
  width: 2rem;
  height: 2rem;
  background: url(../img/login_icon.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.floating_block .close {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}

.ft {
  background: #333;
  padding: 30px;
}
.ft .ft_contents {
  width: 100%;
  max-width: 1030px;
  margin: 0 auto;
}
.ft .ft_link {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.ft .ft_link li a {
  display: block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}
.ft .ft_copy {
  text-align: center;
  margin-top: 20px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
}

/*sub*/
.sub_page {
  width: 100%;
  background: #F4F4E4;
  background-image: url(../img/frame01.png);
  padding: 70px 0;
}
.sub_page .sub_sec {
  width: 100%;
  max-width: 1000px;
  margin: 70px auto;
  background: #fff;
  border-radius: 15px;
  padding: 60px 7%;
}
.sub_page .common_sub_ttl {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
.sub_page .main_txt {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
}
.sub_page .txt, .sub_page a {
  font-size: 16px;
  font-weight: 500;
}
.sub_page .txt.link, .sub_page a.link {
  text-decoration: underline;
}
.sub_page .mb {
  margin-bottom: 20px;
}
.sub_page .sub_dl {
  width: 100%;
  margin: 35px auto;
}
.sub_page .sub_dl .definition_term {
  font-size: 22px;
  font-weight: bold;
  padding: 5px 0 8px;
  border-bottom: 2px solid #35B834;
  margin-bottom: 15px;
}
.sub_page .sub_dl .description .txt, .sub_page .sub_dl .description a {
  font-size: 16px;
  font-weight: 500;
}
.sub_page .sub_dl .description .txt.link, .sub_page .sub_dl .description a.link {
  text-decoration: underline;
}
.sub_page .sub_dl .description .list li {
  font-size: 16px;
  font-weight: 500;
  text-indent: -1em;
  padding-left: 1em;
  margin: 8px 0;
  line-height: 1.8;
}
.sub_page .sub_dl .description .sub_list li {
  font-size: 16px;
  font-weight: 500;
  text-indent: -1.4em;
  padding-left: 1.4em;
  margin: 8px 0;
  line-height: 1.8;
}/*# sourceMappingURL=style.css.map */