@charset "UTF-8";

body {
  zoom: 0.75;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior: none; /* オーバースクロール禁止 */
}

a:hover {
  opacity: 0.8;
}

.container {
  max-width: 1296px;
  margin-inline: auto;
  padding: 0 20px;
}

.section {
  padding: 120px 0;
}

.title-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title-en {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 8.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .10em;
  color: #fff;
}

.title-en.blue {
  color: #7ac9c8;
}

.title-en-02 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 5.0rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .10em;
  color: #1d2087;
}

.title-jp {
  font-size: 3.5rem;
  color: #1d2087;
  font-weight: 700;
}

.title-jp-02 {
  font-size: 3.0rem;
  color: #1d2087;
  font-weight: 700;
}

.text-indent {
  text-indent: -1em;
  padding-left: 1em;
}

.mt-0{
  margin-top: 0px!important;
}

.mt-10 {
  margin-top: 10px!important;
}

.mt-20 {
  margin-top: 20px!important;
}

.mt-40 {
  margin-top: 40px!important;
}

.mt-60 {
  margin-top: 60px!important;
}

/* header */
.header-inner {
  padding: 40px 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-contents {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  /* height: 100vh; */
  transform: translateY(-100%);
  background: url("../img/bg-header.png") no-repeat center/cover;
  transition: ease .4s; 
  z-index: 9996;
}

.header-contents-inner {
  max-width: 1060px;
  margin-inline: auto;
  padding: 100px 0 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header-menu {
  width: 100%;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.header-nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.header-nav a {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 4.0rem;
  color: #7ac9c8;
  letter-spacing: .14em;
  text-decoration: none;
  font-weight: 500;

  position: relative;
  display: inline-block;
  overflow: hidden; /* 擬似要素がはみ出さないように */
}

/* 擬似要素で下線を用意（初期状態は非表示） */
.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: url("../img/heder-link-line.png") repeat-x center; /* 画像線を指定 */
  transform: scaleX(0); /* 横幅ゼロからスタート */
  transform-origin: left center; /* 左端から伸びる */
  transition: transform 0.3s ease; /* ふわっとアニメ */
}

/* ホバー時に線を伸ばす */
.header-nav a:hover::after {
  transform: scaleX(1);
}

.header-nav a span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.8rem;
  vertical-align: middle;
  letter-spacing: .05em;
  font-weight: 700;
}

.header-sns-wrapper {
  display: flex;
  gap: 20px;
  align-items: end;
  line-height: 1;
}

.header-sns {
  display: flex;
  gap: 10px;
}

.header-sns-txt {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 2.1rem;
  color: #7ac9c8;
  letter-spacing: .14em;
  font-weight: 500;
}

.header-hamburger {
  width: 55px;
  height: 100%;
}

.hamburger {
  background-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  border-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  z-index: 9997;
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: relative;
  transition: ease .4s; /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 15px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}

/* ハンバーガーメニュークリック後のスタイル */
.header-contents.active {
  transform: translateY(0);
}

.hamburger.active span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
  background-color: #7ac9c8;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
  background-color: #7ac9c8;
}

/* main visual */
.mv {
  width: 100%;
  position: relative;
}
.mv-img {
  display: block;
  width: auto;
  margin-inline: auto;
  margin-top: -40px;
}
.mv-riimo {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translateX(-60%); /* 右寄せしたいときは正の値 */
}
.mv-movie {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateX(100%); /* 右寄せしたいときは正の値 */
}

/* モーダル */
dialog {
  max-width: 90%;
  width: 800px;
  border: none;
  border-radius: 10px;
  padding: 0;
  background: transparent;
}

.dialog-content {
  position: relative;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

#closeDialog {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;               /* ← これ重要 */
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
  /* クリックしやすく */
  padding: 0;
}
#movieVideo {
  display: block;
  width: 100%;
}

.iframe-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 アスペクト比 */
  height: 0;
}
.iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* about */
#about {
  background: url(../img/bg-about.png) no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 260px 0 400px;
}

