@charset "utf-8";

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

▼▼▼　テンプレJS用のCSS。不要なものは削除　▼▼▼

=================================================================================
*/
html {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  line-height: 2;
  color: #333333;
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.5;
}

@media screen and (min-width: 769px) {

  /* PC用 */
  html {
    font-size: calc(10px * (500 / 750));
  }

  .inner {
    position: relative;
    max-width: 100%;
    display: block;
    margin: 0 auto;
  }
}

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

  /* SP用 */
  html {
    font-size: calc(10vw / 750 * 100);
    /* 最大値768px、文字サイズ10pxの場合 */
  }

  .inner {
    width: 100%;
    padding: 0 5rem;
    max-width: 100%;
    margin: auto;
  }
}

.wrapper {
  background-color: #f2fbfc;
}

section[class^="area"] {
  position: relative;
}

i[id]+section[class^="area"] {
  margin-top: 5rem;
}

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

▼▼▼　文字　▼▼▼

=================================================================================
*/
.go {
  font-family: "Noto Sans JP", sans-serif;
}

.pop {
  font-family: "Poppins", sans-serif;
}

.b {
  font-weight: bold;
}

.m {
  font-weight: 500;
}


sup,sub{
    font-size: 2rem;
}

/* googleマテリアルアイコン */
body .material-icons-outlined {
  font-size: inherit;
}

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

▼▼▼　header　▼▼▼

=================================================================================
*/
header {
  position: fixed;
  top: 0;
  left: calc(50% - 37.5rem);
  width: 75rem;
  z-index: 10;
  transition: 1s all;
  background-image: linear-gradient(90deg, #1d2087, #009eb8 75%);
}

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

  /* SP用 */
  header {
    left: initial;
  }
}

header>.box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0 0 5rem;
  transition: 1s all;
  min-height: var(--hamburger-size);
}

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

  /* SP用 */
  header>.box {
    padding-right: 0;
  }
}

ul.header01 {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: end;
  gap: 8rem;
}

ul.header01>li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

ul.header01>li.item01 {
  margin-left: 0;
  margin-right: auto;
}

ul.header01>li.hamburger_set {
  margin-right: 0;
}

ol.header02 {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 2rem 5rem;
  height: 100%;
  color: #fff;
}

ol.header02>li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

h1 a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;

}

.mv {
  width: 100%;
  position: relative;
}

.nav_active header {
  background: #000;
}

.head_logo {
  width: 17rem;
  position: absolute;
  top: 20%;
  right: calc(50% - 8.5rem);
  z-index: 12;
}

.head_logo_link:hover {
  opacity: 1 !important;
}

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

  /* SP用 */
  h1 img {
    width: 15rem;
  }
}

.wave {
  position: fixed;
  z-index: 0;
  height: 40rem;
  background-color: #cceff1;
}

.gloval_menu {
  font-size: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 3rem;
  margin-bottom: 2rem;
}

.triangle {
  width: 3rem;
}

.faq_triangle {
  transition: transform 0.3s ease;
  /* 回転アニメーション */
}

.faq_triangle.active {
  transform: rotate(180deg);
  /* クリック時に180度回転 */
}

.faq_detail {
  display: none;
}


.h_menu_sns {
  margin: min(3vw, 60px) 0 min(2.5vw, 30px);
}

.h_menu_sns_title {
  font-family: Poppins;
  font-weight: 500;
  font-size: 3rem;
  color: #00adba;
}

.h_menu_sns_icon {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 3rem;
  margin-top: 3rem;
}

.h_menu_sns_icon a img {
  width: 8rem;
}

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

▼▼▼　メガメニュー　▼▼▼

=================================================================================
*/
.megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 11;
  transform: translateX(-100vw);
  transition: 1s all;
  opacity: 0;
  padding-top: 5rem;
}

ol.header02>li:hover .megamenu {
  transform: translateX(0);
  opacity: 1;
}

.megamenu>.box {
  padding: 4rem 8rem 8rem;
  background: #fff;
  border-radius: 2rem;
  color: #000;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
  /* overflow-y: scroll; */
  /* max-height: 70vh; */
}

/* ul.mega_area */
ul.mega_area {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 4rem;
}

ul.mega_area>li.item01 {
  margin-right: auto;
}

ul.mega_area>li.item02 {
  flex: 1;
}

