@charset "utf-8";
/* CSS Document */

html{
  scroll-behavior: smooth;
}

html, h1, h2, h3, h4, h5, p, dd, dt, dl, ul, li, img {
    margin: 0;
    padding: 0;
}

body {
	padding: 0;
	margin: 0;
  font-family: sans-serif;
  overflow: hidden;
}

.bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-image: url("https://kokoro-clean.com/image/kabegami.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: .5;
    z-index: -1;
}

img {
    vertical-align: bottom;
    width: 100%;
    padding-top: px;
}

video{
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
#w_1400{
  margin: 0 auto;
  max-width: 1400px;
}

#w_800 {
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
    text-align: center;
}


@media screen and (min-width: 680px){
.pc_900{
  width:1100px;
  margin: 0 auto;
}

.pc_1000{
  width:1000px;
  margin: 0 auto;
}}


@media screen and (min-width: 680px){
  .pc { display:inline; }
  .sp { display:none; }
}
@media screen and (max-width: 680px){
  .pc { display:none; }
  .sp { display:inline; }
}

.p_detail{
    font-size: 16px;
    width: 100%;
    max-width: 800px;
    margin: 10px auto 0;
    text-align: left;
    line-height:1.5em;
}
.p_white{
    color: white;
}

@media screen and (max-width: 680px){
  .p_detail{
      font-size: 11px;
      width: 95%;
      max-width: 800px;
      text-align: left;
      line-height:1.5em;
  }}

/*==========================================
 各セクション背景
===========================================*/

.lyellow{
  background-color: #fffdd0;
}

.brown{
  background-color: #391e01;
}


.lgrey{
  background-color: #f0f0f0;
}

.green{
  background-color: #009b40;
}

.lgreen{
  background-color: #e1f5df;
}

.white{
  background-color: #fff;
}

