@charset "UTF-8";

/*all----------------------------*/
html {
  font-size: 62.5%;
}

body {
  -webkit-tap-highlight-color: transparent;
}

#Wrap {
  width: auto;
}

footer {
  position: relative;
  z-index: 2;
}

.nav-top {
  display: none;
  z-index: 5;
}

:root {
  --font_jpn: "Noto Serif JP", serif;
  --font_eng: adobe-garamond-pro, "EB Garamond", serif;
  --color_01: #887295;
  --color_02: #BEB3C5;
  --color_03: #F2EDF5;
  --color_04: #F9FAFF;
  --color_05: #B3C2CE;
  --color_bg: #fff;
  --color_regular: #242E36;
}

.LP_page * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1;
  letter-spacing: .1em;
}

.LP_page {
  padding-bottom: 10rem;
  background: var(--color_bg);
  font-family: var(--font_jpn);
  color: var(--color_regular);
  overflow-x: clip;
  opacity: 0;
  filter: blur(3px);
  transition: opacity 1s, filter 1s;
}

.LP_page.modalOpen,
#FooterWrap.modalOpen {
  overflow-y: scroll;
  height: 100%;
}

.LP_page.active {
  opacity: 1;
  filter: unset
}

.LP_page picture {
  display: block;
  font-size: 0;
}

.LP_page a {
  display: block;
}

.LP_page a:hover {
  opacity: 1 !important;
}

.LP_page img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.LP_page sup {
  font-size: 1rem;
}

.LP_page .activePoint {
  opacity: 0;
  filter: blur(3px);
  transition: opacity 1s, filter 1s;
}

.LP_page .activePoint.active {
  opacity: 1;
  filter: unset;
}
/*----------------------------all*/

/*mv lead------------------------*/
.mv_wrap {
  position: relative;
  width: 120rem;
  margin: 0 auto 6rem;
}

.main_ttl {
  position: absolute;
  top: 0;
  right: 0;
  width: 50rem;
}

.main_lead {
  margin-bottom: 8rem;
  font-size: 1.4rem;
  line-height: 2;
  text-align: center;
}

/*------------------------mv lead*/

/*navigation---------------------*/
.nav_area {
  margin-bottom: 5rem;
}

.nav_list {
  display: flex;
  justify-content: center;
  gap: .5rem;
  width: 120rem;
  margin: 0 auto;
}

.nav_list li {
  width: calc((100% - 2rem) / 5);
}

.nav_list li a {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 8.4rem;
  border-radius: .3rem;
  padding-bottom: .8rem;
  background: var(--color_03);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .08em;
  text-align: center;
}

.nav_list li a::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: .8rem;
  height: .8rem;
  border-right: solid var(--color_regular);
  border-bottom: solid var(--color_regular);
  border-width: .1rem;
  margin-bottom: 1rem;
  box-sizing: border-box;
  opacity: .7;
  content: "";
  transition: margin .3s;
}

.nav_list li a:hover::before {
  margin-bottom: .5rem;
}

.nav_list li a .txt_S {
  position: absolute;
  z-index: 1;
  bottom: 100%;
  margin-bottom: -.6rem;
  font-family: var(--font_eng);
  font-size: 1.5rem;
  letter-spacing: .05em;
  color: var(--color_01);
  white-space: nowrap;
}

.nav_list li.btn_cp a {
  border: solid var(--color_01);
  border-width: .1rem;
  background: #fff;
  padding-bottom: 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color_01);
}

.nav_list li.btn_cp a::before {
  display: none;
}

.nav_list li.btn_cp a::after {
  position: absolute;
  top: 0;
  width: 8rem;
  height: .4rem;
  margin-top: -.3rem;
  background: #fff;
  content: "";
}

.nav_list li.btn_cp .txt_L {
  position: relative;
  padding-right: 2rem;
}

.nav_list li.btn_cp .txt_L::before,
.nav_list li.btn_cp .txt_L::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1rem;
  height: .1rem;
  background: var(--color_01);
  content: "";
  transition: transform .3s;
}

.nav_list li.btn_cp .txt_L::after {
  transform: translateY(-50%) rotate(90deg);
}

.nav_list li.btn_cp a:hover .txt_L::before {
  transform: translateY(-50%) rotate(90deg);
}

.nav_list li.btn_cp a:hover .txt_L::after {
  transform: translateY(-50%) rotate(180deg);
}

/*---------------------navigation*/

/*campaign modal-----------------*/
body.no_scroll {
  height: 100vh;
  overflow: hidden;
}

header.hide,
.nav_area.fixed.hide {
  opacity: 0 !important;
  pointer-events: none;
  transition: opacity 0s !important;
}

.modal_outside.hide {
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
}

.modal_outside {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: opacity .5s;
  overflow-y: scroll;
}

.modal_outside::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(52, 56, 97, .6);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  content: "";
}

.modal_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal_wrap {
  margin: 0 auto;
  max-height: 100%;
  padding: 5rem 0;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;  
}

.modal_wrap::-webkit-scrollbar {
  display:none;
}

.modal_inner {
  position: relative;
}

.modal_close {
  position: fixed;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border: none;
  margin: 1.5rem 0 0 58rem;
  background: none;
  cursor: pointer;
  transform: rotate(45deg);
  transition: transform .3s;
}

.modal_close:hover {
  transform: rotate(135deg);
}

.modal_close::before,
.modal_close::after {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: .1rem;
  height: 100%;
  background: var(--color_regular);
  content: "";
}

.modal_close::after {
  transform: translateX(-50%) rotate(90deg);
}

.modal_content .campaign_area {
  margin: 0 !important;
}

/*-----------------campaign modal*/

/*About mirari organic-----------*/
.each_sec {
  padding: 5rem 0 8rem;
}

