@charset "UTF-8";

/* Scss Document */
:root {
  --_main-font-family: "Noto Sans JP", serif;
  --_sub-font-family: YuMincho, "Yu Mincho", serif;
  --_main-font-size: 16px;
  --_main-font-weight: 400;
  --_main-font-color: #222;
  --_main-line-hlight: 1.6;
  --_main-letter-spacing: 0;
  --_main-link-color: #222;
  --_main-color: #000;
  --_sub-color: #000;
  --_inner-width: 1030px;
  --_inner-padding: 0 15px;
  --_anime-speed: 750ms;
  --_anime-delay: 0.6s;
}

@media (max-width: 750px) {
  :root {
    --_font-size: 14px;
    --_line-hlight: 1.4;
    --_letter-spacing: 0;
    --_inner-width: 100%;
    --_inner-padding: 0 16px;
  }
}

/* Scss Document */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  padding: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: var(--_main-font-family);
  font-size: var(--_main-font-size);
  line-height: var(--_line-hlight);
  font-weight: var(--_main-font-weight);
  color: var(--_main-font-color);
  letter-spacing: var(--_letter-spacing);
  -webkit-text-size-adjust: 100%;
}

img,
svg {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
  line-height: 1;
}

a {
  color: var(--_main-link-color);
  text-decoration: none;
}

input,
textarea,
button,
select {
  font-family: var(--_main-font-family);
  font-size: var(--_main-font-size);
  line-height: var(--_line-hlight);
  font-weight: var(--_main-font-weight);
  color: var(--_main-font-color);
}

@media screen and (max-width: 520px) {
  body {
    font-weight: var(--_main-font-weight);
    line-height: var(--_line-hlight);
  }

  input,
  textarea,
  button,
  select {
    font-weight: var(--_main-font-weight);
  }
}

/* Scss Document */
.header {
  display: none;
}

