@charset "utf-8";

/* RESET
----------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video,picture {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  line-height: 1.5em;
  text-align: left;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
}
picture {
  display: block;
}

/* ----------------------------------------------

 * 設定をしなおす

---------------------------------------------- */
body {
  margin: 0 auto;
  padding: 0;
  font-size: 16px;
  line-height: 1.8em;
  color: #383011;
  height: 100%;
  font-family: 'Noto Sans JP',"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Sogoe UI", Verdana, "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  position: relative;
  font-feature-settings: "palt";
}

.en {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
}


sup,sub {
  font-size: 70%;
}
small {
  font-size: 80%;
}


@media only screen and ( max-width : 767px ) {
  body {font-size: 15px;}
}
@media only screen and ( max-width : 320px ) {
  body {font-size: 13px;}
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
}

a {
  outline:none;
  color: #383011;
}

a:hover {
  text-decoration: none;
}

a,a:hover,a:hover img,button,input {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

a:hover {
  filter: alpha(opacity=60);
  -moz-opacity:0.60;
  opacity:0.60;
}

* {
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}


/* -----------------------------------------------
 * base.css
----------------------------------------------- */

main {display: block;}
img {
    max-width: 100%;
    height: auto;
}
.text-center {
  text-align: center !important;
}

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

  .sp_box {
    margin-bottom: 40px;
  }
  .sp_sbox {
    margin-bottom: 20px;
  }
  .sp_ssbox {
    margin-bottom: 10px;
  }
  .sp_inner {
    padding: 0 20px;
  }
  .section {
    padding: 40px 0;
    margin-bottom: 0;
  }
  .br_pc {
    display: none;
  }
  .box {
    margin-bottom: 40px;
  }
  .sbox {
    margin-bottom: 20px;
  }
  .ssbox {
    margin-bottom: 10px;
  }
}

@media print, screen and ( min-width : 768px ) {
  .posL {
    float: left;
  }
  .posR {
    float: right;
  }
  .br_sp {
    display: none;
  }
  .section {
    padding: 60px 0;
  }
  .box {
    margin-bottom: 60px;
  }
  .sbox {
    margin-bottom: 30px;
  }
  .ssbox {
    margin-bottom: 15px;
  }
}

@media print, screen and ( min-width : 991px ) {
  .section {
    padding: 100px 0;
  }
  .box {
    margin-bottom: 100px;
  }
  .sbox {
    margin-bottom: 50px;
  }
  .ssbox {
    margin-bottom: 25px;
  }
  .small_container {
    max-width: 900px;
    margin: 0 auto;
  }
}


/* ---------------------------------------------------------------------------------------------

　   HEADER

--------------------------------------------------------------------------------------------- */
#header {
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  position: absolute;
}
#menu_btn {
  transition: .3s;
  cursor: pointer;
  position: fixed;
  z-index: 9999;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #91C217;
  border-radius: 50%;
  top: 20px;
  right: 20px;
}
#menu_btn.active {
  background: #fff;
}
.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  opacity: 0;
  transition: opacity .5s;
}
.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}
#main {
  height: 100%;
  transition: all .5s;
}
.menu-trigger {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  position: relative;
}
.menu-trigger .menu_line {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all .5s;
  border-radius: 3px;
}
#menu_btn.active .menu-trigger .menu_line {
  background-color: #91C217;
}
.menu-trigger .menu_line:nth-of-type(1) {
  top: 0;
}

#menu_btn.active .menu-trigger .menu_line:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
  top: -2px;
  width: 70%;
  left: 15%;
}
.menu-trigger .menu_line:nth-of-type(2) {
  top: 10px;
}

#menu_btn.active .menu-trigger .menu_line:nth-of-type(2) {
  transform: translateY(-10px) rotate(45deg);
  top: 18px;
  width: 70%;
  left: 15%;
}
.menu_txt {
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 1;
}
#menu_btn.active .menu_txt span {
  opacity: 0;
}
#menu_btn.active .menu_txt:before {
  content: "閉じる";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 1;
  color: #91C217;
}
nav#gNav {
  height: 100%;
  overflow: auto;
  background-color: #90C400;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 101;
  transition: all .5s;
}
nav#gNav.open {
  transform: translateZ(0);
}
nav#gNav .nav {
  margin-bottom: 60px;
}
nav#gNav li {
  margin-bottom: 30px;
}
nav#gNav li:last-child {
  margin-bottom: 0;
}

nav#gNav li a {
  position: relative;
  display: block;
  color: #fff;
  font-weight: 900;
  padding-bottom: 12px;
  letter-spacing: .1em;
}
nav#gNav li a:hover {
  opacity: 1;
}
nav#gNav li a:after {
  content: "";
  background: url(../img/menu_dot.png) repeat-x left / 8px;
  height: 2px;
  left: 0;
  bottom: 0;
  position: absolute;
  transition: .3s;
  width: 0;
}
nav#gNav li a:hover:after {
  width: 100%;
}
.gNav_btn a {
  display: block;
  max-width: 380px;
  border-radius: 100px;
  box-shadow: 7px 7px 5px rgba(8,71,8,.25);
  overflow: hidden;
}
.gNav_btn a:last-child {
  margin-bottom: 0;
}