.about-txt{
  padding-left: 150px;
}

.about-txt p{
  width: 500px;
  margin-top: 40px;
  line-height: 1.8;
  letter-spacing: 0;
}

.about-txt p span{
  letter-spacing: .1em;
}

/* points */
#points {
  background-color: #fff;
}

.points-list {
  margin-top: 60px;
  padding: 0 100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.points-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.points-list li .title {
  margin-top: 20px;
  font-size: 3.5rem;
  color: #1d2087;
  font-weight: 700;
}

.points-list li .txt {
  width: 410px;
  margin-inline: auto;
  margin-top: 10px;
}

.points-list li .points-03 {
  position: relative;
}

.points-list li .points-03 .pauchi {
  position: absolute;
  bottom: -35px;
  left: 25px;
  margin: 0 auto;
}

.points-howto {
  margin-top: 120px;
}

.points-howto .title-box {
  background: url(../img/bg-points-howto-title.png) no-repeat;
  background-position: center;
  background-size: 100%;
}

.points-howto-list {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.points-howto-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.points-howto-list li p {
  font-size: 2.4rem;
  line-height: 1.3;
  text-align: center;
  margin-top: 10px;
  font-weight: 800;
}

.points-howto-bottom {
  width: 100%;
  margin-top: 60px;
}

/* scene */
.bg-scene-top {
  background: url(../img/bg-scene-top.png) no-repeat;
  padding: 70px;
  background-position: top center;
  background-color: #fff;
}

#scene {
  background: url(../img/bg-scene.png) no-repeat;
  padding: 100px 0 120px;
  background-size: cover;
  background-position: top center;
}

.scene-list {
  display: grid;
  row-gap: 0;
  margin-top: 120px;
}

.scene-item {
  width: 50%;
  height: auto;
  object-fit: cover;
  position: relative;
  display: flex;
  justify-content: end;
}

/* 2つ目以降を少し上にずらして重ねる */
.scene-item + .scene-item {
  margin-top: -200px;
}

/* 奇数は左寄せ、偶数は右寄せ */
.scene-item:nth-child(odd) {
  justify-self: start;
}
.scene-item:nth-child(even) {
  justify-self: end;
}

.scene-item-img {
  position: relative;
  width: 560px;
  height: 500px;
}

.scene-item-img img {
  width: 100%;
}

.scene-item-img-top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.scene-item-img-under {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 1;
}

.scene-txt-box {
  color: #fff;
  position: absolute;
  top: 50px;
  left: 100px;
  z-index: 3;
}

.scene-txt-box span {
  letter-spacing: .1em;
}

.scene-title {
  font-size: 4.0rem;
  line-height: 1.2;
}

.scene-txt {
  width: 240px;
  margin-top: 5px;
  letter-spacing: 0;
  text-align: justify;
}

/* 画像スライダー */
.scene-slider {
  position: relative;
  width: 560px;
  height: 470px;
  overflow: hidden;
}

.scene-item-img-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.scene-item-img-top.active {
  opacity: 1;
}


/* products */
.bg-products-top {
  background: url(../img/bg-products-top.png) no-repeat;
  padding: 80px;
  background-position: top center;
  background-color: #7ac9c8;
  background-size: cover;
}

.products-content {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.products-txt {
  color: #fff;

}

.products-brand {
  font-size: 2.3rem;
  border-bottom: 2px solid #fff;
  display: inline-block;
}

.products-name {
  margin-top: 10px;
  font-size: 3.9rem;
  letter-spacing: .14em;
  text-indent: -10px;
  line-height: 1.25;
}

.products-intro {
  font-size: 1.8rem;
  margin-top: 20px;
}

.products-btn {
  display: block;
  margin-top: 20px;
}

.products-insta{
  margin-top: 120px;
}

.products-insta-icon {
  width: 70px;
  margin-inline: auto;
}

.products-insta-post {
  margin-top: 20px;
}

/* faq */
.faq-box {
  margin-top: 120px;
  padding: 100px;
  border-radius: 50px;
  background: #fff;
  opacity: 0.9;
}

.faq-wrapper {
  margin-top: 40px;
}

.faq-item {
  padding: 40px 15px;
  border-top: 1px solid #7ac9c8;
  display: flex;
  align-items: center;
  gap: 40px;
}

.faq-item.last {
  border-bottom: 1px solid #7ac9c8;
}

.faq-txt {
  padding-left: 60px;
  width: 75%;
}

.faq-q {
  font-size: 2.8rem;
  position: relative;
}

.faq-q::before {
  position: absolute;
  content: "Q.";
  top: 0;
  left: -60px;
  font-size: 4.4rem;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 500;
  color: #7ac9c8;
  line-height: 1;

}

.faq-a {
  margin-top: 30px;
  color: #808080;
}

.faq-img {
  width: 20%;
  display: flex;
  justify-content: center;
}

.faq-list {
  padding-left: 70px;
}

.faq-list li:not(:first-child) {
  margin-top: 20px;
}

.faq-list li{
  position: relative;
  counter-increment: mycounter;
}

.faq-list li::before {
  position: absolute;
  content: counter(mycounter, decimal-leading-zero);
  background: url(../img/faq-list-marker.png) no-repeat center center;
  background-size: contain;
  width: 50px;
  height: 45px;
  left: -70px;
  font-size: 2.2rem;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: normal;
}

.faq-txt-small {
  font-size: 1.6rem;
}

.faq-txt-marker {
  background: linear-gradient(transparent 70%, #7ac9c84D 70%);
}

/* footer */
.bg-footer-top {
  background: url(../img/bg-footer-top.png) no-repeat;
  padding: 70px;
  background-position: top center;
  background-color: #7ac9c8;
  background-size: cover;
}

.footer {
  background: url(../img/bg-footer.png) no-repeat;
  padding: 100px 0 20px;
  background-size: cover;
  background-position: top center;
}

.footer-bnr {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-bnr img {
  width: 100%;
}

.footer-under {
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-sns {
  display: flex;
  gap: 10px;
}

.footer-copyright{
  margin-top: 20px;
  color: #fff;
  letter-spacing: .14em;
}

/* イラスト */
.header-contents-inner {
  position: relative;
}
.header-cloud01 {
  position: absolute;
  top: 250px;
  left: 50%;
  transform: translateX(140%);
}
.header-cloud02 {
  position: absolute;
  top: 460px;
  left: 50%;
  transform: translateX(220%);
}

.mv-cloud01 {
  position: absolute;
  top: 250px;
  left: 50%;
  transform: translateX(160%);
}
.mv-cloud02 {
  position: absolute;
  top: 460px;
  left: 50%;
  transform: translateX(250%); /* 右寄せしたいときは正の値 */
}
.mv-cloud03 {
  position: absolute;
  top: 370px;
  left: 50%;
  transform: translateX(-170%);
}

#about {
  position: relative;
}
.about-cloud01 {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-230%); /* 右寄せしたいときは正の値 */
}
.about-riimo01 {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(170%); /* 右寄せしたいときは正の値 */
}

#points {
  position: relative;
}
.points-cloud01 {
  position: absolute;
  top: 800px;
  left: 50%;
  transform: translateX(220%); /* 右寄せしたいときは正の値 */
}

#scene {
  position: relative;
}
.scene-cloud01 {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-220%); /* 右寄せしたいときは正の値 */
}
.scene-riimo01 {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(60%); /* 右寄せしたいときは正の値 */
}

