@charset "utf-8";

html {
  font-size: 62.5%;
  width: 100%;
}

body {
  font-size: 1.4rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #1F1815;
  margin: 0 auto;
  letter-spacing: 0;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  max-width: 786px;
  min-width: 380px
}

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

  body {
    font-size: 1.6rem;
    max-width: inherit;
    min-width: 1340px;
  }
}

* {
  box-sizing: border-box;
}

a {
  color: #1F1815;
  text-decoration: none;
  transition: .3s;
  -moz-transition: .3s;
  -webkit-transition: .3s;
  -ms-transition: .3s;
}

a:hover {
  opacity: 0.7;
}




ul {
  padding: 0;
}

li {
  list-style-type: none;
}

dd {
  margin-left: 0;
}

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

h2 {
  line-height: 1;
  letter-spacing: 0em;
  margin: 0 auto;
  font-size: 1.8rem;
  font-weight: 700;
}

.mobile {
  display: block;
}

.pc {
  display: none;
}

.title_16px_m {
  font-size: 1.6rem;
  font-weight: 500;
}

header {
  padding: 8px;
  padding-bottom: 0;
  text-align: center;
}

header img {
  max-width: 56%;
}

section {
  text-align: center;
  padding: 60px 0;
}

.mv_cv {
  margin-top: -18%;
  position: relative;
}

.mv_cv a {
  margin-top: -18%;
  position: relative;
}

.mv_cv a:hover {
  opacity: inherit;
  filter: brightness(130%);
}

.updown {
  animation-name: updown1;
  /* アニメーション名の指定 */
  animation-delay: 0s;
  /* アニメーションの開始時間指定 */
  animation-duration: 3s;
  /* アニメーション動作時間の指定 */
  animation-timing-function: ease-in-out;
  /* アニメーションの動き指定（徐々に早く）*/
  animation-iteration-count: infinite;
}