ol.mega_list {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 4rem;
  flex-wrap: wrap;
}

ul.mega_area>li>a,
ol.mega_list>li>a {
  border-bottom: 2px solid #F29600;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  padding-right: 6rem;
  background: url(/img/arrow02.webp) right 1.7rem center / 1.3rem auto no-repeat;
}

ul.mega_area>li>a {
  border-bottom: none;
}

/* ▲ ul.mega_area ▲ */

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

▼▼▼　ハンバーガーメニュー　▼▼▼

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

/* ▼▼ トグルボタン ▼▼ */
:root {
  --hamburger-size: 13rem;
  /* ハンバーガーアイコンサイズ */
  --hamburger-line: 0.5;
  /* ハンバーガーアイコンの横線の長さ */
}

.hamburger_area {
  position: relative;
  z-index: 12;
}

.toggle_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 11;
  width: var(--hamburger-size);
  height: var(--hamburger-size);
  transition: all 0.5s;
  cursor: pointer;
  margin: 0 0 0 auto;
}

.toggle_btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  right: calc((99.99% - (var(--hamburger-size) * var(--hamburger-line))) / 2);
  width: calc(var(--hamburger-size) * var(--hamburger-line));
  height: 0;
  border-top: calc(var(--hamburger-size) * 0.025) solid #fff;
  background-color: #fff;
  transition: all 0.5s;
  font-size: 130%;
}

.toggle_btn span:nth-child(1) {
  transform: translateY(calc(var(--hamburger-size) * -0.2));
}

.toggle_btn span:nth-child(2) {}

.toggle_btn span:nth-child(3) {
  transform: translateY(calc(var(--hamburger-size) * 0.2));
}

/* オープン時 */
body.open .toggle_btn {
  box-shadow: none;
  background: rgba(12, 48, 97, 0);
}

body.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(0) rotate(225deg);
  transform: translateY(0) rotate(210deg);
}

body.open .toggle_btn span:nth-child(2) {
  -webkit-transform: translateY(0) rotate(-225deg);
  transform: translateY(0) rotate(-210deg);
}

body:not(.open) .toggle_btn span:nth-child(3) {
  border: none;
  color: #fff;
}

body.open .toggle_btn span:nth-child(3) {
  opacity: inherit;
  border: none;
  color: #fff;
}

body:not(.open) .toggle_btn span:nth-child(3):before {
  content: "MENU";
  font-family: Poppins;
  font-size: 2rem;
}

body.open .toggle_btn span:nth-child(3):before {
  display: none;
  color: #fff;
}

/* ▲▲ トグルボタン ▲▲ */

/* ▼ グローバルナビ ▼ */
.gloval-nav {
  background-color: #fff;
  position: fixed;
  z-index: 9;
  top: 0;
  bottom: 0;
  right: calc(50% - 37.5rem);
  padding: calc(var(--hamburger-size) * 2) 8rem 0 10rem;
  transform: translatey(-100%);
  transition: 1s all;
  width: 75rem;
  max-height: 100vh;
}

.gloval_box {
  overflow-y: auto;
  width: 100%;
  height: 100%;
}

.gloval-nav ul.gloval_ul>li:nth-child(2) {
  transition-delay: .1s;
}

.gloval-nav ul.gloval_ul>li:nth-child(3) {
  transition-delay: .2s;
}

.gloval-nav ul.gloval_ul>li:nth-child(4) {
  transition-delay: .3s;
}

.gloval-nav ul.gloval_ul>li:nth-child(5) {
  transition-delay: .4s;
}

.gloval-nav ul.gloval_ul>li:nth-child(6) {
  transition-delay: .5s;
}

.gloval-nav ul.gloval_ul>li:nth-child(7) {
  transition-delay: .6s;
}

.gloval-nav ul.gloval_ul>li:nth-child(8) {
  transition-delay: .7s;
}

.gloval-nav ul.gloval_ul>li:nth-child(9) {
  transition-delay: .8s;
}

.gloval-nav ul.gloval_ul>li:nth-child(n+10) {
  transition-delay: .9s;
}


/* open時 */
.open {
  overflow: hidden;
}

.open .hamburger_bg,
.open .gloval-nav {
  visibility: visible;
  transform: translateX(0);
  transition: transform .6s;
  right: calc(50% - 37.5rem);
}