#products {
  position: relative;
}
.products-cloud01 {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-220%); /* 右寄せしたいときは正の値 */
}
.products-riimo01 {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(65%); /* 右寄せしたいときは正の値 */
}
.products-riimo02 {
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(-285%); /* 右寄せしたいときは正の値 */
}

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

  
body {
  zoom: 1;
}

a:hover {
  opacity: 1;
}

.title-en-02 {
  font-size: 3.0rem;
}
.title-jp-02 {
  font-size: 2.4rem;
}

.header-contents-inner {
  padding: 80px 20px 240px;
}

.header-logo {
  width: 150px;
}

.mv-img {
  width: 100%;
  padding: 0 20px;
  margin-top: -10px;
}

.mv-movie {
  width: 25%;
  top: 58%;
  left: 50%;
  transform: translateX(80%);
}

.mv-riimo {
  width: 20%;
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translateX(-60%);
}

#about {
    background: url(../img/bg-about.png) no-repeat;
    background-size: cover;
    background-position: top center;
    padding: 100px 0 150px;
}

.about-title {
  width: 50%;
}

.about-txt {
  padding-left: 0;
}

.about-txt p {
  width: 450px;
  margin-top: 20px;
}

.points-list {
  grid-template-columns: repeat(1, 1fr);
}