@keyframes updown1 {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.inner {
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 15px;
}

.flex-cont {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

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

.text_center {
  text-align: center;
}


.text_justyfy {
  text-align: justify;
}

.font14px {
  font-size: 1.4rem;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}


.btn {
  display: inline-block;
  width: 280px;
  max-width: 100%;
  background-color: #FFFA6E;
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all .5s;
  transition: all .5s;
  text-align: center;
  background-position: right 16px center;
  background-repeat: no-repeat;
  padding: 13px 35px;
  overflow-wrap: break-word;
  background-image: url(../image/Icon-right.png);
  background-size: 9px 14px;
  border-radius: 5px;
  background-color: #d60020;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);

}


/* .btn:hover {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
  -webkit-transition: all .5s;
  transition: all .5s;
} */

.text_justyfy {
  text-align: justify;
}

.color-red {
  color: #D60020;
}

.sec_title {
  margin-bottom: 20px;
}

.sec_mv {
  height: auto;
  padding: 0;
}

.sec_mv__wrap {
  position: relative;
}

@media screen and (min-width: 768px) {
  .mobile {
    display: none;
    text-align: center;
  }

  .pc {
    display: block;
  }

  .inner {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  h1 {
    height: 100%;
  }

  header {
    text-align: left;
    height: 60px;
    padding: 0;
  }

  header img {
    width: 270px;
    max-width: inherit;
  }

  /* .sec_mv__wrap {
    background-image: url(../image/mv_pc.jpg);
    height: 80vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  } */

  .mv_cv {
    text-align: center;
    width: 50%;
    margin: auto;
    margin-top: -8%;
  }

  .mv_cv img {
    margin: 0 auto;
  }

  section {
    text-align: center;
    padding: 80px 0;
  }


}

.sec_two_plan {
  padding-top: 40px;
}

.sec_two_plan .sec_title {
  text-align: left;
  display: inline-block;
}

.sec_two_plan .sec_title img {
  width: 200px;
  display: block;
  text-align: left;
}

.sec_two_plan .sec_title span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 4.6rem;
}

.sec_two_plan .sec_title p {
  position: relative;
  text-align: center;
}

.sec_two_plan .sec_title p:before,
.sec_two_plan .sec_title p:after {
  position: relative;
  display: inline-block;
  content: "";
  background: #D60020;
  width: 2px;
  height: 2em;
  margin: 0 1em;
  margin-top: -.2em;
  vertical-align: bottom;
}

.sec_two_plan .sec_title p:before {
  transform: rotate(-35deg);
}

.sec_two_plan .sec_title p:after {
  transform: rotate(35deg);
}

.plan_moraeru {
  background-color: #FF913C;
  padding: 22px 15px;
}

.plan_norikae {
  background-color: #2FCBB9;
  padding: 22px 15px;
}

.plan_inner {
  background-color: #fff;
  border-radius: 10px;
  padding: 16px 20px;
  position: relative;
  text-align: left;
}

.plan_headline {
  width: 110%;
  margin: -43px auto 10px -35px;
}

.plan_norikae .plan_headline {
  margin: -31px auto 10px -33px;
}

.plan_item_icon {
  width: 24%;
}

.plan_item {
  border-bottom: solid 1px #FFE9D8;
  padding: 10px 0;
  align-items: center;
}

.plan_item:last-of-type {
  border-bottom: none;
}

.plan_item p {
  width: 71%;
  line-height: 1.6;
}

.plan_item p span {
  color: #D60020;
  font-weight: 500;
}


.plan_norikae .plan_item {
  border-bottom: solid 1px #DBF4F1;
}

.plan_norikae .plan_item:last-of-type {
  border-bottom: none;
}

.plan_anatani {
  margin-bottom: 0;
  margin-top: 30px;
}

.plan_anatani_item {
  width: 48%;
  text-align: center;
}

.anatani_item__box {
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
  padding: 20px 10px;
}

.anatani_hukidasi {
  width: 89%;
  display: block;
  margin: auto;
}

.anatani_item__box p {
  font-size: 1.3rem;
  font-weight: 700;
}

.anatani_item__box p span {
  font-family: Montserrat;
  font-size: 2.8rem;
  color: #d60020;
  padding: 0 3px;
}

@media screen and (min-width: 768px) {
  .sec_two_plan {
    padding-top: 60px;
  }

  .sec_two_plan .sec_title {
    text-align: center;
  }

  .sec_two_plan .sec_title p {
    padding-top: 10px;
  }

  .sec_two_plan .sec_title img {
    width: 380px;
    display: block;
  }

  h2 {
    font-size: 3.8rem;
  }

  .title_16px_m {
    font-size: 2.8rem;
  }

  .sec_title {
    margin-bottom: 40px;
  }

  .sec_two_plan .sec_title p:before,
  .sec_two_plan .sec_title p:after {
    height: 1.3em;
  }

  .sec_two_plan .sec_title span {
    font-size: 7.6rem;
  }

  .plan_list {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
  }

  .plan_item_wrap {
    width: 50%;
    padding: 30px;
  }

  .plan_headline {
    width: 100%;
    margin: -49px auto 10px -43px;
  }

  .plan_norikae .plan_headline {
    margin: -32px auto 10px -37px;
  }

  .anatani_item__box {
    height: 390px;
    padding: 40px 30px 30px;
  }

  .plan_anatani {
    justify-content: center;
    margin-bottom: 0px;

  }

  .plan_anatani_item {
    width: 38%;
  }

  .plan_anatani_item:first-of-type {
    margin-right: 30px;
  }

  .btn_s img {
    width: 50%;
  }

  .anatani_item__box p {
    font-size: 2rem;
  }


  .anatani_item__box img {
    width: 80%;
  }

  .anatani_item__box .btn_s img {
    width: 70%;
  }

  .anatani_item__box p span {
    font-size: 4rem;
  }

  .btn {
    display: inline-block;
    width: 420px;
    padding: 16px;
    font-size: 2rem;
    background-position: right 36px center;
    background-size: 10px 17px;
  }

}

.btn_m_area {
  margin: 20px auto 0;
}

.sec_ranking {
  background-color: #F6F5F1;
}

.ranking_item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
  margin-bottom: 15px;
  padding: 20px;
  text-align: center;
}

.ranking_item:last-of-type {
  margin-bottom: 0;
}

.sec_ranking .sec_title img {
  width: 22px;
  margin-right: 4px;
}

.sec_ranking_title_under {
  font-size: 2.8rem;
  padding-top: 10px;
}

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

.rank_carname {
  margin-left: 27px;
  text-align: left;
}

.rank_top>img {
  width: 30px;
  height: 40px;
}

.rank_top>.rank2 {
  width: 36px;
  height: 40px;
}

.rank_carname img {
  width: 77px;
  vertical-align: bottom;
}

.rank_carname div {
  font-size: 2.2rem;
  font-weight: 700;
}

.rank_btn {
  border-radius: 100vmax;
  font-size: 1.4rem;
  padding: 10px;
  width: 97%;
  max-width: 280px;
  position: relative;
  display: block;
  margin: auto;
  background-size: 8px 12px;
  background-position: right 21px center;
}

.rank_btn:first-of-type {
  margin-bottom: 8px;
}

.rank_image {
  width: 70%;
  margin: 0 auto 15px;
}

.link_small {
  display: inline-block;
  margin-top: 10px;
  font-weight: 500;
  font-size: 1.2rem;
  border-bottom: solid 1px #1F1815;
}

.link_small img {
  width: 6px;
  vertical-align: baseline;
  margin-left: 8px;
}

.rank_btn::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 16px;
  background-image: url(../image/Icon-gift.png);
  background-size: contain;
  vertical-align: middle;
  margin: 0 10px 1px 0;
}