@media only screen and ( max-width : 991px ) {
  #header {
    height: 60px;
    padding: 0 0 0 20px;
  }
  #h_logo {
    width: 170px;
  }
  #menu_btn {
    width: 70px;
    height: 70px;
    box-shadow: 4px 4px 3px rgba(8,71,8,.25);
  }
  .menu-trigger {
    width: 32px;
    height: 32px;
  }
  .menu_txt {
    font-size: 10px;
  }
  .gNav_btn a {
    margin-bottom: 20px;
  }
}
@media only screen and ( max-width : 767px ) {
  nav#gNav {
    width: 280px;
    transform: translate(280px);
    padding: 130px 30px;
  }
  nav#gNav li a {
    font-size: 15px;
  }
}

@media print, screen and ( min-width : 768px ) {
  nav#gNav {
    width: 580px;
    transform: translate(580px);
    padding: 170px 95px;
  }
  nav#gNav li a {
    font-size: 22px;
    padding-bottom: 12px;
  }
  .gNav_btn a {
    margin-bottom: 20px;
  }
}

@media print, screen and ( min-width : 992px ) {
  #header {
    padding: 0 20px 0 40px;
    height: 80px;
  }
  #menu_btn {
    top: 20px;
    right: 20px;
    width: 110px;
    height: 110px;
    box-shadow: 7px 7px 5px rgba(8,71,8,.25);
  }
  .menu-trigger {
    width: 40px;
    height: 40px;
  }
  .menu_txt {
    font-size: 13px;
  }

}

@media print, screen and ( min-width : 1200px ) {

}




/* ---------------------------------------------------------------------------------------------

　   FOOTER

--------------------------------------------------------------------------------------------- */
#footer .container {
  position: relative;
}
#footer .copy {
  text-align: center;
}
@media only screen and ( max-width : 767px ) {
  #footer {
    background: url(../img/footer_sp.jpg) no-repeat left bottom / 100%;
    padding-bottom: 12vw;
    margin-bottom: 50px;
  }
  #footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer_pic {
    max-width: 106px;
    width: 30%;
  }
  #footer .copy {
    font-size: 10px;
    width: 66%;
    text-align: right;
  }
}

@media print, screen and ( min-width : 768px ) {
  #footer {
    background: url(../img/footer.jpg) no-repeat left bottom / 100%;
    padding-bottom: 16vw;
    margin-top: 120px;
  }
  #footer .copy {
    font-size: 12px;
  }
  .footer_pic {
    position: absolute;
    left: 0;
    bottom: 0;
  }
}


/* ---------------------------------------------------------------------------------------------

　   固定ボタン

--------------------------------------------------------------------------------------------- */

#fixed_btn {
  position: fixed;
  z-index: 99;
  left: 0;
  bottom: 0;
  width: 100%;
  display: none;
}
#fixed_btn .fixed_btn_inner {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
#fixed_btn .fixed_btn_inner a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FF5A24;
  color: #fff;
  font-weight: 700;
  position: relative;
}
#fixed_btn .fixed_btn_inner a span {
  text-align: center;
}
.fixed_btn_off {
  position: absolute;
}
@media only screen and ( max-width : 767px ) {
  #fixed_btn {
    box-shadow: 0 -0px 3px rgba(0,0,0,.25);
  }
  #fixed_btn a {
    font-size: 13px;
    flex: 1;
    border-right: 1px solid #fff;
    height: 50px;
  }
  #fixed_btn a:last-child {
    border-right: none;
  }
  #fixed_btn a span {
    line-height: 1.3em;
  }
  .fixed_btn_off {
    max-width: 150px;
    width: 110%;
    left: -5%;
    top: -35px;
    text-align: center;
  }
}
@media only screen and ( max-width : 320px ) {
  .fixed_btn_off {
    top: -25px;
  }
}

@media print, screen and ( min-width : 768px ) {
  #fixed_btn {
    bottom: 0;
    padding: 15px 0;
  }
  #fixed_btn .fixed_btn_inner {
    align-items: flex-end;
    padding: 0 3%;
    max-width: 1250px;
  }
  #fixed_btn a {
    width: 32.5%;
    border-radius: 5px;
    box-shadow: 8px 8px 6px rgba(8,71,8,.25);
    height: 84px;
    font-size: 1.8vw;
    letter-spacing: .1em;
  }

  #fixed_btn a:after {
    content: "";
    background: url(../img/arrow_w.svg) no-repeat center / 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 4%;
    width: 30px;
    height: 17px;
  }
  .fixed_btn_off {
    max-width: 110%;
    width: 110%;
    left: -5%;
    top: -20px;
  }
}
@media print, screen and ( min-width : 1250px ) {
  #fixed_btn a {
    font-size: 25px;
  }
}





