﻿@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/* CSS Document */

/*reset*/
*,
*::before,
*::after {
  box-sizing: border-box
}

* {
  margin: 0
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased
}


picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%
}

img {
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

#root,
#__next {
  isolation: isolate
}

/*ios form reset*/

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}

button,
input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}


input[type="text"], input[type="password"], input[type="email"], input[type="tel"], input[type="number"], textarea {
    border: 1px solid #d9d9d9;
    border-top: 1px solid #c0c0c0;
    padding: 5px;
    font-size: 16px;
    line-height: 1.5em;
    border-radius: 2px;
    width: 98%;
}

input[type="number"] {
    padding: 5px 10px;
}

input[type="checkbox"], input[type="radio"], input[type="checkbox"] + label, input[type="radio"] + label, select {
    cursor: pointer;
}

input[type=checkbox],
input[type=radio] {
    width: 16px;
    height: 16px;
}

input[type="checkbox"] + label:hover, input[type="radio"] + label:hover {
    text-decoration: underline;
}


table {
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

/* flex
--------------------------------------------------------*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.flex.start {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.flex.end {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.flex.center {
  -webkit-justify-content: center;
  justify-content: center;
}

.flex.around {
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

.flex.between {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.flex.stretchf {
  -webkit-align-items: stretch;
  align-items: stretch;
}

.flex.ai_center {
  -webkit-align-items: center;
  align-items: center;
}

.flex.ai_start {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.flex.ai_end {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.flex.nowrap {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.flex.column {
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.flex.row {
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}

.flex.c_reverse {
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.flex.r_reverse {
  -ms-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.noshrink {
  flex: 0 0 auto;
}

.grow {
  flex: 1 1 auto;
}

/* base
---------------------------------------------------------------*/

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

iframe {
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  padding: 0;
}

li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  transition: .3s;
}

a[href^="tel:"]:hover {
  opacity: 1;
}

.slick-slide {
  outline: none;
}

.tb_only {
  display: none;
}

.sp_only {
  display: none;
}

.tb_pc {
  display: inherit;
}

.sp_tb {
  display: none;
}


.txt_center {
  text-align: center;
}

.txt_right {
  text-align: right;
}

.txt_left {
  text-align: left;
}

.inner {
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;

  @media(max-width: 1279px) {
    max-width: 100%;
  }

  @media(max-width: 767px) {
    padding: 0 3.2vw;
  }

}

.h_inner {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0px;
  position: relative;

  @media(max-width: 1279px) {
    max-width: 100%;
  }

  @media(max-width: 767px) {
    padding: 0;
  }

}

body {
  font-weight: 400;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

.js-scrollable {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: scroll;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--color-prim) rgba(255, 255, 255, 0.25);

  &::-webkit-scrollbar {
    width: 12px;
    height: 6px;
    border-radius: 15px;
  }

  &::-webkit-scrollbar-thumb {
    background-color: var(--color-prim);
    border-radius: 15px;
    border: 3px solid transparent;
    background-clip: padding-box;
  }

  &::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 15px;
  }
}


/* debug 
----------------------------------------------------------------------------------------------*/
html.int {
  margin-top: 0 !important;
}

#wpadminbar {
  z-index: 10000000 !important;
  background: rgba(0, 0, 0, 0.25) !important;
  /* display: none;*/
}

/*--------------------------------------------------------------------------------------------*/
@media(min-width: 768px) and (max-width:1279px) {
  .pc_only {
    display: none;
  }

  .tb_only {
    display: inherit;
  }

  .sp_only {
    display: none;
  }

  .tb_pc {
    display: inherit;
  }

  .sp_tb {
    display: inherit;
  }

  .sp_pc {
    display: none;
  }


}

@media(max-width: 767px) {

  .pc_only {
    display: none;
  }

  .tb_only {
    display: none;
  }

  .sp_only {
    display: inherit;
  }

  .tb_pc {
    display: none;
  }

  .sp_tb {
    display: inherit;
  }

  .sp_pc {
    display: inherit;
  }

}

/* base 
----------------------------------------------------------*/
html {
  width: 100%;
  font-size: 62.5%;
}

html {
  scroll-behavior: smooth;
}