.rank_btn2::before {
  background-image: url(../image/icon-change.png);
}

@media screen and (min-width: 768px) {
  section {
    padding-top: 80px;
  }

  .btn_m_area {
    margin: 60px auto 0;
  }

  .sec_ranking .sec_title img {
    width: 33px;
  }

  .ranking_list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .ranking_item {
    margin-bottom: 0;
    width: 32%;
  }

  .sec_ranking h2 {
    font-size: 2.8rem;
  }


  .sec_ranking_title_under {
    font-size: 3.8rem;
  }


}

.sec_search h2 {
  font-size: 2.2rem;
}

.sec_search h2 img {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 5px;
}




/*タブ切り替え全体のスタイル*/
.tab_wrap {
  background: #fff;
  box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.16);
}


.tabs {
  margin-top: 50px;
  background-color: #ffffff;
  width: 100%;
  margin: 0 auto;
  border-radius: 20px;
}

/*タブのスタイル*/
.tab_item {
  width: calc((100% - 5px) / 2);
  background-color: #F2F2F2;
  line-height: 42px;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  transition: all 0.2s ease;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
}

.onlinenihongo .tab_item p {
  line-height: 50px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  color: #565656;
  display: inline-block;
  position: relative;
}

.tab_item p::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #565656;
  ;
  bottom: 6px;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}

.tab_item p:hover::after {
  transform: scale(1, 1);
}

.tabs input:checked+.tab_item p {
  text-align: center;
  font-weight: 700;
  color: #fff;
  display: inline;
  padding-bottom: 3px;
}

.tabs input:checked+.tab_item p::after {
  content: none;
}

.tab_item2 {
  float: right;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  clear: both;
  overflow: hidden;
  background-color: #fff;
  padding: 0;
  border-radius: 0 0 20px 20px;
  border-top: 2px solid #D60020;
}

.tab_content_inner {
  background-color: #fff;
  border-radius: 10px;
  padding-bottom: 20px;
}