.points-howto-list {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

#scene {
  background: url(../img/bg-scene.png) no-repeat;
  padding: 100px 20px 0;
  background-size: cover;
  background-position: top center;
}

.scene-title {
  font-size: 3.0rem;
  line-height: 1.2;
}

.scene-txt-box {
  top: 0;
  left: 20px;
}

.scene-txt {
  width: 150px;
}

.scene-item-img {
  height: 450px;
}

.products-content {
  flex-direction: column;
  align-items: center;
}

.products-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.faq-box {
  margin-top: 400px;
}


/* イラスト */
.illust-clip {
  position: absolute;
  inset: 0;
  overflow: clip;
  pointer-events: none;
}

.header-cloud01 {
  width: 20%;
  top: 400px;
  transform: translateX(80%);
}

.header-cloud02 {
  width: 20%;
  top: 520px;
  transform: translateX(140%);
}

.mv-cloud01 {
  width: 20%;
  top: 250px;
  transform: translateX(80%);
}
.mv-cloud02 {
  width: 20%;
  top: 320px;
  transform: translateX(180%);
}
.mv-cloud03 {
  width: 30%;
  top: 300px;
  transform: translateX(-170%);
}

.about-cloud01 {
  width: 20%;
  top: -30px;
  transform: translateX(-300%);
}

.about-riimo01 {
  width: 20%;
  bottom: 50px;
  transform: translateX(140%);
}

.points-cloud01 {
  width: 30%;
  top: 800px;
  transform: translateX(110%);
}

.scene-riimo01 {
  width: 30%;
  position: absolute;
  top: 280px;
  left: 50%;
  transform: translateX(40%);
}

.products-riimo01 {
  position: absolute;
  top: 1250px;
  left: 50%;
  transform: translateX(-20%);
}

.products-riimo02 {
  width: 20%;
  position: absolute;
  top: 250px;
  left: 50%;
  transform: translateX(-220%);
}


}


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

  body {
  zoom: 1;
}

.container {
  padding: 0 20px;
}

.section {
  padding: 40px 0;
}

.title-en {
  font-size: 4.0rem;
}

.title-en-02 {
  font-size: 1.9rem;
}

.title-jp {
  font-size: 1.8rem;
}

.title-jp-02 {
  font-size: 1.3rem;
}

.header-inner {
  padding: 20px;
}

.header-logo {
  width: 65px;
  display: block;
}

.header-contents {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateY(-100%);
  background: url("../img/bg-header.png") no-repeat center/cover;
  transition: ease .4s;
  z-index: 9996;
}

.header-contents-inner {
  padding: 40px 20px;
}

.header-logo-richmo {
  width: 200px;
}

.header-menu {
  margin-top: 40px;
  flex-direction: column;
  align-items: start;
  gap: 40px;
}

.header-nav {
  gap: 10px;
}

.header-nav a {
  font-size: 2.4rem;
}

/* 擬似要素で下線を用意（初期状態は非表示） */
/* .header-nav a::after {
} */

/* ホバー時に線を伸ばす */
/* .header-nav a:hover::after {
  transform: scaleX(1);
} */