body {
  letter-spacing: 0.01em;
  font-size: 1.6rem;
  line-height: 2;
  font-style: normal;
  margin-top: 0px;
  /*color: var(--color-text);*/
  color: #333333;
  background-color: var(--color-bg);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.sticky {
  position: sticky;
  top: 122px;
}

.wrap_foot_stick {
  position: sticky;
  top: 100vh;
  width: 100%;
  padding-bottom: 0px;
}

#wrap_page {
  min-height: 100%;
}



.size_def {
    font-size: 1.25rem;
}

.size_s {
    font-size: 1rem;
}

.fbold {
    font-weight: bold;
}


a.btncom:hover {
    background: #0083d2 !important;
    color: #fff !important;
}

ul {
    padding-left: 30px;
}

    ul.list-disc li {
        list-style: disc;
    }

a.link_other {
    color: #0083d2;
    text-decoration: underline;
}

    a.link_other:hover {
        color: #ffffff;
        background-color: #0083d2;
    }



@media (min-width: 768px) and (max-width: 1279px) {
  body {
    min-width: 100%;
    max-width: 100%;
    overflow-y: scroll;
  }
}

@media(max-width: 767px) {
  body {
    min-width: 100%;
    max-width: 100%;
    font-size: 1.4rem;
  }

  main {
    padding-bottom: 75px;
  }
}

/* cf7*/
.wpcf7-list-item {
  line-height: 1;

  &.first {
    margin: 0;
  }
}

.wpcf7-list-item+.wpcf7-list-item {
  margin-top: 0;
}

/*margin-top*/

.mt5rem {
  margin-top: 5rem;

  @media(max-width: 767px) {
    margin-top: 2.5rem;
  }
}


/* header pc
-------------------------------------*/
.header {
    height: 88px;
    background: #F0F5F2; /*#ECF0EC;*/
    padding: 2px 80px 16px 80px;
}

.logo_head {
  height: 50px;
}


.logo_rece {
    display: block;
    height: 100%;
    font-size: 2.8rem;
    font-weight: bold;
    color: #4EB453; /*#52b556;*/
}

.logo_foot_rece {
    display: block;
    height: 100%;
    font-size: 2.8rem;
    font-weight: bold;
    color: #ffffff;
}

.logo_ico {
    font-size: 2.1rem;
}

/*
.logo_head a {
  display: block;
  height: 100%;
}

.logo_head img {
  height: 100%;
  width: auto;
}
*/

.pc_nav ul {
  gap: 0 20px;
}

.pc_nav ul li a{
  position: relative;
  display: inline-block;
}
.pc_nav ul li a::before{
  content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0;
	height: 2px;
	background: #52b766;
	transition: 0.3s;
}
.pc_nav ul li a:hover::before{
	width: 100%;
}

.pc_nav ul .btn a {
  display: inline-block;
  width: 145px;
  padding: 16px 16px;
  background: #ffffff;
  color: #333;
  line-height: 1;
  text-align: center;
  border-radius: 16px;
  font-size: 16px;
  font-weight: bold;
}
.pc_nav ul li.btn a::before{
  display: none;
}

.pc_nav ul .btnapply a {
  display: inline-block;
  width: 145px;
  padding: 16px 16px;
  background: #fafa87;
  color: #333;
  line-height: 1;
  text-align: center;
  border-radius: 16px;
  font-size: 16px;
  font-weight: bold;
}
.pc_nav ul li.btnapply a::before{
  display: none;
}



/* header sp
---------------------------------------*/
.openbtn, .sp_nav {
  display: none;
}

@media(max-width: 1024px) {
  .pc_nav {
    display: none;
  }

  .openbtn {
    display: block;
  }

  .sp_nav {
    display: block;
  }

  .header {
    height: auto;
    background: #eee;
    padding: 12px 3.2vw;
  }

  .logo_head {
    height: 12vw;
    max-height: 45px;
  }
}

/*========= ナビゲーションのためのCSS ===============*/

#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 69px;
  right: -120%;
  width: 50%;
  height: 100vh;
  /*ナビの高さ*/
  background: #52b766;
  /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*リストのレイアウト設定*/

#g-nav li {
  list-style: none;
  text-align: left;
}

#g-nav li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  border-bottom: 1px solid;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}


/* footer
--------------------------------------*/
.footer {
  background-color: #666;
  color: #fff;
  padding: 50px 0 6px;
}

.wrap_footer .col_l {
  width: 320px;
}

.wrap_footer .col_l .logo_foot {
  max-width: 250px;
}