.sec_ttl {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: 0 auto 4rem;
  font-size: 2.8rem;
  text-align: center;
  color: var(--color_01);
}

.sec_ttl::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: .1rem;
  margin-top: 1rem;
  background: var(--color_02);
  content: "";
}

.sec_ttl .sec_num {
  display: grid;
  place-items: center;
  width: 18rem;
  height: 2rem;
  border-radius: 10rem;
  margin: 0 auto 1rem;
  background: var(--color_02);
  font-family: var(--font_eng);
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
}

.sec_ttl .txt_L {
  position: relative;
  line-height: 1.5;
}

#Chapter3 .sec_ttl .txt_L {
  display: inline-block;
  padding: 0 1.5rem;
}

#Chapter3 .sec_ttl .txt_L::before,
#Chapter3 .sec_ttl .txt_L::after {
  position: absolute;
  width: 1rem;
  height: 2rem;
  border: solid var(--color_01);
  border-width: .1rem;
  content: "";
}

#Chapter3 .sec_ttl .txt_L::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

#Chapter3 .sec_ttl .txt_L::after {
  bottom: 0;
  right: 0;
  border-top: none;
  border-left: none;
}

.sec_ttl .txt_S {
  display: block;
  margin-top: 1rem;
  font-family: var(--font_eng);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--color_02);
}

.about_ttl {
  margin-bottom: 4.5rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
}

.about_ttl .txt_L {
  position: relative;
  display: block;
  width: fit-content;
  margin: 1.2rem auto 0;
  font-size: 2.6rem;
  font-weight: 700;
}

.about_ttl .txt_L::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 1.8rem);
  height: .1rem;
  margin-bottom: -.4rem;
  background: var(--color_regular);
  content: "";
}

.about_txt {
  margin-bottom: 6rem;
  text-align: center;
  font-size: 1.3rem;
}

.about_txt > span {
  display: block;
  line-height: 2;
}

.about_txt span .txt_B {
  font-weight: 800;
}

.about_txt span:nth-of-type(n+2) {
  margin-top: 2rem;
}

.ingredient_list_wrap {
  text-align: center;
}

.ingredient_list_wrap h4 {
  margin-bottom: 2rem;
  font-size: 1.7rem;
  font-weight: 600;
}

.ingredient_list {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.ingredient_list li {
  width: 20rem;
}

.ingredient_list li figure {
  border-radius: 50%;
  overflow: clip;
  margin-bottom: 1.5rem;
}

.ingredient_list li dt {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 500;
}

.ingredient_list li dd {
  font-size: 1.2rem;
  line-height: 1.4;
}

.ingredient_list li dd .notes {
  display: block;
  margin-top: .5rem;
  font-size: 1rem;
}
/*-----------About mirari organic*/

/*miwa---------------------------*/
.sec_lead {
  margin-bottom: 4rem;
  font-size: 1.3rem;
  line-height: 2;
  text-align: center;
}

.sec_lead a {
  display: inline;
}

.sec_lead a:hover {
  opacity: .6 !important;
}

.delegate_content {
  width: 75rem;
  margin: 0 auto;
  padding: 4.5rem 6rem 4rem ;
  background: var(--color_04);
}

.profile_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  border-bottom: dotted var(--color_02);
  border-width: .1rem;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
}

.profile_img {
  width: 16rem;
  border-radius: 50%;
  overflow: clip;
}

.profile_txt_wrap {
  width: 35rem;
  font-size: 1.2rem;
}

.profile_txt_wrap dt {
  margin-bottom: .8rem;
  font-weight: 700;
}

.profile_txt_wrap dt a {
  display: inline;
}

.profile_txt_wrap dt a:hover {
  opacity: .6 !important;
}

.profile_txt_wrap dd {
  line-height: 1.75;
}

.miwa_content {
  font-size: 1.4rem;
  line-height: 2;
  text-align: center;
}
/*---------------------------miwa*/

/*We tried mirari organic--------*/
.mirin_content .review_ttl {
  margin-bottom: 2rem;
  font-size: 1.7rem;
  font-weight: 500;
  text-align: center;
}

.mirin_content .review_img_wrap {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.mirin_content .review_img {
  width: 20rem;
}

.accordion_wrap {
  position: relative;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s;
}

.accordion_outside.open .accordion_wrap {
  grid-template-rows: 1fr;
}

.accordion_wrap::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10rem;
  background: linear-gradient(transparent, var(--color_04));
  content: "";
}

.accordion_outside.open .accordion_wrap::before {
  display: none;
}

.accordion_inner {
  overflow: hidden;
  min-height: 14rem;
}

.mirin_content .review_txt .accordion_inner {
  font-size: 1.3rem;
  line-height: 1.75;
}

.accordion_btn {
  width: fit-content;
  margin: .8rem auto 0;
  font-family: var(--font_eng);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
}

.accordion_btn span {
  position: relative;
  padding-right: 1.5rem;
  letter-spacing: .05em;
}

.accordion_btn span::before {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  width: .6rem;
  height: .6rem;
  border-right: solid var(--color_regular);
  border-bottom: solid var(--color_regular);
  border-width: .1rem;
  box-sizing: border-box;
  content: "";
}

.accordion_outside.open .accordion_btn span::before {
  transform: translateY(-50%) rotate(-135deg);
}

.accordion_btn .to_open {
  display: block;
}

.accordion_btn .to_close {
  display: none;
}

.accordion_outside.open .accordion_btn .to_open {
  display: none;
}

.accordion_outside.open .accordion_btn .to_close {
  display: block;
}

.staff-review_area {
  width: 110rem;
  margin: 8rem auto 0;
}

.staff-review_area h4 {
  border-bottom: solid var(--color_regular);
  border-width: .1rem;
  margin-bottom: 3.5rem;
  padding-bottom: 1.5rem;
  font-size: 1.7rem;
  font-weight: 600;
}

