@charset "UTF-8";

/* ======================================================

   common-Setting

========================================================= */
body {
  color: #303030;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  position: relative;
}
h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
textarea,
select,
p,
blockquote,
table,
pre,
address,
ul,
ol,
dl {
  font-size: 160%;
  font-weight: normal;
  text-align: left;
  line-height: 1.6;
}
h1,
h2,
h3,
h4,
h5,
h6,
li {
  line-height: 1.4;
}
li {
  list-style: none;
}
dt,
dd {
  line-height: 1.6;
}
th,
td {
  vertical-align: middle;
  line-height: 1.6;
}
select {
  visibility: visible !important;
}
img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
a {
  color: #52c1b0;
  text-decoration: none;
}
a:hover {
  color: #52c1b0;
  text-decoration: underline;
}
.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1500ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
.hover {
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.hover:hover {
  opacity: 0.6;
}

.pc_area {
  display: none;
}
.bold {
  font-weight: bold;
}
.txt-l {
  text-align: left;
}
.txt-c {
  text-align: center;
}
.txt-r {
  text-align: right;
}

#wrapper {
  overflow-x: hidden;
  position: relative;
}

a.spa {
  display: none !important;
}
a.pca {
  display: block !important;
}
@media screen and (max-width: 768px) {
  a.spa {
    display: block !important;
  }
  a.pca {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .pc_area {
    display: block;
  }
  .sp_area {
    display: none;
  }

  .sp_fixed_area {
    /* display: none; */
  }

  .hover_opacity a {
    transition: 0.3s;
  }
  .hover_opacity a:hover {
    transition: 0.3s;
    opacity: 0.8;
  }
}

/* ======================================================

   header

========================================================= */
#outer_header {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: #fff;
}
#header {
  padding: 0 5%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .logo {
  display: flex;
  align-items: center;
}
#header .logo > a {
  display: block;
  max-width: 267px;
}
#header .logo > span {
  display: block;
  margin: 0 0 0 20px;
  font-size: 18px;
}
.head_txt {
  width: 293px;
}

/* hamburger menu */
.hamburger_menu_cover {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
}
.hamburger_menu {
  display: flex;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 15px;
  cursor: pointer;
}
.hamburger_menu__line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #9f9f9f;
  position: relative;
  transition: all 0.5s;
}
.hamburger_menu__line::before,
.hamburger_menu__line::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #9f9f9f;
  position: absolute;
  transition: all 0.5s;
}

.hamburger_menu__line::before {
  transform: translateY(-10px);
}
.hamburger_menu__line::after {
  transform: translateY(10px);
}
.hamburger_menu.open .hamburger_menu__line {
  background-color: transparent;
}
.hamburger_menu.open .hamburger_menu__line::before {
  transform: rotate(45deg);
}
.hamburger_menu.open .hamburger_menu__line::after {
  transform: rotate(-45deg);
}

.nav {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  padding: 100px 30px 80px;
  background: rgba(255, 255, 255, 0.9);
  text-align: left;
  transition: right 0.5s;
  overflow: scroll;
  z-index: 998;
}
.nav.open {
  right: 0;
}

.nav p.menu_btn {
  font-size: 16px;
  line-height: 1.4;
  position: relative;
  margin-bottom: 20px;
}
.nav p.menu_btn a {
  display: block;
  color: #333;
  text-decoration: none;
}
.nav p.menu_btn a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  margin: -4px 2px 0 0;
  border-top: solid 2px #fdce05;
  border-right: solid 2px #fdce05;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.nav p.menu_btn.order {
  margin-top: 30px;
  background: #fd7a05;
}
.nav p.menu_btn.order a {
  color: #fff;
  font-weight: 700;
  padding: 20px 40px 20px 20px;
}
.nav p.menu_btn.order a::after {
  right: 15px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

@media screen and (min-width: 1025px) {
  #outer_header {
    height: 85px;
  }
  #header {
    padding: 16px 10px 14px;
    max-width: 1100px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
  }
  #header .logo {
    margin: 0;
  }
  #header .head_txt {
    width: 293px;
  }
  .hamburger_menu_cover {
    top: 50%;
    transform: translateY(-50%);
  }
  .hamburger_menu {
    padding: 15px 0;
  }
  .nav {
    right: -50%;
    width: 50%;
    padding: 150px 70px 80px;
  }
  .nav p.menu_btn.order {
    transition: 0.3s;
  }
  .nav p.menu_btn.order:hover {
    transition: 0.3s;
    opacity: 0.8;
  }
  .head_ot {
    display: block;
    font-size: 12px;
    letter-spacing: -0.3px;
    position: relative;
    left: 10px;
    margin: 6px 0 0;
  }
}
@media screen and (max-width: 1024px) {
  #header {
    padding: 0 0 0 5%;
  }
  #outer_header {
    height: auto;
  }
  .head_txt {
    width: 120px;
  }
}
@media screen and (max-width: 750px) {
  .head_txt {
    width: calc(100vw * 120 / 750);
  }
  #header .logo {
    width: calc(100vw * 544 / 750);
  }
  #header .logo > span {
    font-size: calc(100vw * 24 / 750);
    margin: 0 0 0 10px;
  }
  #header .logo > a {
    max-width: 100%;
    width: calc(100vw * 336 / 750);
  }
}

/* ======================================================

   footer

========================================================= */
#outer_footer {
  background: #94d1ca;
}
#footer {
  width: 94%;
  margin: 0 auto;
  padding: 30px 0 80px;
}
#footer .logo {
  width: 40.84%;
  margin: 0 auto;
}
#footer .menu {
  margin-bottom: 10px;
}
#footer .menu li {
  font-size: 14px;
  text-align: center;
  border-bottom: #e9e9e9 1px solid;
}
#footer .menu li:last-child {
  border-bottom: none;
}
#footer .menu li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 20px 0;
}
#footer .copy {
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

@media screen and (min-width: 1025px) {
  #footer {
    max-width: 1000px;
    padding: 60px 0;
  }
  #footer .logo {
    width: 29%;
    margin: 0 auto 60px;
  }
  #footer .menu {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    margin-bottom: 60px;
  }
  #footer .menu li {
    font-size: 18px;
    line-height: 1.2;
    border-bottom: none;
    padding: 0 25px;
  }
  #footer .menu li a {
    padding: 0;
  }
  #footer .menu li a:hover {
    text-decoration: underline;
  }
  #footer .copy {
    font-size: 15px;
    color: #fff;
  }
}

/* ======================================================

   contents

========================================================= */
/* --- FV --- */
#main_img_cover {
  padding-top: 30px;
  position: relative;
  background: #94d1ca;
}
#main_img_cover .fv_monthly {
  background: #fdce05;
  padding: 2%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
#main_img_cover .fv_monthly .txt {
  width: 36%;
}
#main_img_cover .fv_monthly .txt img {
  vertical-align: middle;
}
#main_img_cover .fv_monthly .btn {
  width: 60%;
}
#main_img_cover .fv_sp_medal {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
#main_img_cover svg {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}
#main_img_cover .slick-prev,
#main_img_cover .slick-next {
  position: absolute;
  bottom: -11px;
  display: block;
  width: 15px;
  height: 22px;
  cursor: pointer;
  color: transparent;
  padding: 0;
  border: none;
  z-index: 2;
}
#main_img_cover .slick-prev {
  left: 5%;
  background: url("../images/fv_prev.png") no-repeat center;
  background-size: contain;
}
#main_img_cover .slick-next {
  left: calc(5% + 130px);
  background: url("../images/fv_next.png") no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 1024px) {
  #main_img_cover {
    padding-top: 120px;
  }
}
@media screen and (max-width: 750px) {
  #main_img_cover {
    padding-top: calc(100vw * 120 / 750);
  }
}
.mic_btm_txt {
  font-size: 14px;
  color: #666;
  text-align: center;
  letter-spacing: normal;
}
.btn_area {
  position: relative;
  padding-top: 40px;
  margin-top: 60px;
  margin-bottom: 80px;
}
.btn_area.two {
  margin-bottom: 60px;
}
.btn_area:before {
  content: "";
  position: absolute;
  background: url(../images/bi/txt_nffe-pc.png) no-repeat top left;
  background-size: contain;
  width: 486px;
  height: 27px;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.cam-btn {
  width: 100%;
  margin: 0 auto;
}
.cam-btn.pc_area {
  max-width: 569px;
}
.zero_bnnr_area {
  width: 100%;
  max-width: 900px;
  margin: 80px auto 0;
  box-sizing: border-box;
}
.zba-txt {
  font-size: 14px;
  color: #666;
  letter-spacing: normal;
  margin: 10px 0 0;
}
@media screen and (max-width: 768px) {
  .zba-txt {
    font-size: calc(100vw * 16 / 750);
  }
}

@media screen and (max-width: 1024px) {
  .btn_area {
    position: relative;
    padding-top: calc(100vw * 60 / 750);
    margin-top: calc(100vw * 60 / 750);
    margin-bottom: calc(100vw * 80 / 750);
  }
  .cam-btn.sp_area {
    width: calc(100vw * 654 / 750);
    display: block;
  }
  .btn_area:before {
    background: url(../images/bi/txt_nffe-sp.png) no-repeat top left;
    background-size: contain;
    width: calc(100vw * 556 / 750);
    height: calc(100vw * 31 / 750);
  }
  .zero_bnnr_area {
    padding: 0 20px;
    margin-top: 40px;
  }
}

@media screen and (min-width: 1025px) {
  #main_img_cover {
    margin: 85px auto 20px;
  }
  #main_img_cover .fv_monthly {
    display: block;
    padding: 15px 0;
  }
  #main_img_cover .fv_monthly .inner {
    max-width: 1000px;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
  }
  #main_img_cover .fv_monthly .txt {
    width: 32%;
    max-width: 317px;
  }
  #main_img_cover .fv_monthly .btn {
    width: 25%;
  }
  #main_img_cover .fv_pc_medal {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
  }
  #main_img_cover .slick-prev {
    left: 14.28%;
  }
  #main_img_cover .slick-next {
    left: calc(14.28% + 130px);
  }
}

.movie_area {
  background: url(../images/bi/bg_movie-pc.jpg) no-repeat top left;
  background-size: contain;
  padding: 90px 20px 20px 90px;
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto 60px;
  height: 970px;
  position: relative;
}
.ma_ttl {
  width: 100%;
  max-width: 366px;
  margin: 0 0 40px;
  display: block;
}
.movie_area > p {
  font-size: 21px;
  color: #fff;
  margin: 0 0 40px;
  line-height: 2.3;
}
.movie_area > p:last-child {
}
.movie_area > a {
  display: block;
  width: 100%;
  max-width: 441px;
}

@media screen and (max-width: 750px) {
  .movie_area {
    background: none;
    padding-top: calc(100vw * 80 / 750);
    padding-left: calc(100vw * 40 / 750);
    height: calc(100vw * 1300 / 750);
    position: relative;
    margin-bottom: calc(100vw * 70 / 750);
  }
  .ma_ttl {
    width: calc(100vw * 346 / 750);
  }
  .movie_area > p {
    font-size: calc(100vw * 30 / 750);
  }
  .movie_area > a {
    width: calc(100vw * 606 / 750);
    max-width: 100%;
  }
  .movie_area:after {
    content: "";
    position: absolute;
    background: url(../images/bi/bg_movie-sp.jpg) no-repeat top left;
    background-size: contain;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vw * 1380 / 750);
    z-index: -1;
  }
}