/* ---------------------------------------------------------------------------------------------

　   CONTENTS

--------------------------------------------------------------------------------------------- */
#main {
  overflow: hidden;
}
.sec_title_inner {
  /*background: #fff;*/
}
#faq .sec_title_inner {
  background: #FBF8F4;
}
.sec_title_inner h2 {
  text-align: center;
  position: relative;
}
.sec_title_inner h2:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.sec_title_inner h2 img {
  display: inline-block;
  position: relative;
  z-index: 11;
}
@media only screen and ( max-width : 767px ) {
  .sec_title {
    margin-bottom: 25px;
  }
  .sec_title_ph {
    height: 55vw;
  }
  #charms .sec_title {
    background: url(../img/charms_title_ph_sp.jpg) no-repeat top left / 100%;
  }
  #faq .sec_title {
    background: url(../img/faq_title_ph_sp.jpg) no-repeat top left / 100%;
  }
  #area .sec_title {
    background: url(../img/area_title_ph_sp.jpg) no-repeat top left / 100%;
  }
  #charms .sec_title h2 img {
    max-width: 190px;
  }
  #area .sec_title h2 img {
    max-width: 160px;
  }
  .sec_title_inner h2:before {
    width: 260px;
    height: 32px;
    top: -32px;
    background: url(../img/title_bg_sp.png) no-repeat top left / 100%;
  }
  #faq .sec_title_inner h2:before {
    background: url(../img/title_bg02_sp.png) no-repeat top left / 100%;
  }
  .bg {
    background: url(../img/bg_sp.jpg) no-repeat left top / 100%;
  }
}
@media only screen and ( max-width : 320px ) {
  
}
@media print, screen and ( min-width : 768px ) {
  .sec_title {
    margin-bottom: 50px;
  }
  .sec_title_ph {
    height: 35vw;
    min-height: 400px;
  }
  #charms .sec_title_ph {
    background: url(../img/charms_title_ph.jpg) no-repeat center / cover;
  }
  #faq .sec_title_ph {
    background: url(../img/faq_title_ph.jpg) no-repeat center / cover;
  }
  #area .sec_title_ph {
    background: url(../img/area_title_ph.jpg) no-repeat center / cover;
  }
  .sec_title_inner h2:before {
    width: 768px;
    height: 111px;
    top: -111px;
    background: url(../img/title_bg.png) no-repeat top left / 100%;
  }
  #faq .sec_title_inner h2:before {
    background: url(../img/title_bg02.png) no-repeat top left / 100%;
  }
  .sec_title_inner h2 img {
    margin-top: -30px;
  }
  .bg {
    background: url(../img/bg.jpg) no-repeat left top / 100%;
  }
}


/* ---------------------------------------------------------------------------------------------

　   MV

--------------------------------------------------------------------------------------------- */
#mv_txt h2 img {
  width: 100%;
}
#mv_txt p {
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1.8em;
  margin: 6% 0;
}
.mv_cta_btn {
  display: block;
}
.mv_cta_btn img {
  width: 100%;
}
@media only screen and ( max-width : 767px ) {
  #mv {
    padding-bottom: 40px;
  }
  #mv_txt {
    margin-top: -19vw;
    position: relative;
    z-index: 2;
    padding: 0 6%;
  }
  #mv_txt p {
    font-size: 4.3vw;
  }
}
@media print, screen and ( min-width : 768px ) {
  #mv {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
  }
  #mv_pic {
    width: 55%;
  }
  #mv_txt {
    width: 45%;
    padding: 0 3%;
  }
  #mv_txt p {
    font-size: 1.8vw;
  }
  .mv_cta_btn {
    max-width: 84%;
  }
}


/* ---------------------------------------------------------------------------------------------

　   INTRO

--------------------------------------------------------------------------------------------- */


@media only screen and ( max-width : 767px ) {
  .bg02 {
    background: url(../img/bg02_sp.jpg) no-repeat bottom left / 100%;
  }
}
@media print, screen and ( min-width : 768px ) {
  #intro {
    background: url(../img/bg02.jpg) no-repeat bottom left / 100%;
  }
}