.bg_lgrey{
  background-color: #e9e6e2;
  background-image: radial-gradient(circle, #bab8b5 10%, transparent 10%), radial-gradient(circle, #bab8b5 10%, transparent 10%);
  background-size: 25px 25px;
  background-position: 0 0, 10px 10px;
}

.form_green{
    background-color: #FFFFFF;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 30px;
}

@media screen and (max-width: 680px){
  .form_green{
    background-color: #FFFFFF;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 20px;
  }}

  .form_red{
    background-color: #ec1f00;
    padding: 30px 0;
  }

  @media screen and (max-width: 680px){
    .form_red{
      background-color: #ec1f00;
      padding: 20px 0;
    }}

    .form_yellow{
      background-color: #f3ea00;
      padding: 30px 0;
    }

    @media screen and (max-width: 680px){
      .form_yellow{
        background-color: #f3ea00;
        padding: 20px 0;
      }}
/* --------------------------------
		 ボタンアニメーション
-------------------------------- */

.inner {
	position: relative;
}


.btn_01 {
  animation: skew 2.3s linear infinite;
}



 /* skewの動きをここで設定 */
    @keyframes skew {
        0% {transform: skew(0deg, 0deg);}
        5% {transform: skew(2deg, 2.2deg);}
        10% {transform: skew(-1deg, -1deg);}
        15% {transform: skew(0.5deg, 1.2deg);}
        20% {transform: skew(-2deg, -1.5deg);}
        25% {transform: skew(0.9deg, 0.9deg);}
        30% {transform: skew(-0.6deg, -0.6deg);}
        35% {transform: skew(0.3deg, 0.3deg);}
        40% {transform: skew(-0.2deg, -0.2deg);}
        45% {transform: skew(0.1deg, 0.1deg);}
        50% {transform: skew(0deg, 0deg);}
    }




    /* ------------------------------ --
    		 アコーディオン
    -------------------------------- */

    .accordion-container {
      position: relative;
      width: 100%;
      border-top: none;
      outline: 0;
      cursor: pointer
    }

    .accordion-container .accordion-title {
      display: block;
      position: relative;
      width: 100%;
      margin: 0 0 2%;
      padding: 1em 0 1em 0.5em;
      font-size: 1.2em;
      font-weight: normal;
      text-align: left;
      color: #fff;
      background: #009b40;
      cursor: pointer;
    }

    @media screen and (max-width: 768px) {
      .accordion-container .accordion-title {
      display: block;
      position: relative;
      width: 100%;
      margin: 0 0 2%;
      padding: 1em 0 1em 0.5em;
      font-size: 0.9em;
      font-weight: normal;
      text-align: left;
      color: #fff;
      background: #009b40;
      cursor: pointer;
    }  }

    .accordion-container .accordion-title:hover,
    .accordion-container .accordion-title:active,
    .accordion-container .content-entry.open .accordion-title {
      background-color: #009b40;
      color: white;
    }

    .accordion-container .accordion-title:hover i:before,
    .accordion-container .accordion-title:hover i:active,
    .accordion-container .content-entry.open i {
      color: white;
    }

    .accordion-title{
      position: relative;
    }

    .accordion-title:after {
      content: "";
      position: absolute;
      right: 25px;
      top: 38%;
      transition: all 0.2s ease-in-out;
      display: block;
      width: 8px;
      height: 8px;
      border-top: solid 2px #fff;
      border-right: solid 2px #fff;
      -webkit-transform: rotate(135deg);
      transform: rotate(135deg);
    }

    .accordion-title.open:after {
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg);
      top: 45%;
    }

    .accordion-content {
      padding: 1% 3% 3%;
      text-align: left;
      font-family: sans-serif;
    }

    @media screen and (max-width: 768px) {
    .accordion-content {
      padding: 2% 3% 4%;
      font-size: 0.9em;
      font-weight: normal;
      text-align: left;
      font-family: sans-serif;
    }}

    /* --------------------------------------------------------------------
     form
    -------------------------------------------------------------------- */
    .center {
    	text-align:center;
    }

    .form_title p{
      width:100%;
      text-align: center;
      padding:20px 0 0;
      margin:0 auto;
      font-size: 120%;
    }

    .form_title h2{
      width:100%;
      background-color: #fd5036;
      color: #fff;
      padding:20px;
      text-align: center;
      margin:0 auto;
      font-size: 200%;
      font-weight: normal;
    }

    form {
    	width:800px;
    	margin:50px auto;
    	background: #fff;
    	padding:30px;
    }

    .form input[type="text"],
    .form input[type="email"] {
    	width:100%;
    	padding:20px;
    	border:solid 1px #CCC;
    	font-size:150%;
    	text-align:center;
    }

    .form  select {
    	width:100%;
    	padding:20px;
    	border:solid 1px #CCC;
    	font-size:150%;
    }

    ::-webkit-input-placeholder {
    	color:#CCC;
    }
    ::-moz-placeholder {
    	color:#CCC;
    	opacity: 1;
    }
    :-ms-input-placeholder {
    	color:#CCC;
    }

    .pub_form dl {
    display: flex;
        align-content: center;
        align-items: center;
        padding: 1rem 0;
        margin: 0 0 .1rem;
        position: relative;
        border-bottom: 1px dotted #999;

    }
    .pub_form dl:last-child {
    		border-bottom:none;
    }

    .pub_form dt {
    	width: 35%;
    	font-weight: bold;


    }


    .pub_form dd {
    	width: 65%;

    }

    .pub_form dd {
        font-size: 14px;
    }

    .telbox {
        align-content: center;
        align-items: center;
         gap:0 6px;
    }

    dl dd ul {
        display: flex;
        flex-wrap: wrap;
    }
    dl dd ul li {
        margin: 0 10px 0 0;
    }

    dl dd ul li span {padding-left: 5px }


    dl dd input[type="text"], dl dd input[type="email"], dl dd input[type="tel"] {
        width: 94%;
        background-color: #E8E8E8;
        border: none;
        border-radius: .2rem;
        outline: none;
        box-shadow: none;
        padding: .8rem 1rem;
        font-size: 16px;
    }

    dl dd input[type="year"]  {
        width: 20%;
        background-color: #E8E8E8;
        border: none;
        border-radius: .2rem;
        outline: none;
        box-shadow: none;
        padding: .8rem 1rem;
        font-size: 16px;
        margin: 0 10px;
    }


    .select {position: relative;
      z-index: 1;}

    select {
      /* 初期化 */
      appearance: none;
      -moz-appearance: none;
      -webkit-appearance: none;
      background: none;
      border: none;
      color: #333;
      font-size: 16px;
      width: 100%;
      height: 100%;
      padding: 0 10px;
      outline: none;
    }

    select::-ms-expand {
      display: none;
    }

    .select {
      background: #E8E8E8;
      height: 40px;
      width:100%;
      border-radius: 5px;
      position: relative;
      z-index: 1;
    }

    .select:after {
      position: absolute;
      z-index: -1;
      top: 19%;
      right: 10px;
      content: "▼";
      font-size: 12px;
      width: 20px;
      height: 20px;
      display: block;
      text-align: center;
     }


    input[type="submit"] {
    	background-color: #fd5036;
        border: none;
        color: #FFF;
        padding: 30px 50px;
        cursor: pointer;
        font-size: 250%;
        line-height: 130%;
        border-radius: 10px;
        margin: 50px auto 0;
        width:650px;
    }

    input[type="submit"]:hover {
    	background-color: #2CC2CF;}



    @media screen and (max-width: 768px) {

      .form_title p{
        width:100%;
        text-align: center;
        padding:20px 0 0;
        margin:0 auto;
        font-size: 90%;
      }

      .form_title h2{
        max-width:100%;
        background-color: #fd5036;
        color: #fff;
        padding:20px 0;
        text-align: center;
        margin:0 auto;
        font-size: 150%;
        font-weight: normal;
      }

      form {
        width:89%;
        margin:5px auto;
        background: #fff;
        padding:10px;
      }

      .form input[type="text"],
      .form input[type="email"] {
        width:100%;
        padding:20px;
        border:solid 1px #CCC;
        font-size:140%;
        text-align:center;
      }

      .form  select {
        width:100%;
        padding:20px;
        border:solid 1px #CCC;
        font-size:140%;
      }

      ::-webkit-input-placeholder {
        color:#CCC;
      }
      ::-moz-placeholder {
        color:#CCC;
        opacity: 1;
      }
      :-ms-input-placeholder {
        color:#CCC;
      }

      .pub_form dl {
      display: flex;
          align-content: center;
          align-items: center;
          padding: 1rem 0;
          margin: 0 0 .1rem;
          position: relative;
          border-bottom: 1px dotted #999;

      }
      .pub_form dl:last-child {
          border-bottom:none;
      }

      .pub_form dt {
        width: 25%;
        font-weight: bold;
      }


      .pub_form dd {
        width: 75%;

      }

      .pub_form dd {
          font-size: 14px;
      }

      .telbox {
        display: flex;
          align-content: center;
          align-items: center;
           gap:0 6px;
      }

      dl dd ul {
          display: flex;
          flex-wrap: wrap;
          margin-left: 10px;
      }

      dl dd ul li {
          margin: 0 10px 0 0;
      }

      dl dd ul li span {padding-left: 5px }


      dl dd input[type="text"], dl dd input[type="email"], dl dd input[type="tel"] {
          width: 85%;
          background-color: #E8E8E8;
          border: none;
          border-radius: .2rem;
          outline: none;
          box-shadow: none;
          padding: .8rem 1rem;
          font-size: 16px;
      }

      dl dd input[type="year"]  {
          width: 20%;
          background-color: #E8E8E8;
          border: none;
          border-radius: .2rem;
          outline: none;
          box-shadow: none;
          padding: .8rem 1rem;
          font-size: 16px;
          margin:0 10px;
      }

      .select {position: relative;
        z-index: 1;}

      select {
        /* 初期化 */
        appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
        background: none;
        border: none;
        color: #333;
        font-size: 16px;
        width: 100%;
        height: 100%;
        padding: 0 10px;
        outline: none;
      }

      select::-ms-expand {
        display: none;
      }

      .select {
        background: #E8E8E8;
        height: 40px;
        width:100%;
        border-radius: 5px;
        position: relative;
        z-index: 1;
      }

      .select:after {
        position: absolute;
        z-index: -1;
        top: 19%;
        right: 10px;
        content: "▼";
        font-size: 12px;
        width: 20px;
        height: 20px;
        display: block;
        text-align: center;
       }


      input[type="submit"] {
        background-color: #fd5036;
          border: none;
          color: #FFF;
          padding: 30px 50px!important;
          cursor: pointer;
          font-size: 150%;
          line-height: 130%;
          border-radius: 10px;
          margin-top: 20px;
          width:100%;
      }

      input[type="submit"]:hover {
        background-color: #2CC2CF;}

        }


            /* --------------------------------
            	フロートボタン
            -------------------------------- */

            .is-fixed {
              display: none!important;
            }

            .offr_area {
              bottom: 0;
              left: 0;
              right: 0;
              position: fixed;
              background:rgba(245,245,245,0.5);
              text-align:center;
            }

            .offr_area a {
                display: inline-block;
                transition: .5s;
            }

            .offr_area img {
                width: 85%;
            }


        @media screen and (max-width: 768px) {
            .offr_area {
                right:0;
                bottom: 0;
            }}

        @media screen and (max-width: 768px) {
            .offr_area a {
                display: inline-block;
                transition: .5s;
            }}

        @media screen and (max-width: 768px) {
            .offr_area img {
                width: 95%;
            }
        }


    /* --------------------------------------------------------------------
     footer
    -------------------------------------------------------------------- */

    .lp_footer, .lp_footer * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.lp_footer {
    background: #205080;
    padding: 15px;
    margin-top: 60px;
    display: block;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .lp_footer {
        padding: 10px;
        margin-top: 0px;
    }
}

.lp_footer .copyright {
    text-align: center;
    color: #FFF;
    font-size: 12px;
}

@media screen and (max-width: 767px) {
    .lp_footer .copyright {
        font-size: 11px;
    }
}

.lp_footer .fnav {
    text-align: center;
    margin-bottom: 15px;
}

.lp_footer .fnav ul {
    text-align: center;
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 0;
}

.lp_footer .fnav li {
    text-align: center;
    display: inline-block;
    border-right: solid 1px #FFF;
    margin: 0;
    padding: 0 10px;
    line-height: 1.1;
}

.lp_footer .fnav li:last-child {
    border-right: none;
    padding-right: 0;
}

.lp_footer .fnav a {
    color: #FFF;
    font-size: 14px;
    line-height: 1.1;
    text-decoration: none;
}

@media screen and (max-width: 767px) {
    .lp_footer .fnav a {
        font-size: 11px;
        display: block;
        padding: 3px;
    }
}


    /* --------------------------------------------------------------------
     EPU popupバナー
    -------------------------------------------------------------------- */

.none{
	display:none;
	transition: all 1s ease-out;
}


    /* --------------------------------------------------------------------
     カルーセル麻紀
    -------------------------------------------------------------------- */

.carousel-container {
  width: 95%; /* 横幅を900pxに設定 */
  margin: 0 auto; /* 中央寄せ */
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  flex: 0 0 100%;
}

.carousel-slide img {
  width: 100%;
  height: auto;
}

.carousel-prev, .carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  z-index: 1;
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}







   /* --------------------------------------------------------------------
     Squad beyond
    -------------------------------------------------------------------- */


#sb-part-6687.sb-custom-part-ly2jv81txpgbn9hzvp .c-card {
  width: 100%;
  max-width: 720px;
  margin: -50px auto 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  overflow: hidden;
  position: relative;
}