@media screen and (max-width: 520px) {
  /*　header
  ----------------------------------------------- */
  .header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    z-index: 13;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 1;
    pointer-events: all;
  }

  .header.none {
    opacity: 0;
    pointer-events: none;
  }

  .header__inner {
    width: 100%;
    padding: 16px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #fff;
    position: relative;
    z-index: 3;
  }

  .header__logo-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 20px;
  }

  .header__logo-text {
    font-weight: 700;
    font-size: 10px;
    line-height: 2.5;
    color: #050a30;
  }

  .header-btn {
    width: 32px;
    height: 32px;
    padding: 8px 4px;
    position: relative;
    z-index: 13;
  }

  .menu {
    display: block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
  }

  .menu span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    left: 4px;
    width: 24px;
    height: 2px;
    background: #080530;
  }

  .menu span:nth-of-type(1) {
    top: 8px;
  }

  .menu span:nth-of-type(2) {
    top: 15px;
  }

  .menu span:nth-of-type(3) {
    bottom: 8px;
  }

  .menu.active span:nth-of-type(1) {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
  }

  .menu.active span:nth-of-type(2) {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
  }

  .menu.active span:nth-of-type(3) {
    opacity: 0;
  }

  .header-navi {
    width: 100%;
    padding-top: 68px;
    position: absolute;
    top: 0;
    left: 0;
    background: #f5f5f5;
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  .header-navi.active {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .header-navi__list li {
    border-bottom: 1px solid #f5f5f5;
  }

  .header-navi__list li:last-child {
    border-bottom: none;
  }

  .header-navi__list a {
    padding: 11px 15px;
    display: block;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.4;
    color: #050a30;
    background: #fff;
  }
}

/*　footer
----------------------------------------------- */
.footer {
  padding: 16px 0;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 50px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px 0;
}

.footer-list a {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

@media (hover: hover) and (pointer: fine) {
  .footer-list a:hover {
    text-decoration: underline;
  }
}

.footer-copy {
  width: 100%;
  margin-top: 90px;
  font-size: 10px;
  line-height: 1.5;
  display: block;
}

/*　フェード
----------------------------------------------- */
.view01 {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  position: relative;
  opacity: 0;
  -webkit-transition: all var(--_anime-speed) ease;
  transition: all var(--_anime-speed) ease;
  -webkit-transition-delay: var(--_anime-delay);
  transition-delay: var(--_anime-delay);
}

.view01.view-on {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition: all var(--_anime-speed) ease;
  transition: all var(--_anime-speed) ease;
  -webkit-transition-delay: var(--_anime-delay);
  transition-delay: var(--_anime-delay);
}

.view02 {
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  position: relative;
  opacity: 0;
  -webkit-transition: all var(--_anime-speed) ease;
  transition: all var(--_anime-speed) ease;
  -webkit-transition-delay: var(--_anime-delay);
  transition-delay: var(--_anime-delay);
}

.view02.view-on {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  -webkit-transition: all var(--_anime-speed) ease;
  transition: all var(--_anime-speed) ease;
  -webkit-transition-delay: var(--_anime-delay);
  transition-delay: var(--_anime-delay);
}

.view03 {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  position: relative;
  opacity: 0;
  -webkit-transition: all var(--_anime-speed) ease;
  transition: all var(--_anime-speed) ease;
  -webkit-transition-delay: var(--_anime-delay);
  transition-delay: var(--_anime-delay);
}

.view03.view-on {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  -webkit-transition: all var(--_anime-speed) ease;
  transition: all var(--_anime-speed) ease;
  -webkit-transition-delay: var(--_anime-delay);
  transition-delay: var(--_anime-delay);
}

.view04 {
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
  position: relative;
  opacity: 0;
  -webkit-transition: all var(--_anime-speed) ease;
  transition: all var(--_anime-speed) ease;
  -webkit-transition-delay: var(--_anime-delay);
  transition-delay: var(--_anime-delay);
}

.view04.view-on {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition: all var(--_anime-speed) ease;
  transition: all var(--_anime-speed) ease;
  -webkit-transition-delay: var(--_anime-delay);
  transition-delay: var(--_anime-delay);
}

.view05 {
  position: relative;
  opacity: 0;
  -webkit-transition: all var(--_anime-speed) ease;
  transition: all var(--_anime-speed) ease;
  -webkit-transition-delay: var(--_anime-delay);
  transition-delay: var(--_anime-delay);
}

.view05.view-on {
  opacity: 1;
  -webkit-transition: all var(--_anime-speed) ease;
  transition: all var(--_anime-speed) ease;
  -webkit-transition-delay: var(--_anime-delay);
  transition-delay: var(--_anime-delay);
}

/*　スライドアニメーション
----------------------------------------------- */
.js-slide-h {
  display: grid;
  -webkit-transition: grid-template-rows 0.4s;
  transition: grid-template-rows 0.4s;
  transition:
    grid-template-rows 0.4s,
    -ms-grid-rows 0.4s;
  grid-template-rows: 0fr;
}

.js-slide-h > * {
  overflow: hidden;
}

.js-slide-h.js-active {
  grid-template-rows: 1fr;
}

/*　共通
----------------------------------------------- */
body {
  overflow: hidden;
}

body.js-on {
  overflow: hidden;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

.pc-inline {
  display: inline;
}

.sp-inline {
  display: none;
}

.inner {
  max-width: var(--_inner-width);
  margin-inline: auto;
  padding: var(--_inner-padding);
}

.delay02 {
  -webkit-transition-delay: 0.8s !important;
  transition-delay: 0.8s !important;
}

.delay03 {
  -webkit-transition-delay: 1s !important;
  transition-delay: 1s !important;
}

.delay04 {
  -webkit-transition-delay: 1.2s !important;
  transition-delay: 1.2s !important;
}

.page-ttl {
  text-align: center;
}

.blue-bg {
  background: #0198da;
}

.common-btn {
  margin-top: 32px;
  text-align: center;
}

.fv-cv-btn .common-btn a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .common-btn a:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.common-btn--pb {
  padding-bottom: 40px;
}

.common-btn--pb64 {
  padding-bottom: 64px;
}

@media screen and (max-width: 520px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

  .sp-inline {
    display: inline;
  }

  .pc-inline {
    display: none;
  }

  .inner {
    margin: 0;
  }
}

/* Scss Document */
.chart {
  position: relative;
  width: 300px;
  height: 300px;
}

.pieTip {
  position: absolute;
  float: left;
  min-width: 30px;
  max-width: 300px;
  padding: 5px 18px 6px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.97);
  color: #444;
  font-size: 19px;
  text-shadow: 0 1px 0 #fff;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.06em;
  -webkit-box-shadow:
    0 0 3px rgba(0, 0, 0, 0.2),
    0 1px 2px rgba(0, 0, 0, 0.5);
  box-shadow:
    0 0 3px rgba(0, 0, 0, 0.2),
    0 1px 2px rgba(0, 0, 0, 0.5);
  -webkit-transform: all 0.3s;
  transform: all 0.3s;
  pointer-events: none;
}

.pieTip:after {
  position: absolute;
  left: 50%;
  bottom: -6px;
  content: "";
  height: 0;
  margin: 0 0 0 -6px;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 6px solid rgba(255, 255, 255, 0.95);
  line-height: 0;
}

.chart path {
  cursor: pointer;
}

#top,
#container,
.pc-inner {
  height: 100vh;
}

#container {
  background: #e5ecf8;
  position: relative;
}

.pc-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.pc-inner {
  max-width: 1320px;
  margin-inline: auto;
  padding: 56px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 0 9.38%;
  position: relative;
  z-index: 1;
}

.pc-inner__l {
  min-width: 360px;
  width: 28.13%;
  padding-bottom: 45px;
}

.logo {
  text-align: center;
}

.copy {
  margin-top: 20px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  color: #050a30;
}

.qr {
  margin-top: 197px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 36px 24px 20px;
  gap: 32px;
  -webkit-filter: drop-shadow(0px 4px 16px rgba(5, 10, 48, 0.5));
  filter: drop-shadow(0px 4px 16px rgba(5, 10, 48, 0.5));
  background: #ffef64;
  border: 2px solid #080530;
  border-radius: 8px;
  position: relative;
}

.qr__ttl {
  width: 233px;
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.qr__box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  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;
}

.qr__text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.qr__text span {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-shadow:
    1px 1px 0 #000,
    -1px 1px 0 #000,
    1px -1px 0 #000,
    -1px -1px 0 #000;
  display: inline-block;
}

.pc-inner__r {
  min-width: 375px;
  width: 29.3%;
  height: 100%;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #050a30;
  border-radius: 16px;
  background: #fff;
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
}

/*スクロールバー非表示（Chrome・Safari）*/
.pc-inner__r::-webkit-scrollbar {
  display: none;
}

.fv__img {
  text-align: center;
}

.fv__img img {
  width: 100%;
}

.fv__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.fv__flex img {
  width: 48.41%;
  display: block;
  -webkit-box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.16);
  border-radius: 8px;
}