/* ---------------------------------------------------------------------------------------------

　   FIT

--------------------------------------------------------------------------------------------- */
#fit h2 img {
  display: block;
  margin: 0 auto;
}
.fit_questionnaire {
  border: 2px solid #91C217;
  border-radius: 20px;
  background: #fff;
}
.fit_questionnaire h3 {
  text-align: center;
  letter-spacing: .15em;
}
.fit_questionnaire h3 .bold {
  font-weight: 900;
}
.fit_questionnaire h3 .color_green {
  color: #91C217;
  font-weight: 700;
}
.fit_questionnaire p {
  text-align: center;
  background: url(../img/dot_green.png) repeat-x left bottom / 8px;
}
.fit_questionnaire_inner {
  max-width: 690px;
  margin: 0 auto;
}
.fit_questionnaire_inner li {
  list-style: disc;
  margin-left: 1.2em;
  font-weight: 700;
}
.slick-slide {
  padding-bottom: 7px;
  padding-top: 10px;
}
.slick-slide-inner {
  background: #FBF8F4;
  box-shadow: 7px 7px 5px rgba(73,64,8,.25);
  position: relative;
  border-radius: 30px;
}
.voice_customer_balloon {
  position: absolute;
  top: -10px;
}
.voice_title_en img {
  margin: 0 auto;
}
.voice_title h3 {
  text-align: center;
  font-weight: 900;
  letter-spacing: .25em;
}
.voice_message_title {
  position: relative;
}
.voice_message_t p {
  line-height: 1.8em;
}
.customer_ph img {
  border-radius: 20px;
}
.customer_utilization li {
  list-style: disc;
  margin-left: 1.2em;
  line-height: 1.8em;
}
.customer_utilization .btn {
  border: 1px solid #383011;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.customer_utilization .btn span {
  position: relative;
  padding-right: 35px;
  letter-spacing: .1em;
}
.customer_utilization .btn span:after {
  content: "";
  width: 22px;
  height: 13px;
  background: url(../img/arrow.svg) no-repeat center / 100%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.reco_set {
  background: #fff;
  border-radius: 30px;
}
.reco_set .reco_set_ph img {
  border-radius: 20px;
}
.reco_set_subtitle {
  text-align: center;
  font-weight: 700;
}
.reco_set_subtitle span {
  display: inline-block;
  position: relative;
  padding: 0 .6em;
  letter-spacing: .15em;
  text-align: center;
}
.reco_set_subtitle span:before,
.reco_set_subtitle span:after {
  content: "";
  width: 2px;
  height: 1.4em;
  background: #383011;
  position: absolute;
  bottom: 0;
}
.reco_set_subtitle span:before {
  left: 0;
  transform: rotate(-20deg);
}
.reco_set_subtitle span:after {
  right: 0;
  transform: rotate(20deg);
}
.reco_set_txt h4 {
  text-align: center;
  font-weight: 700;
  letter-spacing: .15em;
}
.reco_set_t_small {
  text-align: center;
}
.reco_set_price img {
  margin: 0 auto;
}
.reco_set_btn {
  background: #6D9211;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  margin: 0 auto;
}
.reco_set_btn02 {
  background: #91C217;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  margin: 0 auto;
}
.reco_set_btn span,
.reco_set_btn02 span {
  position: relative;
  font-weight: 700;
  padding-right: 30px;
  letter-spacing: .1em;
  text-align: center;
  line-height: 1.3;
}
.reco_set_btn span:after,
.reco_set_btn02 span:after {
  content: "";
  width: 22px;
  height: 13px;
  background: url(../img/arrow_w.svg) no-repeat center / 100%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and ( max-width : 999px ) {
  .slick-slide {
    padding-right: 25px;
    padding-left: 25px;
  }
  .voice_title_en img {
    max-width: 140px;
  }
  .voice_customer_balloon {
    width: 76px;
    left: -7px;
  }
  .voice_title h3 {
    font-size: 19px;
    margin: 10px 0 20px;
  }
  .voice_message,
  .customer_utilization,
  .reco_set {
    max-width: 400px;
    margin: 0 auto 20px;
    font-size: 13px;
  }
  .voice_message {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .customer_pic_sp {
    width: 30%;
  }
  .voice_message_title {
    width: 66%;
  }
  .customer_ph img {
    width: 100%;
    margin: 20px auto;
  }
  .customer_pic {
    display: none;
  }
  .customer_utilization .btn {
    height: 40px;
  }
  .reco_set_btn,
  .reco_set_btn02 {
    height: 54px;
    width: 280px;
    max-width: 100%;
  }
  .customer_utilization .btn {
    font-size: 14px;
    max-width: 100%;
    margin: 20px auto;
    width: 280px;
  }
  .reco_set {
    padding: 15px;
    margin-bottom: 0;
  }
  .reco_set_btn span,
  .reco_set_btn02 span {
    font-size: 14px;
  }
  .reco_set_txt h4 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .reco_set_t_small {
    font-size: 10px;
    margin-bottom: 20px;
  }
  .reco_set_subtitle {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .reco_set_price {
    margin-bottom: 20px;
  }
  .voice_message_t {
    display: none;
  }
  .reco_set_ph {
    margin-bottom: 30px;
  }
}
@media only screen and ( max-width : 767px ) {
  #fit h2 {
    margin-bottom: 30px;
  }
  #fit h2 img {
    width: 325px;
    max-width: 100%;
  }
  .fit_questionnaire {
    border-radius: 15px;
    padding: 20px 15px;
    margin-bottom: 60px;
  }
  .fit_questionnaire h3 {
    font-size: 17px;
    margin-bottom: 15px;
  }
  .fit_questionnaire p {
    font-size: 10px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .fit_questionnaire_graf {
    width: 65px;
    margin-right: 15px;
  }
  .fit_questionnaire_inner ul {
    width: calc(100% - (65px + 15px));
    font-size: 13px;
  }
  .slick-slide-inner {
    padding: 20px;
  }
}
@media print, screen and ( min-width : 576px ) {
  .slider-area {
    overflow: hidden;
   }
  .slick-slide {
    max-width: 540px;
    width: 100% !important;
  }
  .slick-current {
    max-width: 540px;
    width: 100% !important;
    margin: auto;
  }
}
@media print, screen and ( min-width : 768px ) {
  .slick-slide {
    max-width: 720px;
  }
  .slick-current {
    max-width: 720px;
  }
  #fit h2 {
    margin-bottom: 80px;
  }
  .fit_questionnaire {
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 95px;
  }
  .fit_questionnaire h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .fit_questionnaire p {
    font-size: 14px;
    padding-bottom: 30px;
    margin-bottom: 15px;
  }
  .fit_questionnaire_graf {
    width: 106px;
    margin-right: 25px;
  }
  .fit_questionnaire_inner ul {
    width: calc(100% - (106px + 25px));
    font-size: 18px;
  }
  .slick-slide-inner {
    padding: 40px 50px;
  }
}
@media screen and (min-width: 1000px) {
  .slick-slide {
    max-width: 1060px;
    padding-right: 30px;
    padding-left: 30px;
  }
  .slick-current {
    max-width: 1060px;
  }

  .voice_customer_balloon {
    left: 50px;
    width: 130px;
    max-width: 13%;
  }
  .voice_title {
    margin-bottom: 30px;
  }
  .voice_title h3 {
    font-size: 28px;
    margin-top: 20px;
  }
  .voice_message {
    display: flex;
    align-items: center;
  }
  .voice_message_title {
    border: 1px solid #383011;
    background: #fff;
    width: 368px;
    margin-right: 50px;
    height: 70px;
  }
  .voice_message_t {
    width: calc(100% - (368px + 50px));
    font-size: 15px;
  }
  .voice_message_title img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 345px;
  }
  .voice_message {
    margin-bottom: 40px;
  }
  .customer_utilization {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 45px;
  }
  .customer_pic {
    width: 21%;
  }
  .customer_worries {
    width: 40%;
  }
  .customer_ph {
    width: 32%;
  }
  /*.customer_utilization ul {
    margin-bottom: 30px;
  }*/
  .customer_utilization .btn {
    width: 240px;
    height: 50px;
  }
  .reco_set {
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .reco_set .reco_set_ph {
    width: 48%;
  }
  .reco_set .reco_set_txt {
    width: 48%;
  }
  .reco_set_btn,
  .reco_set_btn02 {
    max-width: 370px;
    height: 50px;
  }
  .reco_set_btn br,
  .reco_set_btn02 br {
    display: none;
  }
  .reco_set_txt h4 {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .reco_set_t_small {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .reco_set_subtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .customer_utilization .btn {
    font-size: 17px;
  }
  .reco_set_btn span,
  .reco_set_btn02 span {
    font-size: 17px;
  }
  .reco_set_price {
    margin-bottom: 20px;
  }
  .customer_pic_sp {
    display: none;
  }
  .customer_ph p {
    display: none;
  }
}


/* ---------------------------------------------------------------------------------------------

　   商品

--------------------------------------------------------------------------------------------- */
.items_box {
  position: relative;
  border-radius: 20px;
}
.items_box:last-child {
  margin-bottom: 0;
}
.otameshi_items {
  background: url(../img/stripe_yellow.jpg) repeat center / 22px;
}
.taiken_items {
  background: url(../img/stripe_orange.jpg) repeat center / 22px;
}
.items_img img {
  width: 100%;
}

.items_balloon {
  position: absolute;
  z-index: 2;
}
.items_sub_title {
  text-align: center;
  font-weight: 700;
}
.items_sub_title span {
  display: inline-block;
  position: relative;
  padding: 0 .6em;
  letter-spacing: .15em;
}
.items_sub_title span:before,
.items_sub_title span:after {
  content: "";
  width: 1.5px;
  height: 1.5em;
  background: #383011;
  position: absolute;
  bottom: 0;
}
.items_sub_title span:before {
  transform: rotate(-25deg);
  left: 0;
}
.items_sub_title span:after {
  transform: rotate(25deg);
  right: 0;
}
.items_title {
  font-weight: 900;
  text-align: center;
  letter-spacing: .1em;
}
.otameshi_items .items_title span {
  color: #FF5A24;
}
.item_txt_small {
  text-align: center;
  font-weight: 700;
  margin-top: 1em;
}
.items_cta_btn {
  display: block;
  max-width: 510px;
  margin: 0 auto;
}
.color_yellow {
  color: #FBB53B;
}
@media only screen and ( max-width : 767px ) {
  .items_box {
    margin-bottom: 50px;
  }
  .otameshi_items {
    border: 2px solid #FF5A24;
  }
  .taiken_items {
    border: 2px solid #FBB53B;
  }
  .items_img {
  }
  .otameshi_items .items_img {
    max-width: 220px;
    width: 60%;
    margin: -25px auto 0;
  }
  .taiken_items .items_img {
    max-width: 290px;
    width: 80%;
    margin: -35px auto 0;
  }
  .items_balloon {
    top: -25px;
    right: 1%;
    width: 15%;
    max-width: 50px;
  }
  .items_txt {
    padding: 4% 5%;
  }
  .items_sub_title {
    font-size: 13px;
  }
  .items_title {
    font-size: 17px;
    margin: 10px 0 15px;
  }
  .item_txt_small {
    font-size: 10px;
    margin-top: .5em;
  }
  .taiken_items .items_title {
    font-size: 12px;
  }
  .taiken_items .fs_large {
    font-size: 16px;
  }
  .items_cta_btn {
    width: 100%;
    max-width: 340px;
    display: block;
    margin: 0 auto;
  }
}
@media only screen and ( max-width : 575px ) {
  .items_sub_title {
    font-size: 3.4vw;
  }
  .items_title {
    font-size: 4.4vw;
  }
  .item_txt_small {
    font-size: 3vw;
  }
  .taiken_items .items_title {
    font-size: 3.4vw;
  }
  .taiken_items .fs_large {
    font-size: 4.4vw;
  }
}
@media print, screen and ( min-width : 768px ) {
  .items_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 100px;
  }
  .otameshi_items {
    border: 3px solid #FF5A24;
  }
  .taiken_items {
    border: 3px solid #FBB53B;
  }
  .items_box .items_txt {
    width: 58%;
  }
  .otameshi_items .items_img {
    width: 46%;
    margin-left: -5%;
    margin-top: -20px;
  }
  .taiken_items .items_img {
    width: 49%;
    margin-left: -7%;
  }
  .items_txt {
    padding: 30px 40px 30px 0;
  }
  .items_balloon {
    top: -30px;
    right: -15px;
    width: 80px;
  }
  .items_sub_title {
    font-size: 15px;
  }
  .items_title {
    font-size: 20px;
    margin: 10px 0 20px;
  }
  .item_txt_small {
    font-size: 12px;
  }
  .taiken_items .items_title {
    font-size: 14px;
  }
  .taiken_items .fs_large {
    font-size: 20px;
  }
}
@media print, screen and ( min-width : 992px ) {
  .otameshi_items .items_img {
    margin-top: -40px;
  }
  .items_balloon {
    top: -30px;
    right: -15px;
    width: 106px;
  }
  .items_sub_title {
    font-size: 19px;
  }
  .items_title {
    font-size: 28px;
    margin: 10px 0 30px;
  }
  .item_txt_small {
    font-size: 14px;
  }
  .taiken_items .items_title {
    font-size: 20px;
  }
  .taiken_items .fs_large {
    font-size: 28px;
  }
}

/* ---------------------------------------------------------------------------------------------

　   魅力

--------------------------------------------------------------------------------------------- */
.charms_box {
  border: 2px solid #91C217;
  border-radius: 20px;
  position: relative;
  background: #fff;
}
.charms_img {
  text-align: center;
}
.charms_box .charms_num {
  position: absolute;
  z-index: 2;
}
.charms_box h3 {
  font-weight: 900;
  text-align: center;
  position: relative;
  letter-spacing: .15em;
  margin-bottom: 1em;
}
.charms_box h3 .charms_title_inner {
  background: url(../img/dot.png) repeat-x left bottom / 8px;
  display: inline-block;
}
.charms_box h3:before {
  content: "";
  background: url(../img/deco.png) no-repeat center / 100%;
  display: block;
  margin: 0 auto;
}
.charms_box h4:first-of-type {
  margin-top: 0;
}
.charms_box p {
  line-height: 1.8em;
  letter-spacing: .1em;
}
@media only screen and ( max-width : 767px ) {
  .charms_box {
    padding: 15px 20px 30px;
    margin-bottom: 25px;
  }
  #charms03 {
    margin-bottom: 60px;
  }
  .charms_box .charms_num {
    top: -15px;
    left: -15px;
    width: 66px;
  }
  .charms_box h3 {
    font-size: 18px;
  }
  .charms_box h3:before {
    width: 26px;
    height: 10px;
  }
  .charms_box h3 .charms_title_inner {
    padding-bottom: 5px;
  }
  .charms_box h4 {
    margin-bottom: 15px;
    margin-top: 20px;
  }
  .charms_box h4 img {
    width: 280px;
    max-width: 100%;
    margin: 0 auto;
    display: block;
  }
  .charms_box p {
    max-width: 280px;
    margin: 0 auto 20px;
    font-size: 13px;
  }
  .charms_img img {
    width: 281px;
    max-width: 100%;
  }
}
@media print, screen and ( min-width : 768px ) {
  .charms_box {
    padding: 40px;
    margin-bottom: 95px;
    box-shadow: 7px 7px 5px rgba(8,71,8,.25);
  }
  .charms_box .charms_num {
    top: -45px;
    left: -45px;
  }
  .charms_box h3 {
    font-size: 40px;
  }
  .charms_box h3 .charms_title_small {
    font-size: 33px;
  }
  .charms_box h3:before {
    width: 60px;
    height: 22px;
  }
  .charms_box h3 .charms_title_inner {
    padding-bottom: 10px;
  }
  .charms_box h4 {
    margin-bottom: 25px;
    margin-top: 50px;
  }
  .charms_box p {
    max-width: 654px;
    margin: 0 auto 50px;
    font-size: 17px;
  }
  .modalBtn {
    pointer-events: none;
  }
}
/* ---------------------------------------------------------------------------------------------

　   Good deal

--------------------------------------------------------------------------------------------- */
#good_deal .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
#good_deal .container:before {
  content: "";
  position: absolute;
  right: 0;
  background: url(../img/check.svg) no-repeat center / 100%;
}
#good_deal h2 {
  text-align: center;
}
#good_deal .check_list li {
  font-weight: 700;
  position: relative;
  color: #fff;
  letter-spacing: .1em;
  line-height: 1.8em;
}
#good_deal .check_list li:before {
  content: "";
  background: url(../img/ico-check.png) no-repeat center / 100%;
  position: absolute;
  left: 0;
}
#good_deal .check_list li span {
  position: relative;
}
#good_deal .check_list li span:after {
  background: url(../img/menu_dot.png) repeat-x left bottom / 8px;
  position: absolute;
  content: "";
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
}
.good_deal_cta li a {
  display: block;
  overflow: hidden;
  box-shadow: 7px 7px 5px rgba(110,41,16,.35);
  border-radius: 100px;
}
@media only screen and ( max-width : 767px ) {
  #good_deal {
    background: url(../img/bg03_sp.jpg) no-repeat left top / 100% #FF5A24;
    padding: 15vw 0 8vw;
  }
  #good_deal .container:before {
    width: 52px;
    max-width: 15%;
    height: 52px;
    top: -100px;
    right: 4%;
  }
  #good_deal h2 {
    margin-bottom: 20px;
  }
  #good_deal h2 img {
    max-width: 295px;
  }
  .good_deal_cta {
    width: 80%;
    max-width: 250px;
    margin: 0 auto;
  }
  .good_deal_cta li {
    margin-bottom: 15px;
  }
  .good_deal_cta li:last-child {
    margin-bottom: 0;
  }
  #good_deal .check_list {
    margin-bottom: 10px;
  }
  #good_deal .check_list li {
    font-size: 14px;
    padding-left: 30px;
    margin-bottom: 20px;
  }
  #good_deal .check_list li:before {
    width: 20px;
    height: 18px;
    top: 4px;
  }
  #good_deal .check_list li span {
    display: inline-block;
  }
}
@media only screen and ( max-width : 575px ) {
  #good_deal .container:before {
    width: 52px;
    max-width: 15%;
    height: 52px;
    top: -18vw;
    right: 4%;
  }
}
@media print, screen and ( min-width : 768px ) {
  #good_deal {
    background: url(../img/bg03.jpg) no-repeat left top / 100%,url(../img/bg04.jpg) no-repeat left bottom / 100% #FF5A24;
    padding: 12vw 0 6vw;
  }
  #good_deal .container:before {
    width: 80px;
    height: 80px;
    top: -11vw;
  }
  #good_deal h2 {
    margin-bottom: 50px;
  }
  #good_deal .check_list {
    margin-bottom: 60px;
  }
  #good_deal .check_list li {
    font-size: 23px;
    padding-left: 45px;
    margin-bottom: 30px;
  }
  #good_deal .check_list li:before {
    width: 28px;
    height: 26px;
    top: 6px;
  }
  .good_deal_cta {
    display: flex;
    justify-content: space-between;
    max-width: 890px;
  }
  .good_deal_cta li {
    width: 48%;
  }
}
@media print, screen and ( min-width : 992px ) {
  #good_deal .container:before {
    width: 105px;
    height: 105px;
    right: 30px;
  }
}
@media print, screen and ( min-width : 1600px ) {
  #good_deal .container:before {
    top: -200px;
  }
}