.wrap_footer .col_l .address {
  line-height: 1.4;
  padding-bottom: 16px;
}

.wrap_footer .col_l .zip {
  padding: 16px 0 3px;
  line-height: 1.4;
}

.wrap_footer .col_l .btn a {
  display: inline-block;
  width: auto;
  padding: 16px 24px;
  background: #fafa87;
  color: #333;
  line-height: 1;
  text-align: center;
  border-radius: 16px;
  font-size: 16px;
  margin-top: 20px;
  font-weight: bold;
}

.wrap_footer .col_r {
  width: calc(100% - 320px);
  padding-left: 100px;
}

.wrap_footer .col_r .nav_foot {
  gap: 20px;

}

.copyrights {
  font-size: 12px;
  text-align: center;
  padding-top: 35px;
}

@media(max-width: 1024px) {
  .wrap_footer .col_l {
    width: 100%;
    text-align: center;
  }

  .wrap_footer .col_l .logo_foot {
    max-width: 250px;
    margin: 0 auto;
  }

  .wrap_footer .col_r {
    width: 100%;
    margin-top: 65px;
    padding-left: 0;
  }

  .wrap_footer .col_r .menu {
    width: 100%;
    text-align: center;
    max-width: 767px;
    margin: 0 auto;
  }

  .wrap_footer .col_r .menu a {
    width: 100%;
    display: inline-block;
    padding: 8px 3.2vw;
    border-top: 1px solid;
  }

  .wrap_footer .col_r .row:last-of-type .nav_foot .menu:last-of-type {
    border-bottom: 1px solid;
  }

  .wrap_footer .col_r .nav_foot {
    gap: 0;
  }

  .copyrights {
    padding-top: 35px;
  }
}

@media(max-width: 560px) {
  .wrap_footer .col_r .menu {
    text-align: left;
    margin: 0 auto;
  }
}


/*main
----------------------------------*/
.main {
  padding-bottom: 7.5rem;
}


@media (min-width: 768px) and (max-width: 1279px) {}

@media(max-width: 767px) {}



/* pages privacy
----------------------------------------------------------*/

.page_header01 {
  /*height: 280px;*/
  /*padding-top: 0px;*/
  height: auto;
  padding-top: 55px;
  padding-bottom: 45px;
  background-size: cover;
  background-repeat: no-repeat;

  @media(max-width: 767px) {
    background-size: cover;
    height: auto;
    padding-top: 55px;
    padding-bottom: 45px;
  }

  & .wrap {
    height: 100%;

    & .page_ttl {
      font-size: 3.2rem;
      line-height: 1.25;

      @media(max-width: 767px) {
        font-size: 2.8rem;
      }
    }

    & .page_ttl_en {
      font-weight: 500;
      font-size: 1.6rem;
      position: relative;
      padding-bottom: 20px;

      &::before {
        content: '';
        width: 50px;
        height: 3px;
        background: #52b766;
        position: absolute;
        left: 0;
        bottom: 0;
      }

      @media(max-width: 767px) {
        font-size: 1.8rem;
      }
    }
  }
}

.privacy_head_txt {
  font-size: 1.7rem;
  margin-bottom: 4rem;
}

.list_pp {
  margin-bottom: 7rem;
}

.main_privacy .inner section .list_pp:last-of-type {
  margin-bottom: 0rem;
}

.list_pp dt {
  font-size: 1.7rem;
  font-weight: 500;
  padding-left: 10px;
  border-left: 4px solid #52b766;
  margin-bottom: 1.5rem;
}

.list_pp dd {
  font-size: 1.7rem;
  padding-left: 4rem;
}

.list_pp dd a {
  color: #52b766;
  text-decoration: underline;
}

@media (min-width: 768px) and (max-width: 1279px) {}