.open .gloval-nav ul.gloval_ul>li {
  opacity: 1;
  transform: translateX(0);
  /* transition: transform 1s ease, opacity .9s ease; */
}

/* ▲ グローバルナビ ▲ */

/* ▼ アコーディオン ▼ */
.ac_btn {
  padding: 2rem 1em 2rem 0;
  display: block;
  cursor: pointer;
  position: relative;
}

.ac_btn::before {
  content: "＋";
  position: absolute;
  top: calc((100% - 1em) / 2);
  right: 0;
  pointer-events: none;
  color: #0C3061;
  line-height: 1;
  display: inline;
}

.ac_btn.active::before {
  content: "－";
}

ul.sub_gloval_ul {
  display: none;
}

ul.sub_gloval_ul>li {
  padding-left: 1em;
}

ul.sub_gloval_ul>li>a {
  color: #0C3061;
  padding: 2rem 1em 2rem 0;
  display: block;
}

/* ▲ アコーディオン ▲ */

/* ▼ 背景網掛け ▼ */
.hamburger_bg {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  z-index: 9;
  top: 0;
  bottom: 0;
  right: 0;
  transform: translateX(100%);
  /* transition: 1s all; */
  width: 100vw;
  max-height: 100vh;
}

/* ▲ 背景網掛け ▲ */


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

▼▼▼　ちらつき対策（CSS）　▼▼▼

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

.loading {
  position: fixed;
  background: #fff;
  z-index: 9999;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 1s all;
  opacity: 1;
  pointer-events: all;
}

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

▼▼▼　SP用フローティングメニュー　▼▼▼

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

.floatig_menu {
  position: sticky;
  bottom: 0;
  left: 0;
  padding: 3rem;
  width: 100%;
  background: #000;
  color: #fff;
  z-index: 9;
  transition: 1s all;
}


/* メインコンテンツ */
main {
  max-width: 75rem;
  margin: auto;
  background-color: #fff;
  position: relative;
  z-index: 2;
}

/* トップ */
.mv {
  position: relative;
}

.mv_text {
  font-size: 1.2rem;
  position: absolute;
  bottom: 0%;
  right: calc(50% - 34.5rem);
}

.concept {
  position: relative;
}

.concept_box {
  max-width: 61rem;
  margin: 10rem auto;
  font-size: 2.8rem;
}

.concept_title {
  font-size: 4.8rem;
  color: #1d2088;
  text-align: center;
}

.concept_title>span {
  padding-left: 3rem;
}

.concept_text {
  margin: 5rem 0;
  text-align: center;
}

.concept_bg {
  position: absolute;
  top: 20rem;
  z-index: -1;
}

.products_title {
  font-family: Poppins;
  font-size: 9.6rem;
  color: #1d2088;
}

.products_subtitle {
  font-size: 3rem;
  color: #1d2088;
  font-weight: bold;
}

.concept_img {
  max-width: 75rem;
  margin: 5rem auto;
}

.concept_img_box1 {
  text-align: end;
}

.concept_img_box2 {
  text-align: start;
}

.concept_img1 {
  width: 53rem;
}

.concept_img2 {
  width: 48rem;
  position: relative;
  top: -5rem;
}

.concept_img3 {
  width: 43rem;
  padding-right: 3.5rem;
  position: relative;
  top: -10rem;
}

.delay1 {
  animation-delay: 0.2s;
}

.delay2 {
  animation-delay: 0.4s;
}

.products {
  position: relative;
  text-align: center;
}

.products_icon {
  width: 20rem;
  margin: auto;
  position: relative;
  z-index: 2;
}

.products_icon_bg {
  position: absolute;
  top: 4rem;
  right: calc(50% - 37.5rem);
  z-index: 0;
}

.products_menu_b {
  background-color: #cceff1;
}

.products_menu_bg {
  max-width: 61rem;
  margin: auto;
}

.products_menu_img {
  max-width: 75rem;
  margin: auto;
  padding: 12rem 0rem 5rem;
  position: relative;
  z-index: 1;
}

.products_bg2 {
  position: absolute;
  top: 19.5rem;
  right: calc(50% - 37.5rem);
  z-index: -1;
}

.products_menu_detail_title {
  font-size: 3.6rem;
  font-weight: 500;
  text-align: center;
}

