@charset "UTF-8";
/* ============common
=============================================== */
html {
  font-size: 100%;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
}

*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: 0.6;
}

ul,
ol {
  list-style-type: none;
}

.wrapper {
  max-width: 420px;
  margin: 0 10% 0 auto;
}
@media (max-width: 1280px) {
  .wrapper {
    max-width: 412px;
    margin: 0 5% 0 auto;
  }
}
@media (max-width: 768px) {
  .wrapper {
    max-width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 412px) {
  .wrapper {
    max-width: 412px;
    margin: 0 auto;
  }
}

.flex {
  display: flex;
}

body {
  /*     margin: 0 auto; */
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

/* ============font-text
=============================================== */
.small-px {
  font-size: 11px;
}

.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.m-plus-rounded-1c-regular {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.m-plus-rounded-1c-medium {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* ---------  arrows1  -------------- */
.cp_arrows {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.details[open] .cp_arrows {
  transform: rotate(180deg) translate3d(-5px, -1%, 0);
}

.cp_arrows .cp_arrow {
  /*矢印を配置するベースの設定*/
  position: absolute;
  width: 24px;
  height: 9px;
  opacity: 0;
  /*スタートは透明*/
  transform: scale(0.5);
  /*スタートは30%に縮小*/
  -webkit-animation: arrow-move07 3s ease-out infinite;
          animation: arrow-move07 3s ease-out infinite;
}

.cp_arrows .cp_arrow:first-child {
  /*1秒ずらしてアニメーション*/
  -webkit-animation: arrow-move07 3s ease-out 1s infinite;
          animation: arrow-move07 3s ease-out 1s infinite;
}

.cp_arrows .cp_arrow:nth-child(2) {
  /*2秒ずらしてアニメーション*/
  -webkit-animation: arrow-move07 3s ease-out 2s infinite;
          animation: arrow-move07 3s ease-out 2s infinite;
}

.cp_arrows .cp_arrow:before,
.cp_arrows .cp_arrow:after {
  /*矢印全体の設定*/
  position: absolute;
  content: "";
  top: -12px;
  left: 60%;
  transform: translateX(40%);
  width: 60%;
  height: 100%;
  background: #000000;
  border-radius: 2px;
}

.cp_arrows .cp_arrow:before {
  /*矢印左の線の位置と傾斜*/
  left: 1px;
  transform: skewY(40deg);
}

.cp_arrows .cp_arrow:after {
  /*矢印左の線の位置と傾斜*/
  right: 1px;
  transform: skewY(-40deg);
}

@-webkit-keyframes arrow-move07 {
  25% {
    opacity: 0.6;
  }
  43% {
    transform: translateY(0.6em);
    opacity: 0.9;
  }
  62% {
    transform: translateY(1.3em);
    opacity: 1;
  }
  100% {
    transform: translateY(1.45em) scale(0.7);
    opacity: 0.1;
  }
}

@keyframes arrow-move07 {
  25% {
    opacity: 0.6;
  }
  43% {
    transform: translateY(0.6em);
    opacity: 0.9;
  }
  62% {
    transform: translateY(1.3em);
    opacity: 1;
  }
  100% {
    transform: translateY(1.45em) scale(0.7);
    opacity: 0.1;
  }
}
/* ---------  arrows2  -------------- */
.cp_arrows2 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.details[open] .cp_arrows2 {
  transform: rotate(180deg) translate3d(-5px, -1%, 0);
}

.cp_arrows2 .cp_arrow2 {
  /*矢印を配置するベースの設定*/
  position: absolute;
  width: 24px;
  height: 9px;
  opacity: 0;
  /*スタートは透明*/
  transform: scale(0.5);
  /*スタートは30%に縮小*/
  -webkit-animation: arrow-move07 3s ease-out infinite;
          animation: arrow-move07 3s ease-out infinite;
}

.cp_arrows2 .cp_arrow2:first-child {
  /*1秒ずらしてアニメーション*/
  -webkit-animation: arrow-move07 3s ease-out 1s infinite;
          animation: arrow-move07 3s ease-out 1s infinite;
}

.cp_arrows2 .cp_arrow2:nth-child(2) {
  /*2秒ずらしてアニメーション*/
  -webkit-animation: arrow-move007 3s ease-out 2s infinite;
          animation: arrow-move007 3s ease-out 2s infinite;
}

.cp_arrows2 .cp_arrow2:before,
.cp_arrows2 .cp_arrow2:after {
  /*矢印全体の設定*/
  position: absolute;
  content: "";
  top: -17px;
  left: 60%;
  transform: translateX(40%);
  width: 60%;
  height: 100%;
  background: #ffffff;
  border-radius: 2px;
}

.cp_arrows2 .cp_arrow2:before {
  /*矢印左の線の位置と傾斜*/
  left: 1px;
  transform: skewY(40deg);
}

.cp_arrows2 .cp_arrow2:after {
  /*矢印左の線の位置と傾斜*/
  right: 1px;
  transform: skewY(-40deg);
}

@-webkit-keyframes arrow-move007 {
  25% {
    opacity: 0.6;
  }
  43% {
    transform: translateY(0.6em);
    opacity: 0.9;
  }
  62% {
    transform: translateY(1.3em);
    opacity: 1;
  }
  100% {
    transform: translateY(1.45em) scale(0.7);
    opacity: 0.1;
  }
}

@keyframes arrow-move007 {
  25% {
    opacity: 0.6;
  }
  43% {
    transform: translateY(0.6em);
    opacity: 0.9;
  }
  62% {
    transform: translateY(1.3em);
    opacity: 1;
  }
  100% {
    transform: translateY(1.45em) scale(0.7);
    opacity: 0.1;
  }
}
/* ============index.sessここから
=============================================== */
.pc-bg {
  background-image: url(../img/pc-bgi.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 0 15%;
}
@media (max-width: 1280px) {
  .pc-bg {
    padding: 0 2%;
  }
}
@media (max-width: 768px) {
  .pc-bg {
    padding: 0;
  }
}
.pc-bg .pc-logo {
  position: fixed;
  top: 50%;
  right: 50%;
  width: 320px;
  transform: translate(-25%, -50%);
}
@media (max-width: 1280px) {
  .pc-bg .pc-logo {
    width: 280px;
    right: 48%;
  }
}
@media (max-width: 768px) {
  .pc-bg .pc-logo {
    display: none;
  }
}
@media (max-width: 412px) {
  .pc-bg .pc-logo {
    display: none;
  }
}
.pc-bg .pc-logo .pc-logo2 {
  display: block;
  width: 75%;
  margin: 5px auto 0 0;
}
@media (max-width: 768px) {
  .pc-bg .pc-logo .pc-logo2 {
    display: none;
  }
}
@media (max-width: 412px) {
  .pc-bg .pc-logo .pc-logo2 {
    display: none;
  }
}
.pc-bg .pc-logo .pc-btn {
  display: flex;
  margin: 0 30px 0 auto;
  width: 55%;
}
@media (max-width: 1280px) {
  .pc-bg .pc-logo .pc-btn {
    max-width: 50%;
  }
}
@media (max-width: 768px) {
  .pc-bg .pc-logo .pc-btn {
    display: none;
  }
}
@media (max-width: 412px) {
  .pc-bg .pc-logo .pc-btn {
    display: none;
  }
}

/* =============  h2-Black  ================ */
#top-b {
  font-size: 26px;
  padding: 6px;
}

.h2-area-black {
  display: flex;
  padding: 30px 0 0 30px;
}
.h2-area-black .h2-area-b-inner {
  display: block;
  width: 45%;
  padding: 4px;
  background-color: #545454;
  color: #fff;
  text-align: center;
  margin: 0;
}
.h2-area-black .h2-area-b-inner h2 {
  font-size: 1.15rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.h2-area-black .h2-area-b-inner p {
  font-size: 0.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.h2-area-black .h2-area-b-inner-af {
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: #545454;
  padding: 18px;
  margin: 0;
}

/* =============  h2-pink  ================ */
.h2-area-pink {
  display: flex;
  padding: 30px 0 0 30px;
}
.h2-area-pink .h2-area-p-inner {
  display: block;
  width: 45%;
  padding: 4px;
  background-color: #F67BAD;
  color: #fff;
  text-align: center;
  margin: 0;
}
.h2-area-pink .h2-area-p-inner h2 {
  font-size: 1.15rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.h2-area-pink .h2-area-p-inner p {
  font-size: 0.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.h2-area-pink .h2-area-p-inner-af {
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: #F67BAD;
  padding: 18px;
  margin: 0;
}

/* =============  h2-Gray  ================ */
.h2-area-gray {
  display: flex;
  padding: 30px 0 0 30px;
}
.h2-area-gray .h2-area-b-inner {
  display: block;
  width: 45%;
  padding: 4px;
  background-color: #545454;
  color: #fff;
  text-align: center;
  margin: 0;
}
.h2-area-gray .h2-area-b-inner h2 {
  font-size: 1.15rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.h2-area-gray .h2-area-b-inner p {
  font-size: 0.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.h2-area-gray .h2-area-b-inner-af {
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: #545454;
  padding: 18px;
  margin: 0;
}

/* =============  h2-White  ================ */
.h2-area-white {
  display: flex;
  padding: 30px 0 0 30px;
}
.h2-area-white .h2-area-wh-inner {
  display: block;
  width: 45%;
  padding: 4px;
  background-color: #F2F1EB;
  color: #000;
  text-align: center;
  margin: 0;
}
.h2-area-white .h2-area-wh-inner h2 {
  font-size: 1.15rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.h2-area-white .h2-area-wh-inner p {
  font-size: 0.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.h2-area-white .h2-area-wh-inner-af {
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: #F2F1EB;
  padding: 18px;
  margin: 0;
}

/* =============  LINE-ボタン  ================ */
.line-btn {
  display: flex;
  background-color: #F67BAD;
  color: #fff;
  padding: 13px 18px;
  border-radius: 30px;
  border: 3px solid #fff;
  font-size: 12px;
  margin: 10px auto 0;
  width: 230px;
  justify-content: center;
}

/* =============  header  ================ */
header {
  padding-top: 87px;
}
header #navi-top {
  display: flex;
  justify-content: space-between;
  padding: 1%;
  background-color: #030303;
  background-image: url(../img/nav-bgi.png);
  background-size: cover;
  background-position: right;
  position: fixed;
  align-items: center;
  /* 常に固定するためのスタイル */
  top: 0;
  z-index: 200;
  /* 他の要素より前面に表示 */
  width: 100%;
}
header #navi-top .logo-1 {
  display: flex;
  align-items: center;
  width: 20%;
}
header #navi-top .logo-1 img {
  width: 100%;
}
header #navi-top #menu-1 {
  width: 80px;
  height: 80px;
  background-color: #EC76A6;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  border-radius: 50%;
}
header .top-h1 {
  background-color: #000;
  padding: 20px 5%;
}
header .top-h1 h1 {
  color: #FF7CB0;
  font-size: 1.6rem;
}
header .top-h1 p {
  color: #fff;
  font-size: 0.98rem;
  text-align: end;
}
header .menu {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  height: 100vh;
  z-index: 100;
  background-color: #F6D8E6;
  background-image: url(../img/menu-bgi.png);
  background-size: cover;
  position: fixed;
  top: 0;
  width: 100%;
  margin: 0 auto;
}
header .menu .menu-inner {
  width: 100%;
  margin: -5px auto 10px;
}
header .menu .menu-inner .h2-area-black,
header .menu .menu-inner .h2-area-pink,
header .menu .menu-inner .h2-area-gray,
header .menu .menu-inner .h2-area-white {
  padding: 7px 22%;
  justify-content: center;
}
header .menu .menu-inner .h2-area-wh-inner,
header .menu .menu-inner .h2-area-b-inner,
header .menu .menu-inner .h2-area-p-inner {
  width: 80%;
}
header .menu .menu-inner .h2-area-wh-inner h2,
header .menu .menu-inner .h2-area-wh-inner p,
header .menu .menu-inner .h2-area-b-inner h2,
header .menu .menu-inner .h2-area-b-inner p,
header .menu .menu-inner .h2-area-p-inner h2,
header .menu .menu-inner .h2-area-p-inner p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
}
header .menu .close-btn {
  display: flex;
  justify-content: flex-end;
  padding: 5px;
}
header .menu .close-btn #menu-2 {
  width: 80px;
  height: 80px;
  background-color: #C3F0E7;
  color: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  border-radius: 50%;
}
header .menu.open {
  display: block;
  opacity: 1;
  z-index: 100;
}

/* =============  secrion1  ================ */
.section1 {
  background-image: url(../img/section1-bgi.png);
  background-size: cover;
  background-color: #F6F3F3;
}
.section1 .sec1-area {
  padding: 30px 0;
}
.section1 .sec1-area .top-p,
.section1 .sec1-area .bottom-p {
  display: flex;
  width: 96%;
  padding: 17px 8px;
  font-size: 13px;
  margin: 0 auto;
  justify-content: center;
  line-height: 1.25rem;
  font-weight: 500;
}
.section1 .sec1-area h3 {
  display: flex;
  justify-content: center;
  margin: 5px auto;
  font-size: 20px;
}

/* =============  secrion2  ================ */
.section2 {
  background-color: #000;
}
.section2 .section2-inner {
  padding: 22px 0;
}
.section2 .section2-inner .inner-item-left {
  display: flex;
  justify-content: center;
  padding: 10px;
}
.section2 .section2-inner .inner-item-left .img-side {
  display: flex;
  width: 45%;
  justify-content: center;
  align-items: center;
}
.section2 .section2-inner .inner-item-left .img-side .main-img {
  display: block;
  width: 90%;
}
.section2 .section2-inner .inner-item-left .text-side {
  display: flex;
  flex-direction: column;
  color: #fff;
  width: 46%;
  align-items: center;
}
.section2 .section2-inner .inner-item-left .text-side img {
  display: block;
  width: 75%;
  margin: 10px auto 10px;
}
.section2 .section2-inner .inner-item-left .text-side .small-px {
  display: block;
  width: 95%;
  margin: 10px auto;
}
.section2 .section2-inner .inner-item-right {
  display: flex;
  justify-content: center;
  padding: 10px;
}
.section2 .section2-inner .inner-item-right .img-side {
  display: flex;
  width: 45%;
  justify-content: center;
  align-items: center;
}
.section2 .section2-inner .inner-item-right .img-side .main-img {
  display: block;
  width: 90%;
}
.section2 .section2-inner .inner-item-right .text-side {
  display: flex;
  flex-direction: column;
  color: #fff;
  width: 46%;
  align-items: center;
}
.section2 .section2-inner .inner-item-right .text-side img {
  display: block;
  width: 75%;
  margin: 10px auto 10px;
}
.section2 .section2-inner .inner-item-right .text-side .small-px {
  display: block;
  width: 92%;
  margin: 10px auto;
}
.section2 .section2-inner .btn-up {
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 20px;
}

/* =============  secrion3  ================ */
.section3 {
  background-color: #F6F3F3;
  background-image: url(../img/sec3-bg.png);
  background-size: cover;
  background-position: 0 0;
}
.section3 .sec3-inner .sec3-title {
  text-align: center;
  padding-top: 15px;
}
.section3 .sec3-inner .sec3-title p {
  padding: 5px;
  font-size: 14px;
}
.section3 .sec3-inner .sec3-title h3 {
  font-size: 16px;
}
.section3 .sec3-inner .sec3-inner {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  margin: 20px auto 0;
  padding-bottom: 20px;
  justify-content: space-evenly;
}
.section3 .sec3-inner .sec3-inner img {
  width: 45%;
  height: auto;
}

/* =============  secrion4  ================ */
.section4 {
  background-color: #000;
}
.section4 .sec4-area {
  display: grid;
  grid-template-columns: 45% 45%;
  grid-gap: 3% 5%;
  padding: 7% 2% 20%;
  justify-content: center;
}
.section4 .sec4-area .liver-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 9px 0;
}
.section4 .sec4-area .liver-item .liver-img {
  background: #F2F1EB;
  margin-bottom: 25px;
}
.section4 .sec4-area .liver-item .liver-img img {
  display: block;
  width: 89%;
  margin: 9px auto;
}
.section4 .sec4-area .liver-item .liver-img h3 {
  text-align: center;
  font-size: 13px;
  padding-bottom: 5px;
}
.section4 .sec4-area .liver-item .sec4-btn {
  display: flex;
  justify-content: space-around;
  background-color: #F2F1EB;
  padding: 10px 15px;
  width: 95%;
  border-radius: 30px;
}
.section4 .sec4-area .liver-item .sec4-btn a {
  text-align: center;
  font-weight: 700;
  color: #000;
  font-size: 11px;
}
.section4 .sec4-area .liver-item .sec4-btn img {
  width: 12%;
  height: auto;
}

/* =============  secrion5  ================ */
.section5 {
  background-color: #F6F3F3;
  background-image: url(../img/sec5-bgi.png);
  background-size: cover;
  background-position: 0 0;
}
.section5 .sec5-area {
  display: flex;
  justify-content: space-evenly;
  padding: 30px 20px 35px;
}
.section5 .sec5-area a {
  width: 30%;
}
.section5 .sec5-area a img {
  width: 100%;
}

/* =============  secrion6  ================ */
.section6 {
  background-color: #000;
}
.section6 h3 {
  text-align: center;
  color: #fff;
  font-size: 11px;
  text-align: start;
  display: flex;
  width: 85%;
  padding: 15px 2px;
  margin: 0 auto;
  justify-content: center;
}
.section6 .sec6-area {
  padding-bottom: 35px;
}
.section6 .sec6-area .flow-item {
  width: 92%;
  margin: 0 auto 10px;
}
.section6 .sec6-area .flow-item .flow-top img {
  width: 88%;
  padding-top: 15px;
  display: block;
  margin: 0 20px 0 auto;
}
.section6 .sec6-area .flow-item p {
  display: flex;
  color: #fff;
  font-size: 12px;
  width: 77%;
  margin: 0 8px 0 auto;
  padding: 7px 0 12px;
  justify-content: flex-end;
}

/* =============  secrion7  ================ */
.section7 {
  background-color: #F6F3F3;
  background-image: url(../img/sec7-bgi.png);
  background-size: cover;
  background-position: 0 0;
}

.sec7-area {
  padding: 50px 0 100px;
  font-size: 13px;
}
.sec7-area .details {
  color: #000;
  line-height: 2;
  width: 85%;
  margin: 0 auto 20px;
}
.sec7-area .details__summary {
  position: relative;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  margin: 0;
  padding: 10px 22px 10px 18px;
  border-bottom: 3px dotted #fea9db;
  /* 追加 */
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.sec7-area .details__summary::-webkit-details-marker {
  display: none;
}
.sec7-area .details.open .details__summary .cp_arrows {
  transform: rotate(180deg) translate3d(-5px, -1%, 0);
}
.sec7-area .details__content {
  display: none;
  padding: 10px;
}

/* =============  footer  ================ */
footer {
  background-color: #000;
  padding-bottom: 20px;
}
footer .details {
  color: #000;
  line-height: 2;
  width: 100%;
  margin: 0 auto 20px;
}
footer .details__summary {
  position: relative;
  display: flex;
  justify-content: space-evenly;
  cursor: pointer;
  margin: 0;
  color: #fff;
  padding: 30px 70px 10px 60px;
  /* 追加 */
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
footer .details__summary::-webkit-details-marker {
  display: none;
}
footer .details__summary p {
  padding-left: 10px;
}
footer .details__summary:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  /*線の上下位置*/
  display: inline-block;
  width: 220px;
  /*線の長さ*/
  height: 2px;
  /*線の太さ*/
  transform: translateX(-50%);
  /*位置調整*/
  background-color: rgb(255, 255, 255);
  /*線の色*/
  border-radius: 2px;
  /*線の丸み*/
}
footer .details__content {
  background-color: #fff;
}
footer .details__content .dl {
  display: block;
  font-size: 10px;
  padding: 30px 20px;
}
footer .details__content .dl .inner {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  padding: 20px 0;
  border-bottom: 1px dotted #000;
}
footer .details__content .dl .inner .dt {
  width: 50px;
  text-align: end;
  margin-right: 15px;
}
footer .details__content .dl .inner .dd {
  width: 220px;
}
footer .details.open .details__summary .cp_arrows2 {
  transform: rotate(180deg) translate3d(-5px, -1%, 0);
}
footer .details__content {
  display: none;
  padding: 10px;
}
footer .top-btn {
  display: flex;
  justify-content: center;
  width: 40%;
  margin: 35px auto;
  font-size: 18px;
  background-color: #2B2B2B;
  color: #fff;
  border: 2px solid #fff;
  padding: 25px 0;
}
footer .small {
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 20px;
}
/*# sourceMappingURL=style.css.map */