.fv__features {
  margin-top: 15px;
  -webkit-filter: drop-shadow(3px 3px 0px rgba(0, 0, 0, 0.16));
  filter: drop-shadow(3px 3px 0px rgba(0, 0, 0, 0.16));
  border-radius: 8px;
}

.fv__features img {
  width: 100%;
}

.fv__features-note {
  margin-top: 8px;
}

.fv__features-note p {
  padding-left: 21px;
  font-size: 10px;
  line-height: 1.4;
  color: #ffffff;
  position: relative;
}

.fv__features-note p span {
  font-size: 10px;
  line-height: 1.4;
  color: #ffffff;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.wave {
  width: 100%;
  height: 24px;
  position: absolute;
  top: -23px;
  left: 0;
}

.wave svg {
  width: 100%;
  height: auto;
}

.no-smoking {
  padding: 40px 0 64px;
  position: relative;
  z-index: 1;
}

.no-smoking-list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.no-smoking-item {
  padding: 16px 0;
  background: #ebf7fc;
  border: 2px solid #050a30;
  border-radius: 8px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  text-align: center;
}

.no-smoking-item__txt {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  color: #050a30;
  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;
}

.no-smoking-item__img {
  margin-top: 8px;
}

.treatment {
  padding: 32px 0 40px;
  background: #ebf7fc;
}

