@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@500&family=Noto+Sans+JP:wght@100..900&display=swap');
input[type="button"], input[type="text"], input[type="email"], input[type="tel"], input[type="submit"], input[type="image"], textarea {
  -webkit-appearance: none;
  border-radius: 0;
}
html {
  overflow-x: hidden;
}
body {
  opacity: 0;
  transition: opacity 0.6s ease;
}
body.page-loaded {
  opacity: 1;
}
.f-main {
  font-family: "Ryumin", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.efont {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.b-txt {
  color: #0068A6;
}
.txt_block p {
  margin-bottom: 0;
}
body {
  background: #fff;
}
/* BASE */
img {
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 100%;
}
img.c-svg-img {
  -o-object-fit: contain;
  object-fit: contain;
}
ul {
  list-style-type: none;
  margin-bottom: 0;
}
a {
  color: currentColor;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
a:hover {
  opacity: 0.7;
  color: currentColor;
  text-decoration: none;
}
/* c-title1 */
.c-title1{
	margin-bottom: 4.0857rem;
}
.c-title1 .efont{
	line-height: 1;
	font-size: 0.8571rem;
	letter-spacing: 0.1em;
	margin-bottom: 1.9857rem;
}
.c-title1 .ttl{
	font-size: 2rem;
	letter-spacing: 0.05em; 
	line-height: 1;
	margin-bottom: 0;
}
@media screen and (min-width: 768px){
	.c-title1 .efont{
		text-align: left;
	}
	.c-title1 .ttl{
		text-align: center;
	}
}
@media screen and (min-width: 1200px){
	.c-title1{
		margin-bottom: 7.1rem;
	}
	.c-title1 .efont{
		font-size: 1.1428rem;
		margin-bottom: -0.285rem;
	}
	.c-title1 .ttl{
		font-size: 2.5714rem;
	}
}
@media screen and (max-width: 767px){
	.c-title1{
		text-align: center;
	}
}
/* 表示非表示 */
@media screen and (min-width: 768px) {
  .none_min768 {
    display: none;
  }
  .none_max767 {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .none_min768 {
    display: block;
  }
  .none_max767 {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .none_min992 {
    display: none;
  }
  .none_max991 {
    display: block;
  }
}
@media screen and (max-width: 991px) {
  .none_min992 {
    display: block;
  }
  .none_max991 {
    display: none;
  }
}
/* 改行 */
@media screen and (min-width: 992px) {
  .br_max991 {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .br_max991 {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .br_max767 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .br_max767 {
    display: block;
  }
}
/* UTILITIES */
/* EFFECT */
/*下から出現*/
.effect_box_up {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateY(20px) rotate(0deg);
  -ms-transform: translateY(20px) rotate(0deg);
  transform: translateY(20px) rotate(0deg);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}
.effect_box_up.leff {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -webkit-transform: translateY(0) rotate(0deg);
  -ms-transform: translateY(0) rotate(0deg);
  transform: translateY(0) rotate(0deg);
}
/*その場で出現*/
.effect_box_spot {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}
.effect_box_spot.leff {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
}
/*左から出現*/
.effect_box_left {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateX(-20px) rotate(0deg);
  -ms-transform: translateX(-20px) rotate(0deg);
  transform: translateX(-20px) rotate(0deg);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}
.effect_box_left.leff {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -webkit-transform: translateY(0) rotate(0deg);
  -ms-transform: translateY(0) rotate(0deg);
  transform: translateY(0) rotate(0deg);
}
/*右から出現*/
.effect_box_right {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateX(20px) rotate(0deg);
  -ms-transform: translateX(20px) rotate(0deg);
  transform: translateX(20px) rotate(0deg);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}
.effect_box_right.leff {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -webkit-transform: translateY(0) rotate(0deg);
  -ms-transform: translateY(0) rotate(0deg);
  transform: translateY(0) rotate(0deg);
}
/* COMPONENTS */
/* PAGE LOGO */
.c-logo {
  margin-bottom: 0;
}
.c-logo a, .c-logo img {
  display: block;
  width: 100%;
  height: 100%;
}
.c-section-img::before, .c-section-img::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* BTN 1 */
.c-btn1.inf-area3 a {
  padding: 8px;
  border-radius: 29px;
  font-weight: 700;
  font-size: 1.357rem;
  letter-spacing: 0;
}
.c-btn1 .top_bt_ani3 {
  width: 42px;
  margin-left: 30px;
}
.c-btn1 .top_bt_ani3::after {
  height: 8px;
  width: 8px;
  top: -3px;
}
@media screen and (max-width: 767px) {
  .c-btn1.inf-area3 a {
    font-size: 0.8rem;
  }
  .c-btn1 .top_bt_ani3 {
    width: 20px;
    margin-left: 10px;
  }
  .c-btn1 .top_bt_ani3::after {
    height: 5px;
    width: 5px;
    top: -2px;
  }
}
/* ICON */
.c-icon1 {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: relative;
  background-color: #fff;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.c-icon1::after {
  content: "";
  width: 4px;
  height: 4px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.l-per .c-icon1::after {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
/* LINK */
.c-nav1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transition: .3s ease-in-out;
}
.c-nav1 a {
  font-size: 1rem;
  color: currentColor;
}
/* scroll */
.anchor-scroll {
  cursor: pointer;
}
/* COPY */
.c-copyright {
  font-size: 0.785rem;
  letter-spacing: 0.1em;
  line-height: 1;
  display: block;
}
/*=================================================== */
.p-lp {
  width: 100%;
  position: relative;
  background-color: #ededed;
  overflow-x: hidden;
}
/* HEADER */
header#header {
  width: 100%;
  height: 60px;
  position: fixed;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 1000;
  -webkit-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  background-color: #fff;
  color: #000;
}
@media screen and (min-width: 992px) {
  header#header {
    height: 70px;
  }
}
@media screen and (min-width: 1200px) {
  header#header {
    height: 80px;
  }
}
/* CONTAINER  */
.header__container {
  position: relative;
  z-index: 1001;
  display: -webkit-box;
  display: -ms-flexbox;
  width: 85%;
  margin: 0 auto;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  overflow: hidden;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 992px) {
  .header__container {
    width: 94.1176%;
  }
}
/* LOGO */
.header__logo {
  width: 150px;
  transition: .4s;
}
.header__logo img {
  opacity: 1;
  transition: .4s;
}
.header__logo a {
  position: relative;
  transition: .4s;
}
.header__logo a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../images/bathmat-lp/logo_w.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: screen;
  opacity: 0;
}
body.fixed .header__logo img {
  opacity: 0;
}
body.fixed .header__logo a::before {
  opacity: 1;
}
@media screen and (min-width: 992px) {
  .header__logo {
    width: 175px;
  }
}
@media screen and (min-width: 1200px) {
  .header__logo {
    width: 200px;
  }
}
/* NAV */
header .header__nav li + li {
  margin-left: 30px;
}
header .header__nav li.anb {
  margin-left: 40px;
}
header .header__nav li a {
  transition: .3s;
}
header a.header-nav__btn {
  display: flex;
  width: 240px;
  height: 50px;
  text-align: center;
  border-radius: 50px;
  transition: .4s;
  justify-content: center;
  align-items: center;
}
header a.header-nav__btn.buy {
  background-color: #6e82af;
  color: #fff;
  border: 1px solid #6e82af;
}
header a.header-nav__btn.buy:hover {
  background-color: #fff;
  color: #6e82af;
}
header a.header-nav__btn:hover {
  color: #fff;
}
header a:hover {
  opacity: 0.7;
}
header a.header-nav__btn span.f-icon {
  background-repeat: no-repeat;
  width: 16.5px;
  height: 17.5px;
  display: block;
  margin-left: 14px;
}
header a.header-nav__btn.buy span.f-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
header a.header-nav__btn.buy span.f-icon svg .buy-color {
  fill: #fff;
  transition: .4s;
}
header a.header-nav__btn.buy:hover span.f-icon svg .buy-color {
  fill: #6e82af;
}
@media screen and (min-width: 992px) {
  header a.header-nav__btn {
    width: 135px;
    height: 40px;
    font-size: 0.857rem;
    font-weight: 500;
  }
  header a.header-nav__btn span.f-icon {
    margin-left: 20px;
  }
}
/* TRIGGER */
.menu-trigger {
  display: none;
}
/* MENU TOGGLE */
.menu-toggle {
  display: none;
}
@media screen and (max-width: 992px) {
  header .header__nav {
    display: none;
  }
  /* TRIGGER */
  .menu-trigger {
    display: block;
    width: 30px;
    height: 10px;
    cursor: pointer;
    position: relative;
  }
  .menu-trigger span {
    width: 100%;
    height: 1px;
    background-color: currentColor;
    position: absolute;
    left: 0;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }
  .menu-trigger span:first-child {
    top: 0;
  }
  .menu-trigger span:last-child {
    bottom: 0;
  }
  .menu-trigger.tgl-active span:first-child {
    -webkit-transform: translate(0, 4px) rotate(20deg);
    -ms-transform: translate(0, 4px) rotate(20deg);
    transform: translate(0, 4px) rotate(20deg);
  }
  .menu-trigger.tgl-active span:last-child {
    -webkit-transform: translate(0, -5px) rotate(-20deg);
    -ms-transform: translate(0, -5px) rotate(-20deg);
    transform: translate(0, -5px) rotate(-20deg);
  }
  /* MENU TOGGLE */
  .menu-toggle {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    overflow-y: scroll !important;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    background-color: #a5a5a5;
    -webkit-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    color: #fff;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    overflow: hidden;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }
  /* Hide scrollbar for Chrome, Safari and Opera */
  .menu-toggle::-webkit-scrollbar {
    display: none;
  }
  .menu-toggle.active {
    opacity: 1;
    visibility: visible;
    z-index: 1000;
  }
  .menu-toggle__inner {
    padding: 185px 5% 82px;
  }
  /* TOGGLE NAV */
  .menu-toggle .c-nav1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .menu-toggle .c-nav1 li + li {
    margin-top: 2.057rem;
  }
  .menu-toggle .c-nav1 a {
    font-size: 1.1428rem;
    line-height: 1;
  }
  /* LINK 1 */
  .menu-toggle .c-link1 {
    color: #000;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 164px;
  }
  .menu-toggle .c-link1__inner {
    padding: 10px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .menu-toggle .c-link1 img {
    width: 45.8%;
    margin-right: -8%;
  }
  .menu-toggle .c-nav1 .toggle_sns {
    margin-top: 2.457rem;
  }
  .menu-toggle .c-nav1 .toggle_sns a {
    display: block;
    width: 20px;
    height: 20px;
  }
  .menu-toggle .c-nav1 .toggle_sns a img {
    display: block;
  }
  header .menu-toggle a.header-nav__btn {
    width: 240px;
    height: 50px;
  }
  header .menu-toggle a.header-nav__btn.buy {
    background-color: #6e82af;
    border: 1px solid #6e82af;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    margin-top: 0.8rem;
  }
  header .menu-toggle a.header-nav__btn.buy:hover {
    background-color: #6e82af;
    border: 1px solid #6e82af;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    margin-top: 0.8rem;
  }
  .menu-toggle__inner .c-copyright {
    margin-top: 120px;
  }
}
.menu-trigger.tgl-active {
  color: #fff;
}
@media screen and (max-width: 576px) {
  /* MENU TOGGLE */
  .menu-toggle .c-link1 p {
    font-size: 1rem;
    line-height: 20px;
  }
  .menu-toggle .c-link1__inner {
    height: auto;
    padding: 26px 20px 20px;
  }
}
@media screen and (max-width: 360px) {
  .menu-toggle .c-link1__inner {
    padding: 10px;
  }
  .menu-toggle .c-link1 p {
    font-size: 1rem;
  }
}
/* ========================================================== */
.l-bg--white {
  background-color: #fff;
}
.l-bg--gray {
  background-color: #e6e6e6;
}
/* MAINVISUAL */
.c-mainvisual {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100svh;
  height: 100vh;
  padding-top: 60px;
  position: relative;
}
.c-mainvisual::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.1);
}
.visual-item {
  display: block;
  width: 100%;
  height: 50%;
}
.visual-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 992px) {
  .c-mainvisual {
    flex-direction: row;
    padding-top: 70px;
  }
  .visual-item {
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .c-mainvisual {
    padding-top: 80px;
  }
}
@media screen and (max-width: 991px) {
  .visual-item {
    position: relative;
  }
  .visual-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    top: 0;
    left: 0;
  }
}
/* TEXT */
.mainvisual-txtArea {
  position: absolute;
  width: 85%;
  top: calc(50% + 10px);
  left: 50%;
  transform: translate(-50%, calc(-50% + 20px));
  color: #fff;
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  z-index: 1;
}
.mainvisual-txtArea.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.visual-productname {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  width: 202px;
  height: 35px;
  border-radius: 35px;
  font-size: 1rem;
  letter-spacing: -0.05em;
  line-height: 1;
}
.visual-bigtxt {
  font-size: 2.2857rem;
  letter-spacing: 0;
  line-height: 1.75;
  margin: 1.957rem 0 1.6142rem;
}
.visual-en {
  font-size: 0.785rem;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .visual-productname {
    width: 280px;
    height: 50px;
    font-size: 1.428rem;
  }
  .visual-bigtxt {
    font-size: 3rem;
  }
  .visual-en {
    font-size: 1.1428rem;
  }
}
@media screen and (min-width: 992px) {
  .mainvisual-txtArea {
    text-align: center;
    top: unset;
    bottom: 11.956%;
    transform: translateX(-50%) translateY(20px);
  }
  .mainvisual-txtArea.is-visible {
    transform: translateX(-50%);
  }
  .visual-productname {
    margin: 0 auto;
  }
  .visual-bigtxt {
    margin: 2.628rem 0 2.1714rem;
  }
}
/* ========================================================== */
/* ========================================================== */
/* ========================================================== */
/* PAGEUP  */
.pageup {
  bottom: 5%;
  right: 5%;
}
.pageup a {
  border: none;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.pageup img {
  display: block;
  width: 35px;
}
@media screen and (max-width: 767px) {
  .pageup {
    display: none !important;
  }
}
/* FOOTER */
#footer {
  padding: 0;
  background-color: #a5a5a5;
  color: #fff;
  text-align: left;
}
.footer-main{
  position: relative;
}
.footer-imgArea{
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 85 / 46;
  max-height: 920px;
}
.footer-imgArea img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-txtArea{
  position: absolute;
  width: 93.513%;
  top: calc(50% - 0.8rem);
  left: 50%;
  transform: translate(-50%,-50%);
}
.footer-bigtxt{
  font-size: 2.2857rem;
  letter-spacing: 0;
  line-height: 1.75;
  margin-bottom: 1.6714rem;
}
.footer-en{
  font-size: 0.7857rem;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 0;
}
.footer-btn a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #6e82af;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
  width: 300px;
  height: 50px;
  border-radius: 50px;
  border: 1px solid #6e82af;
  transition: .3s;
}
.footer-btn a .f-icon{
  width: 16.5px;
  height: 17.5px;
  margin-left: 1rem;
}
.footer-btn a .f-icon svg{
  display: block;
  width: 100%;
  height: 100%;
}
.footer-btn a .f-icon svg .buy-color{
  fill: #fff;
  transition: .3s;;
}
.footer-btn a:hover{
  background-color: #fff;
  color: #6e82af;
  opacity: 1;
}
.footer-btn a:hover .f-icon svg .buy-color{
  fill: #6e82af;
}
@media screen and (min-width: 768px) {
  .footer-main{
    width: 100%;
  }
  .footer-txtArea{
    width: 82.1176%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-bigtxt{
    margin-bottom: 1.1rem;
  }
  .footer-btn a{
    width: 260px;
  }
}
@media screen and (min-width: 992px) {
  .footer-bigtxt{
    font-size: 3rem;
  }
  .footer-en{
    font-size: 1.1428rem;
  }
  .footer-btn a{
    width: 320px;
    height: 56px;
  }
}
@media screen and (min-width: 1200px) {
  .footer-btn a{
    width: 400px;
    height: 70px;
    font-size: 1.5rem;
  }
  .footer-btn a .f-icon{
    width: 23.2px;
    height: 24.5px;
  }
}
@media screen and (min-width: 1400px) {
  .footer-bigtxt{
    margin-bottom: 1.4571rem;
  }
}
@media screen and (max-width: 767px) {
  .footer-imgArea{
    aspect-ratio: 80 / 123;
  }
  .footer-btn{
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.sp-fb {
  display: none;
}
@media screen and (max-width: 767px) {
.sp-fb {
  display: block;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 900;
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}
.sp-fb.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
}
.footer-inner{
  width: 92.5%;
  margin-right: auto;
  margin-left: auto;
  font-family: "Noto Sans JP", sans-serif;
  padding-bottom: 7.1428rem;
}
.f-first-flex, .f-sec-flex{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.f-sec-flex{
  margin-top: 3.528rem;
}
.footer-logo{
  display: inline-block;
  width: 180px;
  mix-blend-mode: screen;
  margin-bottom: 3.128rem;
}
.footer-logo a, .footer-logo img{
  display: block;
  width: 100%;
}
.footer-nav{
  display: flex;
  flex-direction: column;
  align-items: center;
}
#footer .footer-nav li{
  background-image: none;
  padding: 0;
  font-size: 1rem;
  margin-top: 0;
}
#footer .footer-nav li a{
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0;
  font-weight: 400;
  display: inline-block;
  transition: .3s;
}
.footer-nav li a:hover{
  text-decoration: none;
}
.footer-sns{
  display: inline-block;
  width: 20px;
  height: 20px;
}
.footer-sns img{
  width: 100%;
  height: 100%;
  display: block;
}
.copy{
  font-size: 0.7857rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  margin-top: 3.5714rem;
}
@media screen and (min-width: 768px) {
  .footer-inner{
    margin-top: 8.1714rem;
  }
  .f-first-flex, .f-sec-flex{
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-logo{
    width: 158px;
    margin: 0;
  }
  .footer-nav{
    flex-direction: row;
    justify-content: flex-end;
  }
  #footer .footer-nav li + li{
    margin-left: 20px;
  }
  .copy{
    margin: 0;
  }
}
@media screen and (min-width: 1200px) {
  .footer-inner{
    margin-top: 11.471rem;
    padding-bottom: 10.714rem;
  }
  .footer-logo{
    width: 200px;
  }
  .f-sec-flex{
    margin-top: 4.8428rem;
  }
  .footer-sns{
    width: 25px;
    height: 25px;
  }
  .copy{
    font-size: 0.928rem;
  }
}
@media screen and (max-width: 767px) {
  .footer-inner{
    margin-top: calc(8.8rem - 25px);
  }
  .footer-nav{
    text-align: center;
  }
  #footer .footer-nav li + li{
    margin-top: 1.6rem;
  }
}
/* fotter 固定メニュー
----------------------------------------------------------------------------------------------------*/
.footer__menu {
  display: none;
}
@media screen and (max-width: 767px) {
  .footer__menu {
    display: block;
    width: 100%;
    position: fixed;
    right: 0;
    bottom: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    z-index: 900;
  }
  .footer__menu .c-link1 p {
    font-size: 1.05rem;
    line-height: 1.5;
  }
  .footer__menu .c-link1__inner {
    height: auto;
    padding: 15px;
  }
  .footer__menu .c-link1 img {
    width: 33%;
    margin-right: 42px;
    position: relative;
    right: -60px;
  }
}
@media screen and (max-width: 360px) {
  #footer {
    padding-bottom: 160px;
  }
  .footer__menu .c-link1__inner {
    padding: 20px 15px;
  }
  .footer__menu .c-link1 p {
    font-size: 1.2rem;
  }
}
/******************************
/* CONCEPT
******************************/
.concept {
  margin-top: 7.6714rem;
}
.concept-inner {
  width: 94.1176%;
  margin-right: auto;
  margin-left: auto;
}
.concept-titArea{
  margin-bottom: 4.3rem;
}
.concept_en{
  font-size: 0.857rem;
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 4.514rem;
}
.concept-ttl {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0;
  margin-bottom: 0;
}
.concept-ttl .efont {
  display: block;
  line-height: 1;
  font-weight: 500;
  font-size: 0.785rem;
  letter-spacing: 0.1em;
  margin-top: 1.5571rem;
}
.concept-inner .txt_block {
  font-size: 0.928rem;
  letter-spacing: 0.2em;
  line-height: 2.4;
}
.concept-inner .txt_block p + p {
  margin-top: 2.171rem;
}
@media screen and (min-width: 768px) {
  .concept {
    position: relative;
  }
  .concept-titArea{
    display: flex;
  }
  .concept_en{
    margin-bottom: 0;
  }
  .concept-ttl {
    width: 44.5%;
    margin-left: auto;
    margin-bottom: 0;
  }
  .concept-inner .txt_block {
    width: 44.5%;
    margin-left: auto;
  }
  .concept-img1 {
    width: 35.176%;
    position: absolute;
    top: 15.2rem;
    left: 8.8235%;
  }
  .concept-img2 {
    width: 26.47%;
    margin-top: 7.157rem;
    margin-right: 2.94117%;
    margin-left: auto;
  }
}
@media screen and (min-width: 992px) {
  .concept-titArea{
    width: 93.8%;
    margin-left: auto;
  }
  .concept-ttl{
    width: 40%;
  }
  .concept-inner .txt_block {
    width: 37.5%;
  }
  .concept-img1 {
    width: 41.17647%;
  }
}
@media screen and (min-width: 1200px) {
  .concept {
    margin-top: 10.9428rem;
  }
  .concept-titArea{
    margin-bottom: 9.257rem;
  }
  .concept_en{
    font-size: 1.1428rem;
  }
  .concept-ttl {
    font-size: 2.7142rem;
  }
  .concept-ttl .efont {
    font-size: 1.1428rem;
  }
  .concept-inner .txt_block {
    font-size: 1.1428rem;
    line-height: 2.8;
  }
  .concept-inner .txt_block p + p {
    margin-top: 3.085rem;
  }
  .concept-img1 {
    top: 23.9rem;
  }
  .concept-img2 {
    margin-top: 11.471rem;
  }
}
@media screen and (min-width: 1400px) {
  .concept-img2 {
    margin-top: 17.757rem;
  }
}
@media screen and (max-width: 991px) {
  .concept-inner {
    width: 85%;
  }
}
@media screen and (max-width: 767px) {
  .concept-img1 {
    width: 77.5%;
    margin-top: 7.157rem;
  }
  .concept-img2 {
    width: 60%;
    margin-top: 4.285rem;
    margin-right: 5%;
    margin-left: auto;
  }
}
/******************************
/* COMFORTABLE
******************************/
.comfortable{
	margin-top: 12.1428rem;
	position: relative;
	padding-bottom: 9.357rem;
}
.comfortable::after{
	position: absolute;
	content: "";
	width: 95%;
	height: 1px;
	background-color: rgba(150,150,150,0.5);
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
}
.comfortable-main{
	width: 85%;
	margin: 0 auto 3.9rem;
}
.comfortable-en{
	line-height: 1;
	font-size: 0.8571rem;
	letter-spacing: 0.1em;
	margin-bottom: 1.2428rem;
}
.comfortable-ttl{
	margin-bottom: 2.7428rem;
}
.comfortable-titArea .txt_block{
	font-size: 0.8928rem;
	line-height: 2.16;
	letter-spacing: 0;
}
@media screen and (min-width: 768px){
	.comfortable-main{
		margin-bottom: 5.11428rem;
	}
	.comfortable-titArea{
		display: flex;
		align-items: center;
	}
	.comfortable-ttl{
		margin-right: 7.1428rem;
		margin-bottom: 0;
	}
	.comfortable-titArea .txt_block{
		letter-spacing: 0.05em;
	}
}
@media screen and (min-width: 992px){
	.comfortable::after{
		width: 90.58823%;
		max-width: 1540px;
	}
	.comfortable-main{
		width: 90.58823%;
	}
}
@media screen and (min-width: 1200px){
	.comfortable{
		margin-top: 14.285rem;
		padding-bottom: 17.857rem;
	}
	.comfortable-main{
		margin-bottom: 10.028rem;
	}
	.comfortable-en{
		font-size: 1.1428rem;
		margin-bottom: 1.8857rem;
	}
	.comfortable-ttl{
		font-size: 2.57142rem;
		margin-right: 14.2857rem;
	}
	.comfortable-titArea .txt_block{
		font-size: 1.1428rem;
		line-height: 2.5;
	}
}
@media screen and (min-width: 1400px){
	.comfortable-ttl{
		margin-right: 17.8571rem;
	}
}
@media screen and (min-width: 1600px){
	.comfortable-ttl{
		margin-right: 21.428rem;
	}
}
/********** max 991px **********/
@media screen and (max-width: 991px) {
  .comfortable-block {
    display: block;
  }
  .comfortable-spItem + .comfortable-spItem {
    margin-top: 5.11428rem;
  }
  .comfortable-spItem-img {
    width: 92.5%;
    margin-left: 2.5%;
    margin-bottom: 4.2857rem;
  }
  .comfortable-spItem-txtArea {
    width: 85%;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .comfortable-spItem-en {
    line-height: 1;
    font-size: 0.71428rem;
    writing-mode: vertical-rl;
    margin: 0;
  }
  .comfortable-spItem-con {
    width: 82.35294%;
    margin-top: -0.5rem;
  }
  .comfortable-spItem-ttl {
    font-size: 1.5rem;
    line-height: 1.75;
    letter-spacing: 0.05em;
    margin-bottom: 1.557rem;
  }
  .comfortable-spItem-disc {
    font-size: 0.928rem;
    line-height: 2.4;
    letter-spacing: 0.05em;
    margin-bottom: 0;
  }
  @media screen and (min-width: 768px) {
    .comfortable-block {
      width: 97.5%;
      margin-left: 2.5%;
    }
    .comfortable-spItem {
      display: flex;
    }
    .comfortable-spItem-img, .comfortable-spItem-txtArea {
      width: 50%;
      margin: 0;
    }
    .comfortable-spItem-txtArea {
      position: relative;
      align-items: center;
      padding: 0 7%;
    }
    .comfortable-spItem-en {
      position: absolute;
      top: 0;
      right: 6%;
    }
  }
}
@media screen and (min-width: 992px) {
  .comfortable-block {
    display: none;
  }
}
/********** min 992px **********/
@media screen and (max-width: 991px) {
  .comfortable-container, .comfortable-counter {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  /* =====================
	comfortable-container
	===================== */
  .comfortable-container {
    position: relative;
    width: 98.823529%;
    margin: 0 0 0 auto;
    height: calc((var(--item-count, 5) + 1) * 100vh);
  }
  /* sticky ラッパー：左右を横並びで固定 */
  .comfortable-sticky-wrap {
    position: sticky;
    top: 70px;
    height: calc(100vh - 70px);
    display: flex;
    isolation: isolate;
  }
  /* =====================
	sticky-comfortable（左：画像エリア）
	===================== */
  .sticky-comfortable {
    width: 50%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
  }
  .comfortable-item {
    position: absolute;
    inset: 0;
    transform: translateY(100%);
    z-index: 0;
  }
  .comfortable-item.active {
    z-index: 1;
  }
  .comfortable-item:first-child {
    transform: translateY(0);
  }
  .comfortable-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* =====================
	scroll-content（右：テキストエリア）
	===================== */
  .scroll-content {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
  }
  .text-item {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 14.7%;
    opacity: 0;
  }
  .text-item .ti-title, .text-item .ti-desc {
    transform: translateY(0);
  }
  .text-item .ti-title {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.75;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
  }
  .text-item .ti-desc {
    font-size: 0.9rem;
    line-height: 2.4;
    font-weight: 400;
    letter-spacing: 0.05em;
  }
  @media screen and (min-width: 1200px) {
    .text-item .ti-title {
      font-size: 2rem;
      margin-bottom: 2.485rem;
    }
    .text-item .ti-desc {
      font-size: 1.0714rem;
      line-height: 2.66;
    }
  }
  /* =====================
	comfortable-counter
	===================== */
  .comfortable-counter {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 0;
    overflow: visible;
    z-index: 100;
    pointer-events: none;
  }
  .comfortable-counter-inner {
    position: sticky;
    top: calc(70px + 20px);
    float: right;
    margin-right: 2.941176%;
    display: flex;
    align-items: flex-start;
    gap: 4px;
    font-family: "Cormorant", serif;
    font-weight: 500;
    color: #6e82af;
  }
  .counter-current {
    font-size: 2.2857rem;
    font-weight: 500;
    line-height: 1;
  }
  .counter-total {
    font-size: 1.1428rem;
    color: #969696;
    position: relative;
    margin-left: 0.7rem;
    margin-top: 1.9rem;
  }
  .counter-total::before {
    position: absolute;
    content: "";
    width: 39px;
    height: 1px;
    background-color: rgba(150, 150, 150, 0.5);
    top: 5px;
    left: -1.857rem;
    transform: rotate(-45deg);
  }
} /* end @media (min-width: 992px) */
@media screen and (min-width: 1200px) {
  .comfortable-sticky-wrap {
    top: 80px;
    height: calc(100vh - 80px);
  }
  .comfortable-counter-inner {
    top: calc(80px + 20px);
  }
}
@media screen and (min-width: 992px) {
  /* =====================
       comfortable-nav
       ===================== */
  .comfortable-nav {
    position: absolute;
    bottom: 7.4%;
    left: 0;
    right: 0;
    padding: 0 14.7%;
    z-index: 10;
    pointer-events: none;
  }
  .comfortable-nav-inner {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .comfortable-nav-item {
    display: flex;
    align-items: center;
    flex: 1;
    position: relative;
  }
  .comfortable-nav-item:first-child {
    flex: 0 0 auto;
  }
  /* ライン */
  .nav-line {
    flex: 1;
    height: 1px;
    background: rgba(105, 150, 150, 0.5);
    display: block;
  }
  .comfortable-nav-item:first-child .nav-line {
    display: none;
  }
  /* ドット＆ラベルの基準 */
  .nav-indicator {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
  }
  /* ドット（通常） */
  .nav-dot {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #6e82af;
    opacity: 1;
    transition: opacity 0.5s ease;
  }
  /* ラベル（番号）：nav-indicatorの中央から36pxに広げる */
  .nav-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(150, 150, 150, 0.5);
    background: #fff;
    font-size: 0.928rem;
    font-weight: 400;
    color: #6e82af;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
  }
  /* アクティブ：フェードのみで切り替え */
  .comfortable-nav-item.active .nav-dot {
    opacity: 0;
  }
  .comfortable-nav-item.active .nav-label {
    opacity: 1;
  }
} /* end @media (min-width: 992px) */

/******************************
/* REVIEW
******************************/
.review{
	margin-top: 8.6857rem;
}
.review-swiper .swiper-slide{
	padding: 2.14285rem 2.14285rem 2.4285rem;
}
.review-swiper .swiper-slide::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #f8f8f8;
	border-radius: 10px;
	z-index: -1;
}
.review-ttl{
	display: flex;
	align-items: center;
	font-size: 1rem;
	letter-spacing: 0.05em;
	margin-bottom: 1.02857rem;
}
.review-ttl .icon{
	width: 40px;
	height: 40px;
	display: block;
	background-image: url("../images/bathmat-lp/review-icon.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin-right: 16px;
}
.review-inner .txt_block{
	font-size: 0.857rem;
	letter-spacing: 0.05em;
	line-height: 1.9;
}
.review-container{
	position: relative;
}
.review-block{
	width: 100%;
}
.review-navigation{
		display: flex;
		justify-content: space-between;
		align-items: center;
	height: 35px;
	margin-top: 2.1428rem;
	}
	.review-navigation .swiper-button-prev, .review-navigation .swiper-button-next{
		width: 35px;
		height: 35px;
		display: block;
		background-color: #fff;
		border: 1px solid rgba(150,150,150,0.5);
		border-radius: 50%;
		cursor: pointer;
		position: relative;
	left: unset;
  right: unset;
  top: unset;
  bottom: unset;
	margin-top: 0 !important;
	}
	.review-navigation .swiper-button-prev::after, .review-navigation .swiper-button-next::after{
		position: absolute;
		content: "";
		background-image: url("../images/bathmat-lp/review-arrow.svg");
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		width: 10px;
		height: 6px;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}
	.review-navigation .swiper-button-prev::after{
		transform: translate(-50%,-50%) rotate(180deg);
	}
.review-pagination{
	display: flex;
	justify-content: center;
	gap: 1rem;
}
.review-pagination .swiper-pagination-bullet{
	margin: 0 !important;
	background-color: #bebebe;
	width: 7px;
	height: 7px;
	transition: all 0.3s ease;
}
.review-pagination .swiper-pagination-bullet-active{
	background-color: #6e82af;
	width: 18px;
	height: 7px;
	border-radius: 7px;
	
}
@media screen and (min-width: 768px){
	.review{
		width: 95%;
		margin-right: auto;
		margin-left: auto;
	}
	.review-block{
		width: 85%;
		margin: 0 auto;
	}
	.review-navigation{
		position: absolute;
		width: 100%;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		margin: 0;
	}
	.review-pagination{
	margin-top: 3.214rem;
	}
}
@media screen and (min-width: 992px){
	.review{
		width: 90.58823%;
		max-width: 1540px;
	}
}
@media screen and (min-width: 1200px){
	.review{
		margin-top: 17.77rem;
	}
	.review-block{
		width: 87.01298%;
	}
	.review-swiper .swiper-slide{
		padding: 2.8571rem 3.5714rem 2.3571rem;
	}
	.review-swiper .swiper-slide::before{
		border-radius: 12px;
	}
	.review-ttl{
		font-size: 1.21428rem;
		margin-bottom: 1.1857rem;
	}
	.review-ttl .icon{
		width: 50px;
		height: 50px;
		margin-right: 20px;
	}
	.review-inner .txt_block{
		font-size: 1.0714rem;
		line-height: 2;
	}
	.review-navigation{
		height: 50px;
	}
	.review-navigation .swiper-button-prev, .review-navigation .swiper-button-next{
		width: 50px;
		height: 50px;
	}
	.review-navigation .swiper-button-prev::after, .review-navigation .swiper-button-next::after{
		width: 14px;
		height: 8px;
	}
	.review-pagination{
		margin-top: 4.64285rem; 
	}
}
@media screen and (min-width: 1400px){
	.review-swiper .swiper-slide{
		padding: 4.2857rem 5rem 3.71428rem;
	}
}
@media screen and (max-width: 767px){
	.review-outer{
		position: relative;
	}
	.review-navigation{
		width: 58%;
		margin: 2.1428rem auto 0;
	}
	.review-pagination{
		position: absolute;
		top: unset !important;
		bottom: 1rem !important;
	}
}
/******************************
/* SPEC
******************************/
.spec{
	margin-top: 7.1428rem;
}
.spec-slide-nav{
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 10px;
}
.spec-slide-nav-item{
  aspect-ratio: 23 / 20;
}
.spec-slide-nav-item img{
  width: 100%;
  height: 100%;
}
.spec-ttl{
  font-size: 1.357rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 2.857rem;
}
.spec-txtArea #spec-table th, .spec-txtArea #spec-table td{
  font-size: 0.928rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  border-top: 1px solid rgba(201,201,201,0.5);
  border-bottom: 1px solid rgba(201,201,201,0.5);
  padding: 1rem 0;
  margin-bottom: 2.757rem;
}
.spec-txtArea #spec-table th{
  width: 29%;
}
.spec-txtArea #spec-table td{
  width: 71%;
}
.spec-txtArea .txt_block{
  color: #505050;
  font-size: 0.857rem;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 3.0714rem;
}
.spec-txtArea .txt_block p + p{
  margin-top: 1.6rem;
}
@media screen and (min-width: 768px){
	.spec{
		width: 95%;
		margin-right: auto;
		margin-left: auto;
	}
	.spec-flex{
		display: flex;
		justify-content: space-between;
    align-items: flex-start;
	}
	.spec-img{
		width: 44.701%;
    position: sticky;
    top: 100px;
	}
	.spec-txtArea{
		width: 45.883%;
	}
	.spec-txtArea .inner{
		max-width: 600px;
	}
  .spec-txtArea .txt_block{
    line-height: 1.75;
    margin-top: 2.557rem;
  }
}
@media screen and (min-width: 992px){
	.spec{
		width: 90.58823%;
		max-width: 1540px;
	}
	.spec-img{
		width: 48.701298%;
	}
	.spec-txtArea{
		width: 41.8831%;
	}
}
@media screen and (min-width: 1200px) {
  .spec{
    margin-top: 13.7428rem;
  }
  .spec .c-title1{
    margin-bottom: 10.87rem;
  }
  .spec-img{
    position: relative;
    top: unset;
  }
  .spec-ttl{
    font-size: 1.7142rem;
  }
  .spec-txtArea #spec-table th, .spec-txtArea #spec-table td{
    font-size: 1.0714rem;
    padding: 1.61rem 0;
  }
  .spec-txtArea .txt_block{
    font-size: 0.923rem;
  }
}
@media screen and (max-width: 767px) {
  .spec-img{
    width: 95%;
    margin-right: auto;
    margin-left: auto;
  }
  .spec-txtArea{
    width: 85%;
    margin-top: 4.2857rem;
    margin-right: auto;
    margin-left: auto;
  }
}
/******************************
/* FAQ
******************************/
.bg_gray{
  position: relative;
}
.bg_gray::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #f8f8f8;
  z-index: -1;
}
.bg_gray.faq_bg{
  margin-top: 10.214rem;
  padding: 7.1428rem 0 8.5714rem;
}
.faq{
  width: 85%;
  margin-right: auto;
  margin-left: auto;
}
/* accordion */
.accordion_area{
	position: relative;
}
.accordion_area::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	top: 0;
	left: 0;
	background-color: rgba(201,201,201,0.5);
}
.accordion_area .accordion_one{
	position: relative;
}
.accordion_area .accordion_one::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(201,201,201,0.5);
  left: 0;
  bottom: 0;
}
.accordion_area .accordion_one .ac_header {
	padding: 1.98rem 4.1428rem 1.98rem 0;
	position: relative;
	display: flex;
	z-index: 0;
	cursor: pointer;
	transition: .3s;
}
.ac_q{
  font-size: 1.0714rem;
  letter-spacing: 0.1em;
  line-height: 1;
  width: calc(1rem + 13px);
}
.p-faq__q-txt{
  font-size: 0.928rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
.accordion_area .accordion_one .ac_header:not(.open):hover {
	opacity: 0.8;
	transition: .3s;
}
.accordion_area .accordion_one .ac_header .i_box {
	position: absolute;
	top: 27px;
	right: 0;
	width: 20px;
	height: 20px;
  border-radius: 50%;
  background-color: #6e82af;
}
.accordion_area .accordion_one .ac_header .i_box:before, .accordion_area .accordion_one .ac_header .i_box:after {
	position: absolute;
	content: "";
	width: 5.6px;
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
}
.accordion_area .accordion_one .ac_header .i_box:before {
	border-top: 1px solid rgba(255,255,255,0.4);
	width: 5.6px;
	height: 0;
	top: 0;
	bottom: 0;
  left: 0;
	right: 0;
}
.accordion_area .accordion_one .ac_header .i_box:after {
	border-left: 1px solid rgba(255,255,255,0.4);
	width: 0;
	height: 5.6px;
	top: 0;
	bottom: 0;
  left: 0;
	right: 0;
	transition: .3s;
}
.accordion_area .accordion_one .ac_header.open .i_box:after {
	height: 0;
}
.accordion_area .accordion_one .ac_inner {
	display: none;
	position: relative;
  margin-top: -1.171rem;
  padding-bottom: 1.714rem;
}
.accordion_area .accordion_one .ac_inner .ac_inner_flex{
	display: flex;
}
.ac_a{
  font-size: 1.0714rem;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 0.3rem;
  width: calc(1rem + 13px);
}
.p-faq__a-txt{
  width: calc(100% - (1rem + 13px));
}
.p-faq__a-txt p{
  font-size: 0.857rem;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: justify;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .faq{
    width: 95%;
  }
  .accordion_area{
    width: 85%;
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
  }
  .accordion_area .accordion_one .ac_header{
    padding: 2.16rem 4.857rem 2.16rem 0;
  }
  .ac_q{
    font-size: 1.214rem;
    margin-top: 2px;
  }
  .p-faq__q-txt{
    font-size: 1.0714rem;
  }
  .accordion_area .accordion_one .ac_header .i_box{
    width: 30px;
    height: 30px;
  }
  .accordion_area .accordion_one .ac_header .i_box::before{
    width: 8.4px;
  }
  .accordion_area .accordion_one .ac_header .i_box::after{
    height: 8.4px;
  }
  .ac_a{
    font-size: 1.214rem;
  }
  .p-faq__a-txt p{
    font-size: 0.928rem;
    line-height: 1.75;
  }
  .accordion_area .accordion_one .ac_inner{
    margin-top: -1.114rem;
    padding-bottom: 2.071rem;
  }
}
@media screen and (min-width: 992px) {
  .faq{
    width: 90.58823%;
    max-width: 1540px;
  }
}
@media screen and (min-width: 1200px) {
  .bg_gray.faq_bg{
    margin-top: 15.671rem;
    padding: 13.785rem 0 15.978rem;
  }
  .accordion_area .accordion_one .ac_header{
    padding: 2.67rem 4.857rem 2.67rem 0;
  }
  .ac_q{
    font-size: 1.714rem;
    margin-top: 2px;
    width: 50px;
  }
  .p-faq__q-txt{
    font-size: 1.428rem;
  }
  .accordion_area .accordion_one .ac_header .i_box{
    width: 40px;
    height: 40px;
    top: 32px;
  }
  .accordion_area .accordion_one .ac_header .i_box::before{
    width: 11.2px;
  }
  .accordion_area .accordion_one .ac_header .i_box::after{
    height: 11.2px;
  }
  .accordion_area .accordion_one .ac_inner{
    margin-top: -0.471rem;
    padding-bottom: 2.571rem;
  }
  .ac_a{
    font-size: 1.714rem;
    width: 50px;
    margin-top: 0;
  }
  .p-faq__a-txt{
    width: calc(100% - 50px);
  }
}