.header-nav a span {
  font-size: 1.3rem;
}

.header-sns-wrapper {
  flex-direction: column;
  gap: 20px;
  align-items: start;
}

.header-sns {
  display: flex;
  gap: 10px;
}

.header-sns-txt {
  font-size: 1.4rem;
}

.header-hamburger {
  width: 35px;
}

/* ハンバーガーメニューの線 */
.hamburger span:nth-child(2) {
  margin: 6px 0;
}

/* ハンバーガーメニュークリック後のスタイル */
.hamburger.active span:nth-child(1) {
  top: 5px;
}

.hamburger.active span:nth-child(3) {
  top: -9px;
}

/* main visual */
.mv {
  margin-bottom: 30px;
}

.mv-img {
  padding: 0 20px;
  margin-top: -20px;
}

.mv-riimo {
  width: 70px;
  top: 30%;
  left: 50%;
  transform: translateX(-45%);
}

.mv-movie {
  width: 24%;
  top: 63%;
  left: 50%;
  transform: translateX(90%);
}

/* about */
#about {
  background: url(../img/bg-about_sp.png) no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 80px 0 400px;
}

.about-title {
  width: 90%;
}

.about-txt{
  padding-left: 0;
}

.about-txt p{
  width: 100%;
  margin-top: 20px;
  line-height: 1.6;
}

/* points */
.points-list {
  margin-top: 40px;
  padding: 0;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}

.points-list li .title {
  margin-top: 10px;
  font-size: 2.4rem;
}

.points-list li .txt {
  width: 300px;
  margin-top: 5px;
}


.points-list li .points-03.txt {
  letter-spacing: .08em;
}

.points-list li .points-03 .pauchi {
  width: 60px;
  bottom: -25px;
  left: 20px;
}

.points-howto {
  margin-top: 60px;
}

.points-howto .title-box {
  background: url(../img/bg-points-howto-title_sp.png) no-repeat;
  background-position: center;
  background-size: 100%;
}

.points-howto-list {
  margin-top: 40px;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}

.points-howto-list li p {
  font-size: 1.3rem;
  line-height: 1.2;
}

.points-howto-bottom {
  margin-top: 40px;
}

/* scene */
.bg-scene-top {
  background: url(../img/bg-scene-top_sp.png) no-repeat;
  padding: 18px;
  background-size: cover;
  background-position: top center;
  background-color: #fff;
}

#scene {
  background: url(../img/bg-scene_sp.png) no-repeat;
  padding: 40px 0 80px;
  background-size: cover;
  background-position: top center;
}

.scene-list {
  margin-top: 160px;
}

.scene-item {
  width: 90%;
}

/* 2つ目以降を少し上にずらして重ねる */
.scene-item + .scene-item {
  margin-top: 60px;
}

.scene-item-img {
  width: 100%;
  height: 250px;
}

.scene-item-img img {
  width: 93%;
}

.scene-item-img-under {
  top: 20px;
  left: 20px;
}

.scene-txt-box {
  top: 15px;
  left: 20px;
}

.scene-title {
  font-size: 2.0rem;
  line-height: 1.2;
}

.scene-txt {
  width: 115px;
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: .04em;
}

.scene-02 .scene-txt-box .scene-txt {
  width: 110px;
}

.scene-03 .scene-txt-box .scene-txt {
  width: 125px;
}

/* 画像スライダー */
.scene-slider {
  width: 100%;
  height: 250px;
}

/* products */
.bg-products-top {
  background: url(../img/bg-products-top_sp.png) no-repeat;
  padding: 20px;
  background-position: top center;
  background-size: cover;
}

.products-content {
  margin-top: 120px;
  flex-direction: column;
  gap: 20px;
}

.products-richimo {
  width: 260px;
}