/* ---------------------------------------------------------------------------------------------

　   FAQ

--------------------------------------------------------------------------------------------- */

#faq {
  background: #FBF8F4;
}
.accordion {
  max-width: 774px;
  margin: 0 auto;
}
.accordion_wrap {
  background: #91C217;
}
.accordion_wrap:last-child {
  margin-bottom: 0;
}
.accordion_header {
  background: #fff;
  box-shadow: 4px 4px 5px rgba(8,71,8,.25);
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  letter-spacing: .15em;
  font-weight: 700;
}
.accordion_header:before {
  content: "";
  background: url(../img/q.svg) no-repeat center / 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.acc_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  transition: .3s;
}
.accordion_header.open .acc_arrow {
  transform: translateY(-50%) rotate(90deg);
}
.acc_arrow img {
  display: block;
}
.accordion_content {
  color: #fff;
  position: relative;
  display: none;
  letter-spacing: .15em;
  font-weight: 700;
}
.accordion_content:before {
  content: "";
  background: url(../img/a.svg) no-repeat center / 100%;
  position: absolute;
}
.accordion_content a {
  text-decoration: underline;
  color: #fff;
}

@media only screen and ( max-width : 767px ) {
  #faq h2 img {
    max-width: 170px;
  }
  .accordion_wrap {
    border-radius: 12px;
    margin-bottom: 15px;
  }
  .accordion_header {
    height: 75px;
    padding: 0 50px 0 50px;
    border-radius: 10px;
  }
  .accordion_header:before {
    width: 17px;
    height: 13px;
    left: 15px;
  }
  .acc_arrow {
    right: 15px;
    width: 15px;
  }
  .accordion_content {
    padding: 15px 15px 15px 50px;
  }
  .accordion_content:before {
    width: 15px;
    height: 13px;
    left: 15px;
    top: 15px;
  }
}
@media only screen and ( max-width : 320px ) {
  .accordion_header br {
    display: none;
  }
}
@media print, screen and ( min-width : 768px ) {
  .accordion {
    font-size: 21px;
  }
  .accordion_wrap {
    margin-bottom: 20px;
    border-radius: 20px;
  }
  .accordion_header {
    height: 110px;
    padding: 0 40px 0 95px;
    border-radius: 20px;
  }
  .acc_arrow {
    right: 40px;
  }
  .accordion_content {
    padding: 40px 40px 40px 95px;
  }
  .accordion_header:before {
    width: 27px;
    height: 20px;
    left: 40px;
  }
  .accordion_content:before {
    width: 24px;
    height: 20px;
    left: 40px;
    top: 40px;
  }
}
/* ---------------------------------------------------------------------------------------------

　   AREA

--------------------------------------------------------------------------------------------- */
#area .sec_title_ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
#area .sec_title_ph .area_lead_text {
  font-weight: 900;
  letter-spacing: .2em;
}
#area .sec_title_ph p {
  text-align: center;
  letter-spacing: .1em;
  line-height: 1.8em;
}
#area h3 {
  font-weight: 700;
  letter-spacing: .15em;
}
#area h3 span {
  color: #91C217;
}
.area_txt p {
  background: #FBF8F4;
  border-radius: 15px;
  font-weight: 700;
  line-height: 1.8em;
  letter-spacing: .1em;
}
@media only screen and ( max-width : 991px ) {
  .area_pic {
    text-align: center;
    margin-bottom: 30px;
  }
  #area h3 {
    text-align: center;
    line-height: 1.8em;
  }
}
@media only screen and ( max-width : 767px ) {
  #area .sec_title_ph {
    font-size: 3.4vw;
    padding-bottom: 32px;
  }
  #area .sec_title_ph .area_lead_text {
    font-size: 5vw;
    margin-bottom: 2vw;
  }
  #area .sec_title_ph .area_lead_text small {
    font-size: 4.4vw;
  }
  #area h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .area_txt p {
    padding: 15px;
    font-size: 14px;
  }
}
@media only screen and ( max-width : 575px ) {
  #area h3 {
    font-size: 4vw;
    margin-bottom: 4.6vw;
  }
  .area_txt p {
    padding: 4vw;
    font-size: 3.8vw;
  }
}
@media print, screen and ( min-width : 768px ) {
  #area .sec_title_ph {
    font-size: 20px;
    padding-bottom: 111px;
  }
  #area .sec_title_ph .area_lead_text {
    font-size: 42px;
    margin-bottom: 30px;
  }
  #area .sec_title_ph .area_lead_text small {
    font-size: 37px;
  }
  #area h3 {
    font-size: 20px;
    margin-bottom: 40px;
  }
  .area_txt p {
    padding: 25px;
    font-size: 15px;
  }
}
@media print, screen and ( min-width : 992px ) {
  #area .area_inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
  .area_pic {
    width: 40%;
  }
  .area_txt {
    width: 58%;
  }
}