#sb-part-6687.sb-custom-part-ly2jv81txpgbn9hzvp .card-item {
  width: 33.33%;
  margin-top: 50px;
  padding: 15px;
  box-sizing: border-box;
}

#sb-part-6687.sb-custom-part-ly2jv81txpgbn9hzvp .card-item__inner {
  position: relative;
  z-index: 0;
}

#sb-part-6687.sb-custom-part-ly2jv81txpgbn9hzvp .card-item__inner:before {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 10px;
  background-color: #feeca4;

  background-size: auto auto;
  display: block;
  z-index: -1;
  box-sizing: border-box;
  content: '';
  position: absolute;
}

#sb-part-6687.sb-custom-part-ly2jv81txpgbn9hzvp .card-item a {
  width: 100%;
  color: inherit;
  background-color: #fff;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgb(70 52 32 / 20%);
  box-sizing: border-box;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
}

#sb-part-6687.sb-custom-part-ly2jv81txpgbn9hzvp .card-thumb {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

#sb-part-6687.sb-custom-part-ly2jv81txpgbn9hzvp .card-thumb img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: transform 0.2s;
}

#sb-part-6687.sb-custom-part-ly2jv81txpgbn9hzvp .card-item a:hover .card-thumb img {
  transform: scale(1.4);
}