.products_menu_detail_head {
  width: 17rem;
  font-size: 2.8rem;
  font-weight: 500;
  color: #fff;
  background-color: #00adba;
  padding: 0.5rem 0;
  margin: 6rem auto 0;
  border-radius: 3rem;
  position: relative;
  top: 2.5rem;
}

.products_menu_detail_text {
  font-size: 2.8rem;
  line-height: 1.5;
  padding: 8rem 5rem;
  background-color: #fff;
  border-radius: 3rem;
  text-align: start;
}


.products_menu_movie {
  max-width: 68rem;
  margin: auto;
  padding: 8rem 0 12rem;
}

.products_menu_movie_title {
  font-size: 2.8rem;
  margin-bottom: 6rem;
}

.movie1,
.movie2,
.movie3 {
  width: 68rem;
  height: 38rem;
}

iframe {
  width: 68rem;
  height: 38rem;
}

.products_img2 {
  width: 26rem;
}

.products_bg3 {
  position: absolute;
  top: 10.5rem;
  right: calc(50% - 37.5rem);
  z-index: -1;
}

.bg_blue {
  background-color: #cceff1;
}

.products_img3 {
  width: 61rem;
}

.products_bg4 {
  position: absolute;
  top: 17rem;
  right: calc(50% - 37.5rem);
  z-index: -1;
}

.products_menu_movie_text {
  font-size: 1.2rem;
  position: absolute;
  left: -0.5%;
  bottom: 10%;
  width: 102%;
}

.position_r {
  position: relative;
}

/* faq */
.faq_wide {
  max-width: 68rem;
  margin: auto;
}

.question {
  margin: 10rem 0 8rem;
}

.q_title {
  width: 58rem;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  border: solid #333 1px;
  border-radius: 14rem;
  padding: 3.5rem 0;
  background-color: #fff;
  position: relative;
  z-index: 1;
  font-size: 3.6rem;
  text-align: center;
}

.q_mark {
  font-size: 9.6rem;
  color: #1ea1f3;
  padding-bottom: 1.2rem;
}

.q_tab {
  width: 18rem;
  height: 18rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 2.4rem;
  text-align: center;
  color: #1ea1f3;
  background-color: #f2f2f2;
  border-radius: 50%;
}

.q_tab p {
  line-height: 1.5;
  padding-bottom: 2rem;
}

.q_img {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: relative;
}

.add,
.remove {
  width: 4rem;
}

.remove {
  display: none;
}

.d_blok {
  display: block;
}

.faq_img2 {
  width: 36rem;
  position: relative;
  top: -2rem;
  z-index: 0;
}

.faq_img3 {
  width: 3.2rem;
  position: absolute;
  top: -7%;
  right: 43%;
  z-index: 2;
}

.products_detail {
  display: none;
}

.answer {
  margin: 8rem 0;
}

.a_title {
  font-size: 3.6rem;
  font-weight: 500;
  color: #1d2088;
  text-align: center;
  margin-bottom: 8rem;
}

.a_text {
  font-size: 2.8rem;
}

.q_img_bg {
  border-radius: 2rem;
  margin: 8rem 0;
}

.a_text2 {
  margin: 10rem 0 12rem;
}

.a_subtitle {
  font-size: 3.2rem;
  font-weight: 500;
  color: #1d2088;
  text-align: center;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 3rem;
}

.a_text2 sub{
    display: inline!important;
}

.a_subtitle_icon {
  width: 3.2rem;
}

.faq_img8 {
  margin-top: 8rem;
}

.mb4r {
  margin-bottom: 4rem;
}

.a_text_note {
  font-size: 1.2rem;
  margin-top: 3rem;
}

.m_t4r {
  margin-top: 4rem;
}

/* faq */

/* 商品ラインナップ */
.bg_green1 {
  background-color: #02abb1;
}

.bg_green2 {
  background-color: #089e3d;
}

.bg_green3 {
  background-color: #24ad42;
}

.bg_red {
  background-color: #e50055;
}

.product_lineup {
  background-color: #cceff1;
}

.line_up {
  max-width: 68rem;
  margin: auto;
  text-align: center;
}

.lineup_title {
  font-size: 3rem;
  color: #1d2088;
  text-align: center;
}

.lineup_title span {
  font-size: 9.6rem;
}