/*選択されているタブのコンテンツのみを表示*/
#all:checked~#all_content,
#programming:checked~#programming_content,
#design:checked~#design_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked+.tab_item {
  background-color: #D60020;
  color: #fff;
}

h3.tab_content_description {
  font-weight: 700;
  font-size: 1.4rem;
  padding: 12px 0;
  display: block;
  background-color: #FFE0E4;
}



.tab_content_image02 {
  top: 533px;
  left: -6%;
  width: 40%;
}

.tab_content_text_wrap {
  width: 100%;
}

.tab_content_text {
  width: 100%;
}

.tab_content_list {
  text-align: left;
  padding: 12px 12px 0;
}

.tab_content_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #e2e2e2;
}

.tab_content_item:last-of-type {
  border-bottom: none;
}

.tab_content_item img {
  width: 13px;
  height: 14px;
}

.tab_content_item p {
  font-size: 1.4rem;
  font-weight: 700;
  display: inline-block;
}

.tab_content_text_wrap_under {
  padding-top: 70px;
}

.tab_content_text_wrap_under .tab_content_text {
  margin: 0 0 0 auto;
}

.tab_content_description span {
  font-size: 2rem
}

.tab_content_description .sp12 {
  font-size: 1.2rem;
  letter-spacing: 0.05rem;
  vertical-align: middle;
}

.tab_content_text_wrap_under .tab_content_description span {
  font-size: 1.2rem;
  vertical-align: middle;
}

.tab_btn {
  position: relative;
  display: block;
  border-radius: 100vmax;
  box-shadow: none;
  margin-top: 60px;
  font-size: 1.8rem;
  width: 96%;
  max-width: 640px;
  padding: 35px;
}

.price_yen {
  color: #d60020;
}

.price_no {
  color: #d60020;
  font-family: 'Montserrat',
    sans-serif;
  font-size: 2rem;
}

.tab_content_list_body {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
}

.tab_content_list_body a {
  width: 32%;
  text-align: center;
  margin-top: 30px;
}

.tab_content_list_body a:nth-of-type(1),
.tab_content_list_body a:nth-of-type(2),
.tab_content_list_body a:nth-of-type(3) {
  margin-top: 20px;
}

.tab_content_list_body a p {
  margin-top: 10px;
  font-weight: 700;
}

.search_maker {
  background: #fff;
  box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.16);
  padding: 0 0 30px;
}

.search_maker_item {
  width: 24%;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .sec_search h2 {
    font-size: 2.8rem;
  }

  .tab_wrap,
  .search_maker {
    max-width: 900px;
    margin: 0 auto;
  }

  .tab_content_item p {
    font-size: 1.6rem;
  }

  .price_no {
    font-size: 3rem;
  }

  .tab_item {
    font-size: 2rem;
    line-height: 60px;
  }

  h3.tab_content_description {
    font-size: 1.8rem;
    padding: 14px;
  }

  .tab_content_item {
    padding: 10px 30px;
  }

  .tab_content_list_body {
    font-size: 1.6rem;
    padding: 30px 50px 10px;
  }

  .tab_content_list_body img {
    width: 40%;
  }

  .search_maker_item {
    font-size: 1.6rem;
  }

  .search_maker_list {
    padding: 50px;
    padding-top: 0;
    padding-bottom: 30px;
  }

}

.sec_suggestion {
  background-color: #F6F5F1;
  padding-bottom: 80px;
}


.sec_suggestion .sec_title span {
  color: #d60020;
  font-size: 2.8rem;
}

.sec_suggestion .absolute {
  left: -5%;
  width: 90px;
  height: 90px;
  top: -196%;
}

.suggestion_image1 {
  width: 90%;
  margin: 0 auto;
}

.suggestion_square img {
  width: 52px;
  height: auto;
}

.suggestion_square {
  margin: auto;
  color: #d60020;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 10px;
}