#sb-part-6687.sb-custom-part-ly2jv81txpgbn9hzvp .cont-wrap {
  padding: 10px;
}

#sb-part-6687.sb-custom-part-ly2jv81txpgbn9hzvp .cont-hd {
  font-size: 19px;
  font-weight: bold;
}

#sb-part-6687.sb-custom-part-ly2jv81txpgbn9hzvp .cont-text {
  font-size: 16px;
  margin-top: 10px;
}

#sb-part-6687.sb-custom-part-ly2jv81txpgbn9hzvp .baloon-wrap {
  width: 90%;
  right: 50%;
  transform: translateX(50%);
  top: -10px;
  padding: 5px 10px;
  background: #fff;
  border: 2px solid #333;
  border-radius: 30px;
  position: absolute;
  box-sizing: border-box;
}

#sb-part-6687.sb-custom-part-ly2jv81txpgbn9hzvp .baloon-wrap:before,
#sb-part-6687.sb-custom-part-ly2jv81txpgbn9hzvp .baloon-wrap:after {
  width: 0;
  height: 0;
  border-style: solid;
  content: '';
  position: absolute;
  display: block;
}

#sb-part-6687.sb-custom-part-ly2jv81txpgbn9hzvp .baloon-wrap:after {
  bottom: -15px;
  right: 50%;
  transform: translateX(50%);
  border-width: 18px 10px 0 10px;
  border-color: #ffffff transparent transparent transparent;
}