.lineup_series_title {
  font-size: 3.6rem;
  font-weight: 500;
  color: #fff;
  margin-top: 12rem;
  border-radius: 3rem;
  background-image: linear-gradient(90deg, #1d2087f5, #009eb8 75%);
}

.lineup_series_products {
  max-width: 41rem;
  padding: 8rem 0;
  margin: auto;
}

.lineup_series_products_list_title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #fff;
  border-radius: 3rem;
  padding: 0.5rem 0;
}

.list_title_sub {
  max-width: 48rem;
  margin: auto;
}

.line_up_img1 {
  width: 40rem;
  margin-top: 5rem;
}

.line_up_img2 {
  width: 30rem;
  margin-top: 5rem;
}

.line_up_img3 {
  width: 50rem;
  margin-top: 5rem;
}

.lineup_series_products_list_text {
  font-size: 3.6rem;
  font-weight: 500;
}

.view_more {
  max-width: 36rem;
  font-size: 2.4rem;
  text-align: center;
  background-color: #fff;
  border-radius: 5rem;
  margin: 4rem auto 0;
  padding: 1rem 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.view_more:hover {
  background: #1d2088;
  color: white;
  font-size: 2.4rem;
  box-shadow: -20px 50px 50px rgba(0, 0, 0, 0.2);
}

.lineup_img6 {
  margin-bottom: 8rem;
}

.lineup_series_products2 {
  padding: 8rem 0;
  margin: auto;
}

/* 商品ラインナップ */

/* 下よくある質問 */
.b_faq_list {
  background: #fff;
  border-radius: 12px;
  padding: 5rem 0;

}

.b_faq_list_bg {
  background: linear-gradient(90deg, #1d2087f5, #009eb8 75%);
  border-radius: 15px;
  padding: 0.5rem;
  margin-top: 3rem;
}

.b_faq_title_box {
  background-color: #1d2088;
  text-align: center;
  padding: 3rem 0;
  margin-top: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.b_faq_title {
  font-size: 7rem;
  color: #fff;
}

.faq_btn {
  padding: 2rem;
  background-color: #fff;
  position: absolute;
  top: calc(50% - 3.5rem);
  right: 5%;
}

.faq_triangle {
  width: 5rem;
}

.b_question span {
  font-family: Poppins;
  font-weight: 600;
  font-size: 4.8rem;
  color: #1ea1f3;
  position: relative;
  top: -1.8rem;
}

.b_question {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 3rem;

}

.b_question_close,
.b_question_add {
  width: 5rem;
}

.b_question_close {
  display: none;
}

.b_question p {
  font-size: 2.8rem;
  font-weight: 500;
  flex: 1;
}

.b_answer {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 3rem;
  margin-top: 5rem;
}

.b_answer span {
  font-family: Poppins;
  font-weight: 600;
  font-size: 4.8rem;
  color: #ed505e;
  position: relative;
  top: -2rem;
}

.b_a_text {
  font-size: 2.4rem;
}

.b_faq_icon {
  position: relative;
  top: 1rem;
}

/* 下よくある質問 */

/* トップ */
/* メインコンテンツ */

/* サイドメニュー */
.l_menu {
  position: fixed;
  right: calc(50% + 280px);
  top: calc(50% - 13.33vw);
  text-align: center;
  z-index: 2;
}

.l_menu_contents1 {
  font-family: Poppins;
  font-weight: 400;
  font-size: min(1.5vw, 36px);
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: min(1.2vw, 40px);
}

.l_menu_sns {
  margin: min(3vw, 60px) 0 min(2.5vw, 30px);
}

.l_menu_sns_title {
  font-family: Poppins;
  font-weight: 500;
  font-size: min(1.25vw, 30px);
  color: #00adba;
}

.l_menu_sns_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(2.5vw, 60px);
  margin-top: min(2.5vw, 30px);
}

.l_menu_sns_icon a img {
  width: min(3.33vw, 80px);
}

.is-active {
  color: #00adba;
}

.r_menu {
  position: fixed;
  left: calc(50% + 290px);
  top: calc(50% - 9.5vw);
  text-align: center;
  z-index: 2;
}

.r_menu_text {
  text-align: center;
}

.r_menu_text p {
  font-size: min(1vw, 24px);
}

.r_menu_text h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: min(3vw, 72px);
  color: #00adba;
}

.r_menu_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: min(1.5vw, 36px);
  margin-top: min(3.33vw, 40px);
}