.sec_suggestion .tegaru_circle {
  width: 80%;
  margin-bottom: -5%;
}

.tegaru_teian {
  width: 93%;
}

.sec_suggestion_under_title {
  margin-top: 60px;
  padding: 10px;
  background-color: #FFE0E4;
  color: #D60020;
  font-weight: 500;
  text-align: center;
}

.sec_suggestion_under {
  font-weight: 500;
  text-align: left;
}

.sec_suggestion_under .absolute {
  left: inherit;
  top: inherit;
  width: 40px;
  height: 40px;
  bottom: -3px;
  right: 20px;
}

.sec_suggestion_under_content>p {
  text-align: left;
  display: inline-block;
  font-size: 1.6rem;
  margin-top: 20px;
  line-height: 1.8;
}

.suggestion_under_content_image {
  width: 38%;
}

.sec_suggestion_under_content .flex-cont {
  align-items: flex-end;
  margin-bottom: 30px;
  margin-top: 10px;
}

.sec_suggestion_under_content .flex-cont p {
  width: 52%;
  border-bottom: 2px solid #d60020;
}

.sec_suggestion .btn {
  width: 330px;
}

.line {
  background: linear-gradient(transparent 60%, #FFE0E4 0%);
}

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

  .sec_suggestion .inner {
    background-color: #fff;
    border-radius: 10px;
    padding: 100px 10% 80px;
  }

  .sec_suggestion .sec_title {
    font-size: 2.2rem;
    display: inline;
    margin-bottom: 30px;
  }

  .suggestion_square img {
    width: 120px;
    height: 60px;
    margin-top: -10px;
  }

  .sec_suggestion .flex-cont {
    flex-wrap: nowrap;
    align-items: center;
    margin-top: 40px;
    justify-content: space-around;
    margin-bottom: 60px;
  }

  .sec_suggestion .sec_suggestion_under_content .flex-cont {
    margin-top: 10px;
  }

  .suggestion_square {
    margin: 0;
    font-size: 2.4rem;
    margin-bottom: 20px;
  }

  .sec_suggestion .sec_title>div {
    display: inline;
  }

  .sec_suggestion .sec_title span {
    color: #d60020;
    font-size: 4.8rem;
  }

  .suggestion_under_content_image {
    width: 31%;
  }

  .sec_suggestion .absolute {
    left: -15%;
    width: 150px;
    height: 150px;
    top: -330%;
  }

  .suggestion_image1 {
    width: 100%;
    margin-top: 20px;
  }

  .sec_suggestion .tegaru_circle {
    width: 70%;
    margin-bottom: -5.5%;
  }

  .suggestion_image2 {
    width: 100%;
  }

  .tegaru_teian {
    width: 100%;
  }

  .sec_suggestion_under {
    width: 100%;
    text-align: center;
  }

  .sec_suggestion_under_title {
    font-size: 2.4rem;
  }

  .sec_suggestion .sec_suggestion_under_title .absolute {
    left: inherit;
    top: inherit;
    width: 70px;
    height: 70px;
    bottom: -3px;
    right: 10%;
  }

  .sec_suggestion_under_content_text2 {
    border-bottom: 2px solid #d60020;
    padding-top: 40px;
    display: inline-block;
  }


  .sec_suggestion_under_content {
    font-size: 2rem;
  }

  .sec_suggestion_under_content_text {
    text-align: left;
  }

  .sec_suggestion .btn {
    width: 440px;
  }
}


.sec_reason {
  background-color: #F2F2F2;
}