.review_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem;
}

.review_list li > div {
  display: flex;
  gap: 1.5rem;
}

.review_list li > div > div {
  flex: 1;
}

.review_list li .review_ttl {
  position: relative;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: .5rem;
  border: solid var(--color_05);
  border-width: .1rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.review_list li .review_ttl::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.5rem;
  height: .3rem;
  margin: 0 0 -.1rem 3rem;
  background: #fff;
  content: "";
}

.review_list li .review_ttl::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: .1rem;
  height: 1.5rem;
  margin: -.1rem 0 0 4.1rem;
  background: var(--color_05);
  transform: rotate(30deg);
  content: "";
}

.review_list li .staff_img {
  width: 11rem;
  border-radius: 50%;
  overflow: clip;
}

.review_list li > div > div > div {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.review_list li > div > div > div > div {
  flex: 1;
}

.review_list li .staff_name {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

.review_list li dl {
  display: flex;
  padding: .7rem 0;
}

.review_list li dl dt {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0 .8rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.review_list li dl dt::before {
  position: absolute;
  top: 0;
  right: 0;
  width: .1rem;
  height: 100%;
  content: "";
}

.review_list li .staff_skin-type dt::before {
  background: var(--color_01);
}

.review_list li .staff_skin-problem dt::before {
  background: #fff;
}

.review_list li dl dd {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 0 .8rem;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
}

.review_list li .staff_skin-type {
  margin-bottom: .5rem;
  background: var(--color_03);
  color: var(--color_01);
}

.review_list li .staff_skin-problem {
  background: var(--color_02);
  color: #fff;
}

.review_list li .review_img {
  width: 20rem;
}

.review_list li .review_txt {
  margin-top: 2.5rem;
  font-size: 1.3rem;
  line-height: 1.75;
}

.to_link {
  position: relative;
  width: fit-content;
  margin: 2rem 0 0 auto;
  padding-right: 1.2rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.to_link::before {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  width: .6rem;
  height: .6rem;
  border-top: solid var(--color_regular);
  border-right: solid var(--color_regular);
  border-width: .1rem;
  box-sizing: border-box;
  content: "";
  transition: margin .5s;
}

.to_link:hover::before {
  margin-right: -.5rem;
}

.to_link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: .1rem;
  margin-bottom: -.3rem;
  background: var(--color_regular);
  content: "";
  transform-origin: center left;
  transition: transform .6s;
}

.to_link:hover::after {
  transform: scaleX(0);
}

/*--------We tried mirari organic*/

/*mirari organic lineup----------*/
#Chapter4 .delegate_content {
  border-radius: .5rem;
  border: solid var(--color_05);
  border-width: .1rem;
  background: #fff;
}

#Chapter4 .profile_wrap {
  display: block;
  padding-left: 4.5rem;
  padding-right: 4.5rem;
}

.profile_img_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.profile_name {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.profile_name > span {
  display: block;
  margin-top: .8rem;
}

.profile_name .txt_L {
  font-size: 1.8rem;
}

.profile_txt {
 font-size: 1.2rem;
}

.profile_txt.accordion_wrap::before {
  height: 6rem;
  background: linear-gradient(transparent, #fff);
}

.profile_txt .accordion_inner {
  min-height: 8rem;
  line-height: 1.75;
}

.hanna_content {
  font-size: 1.4rem;
  line-height: 2;
  text-align: center;
}

.itm_list {
  display: flex;
  justify-content: center;
  gap: 5rem;
  width: 110rem;
  margin: 8rem auto 0;
}

.itm_list li {
  display: flex;
  gap: 2rem;
  width: 52.4rem;
}

.itm_list li .itm_img {
  position: relative;
  width: 22.4rem;
}

.itm_img a:hover {
  opacity: .6 !important;
}

.itm_list li .txt_wrap {
  flex: 1;
}

.itm_list li dt {
  margin-bottom: 1rem;
  font-size: 1.7rem;
  line-height: 1.5;
  font-weight: 600;
}

.itm_list li dd {
  font-size: 1.3rem;
  line-height: 1.75;
}

.itm_list li dd .txt_B {
  font-weight: 800;
}

#Chapter4 .to_link {
  margin-top: .8rem
}

.itm_list li .award_img {
  position: absolute;
  top: 0;
  left: 0;
  margin: -6rem 0 0 -5rem;
  width: 13rem;
}

.pickup-itm_wrap {
  width: 87.5rem;
  margin: 8rem auto 0;
  padding: 3.5rem 4.5rem 4.5rem;
  background: var(--color_04);
}

.pickup-itm_wrap > h4 {
  margin-bottom: 2.5rem;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
  color: var(--color_01);
}

.pickup-itm_wrap > div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 35rem;
  padding-left: 38.5rem;
}

.itm_award_wrap {
  margin-bottom: 2rem;
}

.itm_award_wrap .itm_award:nth-of-type(n+2) {
  margin-top: .3rem;
}

.itm_award_wrap .itm_award {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.itm_award_wrap .award_img {
  width: 8rem;
}

.award_txt {
  font-size: 1.3rem;
  line-height: 2.3;
  font-weight: 700;
}

.award_txt .txt_M {
  font-size: 1.8rem;
}

.award_txt .txt_L {
  font-size: 2.6rem;
}

.pickup-itm_wrap .itm_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 35rem;
}

.pickup-itm_wrap .itm_name {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
}

.pickup-itm_wrap .itm_price {
  font-size: 1.8rem;
  font-weight: 700;
}

.pickup-itm_wrap .itm_price .txt_S {
  font-size: 1.1rem;
}

.pickup-itm_wrap .itm_caption {
  margin-top: 1.8rem;
  font-size: 1.3rem;
  line-height: 1.75;
}
/*----------mirari organic lineup*/

/*campaign-----------------------*/
.campaign_area {
  margin: 1rem 0 9rem;
}

.campaign_area .sec_inner {
  width: 62rem;
  border-radius: .5rem;
  border: solid var(--color_02);
  border-width: .1rem;
  margin: 0 auto;
  padding: 4rem;
  background: #fff;
}

.campaign_area .sec_ttl {
  margin-bottom: 2rem;
}

.cp_period {
  margin-bottom: 3.5rem;
  font-family: var(--font_eng);
  font-size: 2rem;
  text-align: center;
}

.cp_period .txt_S {
  font-size: 1.3rem;
  letter-spacing: .05em;
}

.cp_list > li:nth-of-type(n+2) {
  margin-top: 4.5rem;
}

.cp_list > li {
  position: relative;
  padding: 3rem 2rem;
  background: var(--color_04);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.75;
  text-align: center;
}

.cp_list > li a {
  display: inline;
  text-decoration: underline;
}

.cp_list > li a:hover {
  opacity: .6 !important;
}

.cp_list > li h4 {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: -1rem;
  font-family: var(--font_eng);
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: .05em;
  color: var(--color_02);
  white-space: nowrap;
  opacity: .5;
}

.cp_list > li .txt_M {
  display: block;
  margin-top: .5rem;
  font-family: var(--font_eng);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0;
}

.cp_list > li .txt_L {
  font-size: 4.2rem;
  letter-spacing: 0;
}

.cp_list > li .notes_list {
  width: fit-content;
  margin: 1.5rem auto 0;
}

.cp_list > li .notes_list li {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
  text-indent: -2.1em;
  padding-left: 2.1em;
  text-align: left;
}

.cp_list > li .notes_list li:nth-of-type(n+2) {
  margin-top: .4rem;
}

.cp_list > li .coupon_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: .5rem auto 0;
  background: #fff;
  border-radius: .3rem;
  padding: 1.2rem 3rem;
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, .1);
}