.r_menu_icon img {
  width: min(19.17vw, 460px);
}

.r_menu_qr {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: center;
  gap: min(0.83vw, 10px);
  margin-top: min(2.33vw, 30px);
  position: relative;
  left: min(5vw, 60px);
}

@media screen and (max-width: 1100px) {
  .r_menu_qr {
    left: initial;
  }
}

.r_menu_qr p {
  width: min(8.33vw, 250px);
  font-size: min(1vw, 24px);
  text-align: end;
}

.qr_img {
  width: min(8.33vw, 400px);
}

/* サイドメニュー */

/* フッター */
footer {
  max-width: 75rem;
  margin: auto;
  padding: 12rem 0 0;
  background-color: #fff;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 12rem 0 15.8rem;
  }
}

.foot_t {
  max-width: 68rem;
  margin: auto;
  margin-bottom: 20rem;
}

.foot_img1 {
  margin-top: 8rem;
}

.f_sns_icon {
  width: 47rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin: 7rem auto;
}

.foot_b {
  color: #fff;
  background-color: #00adba;
  text-align: center;
  position: relative;
  padding: 14rem 0 4rem;
}

.foot_company {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}

.foot_company_link {
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.foot_icon {
  width: 20rem;
  position: absolute;
  right: calc(50% - 10rem);
  top: -35%;
}

.copy_right {
  font-size: 2rem;
  margin-top: 4rem;
}

.foot_shop_icon {
  position: fixed;
  z-index: 3;
  width: 100%;
  bottom: 0;
  background-color: #cceff1;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.foot_shop_icon img {
  width: 32rem;
}

.open_in_new {
  width: 3rem;
}

/* フッター */

/* 下層 */
/* 薬用足石けんシリーズ */
.soap_img1{
  width: 68rem;
  margin: 12rem auto 0;
}
.soap_mv{
  position: relative;
  padding-bottom: 1rem;
}

.soap_mv_text {
  font-size: 1.2rem;
  position: absolute;
  bottom: 1rem;
  left: calc(50% - 34rem );
}

.soap_series_summary {
  position: relative;
  z-index: 2;
}

.soap_series_summary_title {
  max-width: 68rem;
  text-align: center;
  margin: auto;
  padding: 4rem 0 12rem;
}

.soap_series_summary_title h3 {
  font-size: 3rem;
  color: #1d2088;
  font-weight: 500;
}

.soap_series_summary_title h2 {
  font-size: 5.6rem;
  color: #1d2088;
}

.spray_img1 {
  width: 30rem;
  margin: 12rem auto 0;
}

.soap_series_summary_detail {
  text-align: center;
}

.soap_series_summary_detail .a_text_note{
    margin-top: -50px;
}

.soap_series_summary_detail h3 {
  font-size: 4.4rem;
  letter-spacing:1rem;
  font-weight: 500;
  color: #1d2088;
  text-align: center;
  display: inline-block;
  border: 3px solid transparent;
  box-shadow: inset 0 -10px 0 #faee00;
}

.point_list {
  max-width: 68rem;
  margin: 8rem auto 10rem;
}

.point_list li {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.5rem;
  background-image: url(../img/soap_img13.webp);
  background-size: cover;
  padding: 3rem 2rem 3rem 8rem;
  position: relative;
}

.soap_series_point {
  font-size: 2.2rem;
  font-family: Poppins;
  line-height: 1;
  width: 10rem;
  height: 10rem;
  color: #fff;
  background-color: #1d2088;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.soap_series_point span {
  font-size: 4.4rem;
}

.soap_series_point_left {
  width: 38rem;
  font-size: 3.2rem;
  font-weight: 500;
  color: #1d2088;
  text-align: center;
}
.soap_point_note::after{
  content: "※ 香りのマスキング効果による";
  font-size: 1.2rem;
  color: #333333;
  position: absolute;
  bottom: 0;
  right: 9rem;
}

.line_h1_2 {
  line-height: 1.2;
}

.soap_img2 {}

.soap_img3 {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
}

#soap_point {
  position: relative;
  z-index: 2;
  background-color: #fff;
  margin-bottom: 10rem;
}

.point_img {
  width: 16rem;
}