.sec_reason .sec_title {
  color: #ffffff;
  font-size: 1.6rem;
  background: linear-gradient(90deg, #017bb1, rgba(33, 146, 196, 0.73) 50.74%, #017bb1);
  padding: 16px;
}

.text_l {
  font-size: 2.6rem;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.text_l span {
  color: #FEF202;
}

.sec_reason {
  padding-top: 0;
}

.sec_reason .absolute {
  left: -3%;
  width: 35%;
  top: -71%;
}

.reason_item_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-size: 1.6rem;
  font-weight: 500;
  width: 100%;
}

.reason_item span {
  font-weight: 500;
  font-size: 28px;
  color: #d60020;
}

.reason_item {
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .sec_reason .absolute {
    left: 13%;
    width: 240px;
    top: -85%;
  }

  .sec_reason .sec_title {
    font-size: 2.8rem;
    padding: 30px;
  }

  .sec_reason .sec_title div {
    display: inline-block;
  }

  .text_l {
    font-size: 3.8rem;
  }

  .reason_item_text {
    font-size: 2rem;
  }

  .reason_item span {
    font-size: 38px;
  }

  .reason_list {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }

  .reason_item {
    width: 34%;
  }

}

.sec_faq {
  padding-top: 60px;
}

.sec_faq h2 {
  font-size: 2.2rem;
}

.sec_faq h2 img {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 5px
}


/* アコーディオンメニュー全体のサイズ・位置 */
.ac {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  font-weight: 500;
}

/* クリック領域 */
.ac-parent {
  position: relative;
  /* 追加 */
  cursor: pointer;
  display: flex;
  padding-bottom: 20px;
  padding-top: 20px;
  border-bottom: 1px solid #c6c6c6;

}

/* クリックしたら表示される領域 */
.ac-child {
  display: none;
  border-bottom: 1px solid #c6c6c6;
  padding-bottom: 20px;
}

.ac-child>div {
  display: flex;
}

/* .ac-labelを親要素としてアイコン位置を絶対値で指定 */
.icon-wrap {
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translatey(-50%);
  width: 38px;
  height: 38px;
}

/* .icon-wrapの中でプラスを中央に位置させるために.iconを親要素に設定 */
.icon {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}

/* プラスアイコン */
/* ２本の線を.icon-wrapの中央に並行に重ねる */
.icon:before,
.icon:after {
  position: absolute;
  content: "";
  display: block;
  transition: all 0.4s;
  background: #D60020;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 2px;
  transform: translate(-50%, -50%);
}

/* そのうち1本を縦にする */
.icon:before {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* プラスアイコンクリック後、マイナスにする */
.icon.open:before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.ac-parent.open {
  border-bottom: none;
}

.ac span {
  width: 30px;
  height: 30px;
  margin-right: 12px;
}

.ac img {
  width: 30px;
  height: 30px;
  margin-right: 12px;
}

@media screen and (min-width: 768px) {
  .sec_faq {
    padding-top: 80px;
  }


  .sec_faq h2 {
    font-size: 2.8rem;
  }

  .ac {
    width: 100%;
    max-width: 900px;
  }

  .ac-child>div {
    align-items: center;
  }

  .ac-parent {
    align-items: center;
  }

  .ac-parent.q img,
  .ac-child.a img {
    width: 48px;
    height: 48px;
    margin-right: 20px;
  }
}

.sec_cv {
  background-color: #F6F5F1;
  margin-top: 50px;
  padding: 50px 15px;
}

.sec_cv .inner {
  background-color: #fff;
  padding: 30px;
  text-align: center;
}

.sec_cv-btn_area {
  max-width: 400px;
  margin: 0 auto;
}

.sec_cv-btn_area .mobile {
  margin-top: -10px;
}

.footer-logotitle {
  text-align: left;
  display: inline-block;
}

.logo_area {
  text-align: center;
}

.logo_area p {
  text-align: left;
  display: inline-block;
  font-weight: 700;
  color: #d60020;
  line-height: 1.2;
}

.logo_area p span {
  font-size: 1rem;
  color: #1F1815;
}

.left {
  text-align: left;
  margin-bottom: -8px;
}


footer {
  padding-top: 30px;
  text-align: left;
  padding-bottom: 100px;
  background-color: #696464;
  color: #fff;
}


.footer_logo {
  width: 90%;
  margin: 0 auto;
  max-width: 300px;
}

.footer-logotitle img {
  width: 260px;
}

.footer_menu_list {
  margin-bottom: 22px;
}

.footer_menu_list a {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
}


.footer_menu_list a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 5px;
}

.footer_menu_list a::before {
  border-top: 2px solid;
  content: "";
  width: 0.6em;
  margin-right: 0.5em;
}

.footer_menu_list .company {
  padding-top: 10px;
}

.footer_menu_list .company::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 11px;
  border-top: none;
  background-image: url(../image/footer_lin.png);
  background-size: contain;
  vertical-align: middle;
  margin: 0 10px 1px 0;

}