#sb-part-6687.sb-custom-part-ly2jv81txpgbn9hzvp .baloon-wrap:before {
  bottom: -20px;
  right: 50%;
  transform: translateX(50%);
  border-width: 20px 11px 0 11px;
  border-color: #000000 transparent transparent transparent;
}

#sb-part-6687.sb-custom-part-ly2jv81txpgbn9hzvp .baloon-text {
  font-size: 13px;
}

@media screen and (max-width: 767px) {
  #sb-part-6687.sb-custom-part-ly2jv81txpgbn9hzvp .c-card {
    margin: -10vw auto 20px;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
  }

  #sb-part-6687.sb-custom-part-ly2jv81txpgbn9hzvp .card-item {
    width: 100%;
    margin-top: 3vw;
    padding: 3vw;
  }

  #sb-part-6687.sb-custom-part-ly2jv81txpgbn9hzvp .card-thumb {
    height: 40vw;
  }

  #sb-part-6687.sb-custom-part-ly2jv81txpgbn9hzvp .cont-wrap {
    padding: 3.5vw;
  }

  #sb-part-6687.sb-custom-part-ly2jv81txpgbn9hzvp .cont-hd {
    font-size: 5vw;
  }

  #sb-part-6687.sb-custom-part-ly2jv81txpgbn9hzvp .cont-text {
    font-size: 4vw;
    margin-top: 1vw;
  }

  #sb-part-6687.sb-custom-part-ly2jv81txpgbn9hzvp .baloon-wrap {
    padding: 1vw 3vw;
  }

  #sb-part-6687.sb-custom-part-ly2jv81txpgbn9hzvp .baloon-text {
    font-size: 3.5vw;
  }
}







#area {
  padding: 60px 0 0;
}
@media only screen and (max-width: 479px) {
  #area {
    padding: 40px 0 0;
  }
}
#area #areainfo {
  margin-bottom: 20px;
}
#area #areainfo::after {
  content: "";
  display: block;
  clear: both;
}
#area #areainfo li {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  line-height: 40px;
  padding: 0 14px;
  background: #0069d9;
  border-radius: 5px;
  margin: 0 5px;
}
#area #areainfo li:last-child {
  color: #343a40;
  font-size: 32px;
  background: transparent;
  padding: 0;
}
@media only screen and (max-width: 479px) {
  #area #areainfo li {
    font-size: 14px;
    line-height: 30px;
    padding: 0 8px;
    margin: 2px;
  }
  #area #areainfo li:last-child {
    font-size: 18px;
  }
}
#area .catch {
  font-size: 25px;
  font-weight: bold;
  line-height: 1.3;
  position: relative;
  padding: 0 40px;
  display: inline-block;
  margin-bottom: 50px;
}
@media only screen and (max-width: 479px) {
  #area .catch {
    display: inline-block;
    margin: 0 auto 30px;
    font-size: 18px;
  }
  #area .catch br {
    display: inline;
  }
}
#area .catch::before, #area .catch::after {
  content: "";
  width: 25px;
  height: 30px;
  background: url("../2nd/img/ico_line.png") center/100% no-repeat;
  position: absolute;
  bottom: 4px;
}
#area .catch::before {
  left: 0;
}
#area .catch::after {
  transform: scale(-1, 1);
  right: 0;
}
#area .catch em {
  font-size: 50px;
  background: linear-gradient(transparent 70%, #ffec47 0%);
}
@media only screen and (max-width: 479px) {
  #area .catch em {
    font-size: 24px;
  }
}
#area .boxborder {
  text-align: left;
}
@media only screen and (max-width: 479px) {
  #area .boxborder {
    width: 88%;
    margin: 0 auto;
  }
}
#area .boxborder dt, #area .boxborder dd {
  position: relative;
}
#area .boxborder dt {
  font-weight: bold;
  font-size: 25px;
  line-height: 1.6;
  padding: 20px 80px 20px 30px;
  position: relative;
  cursor: pointer;
  border-top: solid 1px #ccc;
}
@media only screen and (max-width: 479px) {
  #area .boxborder dt {
    font-size: 16px;
    line-height: 1.4;
    padding: 10px 30px 10px 15px;
  }
}
#area .boxborder dt:first-child {
  border-top: none;
}
#area .boxborder dt::after {
  content: "";
  width: 20px;
  height: 12px;
  background: url("../2nd/img/ico_faq_arrow.png") center/100% no-repeat;
  position: absolute;
  top: 50%;
  right: 29px;
  margin-top: -6px;
  transition: all 0.4s;
}
@media only screen and (max-width: 479px) {
  #area .boxborder dt::after {
    width: 10px;
    height: 6px;
    margin-top: -3px;
    right: 12px;
  }
}
#area .boxborder dt.on::after {
  transform: rotate(-180deg);
}
#area .boxborder dd {
  background: #f7f4ec;
  padding: 20px;
  line-height: 1.8;
  position: relative;
}
#area .boxborder dd ul::after {
  content: "";
  display: block;
  clear: both;
}
#area .boxborder dd ul li {
  float: left;
  margin: 0 5px;
  font-size: 12px;
}
@media only screen and (max-width: 479px) {
  #area .boxborder dd {
    padding: 10px;
    display: none;
  }
}