.soap_point_list_b {
  text-align: center;
  background-color: #cceff1;
  position: relative;
  z-index: 1;
  padding-bottom: 12rem;
}

.soap_point_list_title {
  font-size: 3.6rem;
  font-weight: 500;
  color: #1d2088;
}

.soap_point_list_title span {
  display: inline-block;
  border: 3px solid transparent;
  box-shadow: inset 0 -10px 0 #faee00;
}

.soap_point_list_note {
  font-size: 1.2rem;
  margin-top: 1rem;
}

.soap_img4 {
  position: absolute;
  top: -3rem;
  right: 0;
  z-index: -1;
}

.soap_point_textbox {
  max-width: 61rem;
  margin: 4rem auto 0rem;
  background-color: #fff;
  border: solid #00adba 1px;
  border-radius: 5rem;
  padding: 7rem 5rem;
}

.soap_point_text1 {
  text-align: start;
  font-size: 2.8rem;
}

.soap_point_text1 span {
  color: #1d2088;
  font-weight: bold;
}

.soap_point_text2 {
  font-size: 2.8rem;
  line-height: 1.5;
  color: #1d2088;
  display: flex;
  gap: 1rem;
  align-items: end;
  justify-content: center;
  margin: 8rem 0 0;
  text-align: center;
  font-weight: 500;
}
.soap_img5{
  margin-top: 6rem;
}
.soap_img6{
  margin-top: 8rem;
}
.soap_img11,
.soap_img12 {
  width: 4.5rem;
}

.soap_point_text3 {
  font-size: 1.2rem;
  margin-top: 4rem;
  text-align: start;
}

.col_bl{
  color: #333333;
}