#copyright {
  font-size: 1rem;
  font-style: normal;

}

.copyright {
  text-align: center;
}

#topBtn a {
  position: fixed;
  width: 40px;
  right: 6px;
  bottom: 88px;
  transition: 1s;
  -moz-transition: 1s;
  -webkit-transition: 1s;
  -ms-transition: 1s;
}

.floating-banner {
  position: fixed;
  /* 追従 */
  z-index: 99999;
  /* 他の要素の下に隠れないように */
  bottom: 0;
  /* バナーの上下の位置 */
  right: 0;
  /* バナーの左右の位置 */
  width: 100%;
  text-align: center;
  background-color: rgba(31, 24, 21, 0.5);
  padding: 1em
}


.floating-banner:hover {
  opacity: .9;
  /* ホバーで少し透過 */
}

.floating-banner a:hover {
  opacity: inherit;
}

.floating-banner img {
  width: 20%;
  top: -22%;
  left: -5%;
}


@media screen and (min-width: 768px) {
  footer {
    padding-bottom: 160px;
  }

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

  .footer-logotitle img {
    width: 300px;
  }

  .footer-logotitle {
    text-align: left;
  }

  .footer_menu_list {
    display: flex;
    margin-bottom: 60px;
  }

  .footer_menu_list a {
    padding-bottom: 0px;
    margin-right: 4em;
    font-size: 1.4rem;
  }

  .footer_menu_list .company {
    padding-top: 0;
  }

  .logo_area p {

    font-size: 1.7rem;
  }

  .logo_area_inner {
    text-align: left;
    display: inline-block;
  }

  .left {
    margin-left: 0;
  }

  .sec_cv .inner {
    display: flex;
    margin: 0 auto;
    padding: 60px;
    justify-content: center;
  }

  .sec_cv-btn_area {
    width: 40%;
    font-weight: 700;
    text-align: left;
  }

  .sec_cv-btn_area img {
    margin-bottom: -12px;
  }

  .sec_cv-btn_area .pc {
    margin-left: 10px;
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
  }

  .logo_area {
    width: 40%;
    text-align: left;
    margin: 0 0 0 auto;
  }

  .footer_logo {
    margin-left: -14px;
  }

  .logo_area p span {
    font-size: 1.3rem;
  }

  .tel-no {

    font-size: 3.6rem;
    display: flex;
    align-items: center;
    line-height: 0.5em;
  }

  .tel-no img {
    width: 33px;
    height: 33px;
    margin-bottom: 0px;
    margin-right: 10px;
  }

  .tel-time {
    font-size: 1.6rem;
  }

  .tel-time span {
    font-size: 1.4rem;
    font-family: 'Noto Sans JP', sans-serif;
  }

  .copyright {
    text-align: left;
  }

  #copyright {
    font-size: 1.2rem;
  }

  #topBtn a {
    width: 60px;
    bottom: 140px;
  }

  .floating-banner .btn {
    width: 540px;
    padding: 20px 35px;
    font-size: 2.2rem;

  }

  .floating-banner {
    padding: 1.9em 0 1.4em;
  }

  .floating-banner img {
    width: 18%;
    top: -32%;
    left: 7%;
  }

}