.cp_list > li .coupon_wrap .txt_L {
  margin-left: 1.5rem;
  font-family: var(--font_eng);
  font-size: 2.2rem;
  letter-spacing: .05em;
  color: var(--color_01);
}

.cp_list > li .coupon_wrap .for_copy {
  border-radius: .3rem;
  margin: 0 .8rem 0 1.2rem;
  width: 8rem;
  padding: .2rem 0;
  border: solid var(--color_02);
  border-width: .1rem;
  background: var(--color_02);
  font-family: var(--font_eng);
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: background-color .3s, color .3s;
}

.cp_list > li .coupon_wrap .for_copy.copied {
  background: #fff;
  color: var(--color_01);
}

.cp_list > li .coupon_wrap .for_copy .copy_before {
  opacity: 1;
  font-size: inherit;
  transition: opacity .3s;
}

.cp_list > li .coupon_wrap .for_copy .copy_after {
  opacity: 0;
  font-size: 0;
  transition: opacity .3s;
}

.cp_list > li .coupon_wrap .for_copy.copied .copy_before {
  opacity: 0;
  font-size: 0;
}

.cp_list > li .coupon_wrap .for_copy.copied .copy_after {
  opacity: 1;
  font-size: inherit;
}
/*-----------------------campaign*/

/*wrap up button-----------------*/
.btn_wrap-up {
  width: fit-content;
  margin: 1rem auto 0;
}

.btn_wrap-up a {
  position: relative;
  display: grid;
  place-items: center;
  width: 45rem;
  height: 6rem;
  border-radius: .3rem;
  background: #242E36;
  font-size: 2rem;
  color: #fff;
}

.btn_wrap-up a::before {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  width: .8rem;
  height: .8rem;
  margin-right: 1.5rem;
  border-top: solid #fff;
  border-right: solid #fff;
  border-width: .1rem;
  content: "";
  transition: margin .3s;
}

.btn_wrap-up a:hover::before {
  margin-right: .8rem;
}

/*-----------------wrap up button*/

/*fixed navigation---------------*/
.nav_area.fixed {
  position: fixed;
  z-index: 3;
  bottom: 0;
  width: 100%;
  margin-bottom: 0;
  padding: .7rem 0;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, .1);
  opacity: 0;
  pointer-events: none;
  filter: blur(10px);
  transition: opacity .4s, filter .6s;
}

.nav_area.fixed::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  content: "";
}

.nav_area.fixed.active {
  opacity: 1;
  filter: unset;
  pointer-events: auto;
}

.nav_area.fixed .nav_list li a {
  height: 6.6rem;
  padding-bottom: 0;
  font-size: 1.2rem;
}

.nav_area.fixed .nav_list li a::before {
  display: none;
}

.nav_area.fixed .nav_list li a .txt_L {
  display: grid;
  place-items: center;
  min-height: 3.6rem;
  line-height: 1.5;
  letter-spacing: .08em;
}

.nav_area.fixed .nav_list li a .txt_S {
  position: static;
  display: block;
  margin-bottom: .2rem;
  font-size: 1.2rem;
}

.nav_area.fixed .nav_list li.btn_cp a {
  font-size: 1.2rem;
}

.nav_area.fixed .nav_list li.btn_cp a::after {
  display: none;
}

/*---------------fixed navigation*/

/*Smart phone---------------------------------------------*/
@media screen and  (max-width:768px) {
/*all----------------------------*/
.LP_page .only_pc {
  display: none;
}

#share {
  z-index: 5 !important;
  transition: transform .6s;
}

#share.move2 {
  transform: translateY(calc(-164 * (100vw / 430)));
}

.share-txt {
  margin: 0 !important;
  padding-bottom: calc(20 * (100vw / 430));
  background: var(--color_bg);
}

.LP_page {
  padding-bottom: calc(80 * (100vw / 430));
}

