@charset "UTF-8";
@media screen and (max-width: 767px) {
  .only-pc {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .only-sp {
    display: none;
  }
  .only-tab {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .only-pc {
    display: none !important;
  }
  .only-tab {
    display: inline-block !important;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #000;
}

a {
  text-decoration: none;
  color: #000;
  transition: all 0.3s;
}
a:hover {
  opacity: 1;
}

main {
  overflow: hidden;
}

.is-hide {
  display: none !important;
}

.w-1100 {
  width: 95%;
  margin: 0 auto;
  max-width: 1100px;
}

.d-flx {
  display: flex;
}
@media screen and (max-width: 767px) {
  .d-flx {
    display: block;
  }
}

.t-bold {
  font-weight: 700;
}

/*左右のアニメーション*/
.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

.leftAnime {
  opacity: 0;
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
/*アニメーション*/
.anime-l {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateX(-40px);
}

.anime-b {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateY(40px);
}

.anime-o {
  opacity: 0;
  visibility: hidden;
  transition: 2.5s;
}

.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

header {
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  header {
    height: 0;
  }
}
header .headernav {
  position: absolute;
  width: 100%;
  padding: 16px 1.5%;
  background: #fff;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 3px 0px rgba(0, 0, 0, 0.16);
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 999;
}
header .headernav__wrap {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .headerspnav {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 6%;
  background: #fff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 3px 6px rgba(80, 80, 80, 0.4);
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 999;
}
header .headerspnav__wrap {
  display: flex;
  align-items: center;
}
header .headerspnav-ttl {
  width: 55%;
  max-width: 300px;
}
header .headerspnav-ttl a {
  line-height: 1;
}
header .headerspnav-ttl--nen {
  width: 40%;
  margin-bottom: 6px;
}
header h1 {
  width: 60px;
}
@media screen and (max-width: 1024px) {
  header h1 {
    width: 50px;
    top: 8px;
    left: 8px;
  }
}
header .headernav-ttl {
  width: 24%;
  margin-left: 2%;
}
header .headernav-ttl a {
  line-height: 1;
}
header .headernav-ttl--nen {
  width: 40%;
  margin-bottom: 6px;
}
header nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 95%;
}
@media screen and (max-width: 1024px) {
  header nav {
    display: block;
  }
}
header nav ul {
  width: 72%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  header nav ul {
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
header nav ul li {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 10px 1.5%;
  text-align: center;
  line-height: 1.3;
  font-size: 0.9em;
}
@media screen and (max-width: 1024px) {
  header nav ul li {
    display: block;
    height: auto;
    width: 44%;
    margin: 12px 0;
    padding: 0;
  }
}
header nav ul li span {
  font-size: 0.75em;
}
header nav ul li a:hover {
  opacity: 0.6;
}
header nav .navflx {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
header nav .navbtn {
  width: 16%;
  max-width: 200px;
  min-width: 160px;
  font-size: 0.9em;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  header nav .navbtn {
    max-width: none;
  }
}
header nav .navbtn a {
  display: block;
  padding: 12px 0;
  background: #E23B88;
  border-radius: 10px;
  margin: 0 2%;
  text-align: center;
  color: #fff;
}
header nav .navbtn a:hover {
  opacity: 0.8;
}
header nav .navbtn a img {
  width: 15%;
  margin-right: 6px;
}
header nav .navbtn--catalog a {
  background: #238EC5;
}

.drawer__button {
  position: absolute;
  top: 30%;
  right: 20px;
  display: flex;
  height: 30px;
  width: 60px;
  justify-content: center;
  align-items: flex-end;
  z-index: 90;
  padding: 4px;
  border-radius: 8px;
  font-size: 0.7em;
  font-weight: 700;
  cursor: pointer;
  z-index: 999;
  /* メニューを開いている時もクリックできるよう設定 */
}
.drawer__button span {
  color: #000;
}
.drawer__button span.bar {
  content: "";
  display: block;
  height: 2px;
  width: 70%;
  background-color: #000;
  position: absolute;
  top: 35%;
}
.drawer__button span.bar::before, .drawer__button span.bar::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background-color: #000;
  position: absolute;
  transition: all 0.3s;
}
.drawer__button span.bar::before {
  bottom: 10px;
}
.drawer__button span.bar::after {
  top: 10px;
}
.drawer__button.active span.bar {
  background-color: rgba(255, 255, 255, 0);
}
.drawer__button.active span.bar::before {
  bottom: 0;
  transform: rotate(45deg);
}
.drawer__button.active span.bar::after {
  top: 0;
  transform: rotate(-45deg);
}

.menu-content {
  position: fixed;
  width: 90%;
  max-width: 450px;
  height: 80vh;
  max-height: 520px;
  overflow-y: auto;
  top: 14%;
  z-index: 80;
  border-radius: 30px;
  padding: 1.5em 1.5em 1em;
  background-color: rgba(255, 255, 255, 0.9);
  left: 110%;
  right: 0;
  margin: 0 auto;
  z-index: 80;
  transition: all 0.8s;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.menu-content.active {
  left: 0;
}
.menu-content .menu-content-ttl {
  margin-bottom: 16px;
}
.menu-content .menu-content-ttl--nen {
  width: 40%;
  margin-bottom: 8px;
}
.menu-content ul {
  display: block;
  text-align: left;
}
.menu-content ul li {
  text-align: left;
  width: 100%;
  margin: 8px 0;
}
.menu-content ul li a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  box-sizing: border-box;
  text-decoration: none;
  padding: 10px 0;
  font-size: 1.1em;
}
.menu-content ul li a::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  background: url(../img/arrow_black.svg) no-repeat;
  background-size: contain;
  right: -1.5em;
  top: 30%;
}
.menu-content .navflx {
  display: block;
  margin-top: 30px;
}
.menu-content .navflx .navbtn {
  width: 100%;
  margin: 0 auto;
  height: auto;
  margin-bottom: 16px;
}
.menu-content .navflx .navbtn a {
  margin: 0 auto;
  padding: 12px 0;
  width: 100%;
}
.menu-content .navflx .navbtn a img {
  width: 10%;
}

@keyframes stepanm {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes stepanm_rev {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0);
  }
}
.items-anm {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s;
}

.items-anm.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.breadlist {
  width: 95%;
  margin: 0 auto;
  max-width: 990px;
  margin-top: 130px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .breadlist {
    margin-top: 105px;
    max-width: 550px;
    font-size: 0.8em;
    margin-bottom: 20px;
  }
}
.breadlist ol {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .breadlist ol {
    overflow-x: auto;
    padding-bottom: 0.5em;
  }
}
.breadlist ol li {
  font-size: 0.9em;
  flex-shrink: 0;
}
.breadlist ol li:nth-child(1) a {
  margin-right: 1.5em;
}
.breadlist ol li a {
  position: relative;
  display: block;
  color: #0F64C5;
}
.breadlist ol li a::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  background: url(../img/arrow_black.svg) no-repeat;
  background-size: contain;
  right: -1.5em;
  top: 20%;
}
@media screen and (max-width: 767px) {
  .breadlist ol li a::after {
    right: -1.6em;
  }
}

.ranlist .imgarea {
  background: #fff;
  border-radius: 10px;
  padding: 0.5em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ranlist .imgarea {
    padding: 1em;
  }
}
.ranlist .imgarea img {
  max-height: 200px;
}
@media screen and (max-width: 767px) {
  .ranlist .imgarea img {
    max-height: 140px;
  }
}
.ranlist li {
  margin: 0 12px 50px;
}
.ranlist li .imgarea {
  margin-bottom: 8px;
}
.ranlist li .tag {
  font-size: 0.8em;
  margin-bottom: 8px;
}
.ranlist li .ttl {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1.1em;
}
@media screen and (max-width: 767px) {
  .ranlist li .ttl {
    font-size: 1em;
  }
}
.ranlist li .price {
  text-align: right;
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .ranlist li .price {
    font-size: 1em;
  }
}
.ranlist li .price span.tax {
  margin-left: 8px;
  font-size: 0.7em;
}
.ranlist li .try {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .ranlist li .try {
    display: block;
  }
}
.ranlist li .try p {
  width: 20%;
  font-size: 0.85em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ranlist li .try p {
    width: 100%;
    margin-bottom: 4px;
  }
}
.ranlist li .try .trybtn {
  width: 78%;
  display: flex;
}
@media screen and (max-width: 767px) {
  .ranlist li .try .trybtn {
    width: 100%;
    justify-content: space-between;
  }
}
.ranlist li .try .trybtn .item {
  width: 49%;
  margin: 0 4px;
}
@media screen and (max-width: 767px) {
  .ranlist li .try .trybtn .item {
    width: 48%;
    margin: 0;
  }
}
.ranlist li .try .trybtn .item a {
  display: block;
  padding: 2px 0;
  background: #F9F6EB;
  box-shadow: 0 3px 0 #8E8E8E;
  border: 1px solid #000;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .ranlist li .try .trybtn .item a {
    padding: 4px 0;
    font-size: 0.8em;
    box-shadow: 0 2px 0 #8E8E8E;
  }
}
.ranlist li .try .trybtn .item a:hover {
  transform: translateY(3px);
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  .ranlist li .try .trybtn .item a:hover {
    transform: translateY(2px);
  }
}
.ranlist li .detailbtn {
  margin-top: 12px;
}
.ranlist li .detailbtn a {
  display: block;
  position: relative;
  padding: 8px 0;
  background: #FFD658;
  box-shadow: 0 3px 0 #CFA414;
  border-radius: 10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ranlist li .detailbtn a {
    font-size: 0.75em;
    box-shadow: 0 2px 0 #CFA414;
    border-radius: 8px;
  }
}
.ranlist li .detailbtn a::after {
  content: "";
  position: absolute;
  width: 0.8em;
  height: 0.8em;
  background: url(../img/arrow_black.svg) no-repeat;
  background-size: contain;
  right: 5%;
  top: 35%;
}
@media screen and (max-width: 767px) {
  .ranlist li .detailbtn a::after {
    right: 3%;
    top: 40%;
  }
}
.ranlist li .detailbtn a:hover {
  transform: translateY(3px);
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  .ranlist li .detailbtn a:hover {
    transform: translateY(2px);
  }
}
.ranlist li .youmeonline {
  margin-top: 8px;
}
.ranlist li .youmeonline a {
  display: block;
  position: relative;
  padding: 8px 0;
  background: #E23B88;
  box-shadow: 0 3px 0 #BB167E;
  border-radius: 10px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ranlist li .youmeonline a {
    font-size: 0.75em;
    box-shadow: 0 2px 0 #BB167E;
    border-radius: 8px;
  }
}
.ranlist li .youmeonline a::after {
  content: "";
  position: absolute;
  width: 0.8em;
  height: 0.8em;
  background: url(../img/arrow.svg) no-repeat;
  background-size: contain;
  right: 5%;
  top: 35%;
}
@media screen and (max-width: 767px) {
  .ranlist li .youmeonline a::after {
    right: 3%;
    top: 40%;
  }
}
.ranlist li .youmeonline a:hover {
  transform: translateY(3px);
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  .ranlist li .youmeonline a:hover {
    transform: translateY(2px);
  }
}

.guarantee {
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2em 1em;
  background: #fff;
  border-radius: 24px;
}
@media screen and (max-width: 767px) {
  .guarantee {
    border-radius: 12px;
  }
}
.guarantee__ttl {
  width: 90%;
  margin: 0 auto;
  padding: 10px 0;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .guarantee__ttl {
    width: 100%;
  }
}
.guarantee__ttl p {
  font-size: 2em;
  text-align: center;
  font-weight: 600;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .guarantee__ttl p {
    font-size: 1.4em;
  }
}
.guarantee__main {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .guarantee__main {
    display: block;
  }
}
.guarantee__main-img {
  width: 45%;
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  .guarantee__main-img {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
.guarantee__main-txt {
  width: 50%;
  max-width: 400px;
}
@media screen and (max-width: 767px) {
  .guarantee__main-txt {
    width: 100%;
    max-width: none;
  }
}
.guarantee__main-txt p {
  font-size: 1.1em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .guarantee__main-txt p {
    font-size: 1em;
  }
}
.guarantee__main-txt p.notice {
  font-size: 0.9em;
  margin-top: 1em;
}

.youmeonlinefixbtn {
  position: fixed;
  bottom: 15%;
  right: 1em;
  z-index: 999;
}
@media screen and (max-width: 1024px) {
  .youmeonlinefixbtn {
    bottom: 0;
    right: 0;
    width: 100%;
  }
}
.youmeonlinefixbtn a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  background: #E21F99;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 1.4em;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .youmeonlinefixbtn a {
    width: 100%;
    height: auto;
    border-radius: 0 30px 0 0;
    font-size: 1em;
    padding: 8px 0;
  }
}
.youmeonlinefixbtn a:hover {
  box-shadow: none;
}
.youmeonlinefixbtn a p {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .youmeonlinefixbtn__wrap {
    display: flex;
    align-items: center;
  }
}
.youmeonlinefixbtn__img {
  width: 30%;
  margin: 0 auto;
  margin-bottom: 12px;
}
@media screen and (max-width: 1024px) {
  .youmeonlinefixbtn__img {
    width: 30px;
    margin-bottom: 0;
    margin-right: 8px;
  }
}

@media screen and (max-width: 767px) {
  .only-pc {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .only-sp {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .only-pc {
    display: none !important;
  }
  .only-tab {
    display: inline-block !important;
  }
}
.fv__wrap {
  position: relative;
  width: 95%;
  margin: 0 auto;
  max-width: 1300px;
  padding: 40px 1em 0;
  border: 3px solid #FFDC2D;
  border-radius: 12px;
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .fv__wrap {
    padding-top: 20px;
  }
}
.fv__dec {
  position: absolute;
}
.fv__dec--circle-l {
  left: 5%;
  bottom: 30%;
}
@media screen and (max-width: 767px) {
  .fv__dec--circle-l {
    left: 10%;
    width: 28%;
    bottom: 15%;
  }
}
.fv__dec--circle-r {
  right: 10%;
  top: 10%;
}
@media screen and (max-width: 767px) {
  .fv__dec--circle-r {
    width: 28%;
    top: auto;
    bottom: 20%;
    right: 4%;
  }
}
.fv__dec--star1 {
  bottom: 4%;
  right: 30%;
}
@media screen and (max-width: 767px) {
  .fv__dec--star1 {
    bottom: 10%;
    right: auto;
    left: 6%;
    width: 12%;
  }
}
.fv__dec--star2 {
  left: 6%;
  top: 12%;
}
@media screen and (max-width: 767px) {
  .fv__dec--star2 {
    display: none;
  }
}
.fv__dec--star3 {
  right: 10%;
  top: 28%;
}
@media screen and (max-width: 767px) {
  .fv__dec--star3 {
    width: 10%;
    top: auto;
    right: 40%;
    bottom: 30%;
  }
}
.fv__dec--onpu1 {
  right: 8%;
  top: 50%;
  animation: kaku 1.8s steps(2, end) infinite;
}
@media screen and (max-width: 767px) {
  .fv__dec--onpu1 {
    width: 10%;
    top: 62%;
    right: 10%;
  }
}
.fv__dec--onpu2 {
  left: 6%;
  bottom: 20%;
  animation: kaku 2s steps(2, end) infinite;
}
@media screen and (max-width: 767px) {
  .fv__dec--onpu2 {
    width: 8%;
    left: 12%;
  }
}
.fv__dec--onpu3 {
  right: 8%;
  bottom: 20%;
  animation: kaku 2.5s steps(2, end) infinite;
}
@media screen and (max-width: 767px) {
  .fv__dec--onpu3 {
    width: 5%;
  }
}
.fv__mainttl {
  position: relative;
  width: 95%;
  margin: 0 auto;
  max-width: 750px;
  padding-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .fv__mainttl {
    max-width: 500px;
  }
}
@media screen and (max-width: 767px) {
  .fv__mainttl {
    padding-bottom: 20px;
    width: 100%;
  }
}
.fv__mainttl::before {
  content: "";
  position: absolute;
  width: 26%;
  height: 100%;
  background: url(../img/point/fv_img-girl.png) no-repeat;
  background-size: contain;
  background-position: bottom;
  bottom: 0;
  left: -18%;
}
@media screen and (max-width: 767px) {
  .fv__mainttl::before {
    content: none;
  }
}
.fv__mainttl::after {
  content: "";
  position: absolute;
  width: 33%;
  height: 100%;
  background: url(../img/point/fv_img-boy.png) no-repeat;
  background-size: contain;
  background-position: bottom;
  bottom: 0;
  right: -21%;
}
@media screen and (max-width: 767px) {
  .fv__mainttl::after {
    content: none;
  }
}
.fv__img {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .fv__img {
    max-width: 500px;
    margin: 0 auto;
  }
}

@keyframes kaku {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-30deg);
  }
}
@keyframes kaku2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-8deg);
  }
}
.point__top {
  margin-top: 40px;
  padding: 60px 0;
  background: url(../img/point/main_decbg.png), url(../img/point/main_bg.png), #31B3F1;
  background-size: 100%, 100%, 100%;
  background-repeat: repeat-y;
  background-position: center top;
}
@media screen and (max-width: 1024px) {
  .point__top {
    padding: 40px 0;
    background: url(../img/point/main_bg-sp.png), #31B3F1;
    background-size: contain;
    background-repeat: repeat-y;
    background-position: center top;
  }
}
.point__btm {
  background: #31B3F1;
  padding-bottom: 80px;
  border-bottom: 32px solid #FED526;
}
@media screen and (max-width: 767px) {
  .point__btm {
    border-bottom: 24px solid #FED526;
  }
}
.point__wrap {
  width: 95%;
  margin: 0 auto;
  padding: 60px 2em;
  max-width: 1300px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 3px 3px 7px rgba(1, 83, 118, 0.2);
}
@media screen and (max-width: 767px) {
  .point__wrap {
    padding: 40px 0.5em;
    max-width: 600px;
  }
}
.point__ttl-wrap {
  width: 100%;
  margin: 0 auto;
  max-width: 700px;
  text-align: center;
}
.point__ttl {
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 1.3em;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .point__ttl {
    max-width: 600px;
    font-size: 1.2em;
  }
}
@media screen and (max-width: 767px) {
  .point__ttl {
    font-size: 1.1em;
    width: auto;
    max-width: 500px;
  }
}
.point__ttl span.big {
  color: #FFF066;
  font-weight: 900;
  font-size: 3.5em;
}
@media screen and (max-width: 1024px) {
  .point__ttl span.big {
    font-size: 3em;
  }
}
@media screen and (max-width: 767px) {
  .point__ttl span.big {
    font-size: 2em;
    display: block;
  }
}
.point__ttl::before {
  content: "";
  position: absolute;
  width: 8%;
  height: 50%;
  background: url(../img/point/light.png) no-repeat;
  background-size: contain;
  right: -7%;
  top: 0;
}
@media screen and (max-width: 767px) {
  .point__ttl::before {
    width: 14%;
    right: 8%;
    top: -8%;
  }
}
.point__ttl::after {
  content: "";
  position: absolute;
  width: 110%;
  height: 8px;
  background: #FFF066;
  left: -5%;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  .point__ttl::after {
    width: 100%;
    left: 0;
    height: 5px;
  }
}
.point__subttl {
  color: #fff;
  text-align: center;
  font-size: 0.9em;
  margin-top: 10px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .point__subttl {
    font-size: 0.8em;
  }
}
.point__item {
  margin: 40px auto;
  max-width: 1100px;
}
@media screen and (max-width: 1024px) {
  .point__item {
    margin: 0;
  }
}
.point__item .pointtxt {
  color: #fff;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .point__item .pointtxt {
    font-size: 0.9em;
  }
}
.point__item .pointtxt span.yellow {
  color: #FFF066;
}
.point__item-flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.point__item-dec {
  position: absolute;
}
.point__item h4 {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .point__item h4 {
    margin-bottom: 16px;
  }
}
.point__item h4 p {
  color: #FFF066;
  font-weight: 700;
  font-size: 2em;
}
@media screen and (max-width: 767px) {
  .point__item h4 p {
    font-size: 1.2em;
    width: 80%;
    text-align: left;
  }
}
.point__item h4 img {
  margin-right: 0.5em;
  width: 7%;
}
@media screen and (max-width: 767px) {
  .point__item h4 img {
    width: 15%;
    margin-right: 6px;
    max-width: 80px;
  }
}
.point__item .txtttl {
  font-size: 1.1em;
  color: #FFF066;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .point__item .txtttl {
    font-size: 1.1em;
  }
}
.point__item--q1 {
  position: relative;
  text-align: center;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .point__item--q1 {
    padding-bottom: 50px;
  }
}
.point__item--q1 .point__item-flex {
  justify-content: space-between;
  max-width: 640px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .point__item--q1 .point__item-flex {
    justify-content: space-around;
  }
}
.point__item--q1 .point__item-img {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .point__item--q1 .point__item-img {
    width: 48%;
    margin: 0;
  }
}
.point__item--q1 .pointtxt {
  margin-top: 1em;
}
.point__item--q1 .point__item-dec {
  right: -2%;
  bottom: 0;
  width: 16%;
  animation: kaku2 1.6s steps(2, end) infinite;
}
@media screen and (max-width: 1024px) {
  .point__item--q1 .point__item-dec {
    position: relative;
    margin-left: auto;
    width: 40%;
    margin-top: 10px;
    margin-right: 18%;
  }
}
.point__item--q1 .point__item-dec2 {
  position: absolute;
  bottom: 20%;
  left: 0;
  width: 20%;
}
.point__item--q2 {
  position: relative;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .point__item--q2 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .point__item--q2 {
    padding-bottom: 80px;
  }
}
.point__item--q2 .point__item-dec2 {
  position: absolute;
  width: 20%;
  top: 4%;
  right: 0;
  max-width: 100px;
}
.point__item--q2 .point__item-dec3 {
  position: absolute;
  width: 14%;
  bottom: 5%;
  right: 4%;
  max-width: 60px;
}
.point__item--q2 .point__item-flex {
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .point__item--q2 .point__item-flex {
    width: 80%;
    margin: 0 auto;
  }
}
.point__item--q2 .point__item-content {
  width: 40%;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .point__item--q2 .point__item-content {
    width: 100%;
    margin-bottom: 40px;
  }
}
.point__item--q2 .point__item-content p {
  width: 90%;
  margin: 0 auto;
  margin-top: 0.5em;
}
.point__item--q2 .point__item-dec {
  position: relative;
  text-align: right;
  margin-right: -8%;
  margin-left: auto;
  width: 30%;
  animation: kaku2 1.6s steps(2, end) infinite;
}
@media screen and (max-width: 1024px) {
  .point__item--q2 .point__item-dec {
    width: 50%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .point__item--q2 .point__item-dec {
    width: 70%;
  }
}
.point__item--q3 {
  position: relative;
  margin-bottom: 0;
}
.point__item--q3-ttl {
  display: flex;
  align-items: center;
  padding: 1em;
  background: #FFF9C6;
  border-radius: 10px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .point__item--q3-ttl {
    display: block;
    border-radius: 4px;
    padding: 0.5em;
  }
}
.point__item--q3-ttl h5,
.point__item--q3-ttl p {
  color: #31B3F1;
}
.point__item--q3-ttl h5 {
  font-size: 1.6em;
  font-weight: 700;
  margin-right: 0.5em;
}
@media screen and (max-width: 1024px) {
  .point__item--q3-ttl h5 {
    font-size: 1.1em;
  }
}
@media screen and (max-width: 1024px) {
  .point__item--q3-ttl p {
    font-size: 0.9em;
  }
}
.point__item--q3 .point__item {
  margin: 0;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .point__item--q3 .point__item {
    margin: 0 auto;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .point__item--q3 .point__item {
    margin-bottom: 60px;
  }
}
.point__item--q3 .point__item-flex {
  justify-content: space-between;
}
.point__item--q3-img {
  text-align: center;
}
.point__item--q3-no1 .point__item-flex {
  justify-content: center;
}
.point__item--q3-no1_content {
  width: 24%;
  margin: 0 0.5em;
}
@media screen and (max-width: 767px) {
  .point__item--q3-no1_content {
    width: 100%;
    display: flex;
    margin: 0 0 1em 0;
  }
}
.point__item--q3-no1_content .pointtxt {
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .point__item--q3-no1_content .pointtxt {
    margin: 0;
    margin-left: 4px;
  }
}
.point__item--q3-no2 .point__item-flex {
  width: 70%;
  margin: 0 auto;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .point__item--q3-no2 .point__item-flex {
    width: 100%;
  }
}
.point__item--q3-no2 .point__item-flex .pointtxt {
  margin-right: 30px;
  width: 55%;
}
@media screen and (max-width: 767px) {
  .point__item--q3-no2 .point__item-flex .pointtxt {
    margin: 0;
    width: 100%;
    margin-bottom: 1em;
  }
}
.point__item--q3-no2 .point__item-flex .point__item--q3-img {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .point__item--q3-no2 .point__item-flex .point__item--q3-img {
    width: 70%;
  }
}
.point__item--q3-no3, .point__item--q3-no4, .point__item--q3-no5, .point__item--q3-no6 {
  width: 49%;
}
@media screen and (max-width: 767px) {
  .point__item--q3-no3, .point__item--q3-no4, .point__item--q3-no5, .point__item--q3-no6 {
    width: 100%;
  }
}
.point__item--q3-no3 .pointtxt, .point__item--q3-no4 .pointtxt {
  margin-top: 1em;
}
.point__item--q3-no5 .plustxt {
  font-size: 1.1em;
  color: #fff;
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .point__item--q3-no5 .plustxt {
    font-size: 1em;
  }
}
.point__item--q3-no5 .pointtxt {
  font-weight: 700;
  line-height: 1.6;
  margin: 4px 0;
  margin-bottom: 1em;
}
.point__item--q3-no5 .pointtxt span.small {
  font-size: 0.9em;
  font-weight: 600;
}
.point__item--q3-no6 .flxitem {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.point__item--q3-no6 .flxitem_img {
  display: block;
  width: 35%;
  text-align: center;
}
.point__item--q3-no6 .flxitem_txt {
  width: 65%;
  margin-left: 8px;
}
.point__item--q3-no7 {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .point__item--q3-no7 {
    max-width: 640px;
    margin: 0 auto;
  }
}
.point__item--q3-no7_content {
  width: 24%;
  margin: 0 0.5em;
}
@media screen and (max-width: 767px) {
  .point__item--q3-no7_content {
    width: 100%;
    display: flex;
    margin: 0 0 1em 0;
  }
}
@media screen and (max-width: 767px) {
  .point__item--q3-no7_content .point__item--q3-img {
    width: 35%;
  }
}
@media screen and (max-width: 767px) {
  .point__item--q3-no7_content .pointtxt {
    width: 65%;
    margin-left: 8px;
  }
}
.point__item--q3-no7 .txtttl {
  margin-top: 0.5em;
  display: block;
}
.point__item--q3 .point__item-content {
  width: 48%;
  max-width: 450px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .point__item--q3 .point__item-content {
    width: 100%;
    margin-bottom: 40px;
  }
}
.point__item--q3 .point__item-content img {
  width: 86%;
  margin: 0 auto;
}
.point__item--q3 .point__item-content p {
  text-align: left;
  margin-top: 1em;
}
.point__item--q3 .point__item-content--boy img {
  width: 100%;
  margin: 0 auto;
}
.point .qaimg {
  max-width: 1300px;
  margin: 0 auto;
}
.point .qaimg__wrap {
  width: 30%;
  margin-top: -60px;
  text-align: right;
  margin-left: auto;
  margin-right: 0;
  animation: kaku2 2s steps(2, end) infinite;
}
@media screen and (max-width: 767px) {
  .point .qaimg__wrap {
    width: 65%;
    text-align: center;
    margin-top: 10px;
  }
}

.assistant {
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 40px;
  padding: 2em 1em;
  background: #fff;
  border-radius: 24px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .assistant {
    border-radius: 12px;
    padding: 2em 0.5em;
    padding-bottom: 50px;
  }
}
.assistant__ttl {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  padding-bottom: 12px;
}
@media screen and (max-width: 1024px) {
  .assistant__ttl {
    width: 85%;
    padding-bottom: 18px;
  }
}
.assistant__ttl::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background: url(../img/point/nayami_ttl-dec.png) repeat-x;
  background-size: auto;
  left: 0;
  bottom: 0;
}
.assistant__imgflex {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .assistant__imgflex {
    width: 90%;
    margin: 0 auto;
    margin-top: 10px;
    align-items: center;
  }
}
@media screen and (max-width: 1024px) {
  .assistant__img--img1 {
    width: 90%;
  }
}
@media screen and (max-width: 1024px) {
  .assistant__img--img2 {
    width: 50%;
  }
}
@media screen and (max-width: 1024px) {
  .assistant__img--img3 {
    width: 50%;
  }
}
.assistant__mainttl {
  max-width: 750px;
  margin: 0 auto;
  margin-top: 40px;
}
.assistant__mainttl .notice {
  text-align: right;
  font-size: 0.8em;
  margin-top: 1em;
}
.assistant__about {
  padding: 1em 0.5em;
  background: #FFF9EB;
  max-width: 700px;
  margin: 0 auto;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .assistant__about {
    margin-top: 16px;
  }
}
.assistant__detail {
  max-width: 700px;
  margin: 0 auto;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: end;
}
@media screen and (max-width: 767px) {
  .assistant__detail {
    align-items: normal;
  }
}
.assistant__detail-l {
  width: 55%;
}
.assistant__detail-r {
  position: relative;
  width: 45%;
}
.assistant__detail-mark {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
}
@media screen and (max-width: 767px) {
  .assistant__detail-mark {
    width: 80%;
    bottom: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

@media screen and (max-width: 1024px) {
  #s_toPageTop {
    bottom: 40px;
  }
}

@media screen and (max-width: 1024px) {
  footer#s_footer {
    padding-bottom: 40px;
  }
}