@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP:400,500,600,700,900|Roboto:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Rozha+One&display=swap');

/* Header =====================================================================*/
.nav_inner {
    position: relative;
}
.nav_inner:after {
    content: "";
    clear: both;
    display: block;
}

#top-head {
    position: fixed;
    width: 100%;
    margin: 0 auto;
    padding: 22px 0;
    line-height: 1;
    z-index: 999;
    background-color: #fff;
}

#top-head a,
#top-head {
    color: #000;
    text-decoration: none;
}
#top-head .nav_inner {
    position: relative;
}
#top-head .logo {
    float: left;
    max-width: 147px;
}
#global-nav ul {
    list-style: none;
    position: absolute;
    right: 3%;
    bottom: 0;
    font-size: 14px;
}
#global-nav ul li {
    float: left;
    margin-top: 10px;
    letter-spacing: 0.07em;
}

#global-nav ul li:last-child {
    margin-top: 0;
}

#global-nav ul li a {
    padding: 0 20px;
}

#global-nav ul li.btn_login {
    max-width: 160px;
}

/* Toggle Button */
#nav-toggle {
    display: none;
    position: absolute;
    right: 12px;
    top: 14px;
    width: 40px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #333;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 5px;
}
#nav-toggle span:nth-child(2) {
    top: 17px;
}

@media screen and (max-width: 767px) {
    #top-head,
    .nav_inner {
        width: 100%;
        padding: 0;
    }
    #top-head {
        top: 0;
        position: fixed;
        margin-top: 0;
    }
    /* Fixed reset */
    #top-head.fixed {
        padding-top: 0;
        background: transparent;
    }
    #mobile-head {
        background: #fff;
        width: 100%;
        height: 56px;
        z-index: 999;
        position: relative;
    }
    #top-head.fixed .logo,
    #top-head .logo {
        position: absolute;
        left: 25px;
        top: 13px;
        color: #333;
        font-size: 26px;
        width: 105px;
    }
    #global-nav {
        position: absolute;
        /* 開いてないときは画面外に配置 */
        top: -600px;
        background: #fff;
        width: 100%;
        text-align: center;
        padding: 0 0;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    }
    #global-nav ul {
        list-style: none;
        position: static;
        right: 0;
        bottom: 0;
        font-size: 18px;
        background: #F7F5F0;
        background-image: url(../img/sp_menu_flower.png);
        background-repeat: no-repeat;
        background-size: 35%;
        background-position: -20% 107%;
        padding-top: 10%;
    }
    #global-nav ul li {
        float: none;
        position: static;
    }
    #global-nav ul li:first-child {
        margin-top: 0;
    }
    #top-head #global-nav ul li a,
    #top-head.fixed #global-nav ul li a {
        width: 100%;
        display: block;
        color: #000;
        padding: 18px 0;
    }

    #global-nav ul li.btn_login {
        margin: 2.5em auto 0;
        max-width: 200px;
        padding-bottom: 2em;
    }

    #nav-toggle {
        display: block;
    }
    /* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }

    .open #nav-toggle span:nth-child(2) {
        top: 11px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
    /* #global-nav スライドアニメーション */
    .open #global-nav {
        -moz-transform: translateY(656px);
        -webkit-transform: translateY(656px);
        transform: translateY(656px);
    }
}

.btn_apply {
  position: fixed;
  width: 233px;
  bottom: 0;
  right: 0;
  z-index: 900;
}

@media screen and (max-width: 767px) {
    .btn_apply {
        width: 100%;
        right: 0;
        background: #fff;
    }
}

/* Sec01 =====================================================================*/

.sec01{
  position: relative;
}

.sec01 .bg_slider{
    width: 100vw;
    height: 0;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 62.5%;
}

.sec01 .bg_slider_sp{
    display: none;
}

.sec01 .content h2 {
  text-align: center;
  padding: 20px 0;
  color: #000;
  font-family: 'Noto Serif Japanese', serif;
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  top: 1.5%;
  left: 0;
  right: 0;
  bottom: 0;
}

.sec01 .content .img {
  position: relative;
  z-index: 10;
}

.sec01 .content .lead_txt {
  margin: 0 auto;
  position: absolute;
  top: 70%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  width: 90%;
}

@media screen and (max-width: 767px) {

    .sec01 .content h2 {
        top: 3%;
        font-size: 16px;
    }

    .sec01 .content .btn_apply  {
        top: 87%;
        right: 0;
        width: 100%;
    }

    .sec01 .bg_slider{
        display: none;
    }

    .sec01 .bg_slider_sp{
        width: 100vw;
        height: 0;
        background-position: center center;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 173%;
    }

}

@media screen and (max-width: 414px) {
    .sec01 .content h2 {
        top: 0;
        font-size: 16px;
    }
}

/* Sec02 =====================================================================*/

.sec02{
  position: relative;
  background-color: #f7f5f0;
  padding: 10% 0 0;
  z-index: 0;
}

.sec02::after {
  content: '';
  position: absolute;
  left:0;
  top: 0;
  transform: skewY(-5deg);
  transform-origin: bottom left;
  z-index: -1;
  width:100%;
  height:100%;
  background:#F7F5F0;
}

.sec02 .content .appeal {
  text-align: center;
}

.sec02 .content .appeal .emphasis_txt{
  font-family: 'Noto Serif Japanese', serif;
  font-size: 48px;
  font-weight: 600;
  color: #DD3978;
  margin-bottom: 0.2em;
}

.sec02 .content .appeal .catch_txt{
  font-family: 'Noto Serif Japanese', serif;
  font-size: 22px;
  font-weight: 600;
  display: inline-block;
  padding: 2.5% 1.5%;
  margin-bottom: 2em;
}

.sec02 .content .appeal .catch_txt p{
  margin-bottom: 1em;
  padding: 0 2em;
  line-height: 180%;
  color: #000;
}

.sec02 .content .appeal .catch_txt p span{
  color: #DD3978;
}

.sec02 .content .appeal .logo{
  width: 43%;
  margin: 0 auto 2em;
}

.sec02 .content .appeal p.note_txt{
  font-size: 15px;
  color: #3C3C3C;
}

.sec02 .content.appeal_lead{
  background: #000;
  padding: 115px 0;
  text-align: center;
}

.sec02 .content.appeal_lead .img{
  width: 100%;
  margin: 0 auto;
}

.sec02 .content.appeal_lead .img::after{
  border: 20px solid transparent;
  border-top-color: #000;
  border-bottom-width: 0;
  bottom: -134px;
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  width: 0;
}

.sec02 .content .five_compensation{
  text-align: center;
}

.sec02 .content .five_compensation .item_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 65px auto 35px;
}

.sec02 .content .five_compensation .item_wrap .item {
  width: 30%;
  margin-right: 3%;
}

.sec02 .content .five_compensation .item_wrap .item:nth-child(3),
.sec02 .content .five_compensation .item_wrap .item:nth-child(5){
  margin-right: 0;
}

.sec02 .content .five_compensation .item_wrap .item img{
  width: 100%;
}

.sec02 .content .five_compensation p.note_txt{
  font-size: 17px;
  margin-bottom: 1rem;
}

.sec02 .content .five_compensation p.lead_txt{
  font-size: 22px;
  font-weight: bold;
}