/* ---------------------------------------------------------------------------------------------

　   コープの宅配っていつ届くの？

--------------------------------------------------------------------------------------------- */

#when h2 img,
#when h3 img {
  display: block;
  margin: 0 auto;
}
.when_inner {
  border: 2px solid #91C217;
  background: #fff;
  position: relative;
}
.when_inner:after {
  content: "";
  position: absolute;
  background: url(../img/check02.svg) no-repeat center / 100%;
  z-index: 2;
}
.when_inner p {
  text-align: center;
  font-weight: 700;
  line-height: 2em;
  letter-spacing: .1em;
}
.when_photo {
  display: block;
  margin: 0 auto;
}
.search_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #91C217;
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  margin: 0 auto;
  position: relative;
}
.search_btn span {
  font-weight: 700;
  letter-spacing: .1em;
  text-align: center;
  line-height: 1.3;
  position: relative;
}
@media only screen and ( max-width : 767px ) {
  #when h2 {
    margin-bottom: 20px;
  }
  #when h2 img {
    max-width: 320px;
    width: 100%;
  }
  #when h3 {
    margin-bottom: 10px;
  }
  #when h3 img {
    max-width: 280px;
    width: 100%;
  }
  .when_inner {
    border-radius: 15px;
    padding: 25px 15px 30px;
  }
  .when_inner:after {
    width: 52px;
    height: 52px;
    right: 5px;
    top: -35px;
  }
  .when_photo {
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .when_inner p {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .search_btn {
    height: 46px;
    font-size: 14px;
    box-shadow: 7px 7px 5px rgba(8,71,8,.25);
    max-width: 250px;
    width: 100%;
  }
  .search_btn span {
    padding-right: 30px;
  }
  .search_btn span:after {
    content: "";
    background: url(../img/arrow_w.svg) no-repeat center / 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 20px;
    height: 12px;
  }
}
@media print, screen and ( min-width : 768px ) {
  #when h2 {
    margin-bottom: 40px;
  }
  .when_inner {
    border-radius: 30px;
    padding: 50px 40px;
  }
  .when_inner:after {
    width: 105px;
    height: 105px;
    right: 15px;
    top: -50px;
  }
  .when_photo {
    border-radius: 25px;
    margin-bottom: 30px;
  }
  #when h3 {
    margin-bottom: 30px;
  }
  .when_inner p {
    font-size: 23px;
    margin-bottom: 60px;
  }
  .search_btn {
    height: 80px;
    font-size: 23px;
    max-width: 514px;
  }
  .search_btn:after {
    content: "";
    background: url(../img/arrow_w.svg) no-repeat center / 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    width: 30px;
    height: 17px;
  }
}



/* ---------------------------------------------------------------------------------------------

　   XXX

--------------------------------------------------------------------------------------------- */

@media only screen and ( max-width : 767px ) {
}
@media print, screen and ( min-width : 768px ) {
}