.LP_page sup {
  font-size: calc(10 * (100vw / 430));
}

/*----------------------------all*/

/*mv lead------------------------*/
.mv_wrap {
  width: auto;
  margin: 0 auto calc(40 * (100vw / 430));
}

.main_ttl {
  right: auto;
  left: 0;
  width: 100%;
}

.main_lead {
  margin-bottom: calc(55 * (100vw / 430));
  font-size: calc(13 * (100vw / 430));
}

/*------------------------mv lead*/

/*navigation---------------------*/
.nav_area {
  margin-bottom: calc(50 * (100vw / 430));
}

.nav_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(12 * (100vw / 430));
  width: auto;
  padding: 0 calc(15 * (100vw / 430));
}

.nav_list li {
  width: auto;
}

.nav_list li a {
  height: calc(60 * (100vw / 430));
  border-radius: calc(3 * (100vw / 430));
  padding-bottom: calc(10 * (100vw / 430));
  font-size: calc(11 * (100vw / 430));
}

.nav_list li a::before {
  width: calc(6 * (100vw / 430));
  height: calc(6 * (100vw / 430));
  border-width: calc(1 * (100vw / 430));
  margin-bottom: calc(7 * (100vw / 430));
}

.nav_list li a:hover::before {
  margin-bottom: calc(5 * (100vw / 430));
}

.nav_list li a .txt_S {
  margin-bottom: calc(-4 * (100vw / 430));
  font-size: calc(10 * (100vw / 430));
}

/*---------------------navigation*/

/*campaign modal-----------------*/
.modal_wrap {
  padding: calc(15 * (100vw / 430)) 0; 
}

.modal_close {
  width: calc(20 * (100vw / 430));
  height: calc(20 * (100vw / 430));
  margin: calc(10 * (100vw / 430)) 0 0 calc(370 * (100vw / 430));
}

.modal_close::before,
.modal_close::after {
  width: calc(1 * (100vw / 430));
}

/*-----------------campaign modal*/

/*About mirari organic-----------*/
.each_sec {
  padding: calc(30 * (100vw / 430)) 0 calc(50 * (100vw / 430));
}

.sec_ttl {
  margin: 0 auto calc(30 * (100vw / 430));
  font-size: calc(20 * (100vw / 430));
}

.sec_ttl::before {
  height: calc(1 * (100vw / 430));
  margin-top: calc(8 * (100vw / 430));
}

.sec_ttl .sec_num {
  width: calc(100 * (100vw / 430));
  height: calc(16 * (100vw / 430));
  border-radius: calc(10 * (100vw / 430));
  margin: 0 auto calc(10 * (100vw / 430));
  font-size: calc(11 * (100vw / 430));
}

#Chapter3 .sec_ttl .txt_L {
  padding: 0 calc(5 * (100vw / 430)) 0 calc(18 * (100vw / 430));
}

#Chapter3 .sec_ttl .txt_L::before,
#Chapter3 .sec_ttl .txt_L::after {
  width: calc(8 * (100vw / 430));
  height: calc(16 * (100vw / 430));
  border-width: calc(1 * (100vw / 430));
}

.sec_ttl .txt_S {
  margin-top: calc(10 * (100vw / 430));
  font-size: calc(11 * (100vw / 430));
}

.about_ttl {
  margin-bottom: calc(35 * (100vw / 430));
  font-size: calc(16 * (100vw / 430));
}

.about_ttl .txt_L {
  margin: calc(12 * (100vw / 430)) auto 0;
  font-size: calc(20 * (100vw / 430));
}

.about_ttl .txt_L::before {
  width: calc(100% - calc(14 * (100vw / 430)));
  height: calc(1 * (100vw / 430));
  margin-bottom: calc(-4 * (100vw / 430));
}

.about_txt {
  margin-bottom: calc(50 * (100vw / 430));
  font-size: calc(12 * (100vw / 430));
}

.about_txt span:nth-of-type(n+2) {
  margin-top: calc(20 * (100vw / 430));
}

.ingredient_list_wrap h4 {
  margin-bottom: calc(15 * (100vw / 430));
  font-size: calc(16 * (100vw / 430));
}

.ingredient_list {
  gap: calc(25 * (100vw / 430));
}

.ingredient_list li {
  width: calc(170 * (100vw / 430));
}

.ingredient_list li figure {
  margin-bottom: calc(12 * (100vw / 430));
}

.ingredient_list li dt {
  margin-bottom: calc(8 * (100vw / 430));
  font-size: calc(15 * (100vw / 430));
}

.ingredient_list li dd {
  font-size: calc(11 * (100vw / 430));
}

.ingredient_list li dd .notes {
  margin-top: calc(5 * (100vw / 430));
  font-size: calc(10 * (100vw / 430));
}
/*-----------About mirari organic*/

/*miwa---------------------------*/
.sec_lead {
  margin-bottom: calc(30 * (100vw / 430));
  font-size: calc(12 * (100vw / 430));
}

.delegate_content {
  width: calc(400 * (100vw / 430));
  padding: calc(30 * (100vw / 430)) calc(20 * (100vw / 430)) calc(35 * (100vw / 430));
}

.profile_wrap {
  display: block;
  border-width: calc(1 * (100vw / 430));
  margin-bottom: calc(25 * (100vw / 430));
  padding-bottom: calc(25 * (100vw / 430));
}

.profile_img {
  width: calc(140 * (100vw / 430));
 margin: 0 auto calc(12 * (100vw / 430));
}

.profile_txt_wrap {
  width: calc(320 * (100vw / 430));
  margin: 0 auto;
  font-size: calc(11 * (100vw / 430));
}

.profile_txt_wrap dt {
  margin-bottom: calc(8 * (100vw / 430));
  text-align: center;
}