.soap_point_list_w {
  text-align: center;
  background-color: #ffffff;
  background-image: linear-gradient(90deg, #cceff180 2px, transparent 2px), linear-gradient(#cceff180 2px, transparent 2px);
  background-position: 10px 10px;
  background-size: 22px 22px;
  position: relative;
  z-index: 1;
}

.soap_point_list_w2 {
  text-align: center;
  background-color: #ffffff;
  background-image: 
    linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%), 
    linear-gradient(90deg, #cceff180 2px, transparent 2px), 
    linear-gradient(#cceff180 2px, transparent 2px);
  background-position: 0 0, 10px 10px, 10px 10px;
  background-size: auto, 22px 22px, 22px 22px;
  position: relative;
  z-index: 1;
}

.soap_point_text1_note {
  font-size: 1.8rem;
  text-align: start;
  margin-top: 2rem;
}

.p_t12r {
  padding-top: 12rem;
}

.soap_img7 {
  margin-top: 8rem;
}

.bg_b {
  background-color: #cceff1;
}

.line_up_note1 {
  width: 11rem;
  margin: 2rem auto;
  font-size: 1.8rem;
  border: solid #727171 1px;
}

.line_up_note2 {
  font-size: 1.8rem;
  color: #727171;
}

.ec_icon {
  width: 68rem;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 5rem 0;
}

.line_up_detail_img {
  width: 56rem;
  margin: auto;
  margin-bottom: 10rem;
}

.soap_img23 {
  width: 38rem;
  margin: 3rem auto 0;
}

.text_c {
  text-align: center;
}

.font38 {
  font-size: 3.8rem !important;
}

.users_voice_title1 {
  font-size: 7rem;
  font-family: poppins;
}
.users_voice_title2 {
  font-weight: bold;
}
.users_voice_title {
  font-size: 3rem;
  text-align: center;
  padding: 14rem 0 7rem;
  color: #1d2088;
  background-image: radial-gradient(#cceff1, #ffffff 70%);
}

.user_voice h3 {
  font-size: 3.2rem;
  font-weight: 500;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: #faee00;
  text-decoration-thickness: 15px;
  text-underline-offset: -7px;
}
.b_u_line_box{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.b_u_line{
  text-decoration: underline;
  text-decoration-color: #faee00;
  text-decoration-thickness: 15px;
  text-underline-offset: -7px;
}
.b_u_line2{
  width: 80%;
  margin: auto;
  border: 3px solid transparent;
  box-shadow: inset 0 -15px 0 #faee00;
}
.user_voice_text1 {
  font-size: 2.8rem;
  text-align: start;
  margin-top: 2rem;
  line-height: 1.5;
}

.user_voice_text2 {
  font-size: 2.8rem;
  text-align: end;
}

.users_voice {
  max-width: 68rem;
  margin: auto;
  padding: 1rem 0;
}

.user_voice_bg_l {
  background-image: linear-gradient(90deg, #1d2088, #22d3ee);
  width: 62rem;
  position: relative;
  margin-top: 3rem;
  margin-bottom: 2rem;
  border-radius: 3rem;
}

.user_voice_bg_r {
  background-image: linear-gradient(90deg, #1d2088, #22d3ee);
  width: 62rem;
  position: relative;
  margin-top: 3rem;
  margin-bottom: 2rem;
  border-radius: 3rem;
}

.user_voice {
  position: relative;
  display: inline-block;
  margin: 0.3rem;
  border-radius: 3rem;
  background-color: #fff;
  text-align: center;
  padding: 3rem;
}

.user_voice_bg_l::before {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 85%;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(90deg, #1d2088, #22d3ee);
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.user_voice_bg_l::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 85.3%;
  width: 3rem;
  height: 3rem;
  background: #fff;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.user_voice_bg_r::before {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 25%;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(90deg, #1d2088, #22d3ee);
  clip-path: polygon(0 0, 0 100%, 100% 0);
}

.user_voice_bg_r::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 25.5%;
  width: 3rem;
  height: 3rem;
  background: #fff;
  clip-path: polygon(0 0, 0 100%, 100% 0);
}

.mt_6r {
  margin-top: 6rem;
}

.ml_auto {
  margin-left: auto;
}

.mr_auto {
  margin-right: auto;
}

.spray_steps{
  max-width: 61rem;
  margin: auto;
}
.spray_point_text2{
  font-size: 3.6rem;
  line-height: 1.5;
  color: #1d2088;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8rem 0 0;
  text-align: center;
  font-weight: bold;
  gap: 1rem;
}
.spray_img15,
.spray_img16{
  width: 1.6rem;
}
.spray_step_title{
  font-size: 3.6rem;
  color: #1d2088;
  font-weight: bold;
  background-image: url(../img/awa_spray_img4.webp);
  background-size: cover;
  padding: 2rem 0rem 5rem;
  width: 53rem;
  margin: 2rem auto 0;
  background-repeat: no-repeat;
  line-height: 1;
}
.spray_step_title span{
  font-size: 9rem;
}
.spray_steps_number{
  display: flex;
  align-items: center;
  margin-top: 8rem;
}
.spray_img5{
  width: 18rem;
}
.point_title_position{
  position: relative;
  top: -1rem;
}
.spray_note1{
  font-size: 1.2rem;
  margin-top: 2rem;
  text-align: center;
}
.spray_note2{
  font-size: 1.6rem;
  text-align: center;
}
.spray_img9{
  width: 68rem;
  margin: 8rem auto 0;
}
.spray_point2_img{
  margin-top: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3rem;
}
.spray_img13{
  width: 7rem;
}
.shop_list{
  width: 38rem;
  margin: auto;
}

.brush_img2{
  width: 56rem;
  margin: 12rem auto 0;
}
.brush_step_title{
  font-size: 3.6rem;
  color: #1d2088;
  font-weight: bold;
  background-image: url(../img/brush_img3.webp);
  background-size: cover;
  padding: 2rem 0rem 5rem;
  width: 63rem;
  margin: 2rem auto 0;
  background-repeat: no-repeat;
  line-height: 1;
}
.brush_step_title1{
  font-size: 9rem;
  font-weight: bold;
}
.brush_step_title2{
  font-size: 5.6rem;
  font-weight: bold;
}
.brush_img4{
  width: 66rem;
  margin: 6rem auto 0;
}
.brush_step_text1{
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  margin-top: 4rem;
}
.brush_step_text2{
  font-size: 2.8rem;
}
.brush_point2_img{
  max-width: 68rem;
  margin: 6rem auto 0;
  background-color: #cceff1;
  border-radius: 3rem;
  padding: 8rem 3rem;
}
.brush_img9{
  width: 63rem;
  margin: 8rem auto 0;
}
.brush_img11{
  margin-top: 8rem;
}
.spray_point_list{
  padding: 4rem 2rem 4rem 8rem !important;
  line-height: 1;
}