.treatment-ttl {
  text-align: center;
}

.treatment-img {
  width: 320px;
  margin: 32px auto 0;
  padding: 0 11px;
  text-align: center;
  position: relative;
}

.treatment-img.view-on .treatment-img__bar01 {
  height: 20px;
}

.treatment-img.view-on .treatment-img__bar02 {
  height: 130px;
}

.treatment-img__bar01 {
  width: 80px;
  height: 0;
  background: #d9d9d9;
  border-top: 2px solid #050a30;
  border-right: 2px solid #050a30;
  border-left: 2px solid #050a30;
  position: absolute;
  bottom: 43px;
  left: 73px;
  z-index: 1;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.treatment-img__bar02 {
  width: 80px;
  height: 0;
  background: #ffe500;
  border-top: 2px solid #050a30;
  border-right: 2px solid #050a30;
  border-left: 2px solid #050a30;
  position: absolute;
  bottom: 43px;
  right: 73px;
  z-index: 1;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

.treatment-link {
  margin-top: 24px;
  padding: 0 11px;
}

.treatment-link a {
  font-size: 10px;
  line-height: 1.4;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .treatment-link a:hover {
    color: #4975cc;
  }
}

.treatment-bold {
  margin-top: 24px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  color: #050a30;
  display: block;
}

.treatment-bold span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #ffe500));
  background: linear-gradient(transparent 70%, #ffe500 0%);
}

.treatment-effect {
  margin-top: 32px;
  border: 2px solid #050a30;
  border-radius: 8px;
  overflow: hidden;
}

.treatment-effect-ttl {
  padding: 16px 0;
  text-align: center;
  background: #ffe500;
  border-bottom: 2px dashed #050a30;
}

.treatment-effect-item {
  padding: 8px 16px;
  background: #ffffff;
  border-bottom: 2px dashed #050a30;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 16px;
}

.treatment-effect-item:last-child {
  border-bottom: none;
}

.treatment-effect-item__time {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #4975cc;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  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;
}

.treatment-effect-item__time span {
  display: block;
}

.treatment-effect-item__time span span {
  display: inline;
  font-size: 28px;
}

.treatment-effect-item__txt {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
}

.medicine {
  padding: 40px 0 0;
}

.medicine img {
  width: 100%;
}

.tab-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0 4px;
}

.tab {
  width: 102px;
  background-color: #f0f0f0;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 9px 0 5px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  display: block;
  border-top: 2px solid #050a30;
  border-left: 2px solid #050a30;
  border-right: 2px solid #050a30;
  border-bottom: 2px solid #050a30;
  border-radius: 12px 12px 0 0;
}

.tab.active {
  background: #fff;
  border-bottom: 2px solid #fff;
}

.tab-content-wrap {
  margin-top: -2px;
  padding: 32px 16px 16px;
  background: #ffffff;
  border: 2px solid #050a30;
  border-radius: 8px;
}

.tab-content {
  display: none;
}

.show {
  display: block;
}

.medicine-img {
  margin-top: 32px;
}

.medicine-text {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.4;
  color: #050a30;
}

.medicine-note {
  margin-top: 16px;
  padding-left: 14px;
  font-size: 10px;
  line-height: 1.4;
  color: #050a30;
  position: relative;
}

.medicine-note::before {
  content: "※";
  font-size: 10px;
  line-height: 1.4;
  position: absolute;
  top: 0;
  left: 0;
}

.medicine-note--bd-top {
  padding-top: 8px;
  border-top: 1px dashed #050a30;
}

.medicine-note--bd-top::before {
  top: 8px;
}

.medicine-sttl {
  margin-top: 32px;
  text-align: center;
}

.medicine-sttl__inner {
  padding: 0 43px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  position: relative;
}

.medicine-sttl__inner .icon-l {
  width: 34px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.medicine-sttl__inner .icon-r {
  width: 34px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.medicine-full-img {
  margin-top: 16px;
}

.medicine-box {
  margin-top: 16px;
}

.medicine-box__ttl {
  padding: 10px 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  border-bottom: 1px solid #050a30;
  position: relative;
}

.medicine-box__ttl::after {
  content: "";
  width: 13px;
  height: 13px;
  display: block;
  background: #fff;
  border-bottom: 1px solid #050a30;
  border-right: 1px solid #050a30;
  position: absolute;
  bottom: -7px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  z-index: 1;
}

.medicine-box__ttl span {
  color: #e13009;
}

.medicine-box__flex {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.medicine-box__flex-l {
  width: 50.79%;
}

.medicine-box__flex-r {
  width: 46.03%;
  font-size: 10px;
  line-height: 1.4;
}

.medicine-box__text {
  margin-top: 16px;
  font-size: 14px;
  line-height: 140%;
}

.medicine-table {
  width: 100%;
  margin-top: 16px;
  border: 1px solid #cccccc;
}

.medicine-table__th {
  padding: 8px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #cccccc;
}

.medicine-table__td {
  padding: 8px;
  border: 1px solid #cccccc;
}

.medicine-table__sub {
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  color: #707070;
}

.medicine-table__bold {
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  text-align: center;
  color: #333333;
}

.medicine-table__bold span {
  font-size: 20px;
}

.medicine-table__bold--pink {
  color: #e13009;
}

.medicine-table__small {
  margin-top: 8px;
  font-size: 10px;
  line-height: 1;
  text-align: center;
  color: #333333;
}

.medicine-table__small span {
  font-size: 12px;
}

.medicine-table__sbox {
  width: 125px;
  margin: 8px auto 0;
  padding: 8px 0;
  text-align: center;
  background: #f0f0f0;
  border: 1px solid #cccccc;
}

.medicine-table__sbox-ttl {
  font-size: 10px;
  line-height: 1;
  color: #333333;
}

.medicine-table__sbox-text {
  margin-top: 4px;
  font-size: 10px;
  line-height: 1;
  color: #333333;
}

.medicine-table__sbox-text span {
  font-size: 12px;
}

.reason {
  padding: 40px 0 64px;
}

.reason-list {
  margin-top: 32px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px 0;
}

.reason-item {
  padding: 16px;
  background: #ffffff;
  border: 2px solid #050a30;
  border-radius: 8px;
}

.reason-item__ttl {
  padding: 0 43px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  color: #050a30;
  display: inline-block;
  position: relative;
}

.reason-item__ttl .icon-l {
  width: 34px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.reason-item__ttl .icon-r {
  width: 34px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.reason-item__img {
  margin-top: 24px;
}

.reason-item__text {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  color: #000000;
}

.damage {
  padding: 40px 0 0;
  background: #68697c;
  position: relative;
}

.damage-ttl {
  width: 83.97%;
  margin: 0 auto;
}

.damage01 {
  margin-top: 72px;
  position: relative;
}

.damage01__box {
  padding: 48px 0 16px;
  background: #fff;
  border: 2px solid #050a30;
  border-radius: 8px;
  position: relative;
}

.damage01__text {
  width: 78.72%;
  padding: 8px 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  color: #ffffff;
  background: #e13009;
  border: 2px solid #050a30;
  border-radius: 8px;
  position: absolute;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}

.damage01__text sup {
  font-size: 8px;
  vertical-align: super;
}

.damage01__flex {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 8px;
}

.damage01__sbox {
  padding: 16px 0 20px;
  background: #fff;
  border: 2px solid #050a30;
  border-radius: 8px;
  text-align: center;
}

.damage01__text-wrap {
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.damage01__text02 {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
}

.damage01__text02 span {
  color: #e13009;
}

.damage01__stext {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.4;
}

.damage01__text03 {
  line-height: 1;
  color: #e13009;
}

.damage01__text03-01 {
  font-size: 20px;
  font-weight: 700;
}

.damage01__text03-01 sup {
  font-size: 12px;
  vertical-align: super;
}

.damage01__text03-02 {
  font-size: 40px;
  font-weight: 700;
}

.damage02 {
  margin-top: 32px;
}

.damage02__ttl {
  width: 91.3%;
  margin: 0 auto;
  text-align: center;
}

.damage02__list {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px 0;
}

.damage02__item {
  padding: 16px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  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;
  background: #fff;
  border: 2px solid #050a30;
  border-radius: 8px;
}

.damage02__item-text {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
}

.damage02__item-text span {
  color: #e13009;
}

.damage02__item-years {
  font-size: 20px;
  font-weight: 700;
  color: #e13009;
}

.damage02__item-years span {
  font-size: 40px;
  font-weight: 700;
}

.damage03 {
  margin-top: 32px;
  padding-bottom: 40px;
}

.damage03__ttl {
  width: 24.35%;
  margin: 0 auto;
  text-align: center;
}

.damage03__box {
  margin-top: 32px;
  padding: 16px;
  background: #fff;
  border: 2px solid #050a30;
  border-radius: 8px;
}

.damage03__text {
  font-size: 14px;
  line-height: 1.4;
}

.damage03__text-bold {
  font-weight: 700;
}

.damage03__img {
  margin-top: 10px;
}

.damage03__bold {
  margin-top: 10px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
}

.pink {
  color: #e13009;
}

.damage03__bold-big {
  margin-top: 10px;
  font-size: 28px;
  line-height: 1;
  text-align: right;
  color: #e13009;
  display: block;
}

.damage03__bold-big span {
  font-size: 48px;
}

.damage03__bold-big sup {
  font-size: 14px;
  vertical-align: super;
}

.damage03__note {
  margin-top: 32px;
}

.damage03__note-text {
  padding-left: 21px;
  font-size: 10px;
  line-height: 1.4;
  color: #ffffff;
  position: relative;
}

.damage03__note-text span {
  font-size: 10px;
  line-height: 1.4;
  color: #ffffff;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.damage03__note-text a {
  font-size: 10px;
  line-height: 1.4;
  color: #ffffff;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .damage03__note-text a:hover {
    color: #ffe500;
  }
}

.damage04 {
  padding: 50px 0 40px;
  background: #fff;
  position: relative;
}

.damage04::before {
  content: "";
  width: 100%;
  height: 40px;
  background: #68697c;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.damage04 .inner {
  position: relative;
}

.damage04__ttl {
  position: relative;
  z-index: 1;
}

.damage04__ttl-bd {
  border-bottom: 1px dotted #050a30;
}

.damage04__ttl-yellow {
  color: #fdf7bf;
}

.damage04__circle {
  width: 144px;
  height: 144px;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  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;
  background: #ffe500;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 16px;
}

.damage04__img {
  margin-top: 4px;
}

.damage04__img img {
  width: 100%;
}

.satisfaction {
  padding: 40px 0;
  text-align: center;
  background: #ebf7fc;
}

.satisfaction .inner {
  padding: 0 27px;
}

.satisfaction-ttl {
  height: 40px;
  padding-top: 4px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.satisfaction-ttl sup {
  font-size: 12px;
  vertical-align: top;
}

.satisfaction-ttl__img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: -1;
  width: 100%;
}

.satisfaction-img {
  width: 240px;
  margin: 32px auto 0;
  position: relative;
}

.satisfaction-img canvas {
  width: 240px !important;
  height: 240px !important;
  position: relative;
  z-index: 2;
}

.satisfaction-img__text {
  width: 105px;
  position: absolute;
  bottom: 45px;
  left: 53%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
}

.satisfaction-img__bg {
  width: 240px;
  position: absolute;
  bottom: -16px;
  right: -16px;
  z-index: 1;
}

.satisfaction-bold {
  margin-top: 32px;
}

.satisfaction-text {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  color: #050a30;
}

.satisfaction-note {
  margin-top: 32px;
  padding-left: 13px;
  font-size: 12px;
  line-height: 1.4;
  text-align: left;
  color: #050a30;
  position: relative;
}

.satisfaction-note::before {
  content: "※";
  font-size: 12px;
  line-height: 1.4;
  position: absolute;
  top: 0;
  left: 0;
}

.merit {
  padding: 40px 0;
}

.merit-inner {
  text-align: center;
}

.merit-ttl {
  width: 225px;
  margin: 0 auto;
}

.merit-scroll {
  margin-top: 32px;
  padding: 0 0 0 16px;
  overflow: scroll;
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
}

/*スクロールバー非表示（Chrome・Safari）*/
.merit-scroll::-webkit-scrollbar {
  display: none;
}

.merit-scroll__list {
  width: 1346px;
  padding-right: 2px;
  padding-bottom: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 16px;
}

.merit-scroll__item {
  width: 320px;
  padding: 16px 0;
  border: 2px solid #050a30;
  border-radius: 8px;
  background: #fff;
  -webkit-box-shadow: 2px 4px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 2px 4px 0px rgba(0, 0, 0, 0.16);
}

.merit-scroll__item-ttl .merit-scroll__item-ttl__inner {
  padding: 0 43px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  color: #050a30;
  display: inline-block;
  position: relative;
}

.merit-scroll__item-ttl .icon-l {
  width: 34px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.merit-scroll__item-ttl .icon-r {
  width: 34px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.merit-scroll__item-img {
  margin-top: 10px;
}

.merit-scroll__text {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  color: #000000;
}

.flow {
  padding: 40px 0 0;
}

.flow-list {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px 0;
}

.flow-item {
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  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;
  background: #fff;
  border: 2px solid #050a30;
  border-radius: 8px;
  position: relative;
}

.flow__arrow {
  display: block;
  position: absolute;
  bottom: -24px;
  left: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.flow-item__l {
  width: 35px;
}

.flow-item__c {
  width: calc(100% - 140px);
  padding-left: 16px;
  border-left: 1px dashed #000000;
}

.flow-item__c-ttl {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: #000000;
}

.flow-item__c-txt {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.4;
  color: hsl(0, 0%, 0%);
}

.flow-item__r {
  width: 80px;
}

.faq {
  padding-top: 40px;
}

.faq-list {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px 0;
}

.faq-item {
  background: #fff;
  border: 2px solid #050a30;
  border-radius: 8px;
}

.faq-item__btn {
  width: 100%;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 16px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.faq-item__btn::before,
.faq-item__btn::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: #050a30;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  right: 23px;
}

.faq-item__btn::after {
  rotate: 90deg;
}

.faq-item__btn.is-active::after {
  rotate: 0deg;
}

.faq-item__icon {
  width: 32px;
}

.faq-item__q {
  padding-right: 32px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: #000000;
}

.faq-item__a {
  padding: 0 16px 16px;
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
  display: none;
}

.faq-item__a p {
  padding-top: 16px;
  border-top: 2px dashed #000000;
}

.precautions {
  margin-top: 59px;
  padding-bottom: 40px;
}

.precautions__box {
  padding: 44px 15px 16px;
  background: #fff;
  border: 2px solid #050a30;
  border-radius: 8px;
  position: relative;
}

.precautions-ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  text-align: center;
  position: absolute;
  left: 50%;
  top: -27px;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background: #ffe500;
  border: 2px solid #050a30;
  border-radius: 8px;
}

.precautions-ttl.view-on {
  -webkit-transform: translate(-50%, 0) !important;
  transform: translate(-50%, 0) !important;
}

.precautions__orange {
  font-size: 14px;
  line-height: 1.4;
  color: #e13009;
}

.precautions-list {
  margin-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px 0;
}

.precautions-item__ttl {
  padding-left: 30px;
  padding-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 1px dashed #050a30;
  position: relative;
}

.precautions-item__ttl-icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.precautions-item__text {
  margin-top: 16px;
  font-size: 14px;
  line-height: 140%;
  color: #050a30;
}

.message {
  padding: 40px 0;
}

.message__text {
  margin-top: 32px;
  padding: 16px;
  font-size: 13px;
  line-height: 140%;
  color: #050a30;
  background: #fff;
  border: 2px solid #050a30;
  border-radius: 8px;
  position: relative;
}

.message__text-deco {
  position: absolute;
  bottom: -13px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 1;
}

.message__img {
  margin: 24px 0 0;
  text-align: center;
}

.fixed {
  width: 100%;
  padding: 0 27px;
  text-align: center;
  position: fixed;
  bottom: 10px;
  left: 0;
  z-index: 11;
  pointer-events: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  display: none;
}

.fixed.visible {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 840px) {
  .pc-inner {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0 0;
  }
}

@media (max-width: 780px) {
  .pc-inner {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .pc-inner__l {
    display: none;
  }
}

@media screen and (max-width: 520px) {
  img {
    text-align: center;
  }

  body {
    overflow: visible;
  }

  #top,
  #container,
  .pc-inner {
    height: auto;
  }

  .pc-bg {
    display: none;
  }

  #container {
    padding-bottom: 80px;
    background: #fff;
  }

  .pc-inner {
    padding: 0;
  }

  .pc-inner__r {
    width: 100%;
    height: auto;
    border: none;
    border-radius: 0;
    overflow: visible;
  }

  .fixed {
    display: block;
  }
}

/* s1 */
@media screen and (max-width: 520px) {
  .main {
    margin: -64px 0 0 0;
  }
}

.fv__text {
  position: absolute;
  left: 5%;
  top: 5%;
  width: 29%;
  animation: fadeInUp 1s ease 1.5s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.fv__copy {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0;
  width: 88%;
  margin: 0 auto;
}

.fv__cv {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 5%;
  width: 95%;
  margin: 0 auto;
  animation: scaleup 2s infinite;
}

.reflection {
  overflow: hidden;
}

.reflection::after {
  content: "";
  display: block;
  width: 20px;
  height: 100%;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #fff;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflect 3s ease-in-out infinite 0s normal;
  z-index: 1;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleup {
  0%,
  40%,
  60%,
  80% {
    transform: translate(-50%, 0) scale(1);
  }

  50%,
  70% {
    transform: translate(-50%, 0) scale(1.1);
  }
}

@keyframes reflect {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }

  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.3;
  }

  81% {
    transform: scale(4) rotate(45deg);
    opacity: 0.8;
  }

  100% {
    transform: scale(60) rotate(45deg);
    opacity: 0;
  }
}

/* s2 */
.medicine-box__recommend {
  color: #e13009;
  border: 1px solid #e13009;
  background-color: #e130091a;
  margin: 7px auto;
  padding: 3px 7px;
  width: fit-content;
  border-radius: 50px;
  font-size: 10px;
}

.medicine-box__campaign {
  width: 95%;
  margin: 5% auto 0 auto;
}

.medicine-box__comment {
  width: 125px;
  margin: 7px auto;
}

.medicine-table__strong {
  scale: 1.35;
}

.medicine-table__sbox--pink {
  border: 1px solid #facdb280;
  background-color: #facdb24d;
}

.cv-btn__back {
  width: 100%;
  padding: 0 0 60px 0;
}

.cv-btn__front {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translate(-50%, 0) scale(1);
  width: 90%;
  margin: 0 auto;
  padding: 0;
  animation: scaleup 2s infinite;
}