.miwa_content {
  font-size: calc(13 * (100vw / 430));
}
/*---------------------------miwa*/

/*We tried mirari organic--------*/
.mirin_content .review_ttl {
  margin-bottom: calc(15 * (100vw / 430));
  font-size: calc(16 * (100vw / 430));
}

.mirin_content .review_img_wrap {
  gap: calc(12 * (100vw / 430));
  margin-bottom: calc(12 * (100vw / 430));
}

.mirin_content .review_img {
  width: calc(174 * (100vw / 430));
}

.accordion_wrap::before {
  height: calc(50 * (100vw / 430));
}

.accordion_inner {
  min-height: calc(100 * (100vw / 430));
}

.mirin_content .review_txt .accordion_inner {
  font-size: calc(12 * (100vw / 430));
}

.accordion_btn {
  margin: calc(8 * (100vw / 430)) auto 0;
  font-size: calc(12 * (100vw / 430));
}

.accordion_btn span {
  padding-right: calc(15 * (100vw / 430));
}

.accordion_btn span::before {
  width: calc(6 * (100vw / 430));
  height: calc(6 * (100vw / 430));
  border-width: calc(1 * (100vw / 430));
}

.staff-review_area {
  width: auto;
  padding: 0 calc(15 * (100vw / 430));
  margin-top: calc(60 * (100vw / 430));
}

.staff-review_area h4 {
  border-width: calc(1 * (100vw / 430));
  margin-bottom: calc(25 * (100vw / 430));
  padding-bottom: calc(10 * (100vw / 430));
  font-size: calc(16 * (100vw / 430));
}

.review_list {
  display: block;
  padding: 0 calc(10 * (100vw / 430));
}

.review_list li:nth-of-type(n+2) {
  margin-top: calc(60 * (100vw / 430));
}

.review_list li > div {
  display: block;
}

.review_list li .review_ttl {
  margin-bottom: calc(25 * (100vw / 430));
  padding: calc(10 * (100vw / 430));
  border-radius: calc(5 * (100vw / 430));
  border-width: calc(1 * (100vw / 430));
  font-size: calc(15 * (100vw / 430));
}

.review_list li .review_ttl::before {
  width: calc(18 * (100vw / 430));
  height: calc(3 * (100vw / 430));
  margin: 0 0 calc(-1 * (100vw / 430)) calc(70 * (100vw / 430));
}

.review_list li .review_ttl::after {
  width: calc(1 * (100vw / 430));
  height: calc(18 * (100vw / 430));
  margin: calc(-1 * (100vw / 430)) 0 0 calc(83 * (100vw / 430));
}

.review_list li .staff_img {
  width: calc(130 * (100vw / 430));
}

.review_list li > div > div {
  padding: 0 calc(25 * (100vw / 430));
}

.review_list li > div > div > div {
  gap: calc(20 * (100vw / 430));
  padding: 0 calc(5 * (100vw / 430));
}

.review_list li .staff_name {
  margin-bottom: calc(10 * (100vw / 430));
  font-size: calc(11 * (100vw / 430));
}

.review_list li dl {
  padding: calc(6 * (100vw / 430)) 0;
}

.review_list li dl dt {
  padding: 0 calc(8 * (100vw / 430));
  font-size: calc(11 * (100vw / 430));
}

.review_list li dl dt::before {
  width: calc(1 * (100vw / 430));
}

.review_list li dl dd {
  padding: 0 calc(8 * (100vw / 430));
  font-size: calc(12 * (100vw / 430));
}

.review_list li .staff_skin-type {
  margin-bottom: calc(5 * (100vw / 430));
}

.review_list li .review_img {
  width: calc(230 * (100vw / 430));
  margin: calc(20 * (100vw / 430)) auto 0;
}

.review_list li .review_txt {
  margin-top: calc(15 * (100vw / 430));
  font-size: calc(12 * (100vw / 430));
}

.to_link {
  margin: calc(15 * (100vw / 430)) 0 0 auto;
  padding-right: calc(12 * (100vw / 430));
  font-size: calc(12 * (100vw / 430));
}

.to_link::before {
  width: calc(6 * (100vw / 430));
  height: calc(6 * (100vw / 430));
  border-width: calc(1 * (100vw / 430));
}

.to_link:hover::before {
  margin-right: calc(-5 * (100vw / 430));
}

.to_link::after {
  height: calc(1 * (100vw / 430));
  margin-bottom: calc(-3 * (100vw / 430));
}

/*--------We tried mirari organic*/

/*mirari organic lineup----------*/
#Chapter4 .delegate_content {
  border-radius: calc(5 * (100vw / 430));
  border-width: calc(1 * (100vw / 430));
}

#Chapter4 .profile_wrap {
  padding-left: calc(5 * (100vw / 430));
  padding-right: calc(5 * (100vw / 430));
}

.profile_img_wrap {
  gap: calc(15 * (100vw / 430));
  margin-bottom: calc(12 * (100vw / 430));
}

.profile_name {
  font-size: calc(11 * (100vw / 430));
}

.profile_name > span {
  margin-top: calc(10 * (100vw / 430));
}

.profile_name .txt_L {
  font-size: calc(17 * (100vw / 430));
}

.profile_txt {
 font-size: calc(11 * (100vw / 430));
}

.profile_txt.accordion_wrap::before {
  height: calc(30 * (100vw / 430));
}

.profile_txt .accordion_inner {
  min-height: calc(60 * (100vw / 430));
}

.hanna_content {
  padding: 0 calc(12 * (100vw / 430));
  font-size: calc(13 * (100vw / 430));
  text-align: left;
}

.itm_list {
  display: block;
  width: auto;
  margin-top: calc(60 * (100vw / 430));
  padding: 0 calc(20 * (100vw / 430));
}

.itm_list li {
  display: block;
  width: auto;
}