.about__modal-box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.about__modal-inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.about__modal-contents {
  background: #fff;
  padding: 20px;
  margin: 0;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.about__modal-insta {
  width: 100%;
  max-width: 400px;
}
.about__modal-close {
  cursor: pointer;
  position: absolute;
  top: -32px;
  right: -32px;
}

@media screen and (max-width: 767px) {
  .about__modal-insta {
    min-width: 250px;
  }
}

.reason_area {
}
.ra-ttl {
  width: 100%;
  max-width: 552px;
  margin: 0 auto 30px;
}
.ra-list {
}
.ra-list > li {
  padding: 140px 20px 0;
}
.ra-list > li:nth-child(odd) {
  background: #94d1ca;
}
.ra-list > li:nth-child(even) {
  background: #eee;
}
.ra-list > li:nth-child(2),
.ra-list > li:nth-child(3) {
  padding-top: 170px;
}
.ra-list > li > .box {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto -40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background: #fff;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
.ra-list > li > .box:before {
  content: "";
  position: absolute;
}
.ra-list > li:first-child > .box:before {
  background: url(../images/bi/icon_reasonone.png) no-repeat top left;
  background-size: contain;
  width: 386px;
  height: 204px;
  top: -100px;
  left: -140px;
}
.ra-list > li:nth-child(2) > .box:before {
  background: url(../images/bi/icon_reasontwo.png) no-repeat top left;
  background-size: contain;
  width: 389px;
  height: 204px;
  top: -100px;
  right: -180px;
}
.ra-list > li:nth-child(3) > .box:before {
  background: url(../images/bi/icon_reasonthree.png) no-repeat top left;
  background-size: contain;
  width: 386px;
  height: 204px;
  top: -100px;
  left: -170px;
}
.ra-list > li > .box > .one {
}
.ra-list > li:first-child > .box > .one,
.ra-list > li:nth-child(3) > .box > .one {
  margin-right: 60px;
}
.ra-list > li > .box > .one > .picture {
}
.ra-list > li > .box > .one > p {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}
.ra-list > li > .box > .one > p.one {
  font-size: 20px;
  margin: 0 0 20px;
  font-weight: 400;
  letter-spacing: normal;
}
.ra-list > li > .box > .one > ul.one {
  position: relative;
}
.ra-list > li > .box > .one > ul.one:after {
  content: "";
  position: absolute;
  background: url(../images/bi/icon_powerup.png);
  background-size: contain;
  width: 132px;
  height: 133px;
  top: -50px;
  right: -20px;
}
.ra-list > li > .box > .one > ul.one > li {
  padding: 0 0 0 25px;
  margin: 0 0 6px;
  font-size: 18px;
  position: relative;
}
.ra-list > li > .box > .one > ul.one > li > span {
  font-size: 1.4em;
  color: #d56879;
}
.ra-list > li > .box > .one > ul.one > li span span {
  font-size: 0.8em;
}
.ra-list > li > .box > .one > ul.one > li:before {
  content: "";
  position: absolute;
  background: url(../images/bi/icon_check.png) no-repeat top left;
  background-size: contain;
  width: 17px;
  height: 18px;
  top: 2px;
  left: 0;
}
.ra-list > li > .box > .one > ul.one > li:first-child:before {
  top: 10px;
}
.ra-list > li > .box > .two {
}
.ra-list > li:nth-child(2) > .box > .two {
  margin-right: 60px;
}
.ra-list > li:nth-child(2) > .box > .two > picture,
.ra-list > li:nth-child(3) > .box > .two > picture,
.ra-list > li > .box picture.one {
  margin-bottom: 30px;
}
.ra-list > li > .box > .two > .picture {
}
.ra-list {
}
.ra-list > li > .box picture {
  display: block;
}
.ra-list > li > .box picture.sheet {
  margin: 0 0 20px;
}
picture.sheet {
}
.ra-list > li > .box > .two > .three {
  display: flex;
}
.ra-list > li > .box > .two > .three > figure {
  width: 90px;
  margin-left: 10px;
}
.ra-list > li > .box > .two > .three > p {
  font-size: 18px;
  color: #303030;
}
.ra-list > li > .box > .two > .three > p > span {
  font-size: 0.9em;
}
@media screen and (min-width: 1121px) {
  .ra-list > li > .box > .one > ul.one > li > br {
    display: none;
  }
}
@media screen and (max-width: 1300px) and (min-width: 981px) {
  .ra-list > li:nth-child(2) > .box > .two,
  .ra-list > li:first-child > .box > .one,
  .ra-list > li:nth-child(3) > .box > .one {
    margin-right: 20px;
  }
  .ra-list > li:first-child > .box:before {
    width: 250px;
    height: 132px;
    top: -70px;
    left: -90px;
  }
  .ra-list > li:nth-child(2) > .box:before {
    width: 250px;
    height: 132px;
    top: -70px;
    right: -110px;
  }
  .ra-list > li:nth-child(3) > .box:before {
    width: 250px;
    height: 132px;
    top: -70px;
    left: -110px;
  }
  .ra-list > li {
    padding-left: 120px;
    padding-right: 120px;
  }
}
@media screen and (max-width: 1300px) and (min-width: 750px) {
  .ra-list > li > .box {
    padding: 20px;
  }
  .ra-list > li > .box > .one > p.one {
    font-size: 18px;
  }
  .ra-list > li > .box > .one > ul.one > li {
    font-size: 16px;
  }
  .ra-list > li:first-child > .box > .one,
  .ra-list > li:nth-child(3) > .box > .one,
  .ra-list > li:nth-child(2) > .box > .two {
    margin-right: 30px;
  }
}

@media screen and (max-width: 1120px) {
  .ra-list > li > .box > .one > ul.one:after {
    content: "";
    position: absolute;
    background: url(../images/bi/icon_powerup-sp.png) no-repeat top left;
    background-size: contain;
    width: 110px;
    height: 75px;
    top: -10px;
    left: 210px;
  }
  .ra-list > li > .box > .one > ul.one > li:first-child:before {
    top: 2px;
  }
}
@media screen and (max-width: 980px) {
  .ra-list > li:first-child > .box:before {
    background: url(../images/bi/icon_reasonone-sp.png) no-repeat top left;
    background-size: contain;
    width: calc(100vw * 340 / 750);
    height: calc(100vw * 70 / 750);
    left: auto;
    right: calc(100vw * -20 / 750);
    top: calc(100vw * -80 / 750);
  }
  .ra-list > li:nth-child(2) > .box:before {
    background: url(../images/bi/icon_reasontwo-sp.png) no-repeat top left;
    background-size: contain;
    width: calc(100vw * 340 / 750);
    height: calc(100vw * 70 / 750);
    left: calc(100vw * 0 / 750);
    right: auto;
    top: calc(100vw * -80 / 750);
  }
  .ra-list > li:nth-child(3) {
    position: relative;
  }
  .ra-list > li:nth-child(3):before {
    content: "";
    position: absolute;
    background: url(../images/bi/icon_reasonthree-sp.png) no-repeat top left;
    background-size: contain;
    width: calc(100vw * 340 / 750);
    height: calc(100vw * 70 / 750);
    left: auto;
    right: calc(100vw * 40 / 750);
    top: calc(100vw * 60 / 750);
  }
  .ra-list > li:nth-child(3) > .box:before {
    content: none;
  }
  .features h2:after {
    background: url(../images/bi/icon_reasonfour-sp.png) no-repeat top left;
    background-size: contain;
    width: calc(100vw * 340 / 750);
    height: calc(100vw * 70 / 750);
    left: calc(100vw * 0 / 750);
    right: auto;
    top: calc(100vw * -80 / 750);
  }
}
@media screen and (max-width: 750px) {
  .ra-list > li:first-child > .box:before {
    background: url(../images/bi/icon_reasonone-sp.png) no-repeat top left;
    background-size: contain;
    width: calc(100vw * 578 / 750);
    height: calc(100vw * 123 / 750);
    left: auto;
    right: calc(100vw * -20 / 750);
    top: calc(100vw * -150 / 750);
  }
  .ra-list > li:nth-child(2) > .box:before {
    background: url(../images/bi/icon_reasontwo-sp.png) no-repeat top left;
    background-size: contain;
    width: calc(100vw * 578 / 750);
    height: calc(100vw * 123 / 750);
    left: calc(100vw * 0 / 750);
    right: auto;
    top: calc(100vw * -150 / 750);
  }
  .ra-list > li:nth-child(3) > .box:before {
    background: url(../images/bi/icon_reasonthree-sp.png) no-repeat top left;
    background-size: contain;
    width: calc(100vw * 578 / 750);
    height: calc(100vw * 123 / 750);
    left: auto;
    right: calc(100vw * 40 / 750);
    top: calc(100vw * -150 / 750);
    content: none;
  }

  .ra-list > li:nth-child(3):before {
    content: "";
    position: absolute;
    background: url(../images/bi/icon_reasonthree-sp.png) no-repeat top left;
    background-size: contain;
    width: calc(100vw * 578 / 750);
    height: calc(100vw * 123 / 750);
    left: auto;
    right: calc(100vw * 40 / 750);
    top: calc(100vw * 110 / 750);
  }

  .ra-list > li:nth-child(odd) {
    background: #94d1ca;
    padding-left: 0;
  }
  .ra-list > li:nth-child(2) {
    padding-right: 0;
  }

  .ra-list > li > .box {
    padding: 30px 20px;
  }
  .ra-list > li:nth-child(odd) > .box {
    flex-direction: column-reverse;
  }
  .ra-list > li:nth-child(even) > .box {
    flex-direction: column;
  }
  .ra-list > li:nth-child(odd) > .box > .two,
  .ra-list > li:nth-child(even) > .box > .two {
    margin-bottom: 26px;
    width: 100%;
  }
  .ra-list > li {
    padding-top: calc(100vw * 200 / 750);
  }
  .ra-list > li > .box > .one > p {
    font-size: calc(100vw * 20 / 750);
  }
  .ra-list > li:first-child > .box > .one,
  .ra-list > li:nth-child(2) > .box > .one,
  .ra-list > li:nth-child(2) > .box > .two,
  .ra-list > li:nth-child(3) > .box > .one {
    margin-right: 0;
  }
  .ra-list > li:first-child > .box picture.one {
    width: calc(100vw * 448 / 750);
  }
  .ra-list > li:nth-child(2) > .box > .two picture {
    width: calc(100vw * 533 / 750);
  }
  .ra-list > li:nth-child(3) > .box > .two > picture {
    width: calc(100vw * 602 / 750);
  }
  .ra-list > li:nth-child(3) > .box > .two > .three {
    justify-content: space-between;
  }

  .ra-list > li > .box {
    align-items: flex-start;
  }
  .ra-list > li:nth-child(3) > .box div.one {
    width: 100%;
  }
  .ra-list > li > .box > .one > ul.one:after {
    right: auto;
    left: calc(100vw * 420 / 750);
  }
  .ra-list > li:nth-child(3) .box {
    overflow: hidden;
  }
  .ra-list > li:nth-child(3) > .box picture.sheet {
    width: 120%;
    position: relative;
    right: calc(100vw * 50 / 750);
  }
  .ra-list > li:nth-child(2),
  .ra-list > li:nth-child(3) {
    padding-top: calc(100vw * 250 / 750);
  }
}
.comparison_area {
  padding: 100px 0 0;
}
.comparison_area h2 {
  width: 100%;
  max-width: 394px;
  margin: 0 auto 40px;
}
.comparison_area > .one {
  background: #f6f6f6;
  padding: 40px 20px;
}
.comparison_area > .one > div {
  margin: 0 0 20px;
}
.comparison_area > .one > div > picture {
  width: 100%;
  max-width: 1000px;
  display: block;
  margin: 0 auto;
}
.comparison_area > .one p {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 14px;
  color: #666;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .comparison_area > .one > div {
    overflow: scroll;
  }
  .comparison_area > .one > div > picture {
    width: calc(100vw * 1128 / 750);
    max-width: initial;
    padding-bottom: 20px;
  }
  .comparison_area > .one {
    padding: 20px 0px 20px 20px;
  }
  .comparison_area > .one p {
    font-size: calc(100vw * 20 / 750);
    max-width: initial;
    width: calc(100vw * 670 / 750);
  }
}

@media screen and (max-width: 750px) {
  .ra-ttl {
    width: calc(100vw * 675 / 750);
    max-width: 100%;
    margin-bottom: calc(100vw * 30 / 750);
  }
  .comparison_area h2 {
    width: calc(100vw * 580 / 750);
    margin: 0 auto 30px;
  }
  .comparison_area {
    padding-top: calc(100vw * 100 / 750);
  }
}

.swiper-wrapper {
  box-sizing: content-box;
  display: flex;
  z-index: 1;
  position: relative;
  width: 100%;
  max-width: 540px;
  transition-property: transform;
  margin: 0 auto;
}

.p_waterserverSlider01__thumb01 .swiper-wrapper {
  padding: 48px 0 156px;
  justify-content: center;
  padding: 20px 0;
  width: 180px;
  margin: 0;
}

.p_waterserverSlider01__thumb01 {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p_waterserverSlider01__thumb01 .swiper-slide {
  padding: 40px 0 10px;
}

.p_waterserverSlider01__thumb01 .slick-track {
  width: auto !important;
  transform: none !important;
  padding-left: 10px;
}

.p_waterserverSlider01__thumb01__txt01 {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
  pointer-events: none;
  font-size: 20px;
  right: 0;
  margin: auto;
}

.p_waterserverSlider01__thumb01__txt01 {
  display: none;
}

.p_waterserverSlider01__thumb01
  .slick-current
  .p_waterserverSlider01__thumb01__txt01 {
  display: block;
}

.p_waterserverSlider01__thumb01__img01 {
  position: relative;
  margin-top: 5px;
}
.p_waterserverSlider01__thumb01__img01::before {
  border-color: #94d1ca;
}
.p_waterserverSlider01__thumb01
  .slick-current
  .p_waterserverSlider01__thumb01__img01::before {
  border-color: #94d1ca;
  background: #94d1ca;
  z-index: -1;
}
.p_waterserverSlider01__thumb01__imgInner01 {
  overflow: hidden;
  border-radius: 50%;
  width: 44px;
  border: 1px solid #ccc;
}
.p_waterserverSlider01__thumb01__img01::before {
  box-sizing: border-box;
  display: block;
  position: absolute;
  top: -4px;
  left: -4px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border: 1px solid transparent;
  border-radius: 50%;
  content: "";
  width: 54px;
  height: 54px;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .p_waterserverSlider01__thumb01 .swiper-wrapper {
    width: 160px;
  }
}

.showpicbox {
  overflow: scroll;
}
.showpicbox img {
  width: 1200px;
}

.features_slider.popup > div {
  width: 100%;
  max-width: 400px;
}

.filter_lbox-link {
  border: 1px solid #ccc;
  padding: 20px 30px;
  border-radius: 100px;
  color: initial;
  font-size: 20px;
  display: inline-block;
}
.filter_lbox-link:hover {
  text-decoration: none;
  color: initial;
}
.filter_lbox-link.insta {
  border: none;
  padding: 0;
  border-radius: 0;
  display: block;
}

/* --- features --- */
.features {
  position: relative;
  padding: 180px 0 40px;
  background: #eee;
}
.features:after {
  content: "";
  position: absolute;
  background: #fff;
  width: 1000px;
  height: 1000px;
  margin: auto;
  top: 180px;
  left: 0;
  right: 0;
  z-index: 0;
}
.features h2 {
  position: relative;
  z-index: 2;
}
.features_slider ul {
  position: relative;
  z-index: 1;
}
.features_slider ul.popup {
  background: #fff;
  padding: 30px 30px 20px;
}
.features_slider.awd ul {
  margin-bottom: 60px;
}
.features_slider li {
  width: 75%;
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
  margin: 0 20px 50px;
  transition: 0.3s;
}
.features_slider ul.popup li {
  margin-bottom: 0;
}
.features_slider li.slick-current {
  opacity: 1;
  transition: 0.3s;
}
.features_slider li img {
  margin-bottom: 30px;
}
.features_slider .slick-prev,
.features_slider .slick-next {
  position: absolute;
  top: 25%;
  display: block;
  width: 15px;
  height: 22px;
  cursor: pointer;
  color: transparent;
  padding: 0;
  border: none;
  z-index: 2;
}
.features_slider .slick-prev {
  left: 10%;
  background: url("../images/bi/arrow_prev.png") no-repeat center;
  background-size: contain;
}
.features_slider .slick-next {
  right: 10%;
  background: url("../images/bi/arrow_next.png") no-repeat center;
  background-size: contain;
}

@media screen and (min-width: 1025px) {
  .features {
    margin: 0 auto;
  }
  .features h2 {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 70px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
  }
  .features h2:after {
    content: "";
    position: absolute;
    background: url(../images/bi/icon_reasonfour.png) no-repeat top left;
    background-size: contain;
    width: 392px;
    height: 204px;
    top: -100px;
    right: -180px;
  }
  .features h2 > img {
    width: 100%;
    max-width: 760px;
  }
  .features_slider li {
    width: 388px;
    font-size: 20px;
    margin: 0 15px 100px;
  }
  .features_slider li h3 {
    font-size: 23px;
    font-weight: 400;
    margin: 0 0 10px;
  }
  .features_slider li p {
    font-size: 18px;
    letter-spacing: 0.4px;
  }
  .features_slider li img {
    margin-bottom: 20px;
  }

  .features_slider.awd li {
    width: 900px;
    margin: 0 15px;
  }
}

@media screen and (max-width: 1300px) and (min-width: 1025px) {
  .features h2:after {
    content: "";
    position: absolute;
    background: url(../images/bi/icon_reasonfour-sp.png) no-repeat top left;
    background-size: contain;
    width: 350px;
    height: 70px;
    top: -90px;
    right: 0px;
  }
  .features h2 {
    padding: 40px 40px;
  }
}
@media screen and (max-width: 1024px) {
  .features h2:after {
    content: "";
    position: absolute;
    background: url(../images/bi/icon_reasonfour-sp.png) no-repeat top left;
    background-size: contain;
    width: 350px;
    height: 70px;
    top: -120px;
    right: 50px;
  }
}

@media screen and (max-width: 1024px) {
  .features h2.sp_area {
    width: 100%;
    margin: 0 0 30px;
    max-width: 360px;
    margin-left: 9vw;
  }

  .features:after {
    width: 95%;
    height: 139vw;
    margin: auto;
    top: 140px;
    left: auto;
    right: 0;
    z-index: 0;
  }
  .features_slider li img {
    margin-bottom: 10px;
  }
}
.features_slider .slick-list {
  overflow: visible;
}

.features_slider .slick-prev,
.features_slider .slick-next {
  top: 28%;
  width: 79px;
  height: 79px;
  border-radius: 100px;
  box-shadow: 0 0 10px #cccccc;
}

.features_slider.awd .slick-prev,
.features_slider.awd .slick-next {
  top: 42%;
}
.features_slider.popup .slick-prev,
.features_slider.popup .slick-next {
  top: 42%;
}
.features_slider .slick-prev {
  left: 33%;
}
.features_slider .slick-next {
  right: 33%;
}
.features_slider.popup .slick-prev {
  left: 29%;
}
.features_slider.popup .slick-next {
  right: 29%;
}
.features_slider.match .slick-prev,
.features_slider.match .slick-next {
  top: 35%;
}

@media screen and (max-width: 750px) {
  .features h2.sp_area {
    width: calc(100vw * 554 / 750);
    margin-left: 11vw;
  }

  .features h2:after {
    content: "";
    position: absolute;
    background: url(../images/bi/icon_reasonfour-sp.png) no-repeat top left;
    background-size: contain;
    width: calc(100vw * 578 / 750);
    height: calc(100vw * 114 / 750);
    top: calc(100vw * -205 / 750);
    right: auto;
    left: calc(100vw * -40 / 750);
  }

  .features {
    padding-top: calc(100vw * 340 / 750);
    padding-bottom: calc(100vw * 120 / 750);
  }
  .features:after {
    width: 95%;
    height: 168vw;
    top: calc(100vw * 280 / 750);
  }

  .features_slider .slick-prev,
  .features_slider .slick-next {
    width: 50px;
    height: 50px;
  }

  .features_slider li {
    margin: 0 10px 50px;
  }

  .features_slider.intv li {
    background: #fff;
    padding: 20px;
    margin-bottom: 0;
  }

  .features_slider.intv li p {
    font-size: calc(100vw * 26 / 750);
  }

  .features_slider.intv li p span {
    font-weight: 400;
    color: #d56879;
  }

  .features_slider .slick-prev {
    left: 4% !important;
  }

  .features_slider .slick-next {
    right: 4% !important;
  }

  .features_slider .slick-prev,
  .features_slider .slick-next {
    top: 28% !important;
  }

  .features_slider.awd .slick-prev,
  .features_slider.awd .slick-next {
    top: calc(100vw * 110 / 750)!important;
  }

  .features_slider h3 {
    font-size: calc(100vw * 32 / 750);
    margin: 0 0 10px;
    letter-spacing: -0.3px;
  }

  .features_slider h3 + p {
    font-size: calc(100vw * 26 / 750);
  }

  .features_slider li img {
    margin-bottom: 20px;
  }

  .features_slider.awd ul {
    margin-bottom: 20px;
  }

  .features_slider.awd li {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 640px) {
  .features:after {
    height: 180vw;
  }
}

@media screen and (max-width: 580px) {
  .features:after {
    height: 190vw;
  }
  .features {
    padding-bottom: calc(100vw * 60 / 750);
  }
}

@media screen and (max-width: 500px) {
  .filter_lbox-link {
    padding: 20px 30px;
    font-size: calc(100vw * 28 / 750);
  }
  .p_waterserverSlider01__thumb01__txt01 {
    font-size: calc(100vw * 30 / 750);
  }
}

@media screen and (max-width: 420px) {
  .filter_lbox-link {
    padding: 20px;
    font-size: calc(100vw * 28 / 750);
  }
  .p_waterserverSlider01__thumb01__txt01 {
    font-size: calc(100vw * 30 / 750);
  }
  .p_waterserverSlider01__thumb01 .swiper-wrapper {
    width: calc(100vw * 280 / 750);
  }
  .p_waterserverSlider01__thumb01 .swiper-slide {
    padding-top: 25px;
  }
  .p_waterserverSlider01__thumb01__imgInner01 {
    width: 34px;
  }
  .p_waterserverSlider01__thumb01__img01::before {
    width: 44px;
    height: 44px;
  }
}

section.slim {
  padding: 0 0;
}

section.slim h2 {
  width: 100%;
  max-width: 455px;
  margin: 0 auto 50px;
}

section.slim .one {
  padding: 40px;
  background: #94d1ca;
}

section.slim .one picture {
  width: 100%;
  max-width: 376px;
  margin: 0 auto;
  display: block;
  position: relative;
}

section.slim .one picture:after {
  content: "";
  background: url(../images/bi/img_boxtissue-pc.png) no-repeat top left;
  background-size: contain;
  width: 211px;
  height: 211px;
  bottom: -10px;
  right: -260px;
  display: block;
  position: absolute;
}

section.match {
  padding: 120px 0 0px;
  background-image: linear-gradient(to bottom, #fff 40%, #eee 40%);
  box-sizing: border-box;
}

section.match h2 {
  width: 100%;
  max-width: 350px;
  margin: 0 auto 50px;
}

@media screen and (max-width: 750px) {
  section.slim h2 {
    width: calc(100vw * 642 / 750);
    margin: 0 auto 30px;
  }
  section.slim .one picture:after {
    width: 150px;
    height: 150px;
    bottom: -90px;
    right: -18vw;
  }
  .features_slider.match .slick-prev,
  .features_slider.match .slick-next {
    top: 45vw !important;
  }
  section.match {
    padding: 80px 0 0px;
  }
  section.match h2 {
    width: calc(100vw * 591 / 750);
    max-width: 100%;
    margin: 0 auto 30px;
  }
  section.slim .one picture {
    width: calc(100vw * 520 / 750);
    max-width: 100%;
  }
}

section.feattwo {
  padding: 140px 0 0;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
section.feattwo .cont02::after {
  content: "";
  position: absolute;
  background: url(../images/bi/bg-wave.jpg) no-repeat bottom center;
  background-size: auto;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 420px;
  z-index: -1;
}
section.feattwo .cont02::before {
  content: "";
  position: absolute;
  background: #d6efee;
  background-size: auto;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
section.feattwo .cont {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto 70px;
}
section.feattwo .cont02 {
  position: relative;
  overflow: hidden;
  padding-top: 30px;
  padding-bottom: 90px;
}
section.feattwo h2 {
  width: 100%;
  max-width: 376px;
  margin: 0 0 60px;
  padding-left: 20px;
}
section.feattwo p.zero {
  width: 100%;
  max-width: 512px;
  margin: 0 auto 50px;
}

section.feattwo .img02 {
  width: 100%;
  max-width: 494px;
  margin: 0 auto 50px;
}

section.feattwo p.one {
  font-size: 26px;
  font-weight: 400;
  text-align: center;
  margin: 0 0 40px;
}

section.feattwo p.one > span {
  color: #5db9ac;
  font-weight: 500;
}

section.feattwo .col {
  display: flex;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 20px;
}

section.feattwo .col .child {
  width: 50%;
}

section.feattwo .col .child.one {
  padding-left: 60px;
}

section.feattwo .col .child.two {
  padding-left: 70px;
  position: relative;
}

section.feattwo .col .child.two > p {
  font-size: 20px;
  font-weight: 300;
  margin: 0 0 50px;
}

section.feattwo .col .child.two p span {
  font-weight: 400;
}

section.feattwo .col .child picture {
  width: 100%;
  max-width: 468px;
  display: block;
}

@media screen and (max-width: 750px) {
  section.feattwo {
    padding: 60px 0px 0;
    box-sizing: border-box;
  }
  section.feattwo h2 {
    width: calc(100vw * 487 / 750);
    margin: 0 0 40px;
  }
  section.feattwo .cont02 {
    padding-bottom: 40px;
  }
  section.feattwo p.zero {
    width: calc(100vw * 669 / 750);
    margin: 0 auto 30px;
  }
  .feattwo .img01 {
    /* width: 116%;
    position: relative;
    right: 10%; */
  }
  section.feattwo .cont {
    margin: 0 auto;
  }
  section.feattwo p.one {
    font-size: calc(100vw * 34 / 750);
    margin: 0 0 20px;
  }
  section.feattwo .img02 {
    width: calc(100vw * 654 / 750);
    margin: 0 auto 30px;
    padding: 0 20px;
    box-sizing: border-box;
  }
  section.feattwo .col {
    margin: 0 auto;
    flex-direction: column;
    padding: 0 20px;
    box-sizing: border-box;
  }
  section.feattwo .col .child {
    width: auto;
  }
  section.feattwo .col .child picture {
    width: calc(100vw * 632 / 750);
    margin: 0 auto 30px;
    max-width: 100%;
  }
  section.feattwo .col .child.two > p {
    font-size: calc(100vw * 30 / 750);
    margin: 0 0 30px;
  }
  section.feattwo .col .child.two {
    padding-left: 0;
  }
  section.feattwo .cont02::after {
    background: url(../images/bi/bg-wave-sp.jpg) no-repeat bottom center;
    background-size: contain;
    height: calc(100vw * 320 / 750);
    width: calc(100vw * 750 / 750);
    top: 0;
  }
  ssection.feattwo::before {
    height: calc(100vw * 1800 / 750);
  }
}

.function.two {
  margin-top: 0;
}

.function.two .function01 .function-acdn-btn {
  background: #fff;
  font-size: 20px;
  padding: 15px 20px;
  color: initial;
  font-weight: 400;
}

.function .function01 .function_content_area.one {
  margin-bottom: 20px;
}

.function.two .function01 .function-acdn-btn::after {
  border-right: #303030 2px solid;
  border-bottom: #303030 2px solid;
}

.function.two .m-safety01__detail01__list {
  background: #fff;
}

.m-safety01__detail01__list > p {
  padding: 20px;
  font-weight: 300;
}

.function .function01 .function-acdn-btn.show {
  border-bottom: 1px solid #dedede;
}

section.safekeep {
  padding: 90px 90px 90px 0;
  background-color: #f9f9f9;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto 80px;
  background-image: linear-gradient(to bottom, #fff 60%, #94d1ca 60%);
  box-sizing: border-box;
}

section.safekeep h2 {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 90px;
}

section.safekeep .col {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

section.safekeep .col .child {
  flex: 1;
}

section.safekeep .col .child.one {
  position: relative;
  bottom: 40px;
  left: 80px;
}
section.safekeep .col .child.two {
  padding: 0 80px 0 130px;
  background: #fff;
}

section.safekeep .col .child .img {
  width: 100%;
  max-width: 388px;
  margin: 0 0 40px;
}

section.safekeep .col .child .one {
  font-size: 20px;
}

@media screen and (max-width: 750px) {
  section.safekeep {
    padding: 50px 20px 60px 0px;
    background-image: linear-gradient(to bottom, #fff 60%, #94d1ca 60%);
    box-sizing: border-box;
    margin-bottom: 60px;
  }
  section.safekeep h2 {
    width: calc(100vw * 507 / 750);
    max-width: 100%;
    margin: 0 auto 40px;
    position: relative;
    left: 10px;
  }
  section.safekeep .col {
    margin-top: 0;
    flex-direction: column;
  }
  section.safekeep .col .child.one {
    position: relative;
    bottom: 0;
    left: 0;
  }
  section.safekeep .col .child.two {
    padding: 30px 20px;
  }
  section.safekeep .col .child .img {
    width: calc(100vw * 551 / 750);
    max-width: 100%;
    margin: 0 0 20px;
  }
  section.safekeep .col .child .one {
    font-size: calc(100vw * 30 / 750);
  }
}

section.usa {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 20px 100px;
  box-sizing: border-box;
}

section.usa h2 {
  width: 100%;
  max-width: 342px;
  margin: 0 0 60px;
}

section.usa p.zero {
  width: 100%;
  max-width: 524px;
  margin: 0 auto 50px;
}

section.usa .img01 {
  width: 100%;
  max-width: 935px;
  margin: 0 auto 100px;
  margin-right: -1.6vw;
}

section.usa .img02 {
  width: 100%;
  max-width: 506px;
  margin: 0 auto 20px;
}

section.usa p.txt01 {
  font-size: 30px;
  text-align: center;
  margin: 0 0 40px;
}

section.usa p.txt02 {
  font-size: 20px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  section.usa {
    margin: 0 auto;
    padding: 20px 0 60px;
  }
  section.usa .img01 {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 40px;
    margin-right: 0;
  }
  section.usa h2 {
    width: calc(100vw * 476 / 750);
    max-width: 100%;
    margin: 0 0 40px 20px;
  }
  section.usa p.zero {
    width: calc(100vw * 670 / 750);
    max-width: 100%;
    margin: 0 auto 30px;
  }
  section.usa p.txt01 {
    font-size: calc(100vw * 42 / 750);
    margin: 0 0 20px;
  }
  section.usa p.txt02 {
    font-size: calc(100vw * 30 / 750);
    padding: 0 20px;
    box-sizing: border-box;
  }
}

section.threechoice {
  padding: 0;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

section.threechoice:after {
  content: "";
  position: absolute;
  background: url(../images/bi/bg_tc.png) no-repeat bottom center;
  background-size: auto;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 591px;
  z-index: -1;
  margin: auto;
}

section.threechoice .cont {
  width: 100%;
  max-width: 1000px;
  height: 666px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

section.threechoice h2 {
  width: 100%;
  max-width: 330px;
  margin: 0 auto 40px;
}

section.threechoice p.txt01 {
  font-size: 20px;
  margin-bottom: 40px;
  text-align: center;
}

section.threechoice .img01 {
  width: 100%;
  max-width: 201px;
  margin: 0 auto;
}

section.threechoice .img02.one,
section.threechoice .img02.two,
section.threechoice .img02.three {
  position: absolute;
}

section.threechoice .img02.one {
  top: 0;
  left: 0;
}

section.threechoice .img02.two {
  top: 0;
  right: 0;
}

section.threechoice .img02.three {
  bottom: 0;
  left: 0;
}

section.threechoice .bgtc {
  display: none;
}

@media screen and (max-width: 880px) {
  section.threechoice .img02.two {
    right: -40px;
  }
  section.threechoice .img02.three {
    left: -60px;
  }
  section.threechoice .img02.one {
    left: -60px;
  }
}

@media screen and (max-width: 750px) {
  section.threechoice .cont {
    display: none;
  }
  section.threechoice .bgtc {
    display: block;
  }
  section.threechoice:after {
    content: none;
  }
}

section.fourfeat {
  width: 100%;
  max-width: 1120px;
  padding: 100px 20px 40px;
  margin: 0 auto;
  box-sizing: border-box;
}

section.fourfeat ul.ff-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

section.fourfeat ul.ff-list li {
  margin-bottom: 90px;
  text-align: center;
  font-weight: 600;
  width: 48%;
}

section.fourfeat ul.ff-list li h3 {
  font-size: 30px;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 400;
}

section.fourfeat ul.ff-list li p {
  font-size: 20px;
  font-weight: 300;
}

section.fourfeat ul.ff-list li p.sm {
  font-size: 18px;
  margin-top: 20px;
}

section.fourfeat ul.ff-list li span {
  font-size: 14px;
  color: #666;
  padding-left: 1em;
  text-indent: -1em;
  display: block;
  text-align: left;
  font-weight: 300;
}

section.fourfeat ul.ff-list li span.one {
  margin-top: 10px;
}

section.fourfeat ul.ff-list li picture {
  width: 100%;
  max-width: 500px;
  display: block;
  margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
  section.fourfeat {
    padding: 40px 0 20px;
  }
  section.fourfeat ul.ff-list li h3 {
    font-size: calc(100vw * 42 / 750);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 400;
  }
  section.fourfeat ul.ff-list {
    justify-content: space-between;
    flex-direction: column;
  }
  section.fourfeat ul.ff-list li {
    margin-bottom: 40px;
    width: auto;
  }
  section.fourfeat ul.ff-list li p {
    font-size: calc(100vw * 30 / 750);
    padding: 0 20px;
  }
  section.fourfeat ul.ff-list li span {
    font-size: calc(100vw * 22 / 750);
    padding: 0 2.5em;
  }
  section.fourfeat ul.ff-list li picture {
    max-width: 100%;
  }
  section.fourfeat ul.ff-list li p.sm {
    font-size: calc(100vw * 24 / 750);
  }
}

section.pricetwo {
  padding: 0 0 60px;
}

section.pricetwo .cont {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  box-sizing: border-box;
  padding-bottom: 90px;
  padding-left: 20px;
}

section.pricetwo .cont02 {
  background: #94d1ca;
  padding: 0 20px 50px;
  margin-bottom: 60px;
}

section.pricetwo h2 {
  width: 100%;
  max-width: 191px;
  display: block;
}

section.pricetwo .ttl {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

section.pricetwo .ttl picture {
  width: 100%;
  max-width: 326px;
  display: block;
  margin-left: 10vw;
  position: relative;
  bottom: 20px;
}

section.pricetwo .ttl02 {
  font-size: 26px;
  text-align: center;
  margin-bottom: 30px;
}

section.pricetwo .txt {
  font-size: 20px;
  text-align: center;
  margin-bottom: 60px;
}

section.pricetwo .txt02 {
  font-size: 14px;
  text-align: center;
  color: #666;
}

section.pricetwo .img01 {
  width: 100%;
  max-width: 1000px;
  display: block;
  margin: -40px auto 0;
}

section.pricetwo .img02 {
  width: 100%;
  max-width: 470px;
  display: block;
  margin: 0 auto 30px;
}

.awdwrap {
  background: #fffde5;
  padding: 0 0 60px;
}

div.award_area {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 0;
}

.awdwrap picture img {
  width: auto;
  margin: 0 auto;
  display: block;
}

div.award_area picture {
  display: block;
}

.award_area picture.one {
  margin: 0 0 40px;
}

.award_area picture.one {
  margin: 0 0 40px;
}

.award_area a.two {
  margin: 0 0 40px;
  display: block;
}

.award_area picture.three {
  margin: 40px 0 0;
}

@media screen and (max-width: 750px) {
  section.pricetwo {
    padding: 0 0 40px;
  }
  section.pricetwo .cont {
    padding-left: 20px;
    padding-bottom: 45px;
  }
  section.pricetwo h2 {
    width: calc(100vw * 267 / 750);
    max-width: 100%;
  }
  section.pricetwo .ttl picture {
    max-width: 100%;
    width: calc(100vw * 460 / 750);
    margin: 0 auto;
    bottom: 20px;
  }
  section.pricetwo .ttl {
    margin: 0 auto;
  }
  section.pricetwo .cont02 {
    padding: 0 20px 30px;
    margin-bottom: 30px;
  }
  section.pricetwo .cont {
    padding-left: 20px;
    margin-bottom: 15px;
  }
  section.pricetwo .ttl02 {
    font-size: calc(100vw * 36 / 750);
    margin-bottom: 15px;
  }
  section.pricetwo .txt {
    font-size: calc(100vw * 30 / 750);
    text-align: left;
    padding: 0 20px;
    margin-bottom: 30px;
  }
  section.pricetwo .img02 {
    width: calc(100vw * 686 / 750);
    max-width: 100%;
    margin: 0 auto 20px;
  }
  section.pricetwo .txt02 {
    font-size: calc(100vw * 22 / 750);
    text-align: left;
    padding: 0 20px;
  }
  section.pricetwo .img01 {
    width: calc(100vw * 654 / 750);
    max-width: 100%;
    margin: 0 auto;
  }
  div.award_area {
    margin: 0 auto 40px;
    padding: 0;
  }
  .awdwrap picture img {
    width: 100%;
  }
  .awdwrap {
    padding: 40px 0;
  }
  .award_area picture.one {
    width: calc(100vw * 385 / 750);
    margin: 0 auto 30px;
  }
  .award_area picture.three {
    width: calc(100vw * 638 / 750);
    margin: 0 auto 30px;
  }
  .award_area a.two {
    margin: 0 0 30px;
    padding: 0 20px;
  }
  .awdwrap picture.four {
    width: calc(100vw * 654 / 750);
    padding: 0 20px;
    display: block;
  }
}

section.supt {
  background: #f3ecdd;
  padding: 50px 20px;
}
section.supt p.txt01 {
  width: 100%;
  max-width: 555px;
  margin: 0 auto 30px;
}
section.supt .box {
  background: #fff;
  width: 100%;
  max-width: 960px;
  margin: 0 auto 20px;
  padding: 30px 30px 40px;
  box-sizing: border-box;
}
section.supt p.txt02 {
  width: 100%;
  max-width: 441px;
  margin: 0 auto 30px;
}

section.supt ul.list li {
  font-size: 14px;
  color: #666;
  padding-left: 1em;
  text-indent: -1em;
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  section.supt {
    padding: 25px 20px;
  }
  section.supt p.txt01 {
    width: calc(100vw * 680 / 750);
    max-width: 100%;
    margin: 0 auto 30px;
  }
  section.supt p.txt02 {
    width: calc(100vw * 584 / 750);
    max-width: 100%;
    margin: 0 auto 30px;
  }
}

.service_accordion.two {
  margin: 0;
  width: 100%;
  display: block;
  border-top: #b1b1b1 1px solid;
}
.service_accordion.two div {
  width: 100%;
}
.service_accordion.two dl {
  padding: 25px 0 25px 60px;
}
.service_accordion.two dt {
  position: relative;
}
.service_accordion.two div dt:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -55px;
  margin: auto;
}
.service_accordion.two div:first-child dt:before {
  background: url(../images/bi/icon_spt_track.png) no-repeat top left;
  background-size: contain;
  width: 40px;
  height: 31px;
}
.service_accordion.two div:nth-child(2) dt:before {
  background: url(../images/bi/icon_spt_heart.png) no-repeat top left;
  background-size: contain;
  width: 38px;
  height: 34px;
}
.service_accordion.two div:nth-child(3) dt:before {
  background: url(../images/bi/icon_spt_break.png) no-repeat top left;
  background-size: contain;
  width: 39px;
  height: 41px;
}
.service_accordion.two div:nth-child(4) dt:before {
  background: url(../images/bi/icon_spt_tank.png) no-repeat top left;
  background-size: contain;
  width: 47px;
  height: 39px;
}

.service_accordion.two.faq div dt:before {
  background: url(../images/bi/icon_q.png) no-repeat top left;
  background-size: contain;
  width: 20px;
  height: 19px;
}

@media screen and (max-width: 767px) {
  .service_accordion.two div:first-child dt:before {
    width: calc(100vw * 54 / 750);
    height: calc(100vw * 43 / 750);
  }
  .service_accordion.two div:nth-child(2) dt:before {
    width: calc(100vw * 52 / 750);
    height: calc(100vw * 47 / 750);
  }
  .service_accordion.two div:nth-child(3) dt:before {
    width: calc(100vw * 53 / 750);
    height: calc(100vw * 56 / 750);
  }
  .service_accordion.two div:nth-child(4) dt:before {
    width: calc(100vw * 65 / 750);
    height: calc(100vw * 55 / 750);
    top: -5px;
  }
  .service_accordion.two dt {
    padding-left: 18px;
  }
}

section.interviewtwo {
  padding: 140px 0 0;
}

section.interviewtwo h2 {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto 60px;
  box-sizing: border-box;
}
section.interviewtwo h2 picture {
  width: 100%;
  max-width: 366px;
  display: block;
}

section.interviewtwo .cont {
  margin-bottom: 20px;
  padding-left: 20px;
}

section.interviewtwo ul {
  background: #94d1ca;
  padding: 50px 0;
  margin: 0 0 30px;
}

section.interviewtwo ul.list li {
  background: #fff;
  padding: 40px 50px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 40px;
  box-sizing: border-box;
}

section.interviewtwo ul.list li:last-child {
  margin-bottom: 0;
}

section.interviewtwo h3 {
  margin-bottom: 40px;
}

section.interviewtwo h3 img {
  width: auto;
}

section.interviewtwo .col {
  display: flex;
}

section.interviewtwo .col figure {
  flex-shrink: 0;
  margin: 0 60px 0 20px;
}

section.interviewtwo .col .child {
  flex-grow: 1;
}

section.interviewtwo .col .child p {
  font-size: 20px;
}

section.interviewtwo .col .child p span {
  font-weight: 400;
  color: #d56879;
}

section.interviewtwo .txt01 {
  width: 100%;
  max-width: 516px;
  display: block;
  margin: 0 auto;
}
ul.list-one {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 14px;
  color: #666;
}

@media screen and (max-width: 750px) {
  section.interviewtwo {
    padding: 60px 0 0;
  }
  section.interviewtwo h2 {
    width: calc(100vw * 513 / 750);
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto 40px;
    box-sizing: border-box;
    margin-left: 20px;
  }
  section.interviewtwo ul {
    padding: 30px 0;
    margin-bottom: 20px;
  }
  .features_slider.intv .slick-prev,
  .features_slider.intv .slick-next {
    top: 40% !important;
  }
  section.interviewtwo .txt01 {
    width: calc(100vw * 582 / 750);
    max-width: 100%;
    margin: 0 auto;
  }
  ul.list-one {
    padding-left: 3em;
    font-size: calc(100vw * 20 / 750);
    padding-right: 2rem;
    box-sizing: border-box;
  }
  .btn_area.two {
    margin-bottom: 20px;
  }
}

section.cooking {
  padding: 120px 0 0;
}

section.cooking .cont {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto 60px;
  padding-left: 20px;
  box-sizing: border-box;
}

section.cooking .cont02 {
  background: #d6efed;
  padding: 50px 20px 40px;
}

section.cooking h2 {
  width: 100%;
  max-width: 507px;
}

section.cooking .ttl01 {
  width: 100%;
  max-width: 457px;
  margin: 0 auto 30px;
}

section.cooking .txt01 {
  font-size: 20px;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto 50px;
  padding: 0 20px;
  box-sizing: border-box;
  font-weight: 300;
}

section.cooking .col {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

section.cooking .col .child {
  flex: 1;
  text-align: center;
}

section.cooking .col .child.two {
  margin-left: 70px;
}

section.cooking .col .child p {
  font-size: 17px;
  text-align: right;
}

@media screen and (max-width: 750px) {
  section.cooking h2 {
    width: calc(100vw * 468 / 750);
    max-width: 100%;
  }
  section.cooking .cont {
    padding-left: 20px;
    margin: 0 auto 30px;
  }
  section.cooking {
    padding: 60px 0 0;
  }
  section.cooking .ttl01 {
    width: calc(100vw * 649 / 750);
    max-width: 100%;
    margin: 0 auto 15px;
  }
  section.cooking .cont02 {
    padding: 30px 20px 20px;
  }
  section.cooking .txt01 {
    font-size: calc(100vw * 30 / 750);
    padding: 0;
    margin: 0 auto 30px;
  }
  section.cooking .col {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  section.cooking .col .child.two {
    margin-left: 0;
  }
  section.cooking .col .child {
    margin: 0 0 20px;
  }
}

section.inquiry {
  padding: 120px 0 0;
}

section.inquiry .cont {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto 90px;
  box-sizing: border-box;
  padding-left: 20px;
}

section.inquiry .cont01 {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  background: linear-gradient(to bottom, #fff 30%, #fcf6df 30%);
  padding: 0 20px 50px;
  box-sizing: border-box;
}

section.inquiry .cont02 {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

section.inquiry .cont02 .child {
  width: 40%;
  padding-right: 90px;
}

@media screen and (max-width: 1280px) {
  section.inquiry .cont02 .child {
    padding-right: 50px;
  }
}
@media screen and (max-width: 1080px) {
  section.inquiry .cont02 .child {
    padding-right: 30px;
  }
}

section.inquiry .cont02 .child.one picture {
  width: 100%;
  max-width: 486px;
  margin: 0 0 20px;
  display: block;
}

section.inquiry .cont02 .child.two {
  background: #fff;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 500px;
  flex: 0 0 auto;
  box-sizing: border-box;
}

section.inquiry .cont02 .child.one p {
  font-size: 20px;
  width: 100%;
  max-width: 487px;
  font-weight: 300;
}

section.inquiry .cont02 .child.two p {
  font-size: 17px;
  text-align: center;
  letter-spacing: -0.4px;
  margin: 0 0 20px;
}

section.inquiry .cont02 .child.two .btn {
  display: inline-block;
  border: 1px solid #303030;
  font-size: 20px;
  padding: 15px 50px;
  color: initial;
  border-radius: 100px;
}

section.inquiry .cont02 .child.two .btn:hover {
  text-decoration: none;
}

section.inquiry .cont02 .child.two .btn span {
  position: relative;
  display: block;
  padding-left: 30px;
}
section.inquiry .cont02 .child.two .btn span:before {
  content: "";
  position: absolute;
  background: url(../images/bi/icon_mail.png) no-repeat top left;
  background-size: contain;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 26px;
  height: 21px;
}

section.inquiry .cont02 .child.two .phone {
  display: block;
  margin: 0 auto 15px;
  width: 100%;
  max-width: 396px;
}

section.inquiry h2 {
  width: 100%;
  max-width: 331px;
}

@media screen and (max-width: 750px) {
  section.inquiry {
    padding: 60px 0 0;
  }
  section.inquiry h2 {
    width: calc(100vw * 459 / 750);
    max-width: 100%;
    padding-left: 20px;
  }
  section.inquiry .cont {
    margin: 0 auto 40px;
  }
  section.inquiry .cont01 {
    padding: 0;
    background: none;
  }
  section.inquiry .cont02 {
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
  }
  section.inquiry .cont02 .child {
    width: auto;
    padding-right: 0;
  }
  section.inquiry .cont02 .child.one p {
    font-size: calc(100vw * 30 / 750);
    padding: 0 20px 20px;
    box-sizing: border-box;
  }
  section.inquiry .cont02 .child.two {
    padding: 20px 20px;
    display: block;
    width: 90%;
    background: #fcf6df;
    box-sizing: border-box;
    text-align: center;
  }
  section.inquiry .cont02 .child.two p {
    font-size: calc(100vw * 25 / 750);
  }
  section.inquiry .cont02 .child.two .btn span {
    font-size: calc(100vw * 26 / 750);
    padding-left: 26px;
  }
  section.inquiry .cont02 .child.two .btn {
    padding: 15px 30px;
  }
  section.inquiry .cont02 .child.two .btn span:before {
    width: 18px;
    height: 16px;
  }
}

section.faqtwo {
  padding: 140px 0 0;
}
section.faqtwo h2 {
  width: 100%;
  max-width: 222px;
}
section.faqtwo h2 picture {
}
section.faqtwo .cont {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto 90px;
  box-sizing: border-box;
  padding-left: 20px;
}
section.faqtwo .cont02 {
  background: #eee;
  padding: 50px 20px;
}

.service_accordion.two.faq {
  background: #fff;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.service_accordion.two.faq div dt:before {
  left: -35px;
}

.service_accordion.two.faq dl {
  padding-right: 20px;
}

.service_accordion.two.faq dd p.one {
  margin-bottom: 10px;
}

.service_accordion.two.faq dd p.one span {
  font-size: 1.5em;
  display: block;
  font-weight: 400;
}

.service_accordion.two.faq dd,
.service_accordion.two.faq dd p {
  font-size: 18px;
  font-weight: 300;
}

.service_accordion.two.faq dd a.txt {
  color: initial;
  text-decoration: underline;
}

section.camdetail {
  padding: 100px 20px;
  width: 100%;
  max-width: 1040px;
  box-sizing: border-box;
  margin: 0 auto;
}

section.camdetail h2 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 30px;
  background: #94d1ca;
  color: #fff;
  padding: 18px 10px;
}

section.camdetail p {
  font-weight: 300;
}

section.camdetail p.lg.ttltwo {
  font-size: 20px;
  font-weight: 400;
}

section.camdetail p.lg {
  font-size: 18px;
  margin-bottom: 10px;
}

section.camdetail p.lg.lgone {
  margin-bottom: 30px;
  letter-spacing: 0.4px;
}

section.camdetail p.ttl {
  font-size: 20px;
  color: #5db9ae;
  margin-bottom: 10px;
  font-weight: 400;
}

section.camdetail p.one {
  font-size: 16px;
  margin-bottom: 5px;
  padding-left: 1em;
  text-indent: -1em;
}

section.camdetail p.one.last,
section.camdetail p.lg.last {
  margin-bottom: 30px;
}

section.camdetail ul.list-two {
  padding-left: 15px;
  margin: 0 0 20px;
}

section.camdetail ul.list-two li {
  padding-left: 1em;
  text-indent: -1em;
  font-weight: 300;
  margin: 0 0 5px;
}

section.camdetail ul.list-one li {
  margin-bottom: 5px;
}

.service_accordion.two.faq dl br.sp {
  display: none;
}

section.aboutus {
  width: 100%;
  max-width: 940px;
  box-sizing: border-box;
  padding: 40px 20px 100px;
  margin: 0 auto;
}

section.aboutus h2 {
  margin: 0 auto 60px;
  width: 100%;
  max-width: 200px;
}

section.aboutus ul.list {
  list-style-type: none;
  padding: 0;
}

section.aboutus ul.list li {
  padding: 20px 20px;
  border-top: 1px solid #dedede;
  display: flex;
  align-items: center;
}

section.aboutus ul.list li:last-child {
  border-bottom: 1px solid #dedede;
}

section.aboutus ul.list li p.ttl,
section.aboutus ul.list li p.txt {
  font-size: 18px;
  font-weight: 300;
}

section.aboutus ul.list li p.ttl {
  width: 25%;
}

section.aboutus ul.list li p.txt {
  width: 75%;
}

@media screen and (max-width: 750px) {
  .service_accordion.two.faq dl br.sp {
    display: inline-block;
  }
  section.faqtwo {
    padding: 60px 0 0;
  }
  section.faqtwo .cont {
    margin: 0 auto 30px;
  }
  section.faqtwo h2 {
    width: calc(100vw * 314 / 750);
    max-width: 100%;
    padding-left: 20px;
  }
  section.faqtwo .cont02 {
    padding: 20px 20px;
  }
  .service_accordion.two div dt:before {
    top: 1px;
    bottom: auto;
    left: -25px;
  }
  .service_accordion.two.faq dl {
    padding-right: 15px;
  }
  .service_accordion.two dl {
    padding: 15px 0 15px 40px;
  }
  .service_accordion.two.faq dt {
    font-size: calc(100vw * 24 / 750);
  }
  .service_accordion.two.faq dd,
  .service_accordion.two.faq dd p {
    font-size: calc(100vw * 23 / 750);
  }
  .service_accordion.two dl {
    padding: 15px 0 15px 28px;
  }
  .service_accordion dt {
    padding-left: 10px;
  }
  .service_accordion.two.faq div dt:before {
    left: -10px;
  }
  .service_accordion dd {
    padding-top: 10px;
  }
  .service_accordion.two.faq div dt:before {
    width: calc(100vw * 27 / 750);
    height: calc(100vw * 27 / 750);
  }
  section.camdetail {
    padding: 50px 20px 0;
  }
  section.camdetail h2 {
    font-size: calc(100vw * 32 / 750);
    padding: 10px 5px;
    margin-bottom: 15px;
  }
  section.camdetail p.lg.ttltwo {
    font-size: calc(100vw * 30 / 750);
  }
  section.camdetail p.lg,
  section.camdetail p.ttl {
    font-size: calc(100vw * 28 / 750);
  }
  section.camdetail p.one,
  section.camdetail ul.list-two li {
    font-size: calc(100vw * 26 / 750);
  }
  section.aboutus {
    padding: 40px 20px 40px;
  }
  section.aboutus h2 {
    margin: 0 auto 30px;
    width: calc(100vw * 275 / 750);
    max-width: 100%;
  }
  section.aboutus ul.list li p.ttl,
  section.aboutus ul.list li p.txt {
    font-size: calc(100vw * 24 / 750);
  }
  section.aboutus ul.list li {
    padding: 15px 20px;
  }

  #footer .logo {
    margin: 0 auto 15px;
  }
  #footer .menu li a {
    padding: 10px 0;
  }
  #footer .menu li a {
    padding: 5px 0;
  }
  #footer .menu li {
    border-bottom: none;
  }
  #footer .menu {
    margin-bottom: 20px;
  }
  #footer .copy {
    color: #fff;
  }
}

/* --- new --- */
.new .new_blc {
  position: relative;
}

.new_blc .txt_btn {
  width: 94%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.new_blc01 .txt_btn {
  bottom: 14%;
}

.new_blc02 .txt_btn {
  bottom: 12%;
}

.new_blc03 .txt_btn {
  bottom: 10%;
}

.new_blc_txt {
  font-size: calc(100vw * 24 / 750);
  line-height: 2.3;
  letter-spacing: 0.1em;
  font-weight: 300;
  transform: translateY(-50%);
  position: absolute;
}

.new_blc_txt.is-01 {
  top: 70%;
  right: calc(100vw * 75 / 750);
}

.new_blc_txt.is-02 {
  top: 63%;
  left: calc(100vw * 72 / 750);
}

.new_blc_txt.is-03 {
  top: 62%;
  right: calc(100vw * 15 / 750);
}

.new_blc_txt .is-weight {
  font-weight: 400;
}

@media screen and (min-width: 1025px) {
  .new h2 {
    max-width: 1000px;
    margin: 0 auto;
  }

  .new .new_blc {
    max-width: 1400px;
    margin: 0 auto;
  }

  .new_blc .txt_btn {
    width: 36%;
    max-width: 500px;
    position: absolute;
    transform: none;
  }

  .new_blc01 .txt_btn {
    left: 50%;
    bottom: 14.33%;
  }

  .new_blc02 .txt_btn {
    left: 14.28%;
    bottom: 11.43%;
  }

  .new_blc03 .txt_btn {
    left: 50%;
    bottom: 24%;
  }

  .new_blc_txt {
    font-size: clamp(16px, 1.42857vw, 20px);
  }

  .new_blc_txt.is-01 {
    top: 62%;
    right: 17%;
  }

  .new_blc_txt.is-02 {
    top: 56%;
    left: 14%;
  }

  .new_blc_txt.is-03 {
    top: 44.5%;
    right: 9.5%;
  }
}

/* --- daily --- */
.daily {
  margin-bottom: 60px;
}
.daily .bg {
  /*  background: url("../images/daily_bg.jpg") no-repeat center; */
  background: url("../images/daily_bg.webp") no-repeat center;
  background-size: cover;
  margin-bottom: 15px;
}
.daily p {
  font-size: 14px;
  color: #949494;
  line-height: 1.8;
  padding-left: calc(2% + 35px);
  padding-right: 2%;
  position: relative;
}
.daily p::before {
  content: "※1.";
  position: absolute;
  left: 2%;
  top: 0;
}

@media screen and (min-width: 1025px) {
  .daily {
    max-width: 1400px;
    margin: 0 auto 130px;
  }
  .daily .bg img {
    max-width: 1000px;
    margin: 0 auto;
  }
  .daily p {
    max-width: 1000px;
    font-size: 16px;
    padding: 0;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .daily p::before {
    position: static;
  }
}

/* --- scene --- */
.scene_slider li {
}
.scene_slider .slick-prev,
.scene_slider .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 10px;
  height: 15px;
  cursor: pointer;
  color: transparent;
  padding: 0;
  border: none;
  z-index: 2;
}
.scene_slider .slick-prev {
  left: 2%;
  background: url("../images/arrow_prev.png") no-repeat center;
  background-size: contain;
}
.scene_slider .slick-next {
  right: 2%;
  background: url("../images/arrow_next.png") no-repeat center;
  background-size: contain;
}
.scene_block {
  position: relative;
}

.scene_block-txt {
  font-size: calc(100vw * 24 / 750);
  text-align: center;
  left: 0;
  width: 100%;
  line-height: 2.1;
  letter-spacing: 0.018em;
  position: absolute;
  font-weight: 200;
}

.scene_block-txt.is-01 {
  bottom: 4%;
}

.scene_block-txt.is-02 {
  bottom: 3%;
}

.scene_block-txt.is-03 {
  bottom: 3%;
}

.scene_block-txt .is-space {
  margin-bottom: 1em;
  display: inline-block;
}
@media screen and (min-width: 1025px) {
  .scene_slider,
  .scene .pc_area {
    max-width: 1000px;
    margin: 0 auto;
  }
  .scene_slider .slick-prev,
  .scene_slider .slick-next {
    width: 20px;
    height: 29px;
  }
  .scene_slider .slick-prev {
    left: -42px;
  }
  .scene_slider .slick-next {
    right: -42px;
  }
  .scene_block-txt {
    font-size: 20px;
    text-align: left;
    transform: none;
  }

  .scene_block-txt.is-02 {
    left: 50px;
    bottom: 85px;
  }

  .scene_block-txt.is-03 {
    max-width: 385px;
    left: auto;
    right: 67px;
    bottom: 54px;
  }
}

/* --- point --- */
.point_sp {
  padding-bottom: 30px;
  background: #f6f6f6;
}
.point_sp .txt_btn {
  width: 94%;
  margin: 0 auto;
}
.point_sp .slick-prev,
.point_sp .slick-next {
  position: absolute;
  top: 25%;
  display: block;
  width: 10px;
  height: 15px;
  cursor: pointer;
  color: transparent;
  padding: 0;
  border: none;
  z-index: 2;
}
.point_sp .slick-prev {
  left: 4%;
  background: url("../images/arrow_prev.png") no-repeat center;
  background-size: contain;
}
.point_sp .slick-next {
  right: 4%;
  background: url("../images/arrow_next.png") no-repeat center;
  background-size: contain;
}
.point_block-txt {
  font-size: calc(100vw * 24 / 750);
  padding: 0 11px;
  text-align: center;
  letter-spacing: 0.14em;
  line-height: 2.22;
  font-weight: 300;
}
section.design {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 60px 20px 120px;
}
section.design h2 {
  width: 100%;
  max-width: 594px;
  margin: 0 0 70px;
}

@media screen and (min-width: 1025px) {
  .point h3 {
    max-width: 1000px;
    margin: 0 auto;
  }
  .point_pc {
    position: relative;
  }
  .point_pc::after {
    content: "";
    display: block;
    width: 100%;
    height: 79.34%;
    background: #f6f6f6;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .point_pc ul {
    width: 94%;
    max-width: 1038px;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative;
    z-index: 1;
  }
  .point_pc li {
    width: 30%;
    max-width: 308px;
    padding-bottom: 50px;
  }
  .point_block-txt {
    font-size: clamp(16px, 1.285vw, 18px);
    padding: 0 11px;
    text-align: left;
    letter-spacing: 0.01em;
  }

  .point_block-txt.is01 {
    padding: 0 24px;
  }
}

@media screen and (max-width: 750px) {
  section.design h2 {
    width: calc(100vw * 494 / 750);
    margin-bottom: 30px;
  }
  section.design {
    padding: 30px 20px 40px;
    box-sizing: border-box;
  }
}

/* --- triple--- */
.triple {
  background: url("../images/triple_sp_bg.gif") no-repeat center bottom;
  background-size: 100% auto;
}

@media screen and (min-width: 1025px) {
  .triple {
    max-width: 1400px;
    margin: 0 auto;
    background: url("../images/triple_pc_bg.gif") no-repeat center bottom;
    background-size: 100% auto;
  }
  .triple .pc_area {
    max-width: 1000px;
    margin: 0 auto;
  }
}

/* --- filter --- */
.filter .sp_area ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 94.66%;
  margin: 0 auto;
  padding-bottom: 30px;
  border-bottom: #e3e3e3 1px solid;
}

.filter .sp_area li {
  width: 47.88%;
}

.filter_lbox-img {
  text-align: center;
  background-color: #fff;
}

.filter_lbox-obj {
  background-color: #fff;
  padding: 20px 20px 50px;
}

@media print, screen and (min-width: 768px) {
  .m-safety01__detail01__in {
    max-width: 860px;
    margin-right: auto;
    margin-left: auto;
  }
  .m-safety01__detail01__in.add1200 {
    max-width: 1200px;
  }
}

.m-safety01__detail01__head {
  position: relative;
  padding: 16px;
  background-color: #65beae;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

@media print, screen and (min-width: 768px) {
  .m-safety01__detail01__head {
    padding: 18px;
    font-size: 20px;
  }
}

.m-safety01__detail01__head.is-acc-open01:before {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.m-safety01__detail01__list {
}

.m-safety01__detail01__list dl {
  padding: 7px 14px;
}

.m-safety01__detail01__list dl:not(:first-child) {
}

@media print, screen and (min-width: 768px) {
  .m-safety01__detail01__list dl {
    padding: 10px 28px;
  }
}

.m-safety01__detail01__list dl dt {
  padding: 12px 0;
  font-size: 15px;
  font-weight: 400;
}

@media print, screen and (min-width: 768px) {
  .m-safety01__detail01__list dl dt {
    padding: 12px 0 0;
    font-size: 17px;
  }
}

@media print, screen and (max-width: 767px) {
  .m-safety01__detail01__list dl dt {
    padding: 12px 0 0;
  }
}

.m-safety01__detail01__list dl dd {
  padding: 12px 0;
  font-size: 13px;
  font-weight: 300;
}

@media print, screen and (min-width: 768px) {
  .m-safety01__detail01__list dl dd {
    padding: 12px 0 0;
    font-size: 16px;
  }
}

@media print, screen and (max-width: 767px) {
  .m-safety01__detail01__list dl dd {
    padding: 5px 0 0;
  }
}

@media print, screen and (max-width: 767px) {
  .m-safety01__detail01__list > p {
    font-size: 13px;
  }
}

.m-safety01__detail01__list a {
  text-decoration: underline;
}

@media screen and (min-width: 1025px) {
  .filter .pc_area {
    max-width: 1000px;
    margin: 0 auto;
  }
  .filter .pc_area ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding-bottom: 60px;
    border-bottom: #e3e3e3 1px solid;
  }
  .filter .pc_area li {
    width: 47.4%;
  }
}

/* --- can --- */
@media screen and (min-width: 1025px) {
  .can .pc_area .bg {
    max-width: 1400px;
    margin: 0 auto;
    background: url("../images/can_bg_pc.gif") no-repeat center;
    background-size: 1400px auto;
  }
  .can .pc_area img {
    display: block;
    max-width: 1000px;
    margin: 0 auto;
  }
}

/* --- price --- */
@media screen and (min-width: 1025px) {
  .price .pc_area h3 {
    max-width: 1400px;
    margin: 0 auto;
    background: #f6f6f6;
  }
  .price .pc_area img {
    max-width: 1000px;
    margin: 0 auto;
    display: block;
  }
}

/* --- cta --- */
.cta_blc {
  position: relative;
}
/*.cta_blc .txt_btn {
  width: 86%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 7%;
}
.cta_blc .txt_btn a {
  background: #fdce05 url("../images/arrow_btn.png") no-repeat center right 15px;
  background-size: 10px 15px;
}*/
.cta_blc .cta_btn {
  width: 92%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 6%;
  /*
  bottom: 11%;
  */
}
.cta_blc .cta_notes {
  position: absolute;
  bottom: 3vw;
  left: 5vw;
  right: 5vw;
  font-size: 3vw;
  line-height: 1.3;
  letter-spacing: 0;
}

@media screen and (min-width: 1025px) {
  .cta .pc_area {
    max-width: 1000px;
    margin: 0 auto;
  }
  /*.cta_blc .txt_btn {
    width: 64%;
    bottom: 10%;
  }
  .cta_blc .txt_btn a {
    font-size: 20px;
    transition: 0.3s;
  }
  .cta_blc .txt_btn a:hover {
    transition: 0.3s;
    background: #fed939 url("../images/arrow_btn.png") no-repeat center right 15px;
    background-size: 10px 15px;
  }*/
  .cta_blc .cta_btn {
    width: 64%;
    bottom: 7%;
    transition: 0.3s;
  }
  .cta_blc .cta_btn:hover {
    transition: 0.3s;
    opacity: 0.8;
  }
  .cta_blc .cta_notes {
    bottom: 4%;
    left: 18%;
    right: 18%;
    font-size: 14px;
  }
}

/* --- function --- */
.function .sp_area .function_img {
  position: relative;
}
.function .sp_area .function_img .btn {
  position: absolute;
  left: 7.73%;
}
.function .sp_area .function_img .btn01 {
  width: 21.6%;
  top: 18.18%;
}
.function .sp_area .function_img .btn02 {
  width: 23.86%;
  top: 33.23%;
}
.function .sp_area .function_img .btn03 {
  width: 24.53%;
  top: 51.01%;
}
.function .sp_area .function_img .btn04 {
  width: 32.26%;
  top: 66.06%;
}
.function .sp_area .function_img .btn05 {
  width: 19.86%;
  top: 83.73%;
}
.function .function01 .function_tab_area {
  width: 94%;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.function .function01 .function_tab {
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 1.4;
  padding: 10px 25px;
  border: #949494 1px solid;
  background: #949494 url("../images/arrow_btn_btm.png") no-repeat center right
    10px;
  background-size: 8px auto;
  box-sizing: border-box;
  border-radius: 15px;
  transition: 0.3s;
}
.function .function01 .function_tab:nth-child(1) {
  width: 40%;
}
.function .function01 .function_tab:nth-child(2) {
  width: 56%;
}
.function .function01 .function_tab.active {
  background: #fff url("../images/arrow_btn_top.png") no-repeat center right
    10px;
  background-size: 8px auto;
  color: #949494;
  transition: 0.3s;
}
.function .function01 .function_content_area {
  width: 94%;
  margin: 0 auto;
}
.function .function01 .function_tab_content {
  display: none;
  transition: 0.3s;
}
.function .function01 .function_tab_content.show {
  margin-top: 30px;
  display: block;
  transition: 0.3s;
}
.function .function01 .function_tbl {
  width: 100%;
  margin-bottom: 10px;
}
.function .function01 .function_tbl th,
.function .function01 .function_tbl td {
  font-size: 14px;
  font-weight: 400;
  padding: 10px;
}
.function .function01 .function_tbl thead th {
  color: #fff;
  text-align: center;
  background: #66bfaf;
}
.function .function01 .function_tbl tbody th,
.function .function01 .function_tbl tbody td {
  border: #d9d9d9 1px solid;
}
.function .function01 .function_tbl tbody th {
  background: #eaeaea;
}
.function .function01 .function_tbl tbody td {
  font-size: 13px;
}
.function .function01 .function_tbl_txt li {
  font-size: 12px;
  line-height: 1.8;
  padding-left: 1.5em;
  position: relative;
}
.function .function01 .function_tbl_txt li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.function .function01 .function-acdn-btn {
  color: #fff;
  text-align: center;
  background: #66bfaf;
  font-size: 16px;
  padding: 25px 20px;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
}

.function .function01 .function-acdn-btn:hover {
  cursor: pointer;
}

.function .function01 .function-acdn-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 10px;
  height: 10px;
  border-right: #fff 2px solid;
  border-bottom: #fff 2px solid;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

.function .function01 .function-acdn-btn.show::after {
  transform: translateY(-50%) rotate(-135deg);
}

@media screen and (max-width: 750px) {
  .function .function01 .function-acdn-btn {
    font-size: 13px;
    font-weight: 400;
    padding: 10px;
    line-height: 1.6;
  }

  .function .function01 .function-acdn-btn::after {
    width: 8px;
    height: 8px;
    right: 15px;
  }

  .function .function01 .function_content_area {
    width: 100%;
  }

  .function.two .function01 .function-acdn-btn {
    font-size: calc(100vw * 25 / 750);
  }
}

.function .function02__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border-bottom: #e3e3e3 1px solid;
  padding-bottom: 70px;
  padding-top: 70px;
}

.function .function02__inner.two {
  padding-bottom: 0;
  border-bottom: none;
}

.function02.two {
  border-bottom: #e3e3e3 1px solid;
  padding-bottom: 70px;
}

.function .function02__inner.is-revers {
  flex-direction: row-reverse;
}

.function .function02__inner.is-revers .function02__txt {
  margin-left: -3%;
}

.function .function02__inner .function02__img {
  width: 43.2%;
}

.function .function02__inner .function02__txt {
  width: 53.1%;
}

.function .function02__inner .function02__txt .is-txt {
  margin-left: 8%;
  padding-top: 65px;
  font-size: 20px;
  font-weight: 200;
}

.function .function02__inner .function02__txt .is-txt {
  position: relative;
}

.function .function02__inner .function02__txt .is-txt.is-none::after {
  display: none;
}

.function .function02__inner .function02__txt .is-txt::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: #cacaca;
}

.function .is-underline {
  background: linear-gradient(transparent 60%, #fcf3cb 30%);
}

.function .function03 .function03_img {
  width: 81.06%;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.function .function03 .function_tab_area {
  width: 8.22%;
}
.function .function03 .function_tab {
  border-radius: 0 6px 6px 0;
  background: #acacac;
  transition: 0.3s;
  margin: 5px 0;
}
.function .function03 .function_tab.active {
  background: #424242;
  transition: 0.3s;
}
.function .function03 .function_content_area {
  width: 91.78%;
}
.function .function03 .function_tab_content {
  display: none;
  transition: 0.3s;
}
.function .function03 .function_tab_content.show {
  margin-top: 0;
  display: block;
  transition: 0.3s;
}
.function .function04 .anime {
  width: 74.66%;
  margin: 0 auto;
}
.function05 .function05_ttl {
  margin-bottom: calc(100vw * 55 / 750);
}

.function05 .function05_txt {
  margin-bottom: calc(100vw * 115 / 750);
  padding-left: calc(100vw * 20 / 750);
  padding-right: calc(100vw * 20 / 750);
  font-size: calc(100vw * 24 / 750);
  font-weight: 100;
  line-height: 2.166;
}

@media screen and (min-width: 1025px) {
  .function {
    margin-top: 70px;
  }
  .function .pc_area h2 {
    max-width: 1400px;
    margin: 0 auto;
    background: #f6f6f6;
  }
  .function .pc_area h2 img {
    max-width: 1000px;
    margin: 0 auto;
    display: block;
  }
  .function .function01 {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
  }
  .function .function01 .function_img {
    position: relative;
  }
  .function .function01 .function_img .btn {
    position: absolute;
  }
  .function .function01 .function_img .btn01 {
    width: 15.6%;
    top: 22.5%;
    left: 0;
  }
  .function .function01 .function_img .btn02 {
    width: 19.2%;
    top: 47.5%;
    left: 0;
  }
  .function .function01 .function_img .btn03 {
    width: 19.2%;
    top: 75.14%;
    left: 0;
  }
  .function .function01 .function_img .btn04 {
    width: 26.6%;
    top: 31.02%;
    right: 5.9%;
  }
  .function .function01 .function_img .btn05 {
    width: 15.8%;
    top: 66.32%;
    right: 16.7%;
  }
  .function .function01 .function_tab_area {
    width: 100%;
  }
  .function .function01 .function_tab,
  .function .function01 .function_tab:nth-child(1),
  .function .function01 .function_tab:nth-child(2) {
    width: 47.4%;
    font-size: 20px;
    padding: 20px 45px;
    background: #949494 url("../images/arrow_btn_btm.png") no-repeat center
      right 25px;
    background-size: 10px auto;
    border-radius: 100vh;
    cursor: pointer;
  }
  .function .function01 .function_tab.active {
    background: #fff url("../images/arrow_btn_top.png") no-repeat center right
      25px;
    background-size: 10px auto;
  }
  .function .function01 .function_content_area {
    width: 100%;
  }
  .function .function01 .function_tab_content.show {
    margin-top: 40px;
  }
  .function .function01 .function_tbl {
    width: 100%;
    margin: 0 auto 15px;
  }
  .function .function01 .function_tbl th,
  .function .function01 .function_tbl td {
    font-size: 16px;
    padding: 25px 20px;
  }
  .function .function01 .function_tbl tbody td {
    font-size: 14px;
  }
  .function .function01 .function_tbl_txt {
    width: 91%;
    margin: 0 auto;
  }
  .function .function02 {
    max-width: 1000px;
    margin: 0 auto;
  }
  .function .function03 {
    max-width: 1000px;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    border-bottom: #e3e3e3 1px solid;
  }
  .function .function03 .lft_blc {
    width: 53.1%;
    margin-left: -3%;
  }
  .function .function03 .rgt_blc {
    width: 43.2%;
  }
  .function .function03 .function03_img {
    width: 100%;
    display: block;
  }
  .function .function03 .function_tab_area {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .function .function03 .function_tab {
    width: 41.66%;
    border-radius: 12px 12px 0 0;
    margin: 0 5px;
    cursor: pointer;
  }
  .function .function03 .function_tab.active {
    background: #424242;
    transition: 0.3s;
  }
  .function .function03 .function_content_area {
    width: 100%;
  }
  .function .function04 {
    max-width: 1000px;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    border-bottom: #e3e3e3 1px solid;
  }
  .function .function04 .lft_blc {
    width: 43.2%;
  }
  .function .function04 .rgt_blc {
    width: 52.7%;
  }
  .function .function05 {
    max-width: 1000px;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    border-bottom: #e3e3e3 1px solid;
  }
  .function .function05 .lft_blc {
    width: 54.1%;
    margin-left: -3%;
  }
  .function .function05 .rgt_blc {
    width: 43.2%;
    padding-top: 9.43%;
  }
  p.add-txt-02 {
    width: 100%;
    font-size: 16px;
    margin: 40px 0 0;
    color: #828282;
  }
  .function .function06 {
    max-width: 1000px;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    border-bottom: #e3e3e3 1px solid;
  }
  .function .function06 .lft_blc {
    width: 43.2%;
  }
  .function .function06 .rgt_blc {
    width: 52.7%;
  }
}

/* --- voice --- */
.voice__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.voice__block {
  margin-top: 50px;
  padding-bottom: 50px;
}

.voice__block:first-child {
  border-bottom: 1px solid #cacaca;
}

.voice__block-ttl {
  margin-bottom: 15px;
  position: relative;
}

.voice__block-text .is-weight {
  font-weight: 400;
}

.voice__block-text {
  font-size: clamp(14px, 3.2vw, 24px);
  font-weight: 300;
}

.voice__inner {
  padding-left: calc(100vw * 20 / 750);
  padding-right: calc(100vw * 20 / 750);
}

@media screen and (min-width: 1025px) {
  .voice h3 {
    max-width: 1000px;
    margin: 0 auto;
  }

  .voice img,
  .voice .no1 {
    max-width: 1400px;
    margin: 0 auto;
    display: block;
  }

  .voice .no1 {
    max-width: 1000px;
  }

  .voice__block-text {
    font-size: 18px;
    line-height: 2.2;
    letter-spacing: 0.018em;
  }

  .voice__block-ttl {
    margin-bottom: 48px;
  }

  .voice__block-ttl::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 260px;
    height: 1px;
    background-color: #cacaca;
  }

  .voice__block-ttl.is-01::after {
    left: 0;
  }

  .voice__block-ttl.is-02::after {
    right: 0;
  }
}

/* --- service --- */
.service {
  margin-top: 40px;
  background: #f6f6f6;
}
.service_accordion {
  width: 94%;
  margin: 10px auto 0;
}
.service_accordion dl {
  padding: 20px 0;
  border-bottom: #b1b1b1 1px solid;
}
.service_accordion dt {
  font-size: 16px;
  background: url("../images/arrow_btn_btm_gry.png") no-repeat center right 10px;
  background-size: 10px auto;
  padding-right: 30px;
}
.service_accordion dt.open {
  background: url("../images/arrow_btn_top.png") no-repeat center right 10px;
  background-size: 10px auto;
}
.service_accordion dd {
  font-size: 14px;
  padding-top: 5px;
}

@media screen and (min-width: 1025px) {
  .service {
    max-width: 1400px;
    margin: 100px auto 0;
  }
  .service img {
    max-width: 1000px;
    margin: 0 auto;
    display: block;
  }
  .service_accordion {
    max-width: 1000px;
    margin: 60px auto 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .service_accordion div {
    width: 45%;
  }
  .service_accordion dl {
    padding: 30px 0;
  }
  .service_accordion dt {
    font-size: 20px;
    background: url("../images/arrow_btn_btm_gry.png") no-repeat center right;
    background-size: 16px auto;
  }
  .service_accordion dt.open {
    background: url("../images/arrow_btn_top.png") no-repeat center right;
    background-size: 16px auto;
  }
  .service_accordion dd {
    font-size: 16px;
    padding-top: 20px;
  }
}

/* --- faq --- */
.faq_accordion {
  width: 94%;
  margin: 0 auto;
}
.faq_accordion dl {
  padding-left: 55px;
  background: url("../images/q.png") no-repeat top 3px left;
  background-size: 40px;
}
.faq_accordion dt {
  padding: 10px 30px 10px 0;
  border-bottom: #acacac 1px solid;
  position: relative;
}
.faq_accordion dt::before,
.faq_accordion dt::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #424242;
}
.faq_accordion dt::before {
  width: 9px;
  height: 1px;
  right: 10px;
}
.faq_accordion dt::after {
  width: 1px;
  height: 9px;
  right: 14px;
}
.faq_accordion dt.open::after {
  display: none;
}
.faq_accordion dd {
  padding: 20px 0;
  overflow-wrap: break-word;
}

@media screen and (min-width: 1025px) {
  .faq {
    max-width: 1000px;
    margin: 0 auto;
  }
  .faq_accordion {
    width: 100%;
  }
  .faq_accordion dl {
    padding-left: 115px;
    background: url("../images/q.png") no-repeat top 5px left;
    background-size: 90px;
  }
  .faq_accordion dt {
    font-size: 24px;
    padding: 30px 0;
  }
  .faq_accordion dt::before {
    width: 21px;
    height: 1px;
    right: 20px;
  }
  .faq_accordion dt::after {
    width: 1px;
    height: 21px;
    right: 30px;
  }
  .faq_accordion dd {
    font-size: 20px;
    padding: 20px 0 40px;
  }
}

/* ======================================================

   block

========================================================= */
.anc_blc {
  margin-top: -60px;
  padding-top: 60px;
}

@media screen and (min-width: 1025px) {
  .anc_blc {
    margin-top: -80px;
    padding-top: 80px;
  }
}

/* ======================================================

   button

========================================================= */
.txt_btn {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.txt_btn a {
  display: block;
  text-decoration: none;
  padding: 15px 40px;
  color: #fff;
  background: #949494 url("../images/arrow_btn.png") no-repeat center right 15px;
  background-size: 10px 15px;
  border-radius: 100vh;
}

@media screen and (min-width: 1025px) {
  .txt_btn a {
    font-size: 20px;
    transition: 0.3s;
  }
  .txt_btn a:hover {
    transition: 0.3s;
    background: #424242 url("../images/arrow_btn.png") no-repeat center right
      15px;
    background-size: 10px 15px;
  }
}
/* ======================================================

   スライド部分文字調節

========================================================= */

.slick-track {
  display: flex !important;
}
.slick-slide {
  height: auto !important;
}

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

._karte-g__60zA_ ._karte-temp-card__60zA_ {
  box-shadow: none !important;
}

/* ======================================================

   プレゼントキャンペーン

========================================================= */

.c-present {
  margin-bottom: 8.75vw;
}
.c-present__in {
  position: relative;
}
.c-present__img img {
  display: block;
  max-width: 947px;
  margin: 0 auto;
  width: auto;
}
.c-present__link01,
.c-present__link02 {
  position: absolute;
  display: block;
  left: calc(100% * 134 / 750);
  width: calc(100% * 486 / 750);
  background-color: #fff;
  opacity: 0;
  transition: opacity 0.2s;
}
.c-present__link01:hover,
.c-present__link02:hover {
  opacity: 0.2;
}
.c-present__link01 {
  top: calc(100% * 1455 / 2022);
  height: calc(100% * 100 / 2022);
}
.c-present__link02 {
  top: calc(100% * 2255 / 2960);
  height: calc(100% * 120 / 2960);
}
.c-present__link01 .alt,
.c-present__link02 .alt {
  display: none;
}
@media screen and (min-width: 751px) {
  .c-present {
    max-width: 960px;
    padding: 0 30px;
    margin: 0 auto 98px;
  }
  .c-present__link01,
  .c-present__link02 {
    left: calc(100% * 519 / 1400);
    width: calc(100% * 360 / 1400);
  }
  .c-present__link01 {
    top: calc(100% * 850 / 1280);
    height: calc(100% * 70 / 1280);
  }
  .c-present__link02 {
    top: calc(100% * 927 / 1145);
    height: calc(100% * 70 / 1145);
  }
}

.c-presentModal {
  display: flex;
  visibility: hidden;
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  max-height: calc(var(--vh, 1vh) * 100);
  max-height: 100dvh;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s, z-index 0.3s;
}

.c-presentModal.is-modalShow {
  visibility: visible;
  z-index: 10000000000;
  opacity: 1;
  pointer-events: auto;
}

.c-presentModal__contents {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 37px 15px 41px;
  overflow: auto;
}

@media only screen and (max-width: 750px) {
  .c-presentModal__contents {
    padding: 0;
  }
  .c-present__img img {
    width: 100%;
  }
}

.c-presentModal__inner {
  position: relative;
  align-self: flex-start;
  width: 100%;
  max-width: 900px;
}

.c-presentModal__inner.is-modalCenter {
  -ms-grid-row-align: center;
  align-self: center;
}

.c-presentModal__blc {
  overflow: hidden;
  background: #ffffff;
}

.c-presentModal__area {
  padding: 95px 100px 50px;
}

@media only screen and (max-width: 750px) {
  .c-presentModal__area {
    padding: 52px 25px 30px;
  }
}

.c-presentModal__close {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  top: 38px;
  right: 38px;
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
}

@media only screen and (max-width: 750px) {
  .c-presentModal__close {
    top: 15px;
    right: 15px;
    width: 15px;
    height: 15px;
  }
}

.c-presentModal__close:hover {
  cursor: pointer;
  opacity: 0.8;
}

.c-presentModal__close span {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #898989;
}

.c-presentModal__close span:first-child {
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.c-presentModal__close span:last-child {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.c-presentModal__ttl {
  /*
  color: #3ac4b0;
  */
  color: #027dc3;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

@media only screen and (max-width: 750px) {
  .c-presentModal__ttl {
    font-size: 21px;
  }
}

.c-presentModal__body {
  margin-top: 32px;
}

@media only screen and (max-width: 750px) {
  .c-presentModal__body {
    margin-top: 20px;
  }
}

.c-presentModal__body dl {
  margin: 0;
}

.c-presentModal__body dl dt {
  padding: 0.6em 0.8em;
  /*
  background-color: #ebf9f7;
  color: #3ac4b0;
  */
  background-color: #ebf6f9;
  color: #027dc3;
  font-size: 18px;
  font-weight: 700;
}

@media only screen and (max-width: 750px) {
  .c-presentModal__body dl dt {
    font-size: 14px;
  }
}

.c-presentModal__body dl dd {
  padding: 1.5em 0;
  margin: 0;
  font-size: 16px;
  line-height: 1.875;
}

@media only screen and (max-width: 750px) {
  .c-presentModal__body dl dd {
    font-size: 13px;
  }
}

.c-presentModal__body dl dd > ul > li {
  padding-left: 1em;
  font-size: 16px;
  line-height: 1.875;
  text-indent: -1em;
}

@media only screen and (max-width: 750px) {
  .c-presentModal__body dl dd > ul > li {
    font-size: 13px;
  }
}

.c-presentModal__body dl dd > ul > li > ul > li {
  padding-left: 1em;
  font-size: 16px;
  line-height: 1.875;
  text-indent: -1em;
}

@media only screen and (max-width: 750px) {
  .c-presentModal__body dl dd > ul > li > ul > li {
    font-size: 13px;
  }
}

.c-presentModal__body dl dd > ul > li > ul > li:before {
  content: "・";
}

.c-presentModal__body dl dd a {
  color: inherit;
  font-weight: 500;
  text-decoration: underline;
}

.c-presentModal__foot {
  margin-top: 40px;
}

@media only screen and (max-width: 750px) {
  .c-presentModal__foot {
    margin-top: 36px;
  }
}

.c-presentModal__foot__close {
  text-align: center;
}

.u-link03 {
  display: inline-block;
  padding: 20px 50px;
  border: 1px solid #027dc3;
  border-radius: 28px;
  color: #027dc3;
  font-size: 18px;
  line-height: 1;
  text-decoration: none !important;
}

@media only screen and (max-width: 750px) {
  .u-link03 {
    padding: 15px 40px;
    border-radius: 48px;
    font-size: 15px;
  }
}

.u-link03:before {
  margin-right: 0.5em;
  font-size: 80%;
  vertical-align: 0.1em;
  content: "✖";
}

/*230718_追記*/

.sp_fixed_area {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(100px);
  z-index: 999;
}

.sp_fixed_area .fv_monthly {
  background: #ffffffdb;
  padding: 2%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.sp_fixed_area .fv_monthly .txt {
  width: 48%;
}
.sp_fixed_area .fv_monthly .txt img {
  vertical-align: middle;
}
.sp_fixed_area .fv_monthly .btn {
  width: 60%;
}

@media screen and (max-width: 640px) {
  .karte-widget.karte-widget--bottom.karte-widget--right {
    bottom: 72px !important;
  }
}

#fixed_menu.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#fixed_menu.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}

@media screen and (min-width: 1025px) {
  .sp_fixed_area .fv_monthly .txt {
    width: 306px;
    margin-right: 60px;
  }
  .sp_fixed_area .fv_monthly .btn {
    width: 421px;
  }
  .sp_fixed_area .fv_monthly {
    justify-content: center;
    padding: 15px 20px;
  }
}