/* ---------------------CTAエリア---------------------- */
.cta_area_wrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 4%;
    margin-bottom: 5%;
}

.cta_inner {
    position: absolute;
    display: flex;
    align-items: flex-end;
    top: 47%;
    max-width: 1100px;
    margin: 0 auto;
    left: 0;
    right: 0;
    gap: 1%;
}
.cta_inner img{
	position: relative;
	z-index: 10;
}
.cta_tell a::before,
.cta_tell a::after {
  content: "";
    position: absolute;
    width: 44%;
    height: 68%;
    top: 24%;
    left: 2%;
    border-radius: 79px;
    transform: translate3d(0, 0, 0);
}
.cta_tell a::before {
  animation: aura 4s ease-out infinite;
}
.cta_tell a::after,
.cta02 a::after {
  animation: aura 4s ease-out 1.5s infinite;
}
.cta_tell a::before,
.cta_tell a::after {
  background: #ff7200;
}
.cta_line a::before,
.cta_line a::after {
    content: "";
    position: absolute;
    width: 44%;
    height: 64%;
    top: 30%;
    left: 52%;
    border-radius: 79px;
    transform: translate3d(0, 0, 0);
}
.cta_line a::before {
  animation: aura 4s ease-out infinite;
}
.cta_line a::after,
.cta02 a::after {
  animation: aura 4s ease-out 1.5s infinite;
}
.cta_line a::before,
.cta_line a::after {
  background: #22ba4f;
}

@keyframes aura {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }
  90% {
    opacity: 0.1;
  }
  to {
    transform: scale(1.2, 1.5);
    opacity: 0;
  }
}
@keyframes aura2 {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }
  90% {
    opacity: 0.1;
  }
  to {
    transform: scale(1.1, 1.2);
    opacity: 0;
  }
}
@media (min-width: 766px) and (max-width: 1400px){
	.cta_area_wrap {
		max-width: 850px;
		padding: 0 2%;
	}
	.cta_inner {
		max-width: 800px;
	}
}
@media only screen and (max-width: 767px){
	.cta_area_wrap{
		margin: 10% 2%;
	}
	.cta_inner{
        display: block;
        top: 33%;
        width: 90%;
		left: 0;
        right: 0;
        margin: 0 auto;
	}
	.cta_inner .cta_m{
		margin-bottom: 2%;
	}
	.cta_line a::before,
	.cta_line a::after {
        width: 93%;
        height: 36%;
        top: 61%;
        left: 4%;
}
.cta_tell a::before,
.cta_tell a::after {
	width: 93%;
	height: 36%;
	top: 14%;
	left: 4%;
}
}