.itm_list li:nth-of-type(n+2) {
  margin-top: calc(45 * (100vw / 430));
}

.itm_list li .itm_img {
  width: calc(190 * (100vw / 430));
}

.itm_list li:nth-of-type(odd) .itm_img {
  float: left;
  margin-right: calc(15 * (100vw / 430));
}

.itm_list li:nth-of-type(even) .itm_img {
  float: right;
  margin-left: calc(15 * (100vw / 430));
}

.itm_list li dt {
  display: flex;
  align-items: center;
  min-height: calc(120 * (100vw / 430));
  margin-bottom: 0;
  font-size: calc(16 * (100vw / 430));
}

.itm_list li:nth-of-type(even) dt {
  text-align: right;
  justify-content: flex-end;
}

.itm_list li dd {
  margin-top: calc(12 * (100vw / 430));
  font-size: calc(12 * (100vw / 430));
}

#Chapter4 .to_link {
  margin-top: calc(8 * (100vw / 430));
}

.itm_list li .award_img {
  margin: calc(-40 * (100vw / 430)) 0 0 calc(-30 * (100vw / 430));
  width: calc(90 * (100vw / 430));
}

.pickup-itm_wrap {
  width: calc(400 * (100vw / 430));
  margin: calc(60 * (100vw / 430)) auto 0;
  padding: calc(30 * (100vw / 430)) calc(25 * (100vw / 430)) calc(40 * (100vw / 430));
}

.pickup-itm_wrap > h4 {
  margin-bottom: calc(12 * (100vw / 430));
  font-size: calc(17 * (100vw / 430));
}

.pickup-itm_wrap > div {
  display: block;
  min-height: unset;
  padding-left: 0;
}

.itm_award_wrap {
  width: fit-content;
  margin: 0 auto calc(10 * (100vw / 430));
}

.itm_award_wrap .itm_award:nth-of-type(n+2) {
  margin-top: calc(3 * (100vw / 430));
}

.itm_award {
  gap: calc(5 * (100vw / 430));
}

.itm_award_wrap .award_img {
  width: calc(80 * (100vw / 430));
}

.award_txt {
  font-size: calc(12 * (100vw / 430));
}

.award_txt .txt_M {
  font-size: calc(15 * (100vw / 430));
}

.award_txt .txt_L {
  font-size: calc(24 * (100vw / 430));
}

.pickup-itm_wrap .itm_img_wrap {
  display: flex;
  align-items: center;
  gap: calc(15 * (100vw / 430));
}

.pickup-itm_wrap .itm_img {
  position: static;
  width: calc(150 * (100vw / 430));
}

.pickup-itm_wrap .itm_name_wrap {
  flex: 1;
}

.pickup-itm_wrap .itm_name {
  margin-bottom: calc(10 * (100vw / 430));
  font-size: calc(15 * (100vw / 430));
  line-height: 1.5;
}

.pickup-itm_wrap .itm_price {
  font-size: calc(16 * (100vw / 430));
}

.pickup-itm_wrap .itm_price .txt_S {
  font-size: calc(10 * (100vw / 430));
}

.pickup-itm_wrap .itm_caption {
  margin-top: calc(12 * (100vw / 430));
  font-size: calc(12 * (100vw / 430));
}
/*----------mirari organic lineup*/

/*campaign-----------------------*/
.campaign_area {
  margin: calc(10 * (100vw / 430)) 0 calc(60 * (100vw / 430));
}

.campaign_area .sec_inner {
  width: calc(400 * (100vw / 430));
  border-radius: calc(5 * (100vw / 430));
  border-width: calc(1 * (100vw / 430));
  padding: calc(35 * (100vw / 430)) calc(15 * (100vw / 430));
}

.campaign_area .sec_ttl {
  margin-bottom: calc(15 * (100vw / 430));
}

.cp_period {
  margin-bottom: calc(40 * (100vw / 430));
  font-size: calc(18 * (100vw / 430));
}

.cp_period .txt_S {
  font-size: calc(12 * (100vw / 430));
}

.cp_list > li:nth-of-type(n+2) {
  margin-top: calc(40 * (100vw / 430));
}

.cp_list > li {
  padding: calc(30 * (100vw / 430)) calc(15 * (100vw / 430));
  font-size: calc(12 * (100vw / 430));
}

.cp_list > li h4 {
  margin-bottom: calc(-12 * (100vw / 430));
  font-size: calc(30 * (100vw / 430));
}

.cp_list > li .txt_M {
  margin-top: calc(5 * (100vw / 430));
  font-size: calc(24 * (100vw / 430));
}

.cp_list > li .txt_L {
  font-size: calc(42 * (100vw / 430));
}

.cp_list > li .notes_list {
  margin: calc(15 * (100vw / 430)) auto 0;
}

.cp_list > li .notes_list li {
  font-size: calc(10 * (100vw / 430));
}

.cp_list > li .notes_list li:nth-of-type(n+2) {
  margin-top: calc(4 * (100vw / 430));
}

.cp_list > li .coupon_wrap {
  flex-wrap: wrap;
  margin: calc(5 * (100vw / 430)) auto 0;
  border-radius: calc(3 * (100vw / 430));
  padding: calc(10 * (100vw / 430)) calc(15 * (100vw / 430));
}

.cp_list > li .coupon_wrap .txt_S {
  font-size: calc(10 * (100vw / 430));
  line-height: 1.2;
}

.cp_list > li .coupon_wrap .txt_L {
  margin-left: calc(12 * (100vw / 430));
  font-size: calc(20 * (100vw / 430));
}

.cp_list > li .coupon_wrap .for_copy {
  border-radius: calc(3 * (100vw / 430));
  margin: 0 calc(6 * (100vw / 430)) 0 calc(8 * (100vw / 430));
  width: calc(60 * (100vw / 430));
  padding: calc(2 * (100vw / 430)) 0;
  border-width: calc(1 * (100vw / 430));
  font-size: calc(10 * (100vw / 430));
}
/*-----------------------campaign*/