.sec02 .content .five_compensation p.lead_txt span{
  font-size: 32px;
  color: #DD3978;
  background: linear-gradient(transparent 50%, #FFF57E 50%);
}

.sec02 .content .five_compensation p.price_txt{
  font-size: 32px;
  font-weight: bold;
  color: #DD3978;
  margin-bottom: 2rem;
}

.sec02 .content .five_compensation p.price_txt span{
  font-size: 96px;
}

.sec02 .content .five_compensation p.price_txt span.symbol{
  font-size: 63px;
}

.sec02 .content .five_compensation .btn_pink a{
  display: inline-block;
  font-size: 24px;
  color: #fff;
  background: #DD3978;
  border-radius: 50px;
  margin: 0 auto 2em;
  padding: 1.5% 8%;
  text-align: center;
  width: 35%;
  position: relative;
}

.sec02 .content .five_compensation .btn_pink a:before{
  content:'';
  display:inline-block;
  position:absolute;
  right:5%;
  top:40%;
  width:8px;
  height:8px;
  border-bottom:2px solid #fff;
  border-right:2px solid #fff;
  transform:rotateZ(45deg);
}

.sec02 .content .five_compensation .btn_pink a:hover{
  background-color:rgba(221,57,120,0.6);
}

.sec02 .content .about dl,
.sec02 .content .about dt,
.sec02 .content .about dd,
.sec02 .content .voice dl,
.sec02 .content .voice dt,
.sec02 .content .voice dd {
  margin: 0;
  padding: 0;
}

.sec02 .content .about dt,
.sec02 .content .voice dt{
  position: relative;
}

.sec02 .content .about dt .label{
  text-align: center;
  background-image: url(../img/txt_about_img.png);
  background-repeat:no-repeat;
  background-position: 10% top;
  height: 240px;
  cursor: pointer;
  border-top: 4px solid #fff;
}

.sec02 .content .voice dt .label{
  text-align: center;
  background-image: url(../img/txt_voice_img.png);
  background-repeat:no-repeat;
  background-position: 80% top;
  height: 240px;
  cursor: pointer;
  border-top: 2px solid #fff;
}

.sec02 .content .about dt .label .label_txt,
.sec02 .content .voice dt .label .label_txt{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

.sec02 .content .about dt .label .txt_img,
.sec02 .content .voice dt .label .txt_img{
  width: 206px;
  margin: 0 auto 1rem;
}

.sec02 .content .about dt .label h3,
.sec02 .content .voice dt .label h3{
  font-family: 'Noto Serif Japanese', serif;
  font-size: 32px;
  font-weight: 600;
  color: #000;
}

.sec02 .content .about span.mark::before,
.sec02 .content .about span.mark::after,
.sec02 .content .voice span.mark::before,
.sec02 .content .voice span.mark::after{
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  border-radius: 5px;
  background: #CC4778;
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.sec02 .content .about span.mark::after,
.sec02 .content .voice span.mark::after{
  background: #CC4778;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}

.sec02 .content .about .active span.mark::after,
.sec02 .content .voice .active span.mark::after{
  transform: rotate(0);
  transition: 0.5s;
}

.sec02 .content .about .closeArea,
.sec02 .content .voice .closeArea{
  text-align: center;
}

.sec02 .content .about .close_btn a,
.sec02 .content .voice .close_btn a{
  display: inline-block;
  font-size: 15px;
  color: #fff;
  background: #B5A478;
  border-radius: 50px;
  margin: 0 auto 3em;
  padding: 14px 0;
  text-align: center;
  width: 240px;
  position: relative;
  cursor: pointer;
}

.sec02 .content .about .close_btn a:hover,
.sec02 .content .voice .close_btn a:hover{
  background-color:rgba(181,164,120,0.6);
}

.sec02 .about .outline_box{
  position: relative;
  background: #fff;
  box-shadow: 0 0 20px #C9C9C9;
  width: 90%;
  margin: 5em auto;
  padding: 100px 0;
  text-align: center;
}

.sec02 .about .outline_box p{
  font-size: 17px;
  line-height: 2.5em;
  margin-bottom: 2.5em;
}

.sec02 .about .outline_box .insurance_name01{
  font-family: 'Noto Serif Japanese', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.5em;
}

.sec02 .about .outline_box .insurance_name02{
  width: 25%;
  display: inline-block;
  position: relative;
  margin-bottom: 3em;
}

.sec02 .about .outline_box .insurance_name02::after{
  content: '';
  position: absolute;
  bottom: -30px;
  display: inline-block;
  width: 130px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #B9A372;
}

.sec02 .about .outline_box .emphasis_txt{
  font-family: 'Noto Serif Japanese', serif;
  font-size: 40px;
  font-weight: 600;
  color: #DD3978;
  margin-bottom: 0.2em;
}

.sec02 .about .outline_box .catch_txt{
  font-family: 'Noto Serif Japanese', serif;
  font-size: 22px;
  font-weight: 600;
  color: #DD3978;
  border-bottom: 1px solid #DD3978;
  border-top: 1px solid #DD3978;
  display: inline-block;
  padding: 2.5% 1.5%;
  margin-bottom: 2em;
}

.sec02 .about .outline_box .catch_txt p{
  line-height: 1.5em;
  margin-bottom: 1em;
  padding: 0 2em;
}

.sec02 .about .outline_box .catch_txt p.emphasis{
  background: linear-gradient(transparent 5%, #FFF57E 5%);
  margin-bottom: 0;
}

.sec02 .about .outline_box .logo{
  width: 43%;
  margin: 0 auto 2em;
}

.sec02 .about .outline_box p.note_txt{
  font-size: 15px;
}

.sec02 .about .outline_box .person{
  position: absolute;
  width: 60%;
  bottom: 8%;
  right: -31%;
}

.sec02 .voice .questionnaire_content {
  position: relative;
  padding: 7% 2% 0;
}

.sec02 .voice .questionnaire_content .questionnaire_ttl{
  font-family: 'Noto Serif Japanese', serif;
  text-align: center;
  font-size: 48px;
  margin-bottom: 3em;
  line-height: 1em;
}

.sec02 .voice .questionnaire_content .questionnaire_ttl span{
  font-size: 15px;
  display: block;
}

.sec02 .voice .questionnaire_content .group01,
.sec02 .voice .questionnaire_content .group02{
  width: 100%;
  overflow: hidden;
  margin: 0 auto 3em;
  position: relative;
  z-index: 5;
}

.sec02 .voice .questionnaire_content .bg_img {
  position: absolute;
  width: 40%;
  bottom: 33%;
  right: -15%;
  z-index: 3;
}

.sec02 .voice .questionnaire_content .group01 .left_cont {
  width: 50%;
  float: left;
  clear: left;
}

.sec02 .voice .questionnaire_content .group02 .left_cont {
  width: 50%;
  float: left;
  clear: left;
}

.sec02 .voice .questionnaire_content .group01 .right_cont {
  width: 50%;
  float: right;
  clear: right;
  position: relative;
}

.sec02 .voice .questionnaire_content .group02 .right_cont {
  width: 50%;
  float: right;
  clear: right;
  position: relative;
}

.sec02 .voice .questionnaire_content .left_cont .graph {
  width: 86%;
  margin: 0 auto;
}

.sec02 .voice .questionnaire_content .right_cont .graph {
  width: 90%;
  float: right;
}

.sec02 .voice .questionnaire_content .right_cont .person {
  width: 55%;
  position: absolute;
  bottom: -30%;;
  right: -10%;
}

.sec02 .voice .questionnaire_content .answer {
  border-bottom: 1px solid #CBC6C6;
  margin-bottom: 2em;
}

.sec02 .voice .questionnaire_content .answer .question_txt {
  font-family: 'Noto Serif Japanese', serif;
  font-size: 18.5px;
  font-weight: 500;
  margin-bottom: 1.5em;
  line-height: 1.5em;
}

.sec02 .voice .questionnaire_content .answer .ans_txt01 {
  font-family: 'Noto Serif Japanese', serif;
  font-size: 33px;
  font-weight: 500;
  line-height: 1.5em;
  margin-bottom: 1em;
  color: #DD3978;
}

.sec02 .voice .questionnaire_content .answer .ans_txt02,
.sec02 .voice .questionnaire_content .comment{
  font-size: 17px;
  margin-bottom: 2em;
  line-height: 2em;
}

.sec02 .voice .questionnaire_content .comment ul {
  margin: 10px 0 ;
}

.sec02 .voice .questionnaire_content .comment ul li {
  padding-left: 2.3em;
  text-indent: -2.3em;
  margin-bottom: 1em;
}

.sec02 .voice .questionnaire_content .comment ul li img {
  width: 28px;
  display: inline-block;
  padding-right: 10px;
}

.sec02 .voice .questionnaire_content .lead_txt{
  font-family: 'Noto Serif Japanese', serif;
  font-size: 22px;
  text-align: center;
  margin-bottom: 2em;
  line-height: 2.5em;
}

.sec02 .voice .questionnaire_content .lead_txt span{
  font-size: 32px;
  font-weight: 500;
}

.sec02 .voice .questionnaire_content .lead_txt em{
  font-size: 28px;
  color: #DD3978;
}


.sec02 .voice .real_content .voice_box01 .graph_ttl{
  font-family: 'Noto Serif Japanese', serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 2em;
  text-align: center;
  line-height: 2em;
}

.sec02 .voice .real_content .voice_box01 .graph03,
.sec02 .voice .real_content .voice_box01 .graph04{
  width: 48%;
  display: inline-block;
  padding-right: 3%;
  margin-bottom: 2em;
}

.sec02 .voice .real_content .voice_box01 .graph04{
  padding-right: 0;
}

.sec02 .voice .real_content .voice_box01 .example{
  background: #F0F0F0;
  border: 1px solid #CBC6C6;
  padding: 2%;
  margin: 2em auto 1em;
}

.sec02 .voice .real_content .voice_box01 .example ul{
  list-style: disc;
  margin: 0 0 0 3%;
  display: inline-block;
  width: 46%;
  vertical-align: top;
}

.sec02 .voice .real_content .voice_box01 .example ul li{
  margin-bottom: 0.8em;
}

.sec02 .voice .real_content .voice_box01 .note_txt{
  font-size: 12px;
  text-align: right;
}

.sec02 .voice .real_content .voice_box01 h5{
  font-family: 'Noto Serif Japanese', serif;
  font-size: 32px;
  font-weight: 500;
  color: #DD3978;
  margin-bottom: 0.5em;
}

.sec02 .voice .real_content .voice_box01 h5 span{
  font-size: 24px;
  font-family: 'Rozha One', serif;
  margin-right: 20px;
}

.sec02 .voice .real_content .message{
  margin-bottom: 2em;
}

.sec02 .voice .real_content .voice_box01 {
  position: relative;
  margin: 2em auto 4em;
  padding: 7% 6% 3%;
  border: 1px solid #B9A372;
  background: #fff;
  font-size: 16px;
}

.sec02 .voice .real_content .voice_box01 .voice_ttl{
  font-family: 'Noto Serif Japanese', serif;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  top: -25px;
  font-size: 24px;
  font-weight: 600;
  border: 1px solid #B9A372;
  background: #fff;
  border-radius: 50px;
  width: 40%;
  text-align: center;
  padding: 5px 0;
}

.sec02 .voice .real_content .voice_box01 .graph_ttl{
  font-family: 'Noto Serif Japanese', serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 2em;
  text-align: center;
  line-height: 2em;
}

.sec02 .voice .real_content .voice_box01 .graph03,
.sec02 .voice .real_content .voice_box01 .graph04{
  width: 48%;
  display: inline-block;
  padding-right: 3%;
  margin-bottom: 2em;
}

.sec02 .voice .real_content .voice_box01 .graph04{
  padding-right: 0;
}

.sec02 .voice .real_content .voice_box01 .example{
  background: #F0F0F0;
  border: 1px solid #CBC6C6;
  padding: 2%;
  margin: 2em auto 1em;
}

.sec02 .voice .real_content .voice_box01 .example ul{
  list-style: disc;
  margin: 0 0 0 3%;
  display: inline-block;
  width: 46%;
  vertical-align: top;
}

.sec02 .voice .real_content .voice_box01 .example ul li{
  margin-bottom: 0.8em;
}

.sec02 .voice .real_content .voice_box01 .note_txt{
  font-size: 12px;
  text-align: right;
}

.sec02 .voice .real_content .voice_box01 h5{
  font-family: 'Noto Serif Japanese', serif;
  font-size: 32px;
  font-weight: 500;
  color: #DD3978;
  margin-bottom: 0.5em;
}

.sec02 .voice .real_content .voice_box01 h5 span{
  font-size: 24px;
  font-family: 'Rozha One', serif;
  margin-right: 20px;
}

.sec02 .voice .real_content .voice_box01 p{
  margin-bottom: 2em;
  line-height: 2em;
  letter-spacing: 1px;
}

.sec02 .voice .real_content .txt{
  font-family: 'Noto Serif Japanese', serif;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  padding: 2% 0 0;
  line-height: 2.5em;
}

.sec02 .voice .real_content .txt span{
  font-size: 32px;
  color: #DD3978;
  font-weight: bold;
}

@media screen and (max-width: 767px) {

    .sec02 {
        padding:10% 0 0;
    }

    .sec02 .content .appeal .emphasis_txt{
        font-size: 38px;
        text-align: center;
    }

    .sec02 .content .appeal .catch_txt{
        font-size: 16px;
        padding: 4% 0.5%;
    }

    .sec02 .content .appeal .catch_txt p{
        padding: 0 0.5em;
        font-size: 12.75px;
    }

    .sec02 .content .appeal .logo{
        width: 80%;
    }

    .sec02 .content .appeal p.note_txt{
        font-size: 13px;
    }

    .sec02 .content.appeal_lead {
        padding: 65px 0;
    }

    .sec02 .content.appeal_lead .img{
        width: 90%;
    }

    .sec02 .content.appeal_lead .img::after{
        bottom: -82px;
    }

    .sec02 .content .five_compensation .item_wrap{
      margin: 20px auto;
    }

    .sec02 .content .five_compensation .item_wrap .item {
      width: 45%;
      margin-right: 3%;
      margin-bottom: 20px;
    }

    .sec02 .content .five_compensation .item_wrap .item:nth-child(3),
    .sec02 .content .five_compensation .item_wrap .item:nth-child(5){
      margin-right: 3%;
    }

    .sec02 .content .five_compensation .item_wrap .item:nth-child(3),
    .sec02 .content .five_compensation .item_wrap .item:nth-child(4){
      margin-bottom: 0;
    }

    .sec02 .content .five_compensation .item_wrap .item:nth-child(even){
      margin-right: 0;
    }

    .sec02 .content .five_compensation p.note_txt{
      font-size: 16px;
    }

    .sec02 .content .five_compensation p.lead_txt{
      font-size: 32px;
    }

    .sec02 .content .five_compensation p.price_txt{
      font-size: 25px;
    }

    .sec02 .content .five_compensation p.price_txt span{
      font-size: 77px;
    }

    .sec02 .content .five_compensation p.price_txt span.symbol{
      font-size: 51px;
    }

    .sec02 .content .five_compensation .btn_pink a{
        font-size: 18px;
        padding: 3% 4%;
        width: 90%;
    }

    .sec02 .content .about span.mark::before,
    .sec02 .content .about span.mark::after,
    .sec02 .content .voice span.mark::before,
    .sec02 .content .voice span.mark::after{
      width: 24px;
      height: 2px;
      right: 5%;
      top: 80%;
    }

    .sec02 .content .about dt .label{
      background-position: 5% bottom;
      background-size: 110px;
      height: 200px;
    }

    .sec02 .content .voice dt .label{
      background-position: 1% bottom;
      background-size: 100px;
      height: 200px;
    }

    .sec02 .content .about dt .label .label_txt,
    .sec02 .content .voice dt .label .label_txt{
      width: 90%;
    }

    .sec02 .content .about dt .label .txt_img,
    .sec02 .content .voice dt .label .txt_img{
      width: 171px;
    }

    .sec02 .content .about dt .label h3,
    .sec02 .content .voice dt .label h3{
      font-size: 26px;
    }

    .sec02 .content .about .close_btn a,
    .sec02 .content .voice .close_btn a{
      padding: 6px 0;
      width: 160px;
    }

    .sec02 .content .about .close_btn a:hover,
    .sec02 .content .voice .close_btn a:hover{
      background-color:rgba(181,164,120,1);
    }

    .sec02 .about .m-wrap{
        padding:0 20px 15%;
    }

    .sec02 .about .outline_box{
        padding:15% 5% 50%;
        margin: 10% auto 50%;
    }

    .sec02 .about .outline_box .outline_ttl{
        width: 40%;
        top:-30px;
    }

    .sec02 .about .outline_box p{
        font-size: 14px;
    }

    .sec02 .about .outline_box p sup{
        top:-0.5em;
    }

    .sec02 .about .outline_box .insurance_name02{
         width: 240px;
    }

    .sec02 .about .outline_box .emphasis_txt{
        font-size: 24px;
        text-align: center;
    }

    .sec02 .about .outline_box .catch_txt{
        font-size: 16px;
        padding: 4% 0.5%;
    }

    .sec02 .about .outline_box .catch_txt p{
        padding: 0 0.5em;
        font-size: 12.75px;
    }


    .sec02 .about .outline_box .logo{
        width: 80%;
    }

    .sec02 .about .outline_box p.note_txt{
        font-size: 13px;
    }

    .sec02 .about .outline_box .person{
        position: absolute;
        width: 60%;
        bottom: -15%;
        left: 20%;
    }

    .sec02 .voice .questionnaire_content {
        background: none;
        padding: 15% 0 0;
    }

    .sec02 .voice .questionnaire_content .questionnaire_ttl {
        font-size: 36px;
        margin-bottom: 2em;
        line-height: 1.5em;
    }

    .sec02 .voice .questionnaire_content .group03 {
        margin: 0 auto 5em;
        position: relative;
    }

    .sec02 .voice .questionnaire_content .group03 .question_txt {
        font-family: 'Noto Serif Japanese', serif;
        font-weight: 500;
        font-size: 20px;
        letter-spacing: 1px;
        margin-bottom: 1.5em;
    }

    .sec02 .voice .questionnaire_content .group03 .ans_txt01 {
        font-family: 'Noto Serif Japanese', serif;
        font-weight: 500;
        font-size: 36px;
        color: #DD3978;
        margin-bottom: 0.5em;
    }

    .sec02 .voice .questionnaire_content .group03 .ans_txt02 {
        border-bottom: 1px solid #CBC6C6;
        margin-bottom: 1.5em;
        padding-bottom: 1.5em;
        line-height: 2em;
        letter-spacing: 1.5px;
    }

    .sec02 .voice .questionnaire_content .group03 .graph01 {
        width: 90%;
        margin: 0 auto 1.5em;
    }

    .sec02 .voice .questionnaire_content .group03 .graph02 {
        width: 115%;
        margin: 0 auto 1em;
    }

    .sec02 .voice .questionnaire_content .comment{
        font-size: 16px;
        line-height: 1.5em;
    }

    .sec02 .voice .questionnaire_content .lead_txt{
      font-size: 17px;
      line-height: 2em;
      width: 90%;
      margin: 0 auto 4em;
    }

    .sec02 .voice .questionnaire_content .lead_txt span{
      font-size: 24px;
      display: block;
    }

    .sec02 .voice .questionnaire_content .lead_txt em{
      font-size: 20px;
    }

    .sec02 .voice .real_content .voice_box01 {
        font-size: 15px;
    }

    .sec02 .voice .real_content .voice_box01 .voice_ttl{
        font-size: 19px;
        width: 90%;
    }

    .sec02 .voice .real_content .voice_box01 .graph_ttl{
        font-size: 18px;
        margin: 1.5em auto 2em;
        line-height: 1.8em;
    }

    .sec02 .voice .real_content .voice_box01 .graph03,
    .sec02 .voice .real_content .voice_box01 .graph04{
        width: 100%;
        display: block;
        padding-right: 0;
    }

    .sec02 .voice .real_content .voice_box01 p{
        font-size: 15px;
        line-height: 1.75em;
    }

    .sec02 .voice .real_content .voice_box01.case p{
        letter-spacing: 0.5px;
        margin-bottom: 1em;
    }

    .sec02 .voice .real_content .voice_box01{
        font-size: 17px;
        padding: 5%;
    }

    .sec02 .voice .real_content .voice_box01 .example{
        padding: 5% 5% 5% 0;
        margin-top: 0;
    }

    .sec02 .voice .real_content .voice_box01 .example ul{
        display: block;
        width: 95%;
        margin: 0 10%;
        font-size: 14px;
    }

    .sec02 .voice .real_content .voice_box01 .example ul li{
        margin-bottom: 0.5em;
    }

    .sec02 .voice .real_content .voice_box01 .note_txt{
        letter-spacing: 0;
    }

    .sec02 .voice .real_content .voice_box01 h5{
        font-size: 24px;
        margin-top: 1em;
    }

    .sec02 .voice .real_content .voice_box01 h5 span{
        font-size: 20px;
        display: block;
    }

    .sec02 .voice .real_content .message{
        width: 85%;
        margin: 0 auto 2em;
    }

    .sec02 .voice .real_content .txt{
        font-size: 17px;
        margin-bottom: 0;
    }

    .sec02 .voice .real_content .txt span{
        font-size: 24px;
    }

    .sec02 .voice  .real_content .voice_box01 {
        font-size: 15px;
    }

    .sec02 .voice  .real_content .voice_box01 .voice_ttl{
        font-size: 19px;
        width: 90%;
    }

    .sec02 .voice  .real_content .voice_box01 .graph_ttl{
        font-size: 18px;
        margin: 1.5em auto 2em;
        line-height: 1.8em;
    }

    .sec02 .voice  .real_content .voice_box01 .graph03,
    .sec02 .voice  .real_content .voice_box01 .graph04{
        width: 100%;
        display: block;
        padding-right: 0;
    }

    .sec02 .voice  .real_content .voice_box01 p{
        font-size: 15px;
        line-height: 1.75em;
    }

    .sec02 .voice  .real_content .voice_box01.case p{
        letter-spacing: 0.5px;
        margin-bottom: 1em;
    }

    .sec02 .voice  .real_content .voice_box01{
        font-size: 17px;
        padding: 5%;
    }

    .sec02 .voice  .real_content .voice_box01 .example{
        padding: 5% 5% 5% 0;
        margin-top: 0;
    }

    .sec02 .voice  .real_content .voice_box01 .example ul{
        display: block;
        width: 95%;
        margin: 0 10%;
        font-size: 14px;
    }

    .sec02 .voice  .real_content .voice_box01 .example ul li{
        margin-bottom: 0.5em;
    }

    .sec02 .voice  .real_content .voice_box01 .note_txt{
        letter-spacing: 0;
    }

    .sec02 .voice  .real_content .voice_box01 h5{
        font-size: 24px;
        margin-top: 1em;
    }

    .sec02 .voice  .real_content .voice_box01 h5 span{
        font-size: 20px;
        display: block;
    }

}

/* Sec03 =====================================================================*/

.sec03{
  position: relative;
  background-color: #fff;
  margin: 5% auto;
  z-index: 0;
}

.sec03 .promise_ttl{
  width: 260px;
  margin: 0 auto;
}

.sec03 .content {
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.sec03 .content h3{
  font-family: 'Noto Serif Japanese', serif;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  color: #000;
  position: relative;
  margin-bottom: 3em;
  padding-top: 5%;
}

.sec03 .content h3::after{
  content: '';
  position: absolute;
  bottom: -30px;
  display: inline-block;
  width: 130px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #B9A372;
}

.sec03 .content p{
  font-size: 20px;
  text-align: center;
  padding: 3% 0;
  color: #000;
}

.sec03 .content p.note_txt{
  font-size: 15px;
  text-align: center;
  padding: 0 0 10%;
  color: #3C3C3C;
}

@media screen and (max-width: 767px) {
    .sec03 .promise_ttl{
        width: 100%;
        max-width: 240px;
    }

    .sec03 .content h3{
        font-size: 26px;
        padding-top: 10%;
    }

    .sec03 .content p{
        font-size: 15px;
    }

    .sec03 .content p.note_txt{
        font-size: 13px;
    }
}

/* Sec09 =====================================================================*/

.sec09 .content {
  text-align: center;
  padding: 10% 5%;
}

.sec09 .content p{
  font-family: 'Noto Serif Japanese', serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 2em;
}

.sec09 .content .btn_lead_txt{
font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
  font-weight: normal;
  text-align: center;
  margin: 2em auto;
  position: relative;
  color: #DD3978;
}

.sec09 .content .btn_pink a{
  display: inline-block;
  font-size: 15px;
  color: #fff;
  background: #DD3978;
  border-radius: 50px;
  margin: 0 auto 2em;
  padding: 1.5% 8%;
  text-align: center;
  width: 35%;
}

.sec09 .content .btn_pink a:hover{
  background-color:rgba(221,57,120,0.6);
}

@media screen and (max-width: 767px) {

    .sec09 .content p{
        font-size: 17px;
    }

    .sec09 .content .btn_lead_txt{
        font-size: 15px;
    }

    .sec09 .content .btn_pink a{
        font-size: 14px;
        padding: 3% 4%;
        width: 90%;
    }

}

/* Sec12 =====================================================================*/

.sec12 {
  background: linear-gradient(-135deg, rgba(246, 196, 203, .8), rgba(185, 170, 211, .8)) fixed;
  position: relative;
}

.sec12 .content{
  display: flex;
  width: 100%;
  padding: 6% 0;
}

.sec12 .content h3{
  font-family: 'Noto Serif Japanese', serif;
  width: 30%;
  color: #DD3978;
  font-size: 26px;
  font-weight: 600;
  padding: 5% 2% 0;
}

.sec12 .content p{
  width: 60%;
  font-size: 17px;
  line-height: 2em;
  padding: 0 2%;
}

@media screen and (max-width: 767px) {
    .sec12 .content{
        display: block;
    }
    .sec12 .content h3{
        width: 90%;
        font-size: 26px;
        margin: 0 auto 1em;
        padding: 0;
    }

    .sec12 .content p{
        width: 90%;
        font-size: 14px;
        margin: 0 auto 1em;
        padding: 0;
    }

}

/* Sec13 =====================================================================*/

.sec13 {
    padding: 0 0 15% 0 ;
}

.sec13 .content{
    padding: 6% 5% 0;
}

.sec13 .content p{
    font-size: 15px;
    line-height: 2em;
}

@media screen and (max-width: 767px) {

.sec13 .content{
    padding: 6% 5% 15%;
}

.sec13 .content p{
    font-size: 13px;
    line-height: 2em;
}

}

/* Sec14 =====================================================================*/

.sec14{
  position: relative;
  background-color: #f7f5f0;
  padding: 3% 0 10%;
  z-index: 0;
  text-align: center;
}

.sec14::after {
  content: '';
  position: absolute;
  left:0;
  top: 0;
  transform: skewY(-5deg);
  transform-origin: bottom left;
  z-index: -1;
  width:100%;
  height:100%;
  background:#F7F5F0;
}

.sec14 .price_ttl{
  position: absolute;
  top:-105px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.sec14 .content {
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.sec14 .content h3{
  font-family: 'Noto Serif Japanese', serif;
  font-size: 32px;
  font-weight: 600;
  position: relative;
  margin-bottom: 3em;
  padding-top: 5%;
}

.sec14 .content h3::after{
  content: '';
  position: absolute;
  bottom: -30px;
  display: inline-block;
  width: 130px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #B9A372;
}

.sec14 .content .lead_txt{
  font-family: 'Noto Serif Japanese', serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 2em;
  margin-bottom: 2em;
  padding-top: 5%;
}

.sec14 .content .txt01{
  font-family: 'Noto Serif Japanese', serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 2em;
  display: inline-block;
  background: linear-gradient(transparent 50%, #FFF57E 50%);
}

.sec14 .content .txt01 span{
  font-size: 32px;
}

.sec14 .content .img{
  margin-bottom: 1em;
}

.sec14 .content .btn_area{
  margin-bottom: 2em;
}

.sec14 .content .btn_pink{
  display: inline-block;
  font-size: 17px;
  color: #DD3978;
  background: #fff;
  border: 1px solid #DD3978;
  border-radius: 50px;
  margin: 0 auto;
  padding: 1% 5%;
  text-align: center;
}

.sec14 .content .btn_item .btn_apply02{
  max-width: 552px;
  display: inline-block;
  position: relative;
  margin-top: 2em;
  z-index: 30;
}

.sec14 .content .btn_item .note_txt{
  font-size: 15px;
  margin-top: 2rem;
}

@media screen and (max-width: 767px) {

    .sec14 .price_ttl{
        top:-65px;
    }

    .sec14 .content h3{
        font-size: 26px;
        padding-top: 10%;
    }

.sec14 .content .lead_txt{
  font-size: 20px;
}

    .sec14 .content .txt01{
        font-size: 19px;
    }

    .sec14 .content .txt01 span{
        font-size: 25px;
    }

    .sec14 .content .btn_pink{
        font-size: 14px;
        padding: 2% 5%;
    }

   .sec14 .content .btn_item {
      margin-top: -50%;
    }

    .sec14 .content .btn_item .note_txt{
      font-size: 13px;
      text-align: left;
      width: 62%;
      padding-left: 38%;
    }

}

/* Sec15 =====================================================================*/
.sec15 {
  position: relative;
}

.sec15 .content{
  padding: 10% 5%;
}

.sec15 .content h3 {
  font-family: 'Noto Serif Japanese', serif;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 2em;
}

.sec15 .qa_cont {
  margin-bottom: 5em;
}

.sec15 .qa_cont dt {
  font-family: 'Noto Serif Japanese', serif;
  padding: 10px 10px 10px 35px;
  text-indent: -25px;
  font-size: 26px;
  font-weight: 600;
  line-height: 2em;
  letter-spacing: 1px;
}

.sec15 .qa_cont dt:before {
  content: "Q.";
  color: #DD3978;
  font-size: 26px;
  margin-right: 7px;
}

.sec15 .qa_cont dd {
  margin: 20px 0 40px 42px;
  text-indent: -32px;
  font-size: 20px;
  line-height: 2em;
  letter-spacing: 1px;
}

.sec15 .qa_cont dd:before {
  font-family: 'Noto Serif Japanese', serif;
  content: "A.";
  color: #1FAEC1;
  font-size: 26px;
  font-weight: 600;
  margin-right: 7px;
}

.sec15 .qa_cont dd div {
  text-indent: inherit;
  margin-top: 2em;
}

.sec15 .qa_cont dt span,
.sec15 .qa_cont dd span {
  font-weight: 600;
  background: linear-gradient(transparent 50%, #FFF57E 50%);
}

.sec15 .qa_cont h4 {
  font-size: 32px;
  border-bottom: 2px solid #B9A372;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}

.sec15 .qa_cont dd ol {
  padding-left: 25px;
}

.sec15 .qa_cont dd ol li{
  list-style-type:none;
  text-indent: -1.2em;
}

.sec15 .content .btn_area{
  text-align: center;
  margin-bottom: 5em;
}

.sec15 .content .btn_lead_txt{
  font-size: 17px;
  line-height: 2em;
  margin: 2em auto 3em;
  position: relative;
  color: #DD3978;
}

.sec15 .content .btn_pink a{
  display: inline-block;
  font-size: 15px;
  color: #fff;
  background: #DD3978;
  border-radius: 50px;
  margin: 0 auto 2em;
  padding: 1.5% 6%;
  width: 40%;
}

.sec15 .content .btn_pink a:hover{
  background-color:rgba(221,57,120,0.6);
}

.qa_detail dl.qa_acbox,
.qa_detail dl.qa_acbox dt.more,
.qa_detail dl.qa_acbox dd.acbox-under {
  margin: 0;
  padding: 0;
}

.qa_detail dl.qa_acbox dt.more,
.qa_detail dl.qa_acbox dd.acbox-under{
  position: relative;
}

.qa_detail dl.qa_acbox dd.acbox-under {
  padding: 5% 3%;
  background: #F7F5F0;
}

.qa_detail dl.qa_acbox dt.more{
  background: #F7F5F0;
  text-align: center;
  font-size: 26px;
  color: #333;
  cursor: pointer;
  padding: 20px 0;
}

.qa_detail dl.qa_acbox span.mark::before,
.qa_detail dl.qa_acbox span.mark::after{
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 5px;
  background: #333;
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.qa_detail dl.qa_acbox span.mark::after{
  background: #333;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}

.qa_detail dl.qa_acbox .active span.mark::after{
  transform: rotate(0);
  transition: 0.5s;
}

@media screen and (max-width: 767px) {

    .sec15 .content h3 {
        font-size: 24px;
    }

    .sec15 .qa_cont dt {
        padding: 10px 10px 10px 35px;
        text-indent: -25px;
        font-size: 20px;
        letter-spacing: 0;
        line-height: 1.5em;
    }

    .sec15 .qa_cont dt:before {
        content: "Q.";
          color: #DD3978;
        font-size: 20px;
        margin-right: 7px;
    }

    .sec15 .qa_cont dd {
        margin: 20px 10px 40px 37px;
        text-indent: -25px;
        font-size: 14px;
        letter-spacing: 0;
    }

    .sec15 .qa_cont dd:before {
        content: "A.";
        color: #1FAEC1;
        font-size: 20px;
        margin-right: 7px;
    }

    .sec15 .content .btn_lead_txt{
        font-size: 14px;
    }

    .sec15 .content .btn_pink a{
        font-size: 14px;
        width: 90%;
        padding: 2.5% 6%;
    }

    .sec15 .qa_cont h4 {
        font-size: 24px;
    }

    .qa_detail dl.qa_acbox dt.more{
      font-size: 18px;
    }

    .qa_detail dl.qa_acbox span.mark::before,
    .qa_detail dl.qa_acbox span.mark::after{
      content: '';
      width: 22px;
    }

}

/* Sec16 =====================================================================*/

.sec16{
  position: relative;
  background-color: #f7f5f0;
  padding: 5% 0 10%;
  z-index: 0;
  text-align: center;
}

.sec16::after {
  content: '';
  position: absolute;
  left:0;
  top: 0;
  transform: skewY(-5deg);
  transform-origin: bottom left;
  z-index: -1;
  width:100%;
  height:100%;
  background:#F7F5F0;
}

.sec16 .contact_ttl{
  position: absolute;
  top:-115px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.sec16 .content {
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.sec16 .content h3{
  font-family: 'Noto Serif Japanese', serif;
  font-size: 32px;
  font-weight: 500;
  position: relative;
  margin-bottom: 3em;
  padding-top: 5%;
}

.sec16 .content h3::after{
  content: '';
  position: absolute;
  bottom: -30px;
  display: inline-block;
  width: 130px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #B9A372;
}

.sec16 .content .outline_box{
  font-family: 'Noto Serif Japanese', serif;
  position: relative;
  background: #fff;
  box-shadow: 0 0 20px #C9C9C9;
  width: 90%;
  margin: 0 auto;
  padding: 100px 0 0;
  text-align: center;
}

.sec16 .content .outline_box h4{
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 4px;
  border-bottom: 1px solid #000000;
  padding-bottom: 5px;
  display: inline-block;
}

.sec16 .content .outline_box p{
  font-size: 16px;
  font-weight: 600;
  line-height: 2em;
  letter-spacing: 3px;
}

.sec16 .content .outline_box p.time{
  font-size: 18px;
  margin-bottom: 2em;
  letter-spacing: 2px;
}

.sec16 .content .outline_box p.tell{
  font-size: 56px;
  letter-spacing: 8px;
  font-weight: 600;
  color: #B9A372;
}

.sec16 .content .outline_box p.tell span{
  display: inline-block;
  max-width: 50px;
  margin-right: 25px;
}

.sec16 .content .outline_box p.tell span img{
  margin-bottom: 9px;
}

.sec16 .content .outline_box a{
  background: #B9A372;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  display: block;
  padding: 4% 0;
  margin-top: 3em;
}

.sec16 .content .outline_box a img{
  width: 55px;
  margin-right: 10px;
}

.sec16 .content .outline_box a:hover{
  background-color:rgba(185,163,114,0.7);
}

@media screen and (max-width: 767px) {

    .sec16::after {
        transform: skewY(-8deg);
    }

    .sec16 .contact_ttl{
        top:-72px;
    }

    .sec16 .content h3{
        font-size: 26px;
        padding-top: 10%;
    }

    .sec16 .content .outline_box {
        width: 100%;
        padding: 8% 0 0;
    }

    .sec16 .content .outline_box h4{
        font-size: 18px;
        letter-spacing: 2px;
        margin: 0 5%;
    }

    .sec16 .content .outline_box p{
        font-size: 15px;
        padding: 0 5%;
    }

    .sec16 .content .outline_box p.time{
        font-size: 16px;
    }

    .sec16 .content .outline_box p.tell{
        font-size: 38px;
        letter-spacing: 3px;
    }

    .sec16 .content .outline_box p.tell span{
        max-width: 40px;
        margin-right: 5px;
    }

    .sec16 .content .outline_box a{
      font-size: 22px;
    }

    .sec16 .content .outline_box a span{
      display: inline-block;
      text-align: left;
    }

    .sec16 .content .outline_box a img{
      width: 34px;
      vertical-align: top;
      padding-top: 20px;
    }

}

/* Service =====================================================================*/

.service_lead{
  background: #1FAEC1;
  position: relative;
  text-align: center;
  padding: 8% 0;
}

.service_lead::after{
  border: 20px solid transparent;
  border-top-color: #1FAEC1;
  border-bottom-width: 0;
  bottom: -18px;
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  width: 0;
}

.service_lead p{
  font-family: 'Noto Serif Japanese', serif;
  color: #fff;
  font-size: 36px;
  font-weight: 500;
}

.sec10 {
position: relative;
}

.sec10 .content,
.sec11 .content,
.sec17 .content{
  padding: 0 5%;
}

.service{
  position: relative;
  padding: 4% 0;
}

.service h3{
  width: 35%;
  margin-left: -25px;
}

.service h4{
  font-size: 40px;
  margin-bottom: 2em;
  font-weight: bold;
}

.service p{
  font-size: 24px;
  line-height: 2.5em;
  margin-bottom: 1.5em;
}

.service p span{
  font-weight: bold;
  background: linear-gradient(transparent 50%, #FFF57E 50%);
}

.service p span em{
  font-size: 32px;
}

.service .col2{
  width: 100%;
  display: flex;
  position: relative;
}

.service .col2 .col_left{
  width: 60%;
}

.service .col2 .col_right{
  width: 40%;
}

.service .col2 .col_right .img{
  position: absolute;
  bottom: 0;
  right: -10%;
  width: 46%;
}

@media screen and (max-width: 767px) {

    .service_lead p{
      font-size: 24px;
      width: 90%;
      margin: 0 auto;
    }

    .service h3{
        width: 100%;
        margin-left: -10px;
    }

    .service h4{
        font-size: 28px;
        margin-bottom: 1.5em;
    }

    .service p{
        font-size: 17px;
        line-height: 2em;
    }

    .service p span em{
        font-size: 22px;
    }

    .service .col2{
        display: block;
    }

    .service .col2 .col_left{
        width: 100%;
    }

    .service .col2 .col_right{
        width: 100%;
    }

    .service .col2 .col_right .img{
        position: relative;
        bottom: 0;
        right: 0;
        width: 95%;
        margin: 0 auto;
    }

}

/* Compensation =====================================================================*/

.compensation{
  position: relative;
  margin-top: 3em;
}

.compensation .content h3{
  width: 35%;
  margin-left: -25px;
}

.compensation .content h4{
  font-size: 40px;
  font-weight: bold;
  color: #000;
  margin-bottom: 2em;
  letter-spacing: 2px;
}

.compensation .content .description{
  overflow: hidden;
  margin-bottom: 3em;
}

.sec04.compensation .content .description .txt01{
  font-size: 24px;
  line-height: 2em;
  letter-spacing: 1px;
  width: 62%;
  float: left;
  clear: left;
}

.sec05.compensation .content .description .txt01{
  font-size: 24px;
  line-height: 2em;
  letter-spacing: 1px;
  width: 71%;
  float: left;
  clear: left;
}

.compensation .content .description .txt02{
  font-size: 24px;
  line-height: 2em;
  width: 100%;
  float: left;
  clear: left;
}

.compensation .content .description .txt01 span,
.compensation .content .description .txt02 span {
 background: linear-gradient(transparent 50%, #FFF57E 50%);
}

.sec04.compensation .content .description .logo{
  width: 33%;
  float: right;
  clear: right;
}

.sec05.compensation .content .description .logo{
  width: 27%;
  float: right;
  clear: right;
}

.compensation .content .col2{
  display: flex;
  margin-bottom: 2em;
}

.compensation .content .col2 .col{
  font-family: 'Noto Serif Japanese', serif;
  color: #000;
  border: 1px solid #B9A372;
  width: 49%;
  margin-right: 2%;
  overflow: hidden;
  padding: 0 10px;
  background: #fff;
  z-index: 10;
}

/* IE11 */
_:-ms-lang(x)::-ms-backdrop, .compensation .content .col2 .col {
  padding: 1% 10px;
}
/* Edge */
_:-ms-lang(x)::backdrop, .compensation .content .col2 .col {
  padding: 1% 10px;
}

.compensation .content .col2 .col:last-child{
  margin-right: 0%;
}

.compensation .content .col2 .col .txt01{
  float: left;
  clear: left;
  font-size: 18px;
  font-weight: 500;
  padding-top: 6%;
}

/* IE11 */
_:-ms-lang(x)::-ms-backdrop, .compensation .content .col2 .col .txt01 {
  padding-top: 4%;
}
/* Edge */
_:-ms-lang(x)::backdrop, .compensation .content .col2 .col .txt01 {
  padding-top: 4%;
}

.compensation .content .col2 .col .txt02{
  float: right;
  clear: right;
  font-size: 32px;
  font-weight: 600;
  margin-right: 1em;
}

.compensation .content .col2 .col .txt02 span{
  font-size: 55px;
}

.compensation .content .col1{
  margin-bottom: 1.5em;
}

.compensation .content .col1 .col{
  font-family: 'Noto Serif Japanese', serif;
  color: #000;
  border: 1px solid #B9A372;
  width: 90%;
  padding: 0 5%;
  background: #fff;
  overflow: hidden;
}

/* IE11 */
_:-ms-lang(x)::-ms-backdrop, .compensation .content .col1 .col {
  padding: 1% 5%;
}
/* Edge */
_:-ms-lang(x)::backdrop, .compensation .content .col1 .col {
  padding: 1% 5%;
}

.compensation .content .col1 .col .txt01{
  float: left;
  clear: left;
  font-size: 18px;
  font-weight: 500;
  padding-top: 3%;
}

/* IE11 */
_:-ms-lang(x)::-ms-backdrop, .compensation .content .col1 .col .txt01 {
  padding-top: 1.74%;
}
/* Edge */
_:-ms-lang(x)::backdrop, .compensation .content .col1 .col .txt01 {
  padding-top: 1.74%;
}

.compensation .content .col1 .col .txt02{
  float: right;
  clear: right;
  font-size: 33px;
  font-weight: 600;
  margin-right: 20%;
}

.compensation .content .col1 .col .txt02 span{
  font-size: 57px;
}

.compensation .content .col1 .col .txt02 span.small{
  font-size: 24px;
}

.compensation .content .btn{
  position: absolute;
  top:0;
  right: 2%;
  max-width: 240px;
}

.compensation .content .note_txt{
  margin-bottom: 3em;
  font-size: 15px;
  line-height: 2em;
}

.compensation .content .acbox-under .note_txt{
  margin-bottom: 0;
}

.compensation .content .point{
  font-family: 'Noto Serif Japanese', serif;
  display: flex;
  border: 1px solid #B9A372;
  padding: 3% 3% 0;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 1em;
  background: #fff;
}

.compensation .content .point ul{
  width: 50%;
}

.compensation .content .point ul li{
  margin-bottom: 0.5em;
}

.compensation .content .point ul li span{
  background: #B9A372;
  height:26px;
  width:26px;
  border-radius:50%;
  line-height:26px;
  text-align:center;
  color: #fff;
  display: inline-block;
}

.compensation .acbox-under h4{
  font-family: 'Noto Serif Japanese', serif;
  font-size: 24px;
  font-weight: 600;
  border: 1px solid #707070;
  border-radius: 50px;
  padding: 10px 10px 5px;
  text-align: center;
  line-height: 1.5em;
}

.compensation .acbox-under h4 span{
  font-size: 40px;
  color: #DD3978;
}

.compensation .acbox-under .guardman_cont,
.compensation .acbox-under .function_cont{
  width: 100%;
  display: flex;
  margin-bottom: 3em;
}

.compensation .acbox-under .apparatus_cont{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5em;
}

.compensation .acbox-under .experience_cont{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5em;
  position: relative;
}

.compensation .acbox-under .guardman_cont .col{
  width: 32%;
}

.compensation .acbox-under .function_cont .col{
  width: 33%;
  padding-right: 3%;
}

.compensation .acbox-under .function_cont .col:last-child{
  padding-right: 0;
}

.compensation .acbox-under .apparatus_cont .col{
  width: 23.5%;
  padding-right: 2%;
  margin-bottom: 1em;
}

.compensation .acbox-under .apparatus_cont .col:nth-child(4){
  padding-right: 0;
}

.compensation .acbox-under .guardman_cont .col p,
.compensation .acbox-under .function_cont .col p,
.compensation .acbox-under .apparatus_cont .col p{
  font-size: 16px;
  text-align: center;
  margin-top: 1em;
}

.compensation .acbox-under .function_cont .col p span,
.compensation .acbox-under .apparatus_cont .col p span{
  font-size: 17px;
  text-align: center;
  margin-top: 1em;
  font-weight: bold;
}

.compensation .acbox-under .guardman_cont .arrow{
  width: 2%;
  padding: 8% 1% 0;
}

.compensation .acbox-under .experience_cont .col{
  width: 41%;
  margin-right: 3%;
  background: #fff;
  padding: 3%;
}

.compensation .acbox-under .experience_cont .col:last-child{
  margin-right: 0;
}

.compensation .acbox-under .experience_cont .col h5{
  font-family: 'Noto Serif Japanese', serif;
  font-size: 24px;
  font-weight: 600;
  color: #B9A372;
  margin-bottom: 1em;
}

.compensation .acbox-under .experience_cont .col p{
  font-size: 17px;
  line-height: 2em;
}

.compensation .acbox-under .experience_cont .col p span{
  background: linear-gradient(transparent 75%, #FFF57E 50%);
  font-weight: bold;
}

.compensation .acbox-under .experience_img{
  position: absolute;
  width: 25%;
  top:61%;
  right: 10%;
}

.compensation .acbox-under .movecost_cont .txt{
  font-family: 'Noto Serif Japanese', serif;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  line-height: 2em;
  margin: 3em auto;
}

.compensation .acbox-under .movecost_cont .img{
  margin-bottom: 3em;
  max-width: 765px;
  margin: 0 auto;
}

.compensation .acbox-under .recommend_txt{
  font-family: 'Noto Serif Japanese', serif;
  font-size: 20px;
  font-weight: 600;
  width: 60%;
  padding-bottom: 4%;
  line-height: 2em;
  margin-top: 2em;
}

.compensation .acbox-under .recommend_txt span{
  font-size: 24px;
  color: #DD3978;
}

.compensation .acbox-under .lead_txt{
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
  color: #DD3978;
}

.compensation .acbox-under .lead_txt span{
  font-size: 36px;
}

.compensation .acbox-under .lead_txt span.normal{
  font-size: 24px;
  color: #3C3C3C;
}

.compensation .acbox-under .function_img{
  width: 100%;
  margin: 2em auto;
}

.compensation .acbox-under .emphasis_txt{
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  color: #DD3978;
  margin-bottom: 1.5em;
}

.compensation .acbox-under .emphasis_txt span{
  background: linear-gradient(transparent 75%, #FFF57E 50%);
}

.compensation .acbox-under .description_list{
  font-size: 15px;
  letter-spacing: 0.25px;
  border: 1px solid #3C3C3C;
  padding: 4%;
}

.compensation .acbox-under .description_list li{
  margin-bottom: 0.5em;
}

.compensation .acbox-under .btn_area {
  text-align: center;
}

.compensation .acbox-under .btn_lead_txt {
  font-family: 'Noto Serif Japanese', serif;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin: 2em auto 1em;
  position: relative;
  color: #DD3978;
  display: inline-block;
  padding: 0 60px;
}

.compensation .acbox-under .btn_lead_txt:before {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 1px;
  background-color: #DD3978;
  -webkit-transform: rotate(-60deg);
  transform: rotate(60deg);
}

.compensation .acbox-under .btn_lead_txt:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 1px;
  background-color: #DD3978;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.compensation .acbox-under .btn_lead_txt:before {
  left:0;
}
.compensation .acbox-under .btn_lead_txt:after {
  right: 0;
}

.compensation .acbox-under .btn_pink a{
  display: inline-block;
  font-size: 18px;
  color: #fff;
  background: #DD3978;
  border-radius: 50px;
  margin: 0 auto;
  padding: 3% 14%;
  text-align: center;
}

.compensation .acbox-under .btn_pink2 a{
  display: inline-block;
  font-size: 18px;
  color: #fff;
  background: #DD3978;
  border-radius: 50px;
  margin: 0 auto;
  padding: 3% 14%;
  text-align: center;
}

.compensation .acbox-under .btn_pink a:hover,
.compensation .acbox-under .btn_pink2 a:hover{
  background-color:rgba(221,57,120,0.6);
}

.compensation dl,
.compensation dt,
.compensation dd {
  margin: 0;
  padding: 0;
}

.compensation dt,
.compensation dt{
  position: relative;
}

.compensation dd {
  padding: 5% 3%;
  background: #f7f5f0;
}

.compensation dt.more{
  background: #FFF46A;
  text-align: center;
  font-size: 28px;
  color: #333;
  cursor: pointer;
  padding: 20px 0;
}

.compensation .acbox span.mark::before,
.compensation .acbox span.mark::after{
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 5px;
  background: #000;
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.compensation .acbox span.mark::after{
  background: #000;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}

.compensation .acbox .active span.mark::after{
  transform: rotate(0);
  transition: 0.5s;
}

@media screen and (max-width: 767px) {

    .compensation .content h3{
        width: 100%;
        margin-left: -10px;
    }

    .compensation .content h4{
        font-size: 28px;
        letter-spacing: 1.5px;
    }

    .compensation .content .description {
        margin-bottom: 2em;
    }

    .compensation .content .description div {
        margin-bottom: 2em;
    }

    .sec04.compensation .content .description .txt01,
    .sec05.compensation .content .description .txt01{
        font-size: 17px;
        float: none;
        width: 100%;
        letter-spacing: 0;
        line-height: 1.75em;
    }

    .compensation .content .description .txt02{
        font-size: 17px;
        float: none;
        width: 100%;
        margin-bottom: 1em;
    }

   .sec04.compensation .content .description .logo,
   .sec05.compensation .content .description .logo{
        width: 70%;
        margin: 0 auto;
        float: none;
    }

    .compensation .content .col2{
        display: block;
        margin-bottom: 0;
    }

    .compensation .content .col2 .col{
        width: 95%;
        margin-right: 0;
        margin-bottom: 1.5em;
    }

    .compensation .content .col2 .col .txt01{
        font-size: 17px;
        padding-top: 20px;
    }

    .compensation .content .col2 .col .txt02{
        font-size: 24px;
        margin-right: 0.5em;
    }

    .compensation .content .col2 .col .txt02 span{
        font-size: 41px;
    }

.compensation .content .col1 .col .txt01{
  float: none;
  font-size: 17px;
}

.compensation .content .col1 .col .txt02{
  float: none;
  font-size: 24px;
  margin-right: 0;
  margin-bottom: 0;
}

    .compensation .content .col1 .col .txt02 span{
        font-size: 41px;
    }

    .compensation .content .col1 .col .txt02 span.small{
        font-size: 20px;
    }

    .compensation .content .btn{
        position: relative;
        right: 0;
        width: 70%;
        margin: 0 auto;
        margin-bottom: 1.5em;
    }

    .compensation .content .note_txt{
        margin-bottom: 2em;
        font-size: 14px;
        line-height: 1.5em;
    }

    .compensation .content .point{
        font-size: 20px;
        display: block;
    }

.compensation .content .point ul{
        width: 100%;
    }

    .compensation .acbox-under h4{
        font-size: 18px;
        letter-spacing: 1px;
    }

    .compensation .acbox-under .guardman_cont,
    .compensation .acbox-under .function_cont,
    .compensation .acbox-under .apparatus_cont,
    .compensation .acbox-under .experience_cont{
        width: 100%;
        display: block;
    }

    .compensation .acbox-under .guardman_cont .col,
    .compensation .acbox-under .function_cont .col,
    .compensation .acbox-under .apparatus_cont .col{
        width: 100%;
        display: flex;
    }

    .compensation .acbox-under .guardman_cont .col .img,
    .compensation .acbox-under .function_cont .col .img,
    .compensation .acbox-under .apparatus_cont .col .img{
        width: 50%;
    }

    .compensation .acbox-under .guardman_cont .col p,
    .compensation .acbox-under .function_cont .col p,
    .compensation .acbox-under .apparatus_cont .col p{
        font-size: 14px;
        text-align: left;
        width: 50%;
        margin-left: 5%;
    }

    .compensation .acbox-under .function_cont .col p span,
    .compensation .acbox-under .apparatus_cont .col p span{
        font-size: 15px;
    }

    .compensation .acbox-under .guardman_cont .arrow{
        transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        padding: 0;
        width: 5%;
        margin-left: 20%;
    }

    .compensation .acbox-under .experience_cont .col{
        width: 86%;
        margin-left: 0;
        margin-bottom: 2em;
        padding: 6%;
    }

    .compensation .acbox-under .experience_cont .col:nth-child(2){
        padding-bottom: 20%;
    }

    .compensation .acbox-under .experience_cont .col h5{
        font-size: 22px;
    }

    .compensation .acbox-under .experience_cont .col p{
        font-size: 14px;
    }

    .compensation .acbox-under .experience_cont .img{
        top:85%;
        right: 0;
    }

    .compensation .acbox-under .experience_img{
        width: 36%;
        top:58%;
        right: 10%;
    }

    .compensation .acbox-under .movecost_cont .txt{
        font-size: 15.5px;
    }

    .compensation .acbox-under .movecost_cont .img{
      max-width: 339px;
    }

    .compensation .acbox-under .recommend_txt{
        font-size: 17px;
        width: 100%;
        margin-top: 30%;
        padding-bottom: 10%;
    }

    .compensation .acbox-under .recommend_txt span{
        font-size: 20px;
    }

    .compensation .acbox-under .lead_txt{
        font-size: 16px;
    }

    .compensation .acbox-under .lead_txt span{
        font-size: 23px;
    }

    .compensation .acbox-under .emphasis_txt{
        font-size: 33px;
    }

    .compensation .acbox-under .function_img{
        width: 95%;
    }

    .compensation .acbox-under .description_list{
        font-size: 13px;
        padding: 3%;
        line-height: 1.5em;
    }

    .compensation .acbox-under .btn_area{
        margin-bottom: 2em;
    }

    .compensation .acbox-under .btn_lead_txt {
        font-size: 19px;
        padding: 0 30px;
    }

    .compensation .acbox-under .btn_pink a{
        font-size: 15px;
        padding: 4% 20%;
    }

    .compensation .acbox-under .btn_pink2 a{
        font-size: 15px;
        padding: 4% 12%;
    }

    .compensation .acbox-under .btn_lead_txt:before {
        width: 25px;
    }

    .compensation .acbox-under .btn_lead_txt:after {
        width: 25px;
    }

    .compensation dt.more{
      font-size: 20px;
      padding: 20px 0;
    }

}

@media screen and (max-width: 490px) {
    .compensation .acbox-under .experience_img{
        top:65%;
    }
}

/* Flower =====================================================================*/

.fadein {
  opacity : 0;
  transform: translateY(20px);
  transition: all 1s;
}

.sec02 .flower01{
  position: absolute;
  width: 20%;
  top:-3%;
  left: -8%;
}

.sec04 .flower04{
  position: absolute;
  width: 18%;
  top: 550px;
  right: -7%;
  z-index: 5;
}

.sec05 .flower05{
  position: absolute;
  width: 20%;
  top:395px;
  left: -8%;
}

.sec07 .flower07{
  position: absolute;
  width: 20%;
  top:385px;
  left: -8%;
}

.sec06 .flower06{
  position: absolute;
  width: 23%;
  top: 715px;
  right: -10%;
}

.sec08 .flower08{
  position: absolute;
  width: 23%;
  top:420px;
  right: -10%;
}

.sec10 .flower09{
  position: absolute;
  width: 20%;
  top:25%;
  left: -8%;
}

.sec12 .flower10{
  position: absolute;
  width: 22%;
  top:55%;
  right: -8%;
}

.sec14 .flower11{
  position: absolute;
  width: 24%;
  bottom: -6%;
  left: -6%;
}

.sec16 .flower12{
  position: absolute;
  width: 22%;
  top:-21%;
  right: -6.5%;
}

.sec08 .ttl_flower{
  position: absolute;
  width: 50%;
  top:5%;
  right: -4%;
}

@media screen and (max-width: 767px) {

    .sec02 .flower01{
        width: 43%;
        top:-1.5%;
        left: -17%;
    }

    .sec12 .flower10{
        width: 45%;
        top:-102%;
        right: -16%;
    }

    .sec14 .flower11{
        position: absolute;
        width: 47%;
        bottom: -3%;
        left: -17%;
    }

    .sec16 .flower12{
        width: 37%;
        top:-13%;
        right: -11%;
    }

    .sec08 .ttl_flower{
      position: absolute;
      width: 100%;
      top:10%;
      right: -25%;
    }
}

@media screen and (max-width: 414px) {
    .sec12 .flower10{
        width: 45%;
/*        top:-43%; */
        top:-255%;
        right: -16%;
    }
}

.forPC {
 display: block!important;
}

.forSP {
 display: none!important;
}

@media screen and (max-width: 767px) {

    .forPC {
      display: none!important;
    }

    .forSP {
      display: block!important;
    }
}