@media(max-width: 767px) {
  .privacy_head_txt {
    font-size: 1.4rem;
    margin-bottom: 3rem;
  }

  .list_pp dt {
    font-size: 1.4rem;
    border-left-width: 2px;
    margin-bottom: 1.5rem;
  }

  .list_pp dd {
    font-size: 1.4rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .list_pp {
    margin-bottom: 3.5rem;
  }

  .main_privacy .inner section .list_pp:last-of-type {
    margin-bottom: 0rem;
  }

}

/* company
----------------------------------------------------------*/

.list_profile01 {
  margin-bottom: 0rem;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  gap: 0rem 35px;
}

.list_profile01 dt {
  font-size: 1.7rem;
  font-weight: 500;
  padding-left: 0;
  border-left: none;
  margin-bottom: 0;
  width: 200px;
  padding-top: 2rem;
  border-top: 2px solid #52b766;
  padding-bottom: 2rem;
  line-height: 1.6;
}

.list_profile01 dd {
  font-size: 1.7rem;
  width: calc(100% - 200px - 35px);
  padding-top: 2rem;
  border-top: 2px solid #ccc;
  padding-bottom: 2rem;
  line-height: 1.6;
}

.list_profile01 dd a {
  color: #52b766;
  display: inline-block;
  padding-bottom: 0px;
  line-height: 1.25;
  border-bottom: 1px solid #52b766;
}

.ttl_page_content01 {
  margin-bottom: 20px;
  font-size: 2.8rem;
  position: relative;
  padding-bottom: 25px;
  line-height: 1.2;
}

.list_profile01 dt:last-of-type {
  border-bottom: 2px solid #52b766
}

.list_profile01 dd:last-of-type {
  border-bottom: 2px solid #ccc;
}

@media (min-width: 768px) and (max-width: 1279px) {}

@media(max-width: 767px) {
  .ttl_page_content01 {
    margin-bottom: 5px;
    font-size: 2.4rem;
  }

  .list_profile01 dt {
    font-size: 1.5rem;
    width: 100%;
    padding-top: 1.5rem;
    border-top: 2px solid #52b766;
    padding-bottom: 0rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .list_profile01 dd {
    font-size: 1.5rem;
    width: calc(100% - 0px - 0px);
    padding-top: 0.5rem;
    border-top: none;
    padding-bottom: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .list_profile01 dt:last-of-type {
    border-bottom: none;
  }

  .list_profile01 dd:last-of-type {
    border-bottom: 2px solid #52b766;
  }
}

/* display
----------------------------------------------------------*/
.ttl_page_content02 {
  font-size: 1.7rem;
  font-weight: bold;
  padding-left: 12px;
  border-left: 4px solid #52b766;
  margin-bottom: 30px;
}

.cont_display01 {
  margin-top: 75px;
}

.wrap_list_display01 {
  gap: 100px 100px;
}

.list_display01 {
  width: calc((100% - 100px) / 2);

}

.list_display01 dt {
  font-weight: bold;
  font-size: 1.7rem;
  color: #fff;
  background: darkcyan;
  padding: 8px 12px;
}

.list_display01 dd {
  padding-top: 24px;

}

.btn_content01 {
  text-align: center;
}

.btn_content01 a {
  display: inline-block;
  width: 320px;
  padding: 24px 16px;
  background: #52b766;
  color: #fff;
  line-height: 1;
  text-align: center;
  border-radius: 0px;
  font-size: 18px;
  box-shadow: 0 3px 5px #0000001f;
}

.mt12rem {
  margin-top: 12rem;
}

@media (min-width: 768px) and (max-width: 1279px) {}

@media(max-width: 767px) {}


/* price
----------------------------------------------------------*/
.wrap_price01 {
  text-align: center;
  padding-top: 4.5rem;
}

.ttl_page_content03 {
  font-size: 3rem;
  position: relative;
  line-height: 1;
  padding-bottom: 12px;
}

.ttl_page_content03::before {
  content: '';
  width: 125px;
  height: 3px;
  background: darkcyan;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.wrap_price01 .area_price01 {
  margin-top: 100px;
  gap: 35px;
}

.wrap_price01 .area_price01 .col {
  width: calc((100% - 70px) / 3);
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 6px #ccc;
  margin: 0 -.75rem;
  min-width: 0;
  overflow: hidden;
  padding: 4rem 2rem;
  position: relative;
}

.wrap_price01 .area_price01 .col:before {
  background-color: darkcyan;
  content: "";
  display: block;
  height: .5rem;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.txt_price span {
  color: var(--color-primary);
  font-size: 3rem;
  font-weight: 700;
  color: darkcyan;
  display: inline-block;
  padding: 0 4px 0 8px;
}

.wrap_price01 .area_price01+.caption {
  margin-top: 7rem;
}

.wrap_price01 .area_price01+.caption a {
  color: #52b766;
  text-decoration: underline;
}

@media (min-width: 768px) and (max-width: 1279px) {}

@media(max-width: 767px) {}




/* cv
----------------------------------------------------------*/
.wrap_cv01 {
  padding-top: 7.5rem;
  padding-bottom: 15rem;
}

.wrap_cv02 {
  border-radius: 25px;
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  background: #00c3c1;
  color: #fff;
  padding: 50px;
}

.wrap_cv02 .ttl01 {
  text-align: center;
  margin-bottom: 12px;
}

.wrap_cv02 .col_l {
  gap: 25px;
  position: relative;
}

.wrap_cv02 .col_l::before {
  content: '';
  top: 0;
  right: -25px;
  width: 1px;
  height: 80%;
  background: #fff;
  display: block;
  position: absolute;
  bottom: 0;
  margin: auto;
}

.wrap_cv02 .col_l .icn {
  display: block;
  height: 150px;
  position: relative;
  width: 150px;
  text-align: center;
  background: #fff;
  border-radius: 50%;
}

.wrap_cv02 .area01 {
  gap: 50px;
}

.wrap_cv02 .area01 .txt01 {
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1;
}

.wrap_cv02 .col_l .icn>span {
  display: block;
  height: fit-content;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.wrap_cv02 .col_l .icn>span>span {
  color: #00c3c1;
  display: block;
  line-height: 1.6;
  font-size: 2rem;
  font-weight: bold;
}

.wrap_cv02 .col_l .btn_cv a, .btn_cvfree a {
  display: inline-block;
  width: auto;
  padding: 20px 29px;
  background: #fafa87;
  color: #333;
  line-height: 1;
  text-align: center;
  border-radius: 16px;
  font-size: 16px;
  margin-top: 20px;
  font-weight: bold;
}

.btn_cvfree a {
    border: solid 1px #cccccc;
}



.wrap_cv02 .col_r .tel a {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  padding: 10px 0 10px;
  pointer-events: none;
  display: block;
}

.wrap_cv02 .col_r .caption01 {
  font-size: 13px;
}

@media (min-width: 768px) and (max-width: 1279px) {}

@media(max-width: 767px) {
  .wrap_cv02 .col_l {
    width: 100%;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }

  .wrap_cv02 .col_r .caption01 {
    text-align: center;
  }

  .wrap_cv02 .col_r .tel a {
    pointer-events: all;
  }

  .wrap_cv01 {

    padding-bottom: 7.5rem;
  }

  .main {
    padding-bottom: 3rem;
  }

  .ttl_page_content03 {
    font-size: 1.8rem;
    position: relative;
    line-height: 1.5;
    padding-bottom: 12px;
  }

  .wrap_price01 .area_price01 .col {
    width: calc((100% - 25px) / 2);
    margin: 0;
    padding: 1.5rem 1rem;
  }

  .wrap_price01 .area_price01 {
    margin-top: 50px;
    gap: 25px;
  }

  .ttl_price01 {
    font-size: 1.8rem;
  }

  .txt_price span {
    font-size: 2rem;
  }
}


/* system
----------------------------------------------------------*/
.wrap_system01 {
  padding-top: 4.5rem;
}

.wrap_system01 .ttl_page_content03 {
  text-align: center;
}

.system_item01 {
  margin-top: 10rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.system_item01 .col_l {
  width: 350px;
}

.system_item01 .col .img {
  width: 100%;
  height: 350px;
  font-size: 0;
}

    .system_item01 .img img {
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
        object-position: center;
    }


    .system_item01 .imgborder img {
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
        object-position: center;
        border: solid 1px #cccccc;
    }


    .imgborder img {
        border: solid 1px #cccccc;
    }


.system_item01 .col_r {
  width: calc((100% - 350px));
  padding-left: 100px;
}

.system_item01 .col_r .tags>span {
  display: inline-block;
  background: darkcyan;
  padding: 5px 20px;
  color: #fff;
}

.system_item01 .col_r .ttl {
  font-size: 2.4rem;
  padding: 12px 0px 0;
}

.system_item01.r_reverse .col_r {
  padding-left: 0;
  padding-right: 100px;
}




@media (min-width: 768px) and (max-width: 1279px) {}

@media(max-width: 767px) {

  .list_display01 {
    width: 100%;
}
.list_display01 dt {
    font-size: 1.5rem;
}
.list_display01 dd {
    padding: 20px 20px 0;
    font-size: 14px;
}
.wrap_list_display01 {
    gap: 50px 0px;
}

.system_item01 {
    margin-top: 5rem;
}
.system_item01 .col_l {
    width: 350px;
    margin: 0 auto 50px;
    text-align: center;
}
.system_item01 .col_r {
    width: calc((100% - 0px));
    padding-left: 0px;
    padding-bottom: 7rem;
}
.system_item01.r_reverse .col_r {
    padding-left: 0;
    padding-right: 0px;
}

}


/* front
----------------------------------------------------------*/

.btn_front {
  text-align: center;
}

.btn_front a {
  display: inline-block;
  font-size: 2rem;
  height: 65px;
  padding: 0 70px;
  text-align: center;
  max-width: 100%;
  line-height: 65px;
  border-radius: 32px;
  background: #EEE911; /*#fafa87;*/
  color: #000;
}

/*ttl*/
.ttl_front01 .jn {
  display: block;
  font-size: 3.2rem;
}

.ttl_front01 .en {
  color: #00c3c1;
  display: block;
  line-height: 1;
  font-size: 2rem;
}

.ttl_front02 .jn {
  display: block;
  font-size: 3.2rem;
}

.ttl_front02 .en {
  color: #00c3c1;
  display: block;
  line-height: 1;
  font-size: 2rem;
}

.txt_front02 {
  padding-top: 7rem;
  font-size: 2.8rem;
  font-weight: bold;
}

/*faq*/

.front_faq {
  padding-bottom: 5rem;
  padding-top: 10rem;
}

.wrap_front_faq {}

.wrap_front_faq .col_ttl {
  width: 350px;
}

.wrap_front_faq .col {
  width: calc(100% - 350px);
  padding-left: 100px;
}

.wrap_front_faq .col dt {
  cursor: pointer;
  position: relative;
  padding: 20px 50px;
  border-bottom: 1px solid #aaa;
  font-weight: bold;
}

.wrap_front_faq .col dt::before {
  position: absolute;
  top: 0;
  bottom: 1px;
  right: 20px;
  margin: auto;
  height: fit-content;
  display: block;
  background-color: #00c3c1;
  color: #fff;
  content: '＋';
  height: 32px;
  width: 32px;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
}

.wrap_front_faq .col dt .icn {
  position: absolute;
  top: 0;
  bottom: 1px;
  left: 20px;
  margin: auto;
  height: fit-content;
  display: block;
}

.wrap_front_faq .col dd {
  padding: 0px 50px 25px;
  background-color: #f2f8f8;
  border-bottom: 1px solid #aaa;
  display: none;

}

.wrap_front_faq .col dt.active {
  background-color: #f2f8f8;
  border: none;
}

.wrap_front_faq .col dt.active::before {
  background-color: #000;
  color: #fff;
  content: '－';
}

/*plan*/
.front_plan {
  padding-bottom: 10rem;
  padding-top: 10rem;
  background: #fafafa;
}

.front_plan_list {
  padding-top: 10rem;
  gap: 50px;
}

.front_plan_list .col {
  width: calc((100% - 100px) / 3);
  background: #fff;
  position: relative;
  padding: 30px;
  text-align: center;
}

.front_plan_list .col.col01 {
  color: #fff;
  background: #00c3c1;
}

.front_plan_list .col .ttl span:nth-child(1) {
  display: block;
  font-size: 2.8rem;
}

.front_plan_list .col .ttl span:nth-child(2) {
  color: #00c3c1;
  display: block;
  line-height: 1;
  font-size: 1.8rem;
}

.front_plan_list .col.col01 .ttl span:nth-child(2) {
  color: #fff;
}

.front_plan_list .col .price {
  padding: 15px 25px 0;
}

.front_plan_list .col .price span {
  font-size: 5.4rem;
  font-weight: bold;
}

.front_plan_list .col .txt_free {
  display: inline-block;
  line-height: 1;
  padding: 6px 0px 12px 7px;
  font-weight: bold;
  font-size: 3.2rem;
  border-bottom: 2px solid;
  margin-bottom: 2rem;
}

.front_plan_caption {
  text-align: center;
  padding: 45px 0;
}

.front_plan_caption a {
  text-decoration: underline;
  color: #52b766;
}

.front_support {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.front_support .box {
  gap: 100px;
  margin: 0 auto;
  padding-top: 7rem;
  max-width: 1000px;

}

.front_support .box .col {
  width: calc((100% - 100px) / 2);
}

.front_support .box .col .img {
  font-size: 0;
  width: 100%;
}

.front_support .box .col .ttl {
  font-size: 2.8rem;
  padding: 20px 0 0;
}

/*merit*/
.front_merit {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.front_merit .system_item01 {
  margin-top: 5rem;
}

.system_front {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  background-image: linear-gradient(0deg, #fff, #00c3c1);
}

.system_front .jn, .system_front .en {
  color: #fff;
}

.system_front .list {
  gap: 75px;
  padding: 7rem 0;
}

.system_front .list .col {
  width: calc((100% - 150px) / 3);

}

@media (min-width: 768px) and (max-width: 1279px) {}

@media(max-width: 767px) {
  .ttl_front02 .jn {
    display: block;
    font-size: 2.8rem;
    line-height: 1.2;
    padding-bottom: 20px;
}
.txt_front02 {
    padding-top: 4rem;
    font-size: 1.7rem;
    font-weight: bold;
    text-align: left;
}
.system_front .list .col {
    width: 100%;
}
.front_merit {
    padding-top: 0;
    padding-bottom: 0rem;
}
.system_item01 .col_r .ttl {
    font-size: 2.4rem;
    padding: 12px 16px 12px;
    line-height: 1.2;
}
.system_item01 .col_r .txt {
    padding: 5px 16px;
}
.front_support {
    padding-top: 2.5rem;
    padding-bottom: 0rem;
}
.front_support .box .col {
    width: 100%;
}
.front_support .box .col .ttl {
    font-size: 2.4rem;
    padding: 20px 0 0;
}
.front_plan {
    padding-bottom: 5rem;
    padding-top: 5rem;
    background: #fafafa;
}
.front_plan_list .col {
    width: 100%;
    padding: 30px;
}
.front_plan_caption {
    text-align: left;
}
.front_faq {
    padding-bottom: 5rem;
    padding-top: 5rem;
}
.wrap_front_faq .col_ttl {
    text-align: center;
    width: 100%;
}
.wrap_front_faq .col dt {
    padding: 20px 40px 20px 50px;
}
.wrap_front_faq .col dt::before {
    right: 10px;
 
}
.wrap_front_faq .col {
    width: calc(100% - 0px);
    padding-left: 0px;
    padding-top: 50px;
}
.btn_front a {
    font-size: 1.7rem;
}
.front_plan_list {
    padding-top: 5rem;
    gap: 50px;
}
.wrap_cv02 .col_l::before{
  display: none;
}
}


/* mv
----------------------------------------------------------*/
.mv_front {
  height: auto;
  /*height: 800px;*/
  /*max-height: 100vh;*/
  min-height: 615px;
}

.mv_inner {
  background-position: right center;
  height: 100%;
  background-image: url(../img/img_04.png);
  background-repeat: no-repeat;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;

}

.mv__cont {
  max-width: 640px;
  padding-top: 60px;
}

.mv__cont .ttl {
  margin-bottom: 24px;
  font-weight: 700;
  color: #484848;
}

.mv__cont .ttl span:nth-of-type(1) {
  font-size: 2.4rem;
  letter-spacing: 0.01em;
  line-height: 1;
}

.mv__cont .img {
  background-color: rgba(255, 255, 255, 0.5);
  display: block;
  margin: 21px 0;
}

.mv__cont .btn_front {
  text-align: left;
}

.mv__cont .btn_front a {
  text-align: center;
}

.mv__description {
  font-size: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) and (max-width: 1279px) {}

@media(max-width: 767px) {
    .mv_inner {
    background-position: center top;
    height: 100%;
    margin: 0 auto;
    padding: 0 3.2vw;
    width: 100%;
    background-size: 80%;
  }
  .mv__cont {
    max-width: 640px;
    padding-top: 66vw;
    margin: 0 auto;
}
.mv__cont .ttl span:nth-of-type(1) {
    font-size: 1.8rem;
    letter-spacing: 0.01em;
    line-height: 1;
}
.mv__cont .img {
    display: block;
    margin: 5px 0 20px 0;
}
.mv_front {
    height: auto;
    max-height: inherit;
    min-height: auto;
}
.mv__description {
    font-size: 1.6rem;
    margin-bottom: 4rem;
}

.mv__cont .btn_front {
    text-align: center;
}



}