/*wrap up button-----------------*/
.btn_wrap-up {
  margin: calc(10 * (100vw / 430)) auto 0;
}

.btn_wrap-up a {
  width: calc(360 * (100vw / 430));
  height: calc(54 * (100vw / 430));
  border-radius: calc(3 * (100vw / 430));
  font-size: calc(17 * (100vw / 430));
}

.btn_wrap-up a::before {
  width: calc(8 * (100vw / 430));
  height: calc(8 * (100vw / 430));
  margin-right: calc(15 * (100vw / 430));
  border-width: calc(1 * (100vw / 430));
}

.btn_wrap-up a:hover::before {
  margin-right: calc(8 * (100vw / 430));
}

/*-----------------wrap up button*/

/*fixed navigation---------------*/
.nav_area.fixed {
  padding: calc(12 * (100vw / 430)) 0;
}

.nav_area.fixed .nav_list li a {
  height: calc(64 * (100vw / 430));
  font-size: calc(11 * (100vw / 430));
}

.nav_area.fixed .nav_list li a .txt_L {
  min-height: calc(30 * (100vw / 430));
}

.nav_area.fixed .nav_list li a .txt_S {
  margin-bottom: calc(2 * (100vw / 430));
  font-size: calc(10 * (100vw / 430));
}

.btn_Topics_wrap {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  filter: blur(10px);
  transition: opacity .4s, filter .6s, transform .6s;
}

.btn_Topics_wrap.active {
  opacity: 1;
  filter: unset;
  pointer-events: auto;
}

.btn_Topics_wrap.move {
  transform: translateY(calc(-164 * (100vw / 430)));
}

.btn_Topics {
  display: grid;
  place-items: center;
  width: calc(100 * (100vw / 430));
  height: calc(40 * (100vw / 430));
  border-radius: calc(100 * (100vw / 430)) 0 0 calc(100 * (100vw / 430));
  margin-bottom: calc(20 * (100vw / 430));
  background: var(--color_03);
  font-family: var(--font_eng);
  font-size: calc(16 * (100vw / 430));
  color: var(--color_01);
  cursor: pointer;
}

.btn_Topics > span {
  position: relative;
}

.btn_Topics > span > span {
  padding-left: calc(20 * (100vw / 430));
}

.btn_Topics > span::before,
.btn_Topics > span::after,
.btn_Topics > span > span::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: calc(12 * (100vw / 430));
  height: calc(1 * (100vw / 430));
  background: var(--color_01);
  content: "";
}

.btn_Topics > span::before {
  margin-top: calc(-4 * (100vw / 430));
}

.btn_Topics > span::after {
  margin-top: calc(4 * (100vw / 430));
}

.btn_Topics_wrap.move .btn_Topics > span::before {
  transform: translateY(-50%) rotate(45deg);
  margin-top: 0;
}

.btn_Topics_wrap.move .btn_Topics > span::after {
  transform: translateY(-50%) rotate(-45deg);
  margin-top: 0;
}

.btn_Topics_wrap.move .btn_Topics > span > span::before {
  opacity: 0;
}

.btn_cp_wrap {
  position: fixed;
  z-index: 3;
  bottom: 0;
  left: 0;
  margin: 0 0 calc(12 * (100vw / 430)) calc(15 * (100vw / 430));
  opacity: 0;
  pointer-events: none;
  filter: blur(10px);
  transition: opacity .4s, filter .6s, transform .6s;
}

.btn_cp_wrap.active {
  opacity: 1;
  filter: unset;
  pointer-events: auto;
}

.btn_cp_wrap.move {
  transform: translateY(calc(-164 * (100vw / 430)));
}

.btn_cp_wrap a {
  display: grid;
  place-items: center;
  width: calc(180 * (100vw / 430));
  height: calc(50 * (100vw / 430));
  border-radius: calc(3 * (100vw / 430));
  border: solid var(--color_01) calc(1 * (100vw / 430));
  background: #fff;
  font-size: calc(12 * (100vw / 430));
  text-align: center;
  color: var(--color_01);
}

.btn_cp_wrap a p {
  margin-top: calc(-2 * (100vw / 430));
}

.btn_cp_wrap a .txt_S {
  display: block;
  margin-bottom: calc(5 * (100vw / 430));
  font-family: var(--font_eng);
}

.btn_cp_wrap a .txt_L {
  position: relative;
  padding-right: calc(15 * (100vw / 430));
  font-weight: 700;
}

.btn_cp_wrap a .txt_L::before,
.btn_cp_wrap a .txt_L::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: calc(8 * (100vw / 430));
  height: calc(1 * (100vw / 430));
  background: var(--color_01);
  content: "";
  transition: transform .3s;
}

.btn_cp_wrap a .txt_L::after {
  transform: translateY(-50%) rotate(90deg);
}

.btn_cp_wrap a:hover .txt_L::before {
  transform: translateY(-50%) rotate(90deg);
}

.btn_cp_wrap a:hover .txt_L::after {
  transform: translateY(-50%) rotate(180deg);
}

/*---------------fixed navigation*/

}

/*---------------------------------------------Smart phone*/

/*PC------------------------------------------------------*/
@media screen and  (min-width:769px) {
  .only_sp {
    display: none;
  }

  #header_bottom .inner {
    width: 100%;
  }
}
/*------------------------------------------------------PC*/

/*レスポンシブ＆タブレット対応-------------------------------*/
@media screen and (max-width: 1600px){
  html {
    font-size: calc(10 * (100vw / 1600));
  }
}
/*-------------------------------レスポンシブ＆タブレット対応*/