.products-txt {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.products-brand {
  font-size: 1.5rem;
}

.products-name {
  font-size: 2.3rem;
  text-indent: 0;
}

.products-intro {
  font-size: 1.4rem;
}

.products-intro span {
  letter-spacing: -0.5em;
}

.products-btn {
  margin-top: 10px;
}

.products-btn img {
  width: 256px;
}

.products-btn {
  margin-top: 10px;
}

.products-insta{
  margin-top: 60px;
}

.products-insta-icon{
  width: 35px;
}

.faq-box {
  margin-top: 200px;
  padding: 30px 20px;
  border-radius: 30px;
}

.faq-wrapper {
  margin-top: 20px;
}

.faq-item {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.faq-txt {
  padding-left: 25px;
  width: 100%;
  font-size: 1.3rem;
}

.faq-q {
  font-size: 1.5rem;
}

.faq-q::before {
  left: -25px;
  font-size: 1.8rem;
}

.faq-a {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  width: 100%;
  position: relative;
}

.faq-a .faq-a-left .faq-03 {
  margin-right: 80px;
}

.faq-a-left {
  width: 253%;
}

.faq-img {
  width: 100%;
  display: flex;
  align-items: end;
}

.faq-img.faq-03 {
    width: 26%;
    position: absolute;
    top: -10px;
    right: 2px;
}

.faq-list {
  padding-left: 35px;
}

.faq-list li:not(:first-child) {
  margin-top: 20px;
}

.faq-list li{
  position: relative;
  counter-increment: mycounter;
}

.faq-list li::before {
  width: 25px;
  height: 25px;
  left: -35px;
  font-size: 1.0rem;
}

.faq-list li .faq-img {
  width: 110px;
  float: right;
  height: auto;
  margin: 0;
  vertical-align: bottom;
  clear: both;/*.spaceのfloat解除*/
}

.faq-list li .faq-img.faq-02 {
  width: 97px;
}

.faq-float .space {
  float: right;/*画像の位置を右下にしたい場合はright*/
  height: 4.0em/*画像上の余白の高さ*/
}

.faq-float::after {
  content: "";
  display: block;
  clear: both;
}

.faq-txt-small {
  font-size: 1.0rem;
}


/* footer */
.bg-footer-top {
  background: url(../img/bg-footer-top_sp.png) no-repeat;
  padding: 20px;
  background-position: top center;
  background-color: #7ac9c8;
  background-size: cover;
}

.footer {
  background: url(../img/bg-footer.png) no-repeat;
  padding: 40px 0 20px;
  background-size: cover;
  background-position: top center;
}

.footer-bnr {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.footer-under {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-sns img {
  width: 24px;
}

.footer-copyright{
  font-size: 0.8rem;
  margin-top: 10px;
}

/* 雲 */
.header-cloud01 {
  width: 20%;
  top: 370px;
  transform: translateX(40%);
}
.header-cloud02 {
  width: 20%;
  top: 440px;
  transform: translateX(110%);
}

.mv-cloud01 {
  width: 16%;
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translateX(150%);
}
.mv-cloud02 {
  width: 16%;
  position: absolute;
  top: 170px;
  left: 50%;
  transform: translateX(250%);
}
.mv-cloud03 {
  width: 23%;
  position: absolute;
  top: 140px;
  left: 50%;
  transform: translateX(-180%);
}

#about {
  position: relative;
}
.about-cloud01 {
  width: 25%;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-230%);
}
.about-riimo01 {
  width: auto;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(70%); /* 右寄せしたいときは正の値 */
}

#points {
  position: relative;
  overflow: hidden;
}
.points-cloud01 {
  width: 20%;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(170%);
}

#scene {
  position: relative;
}
.scene-cloud01 {
  width: 30%;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-200%);
}
.scene-riimo01 {
  width: auto;
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translateX(-10%);
}

.products-cloud01 {
  width: 30%;
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-190%);
}
.products-riimo01 {
  width: auto;
  position: absolute;
  top: 800px;
  left: 50%;
  transform: translateX(-30%);
}
.products-riimo02 {
  width: auto;
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translateX(-120%);
}

}