/* =========================================================
reset
========================================================= */
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,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

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;
}

a {
  -webkit-text-decoration: normal;
  text-decoration: normal;
  cursor: pointer;
}

blockquote,
q {
  quotes: none;
}

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

input,
select {
  vertical-align: middle;
}

/* =========================================================
base
========================================================= */
figure {
  line-height: 0;
}

a {
  transition: 0.2s;
}

a:hover {
  opacity: 0.6;
  transition: opacity 0.2s ease-in-out;
}
@media screen and (max-width: 768px) {
  a:hover {
    opacity: 1;
  }
}

/* =========================================================
layout
========================================================= */
/* scroll animation */
.upIn {
  opacity: 0;
}
.upIn.onAnim {
  -webkit-animation: upin 0.6s 1 cubic-bezier(0.17, 0.67, 0.59, 1) forwards;
          animation: upin 0.6s 1 cubic-bezier(0.17, 0.67, 0.59, 1) forwards;
}

.dwnIn {
  opacity: 0;
}
.dwnIn.onAnim {
  -webkit-animation: dwnin 0.6s 1 cubic-bezier(0.17, 0.67, 0.59, 1) forwards;
          animation: dwnin 0.6s 1 cubic-bezier(0.17, 0.67, 0.59, 1) forwards;
}

.rhIn {
  opacity: 0;
}
.rhIn.onAnim {
  -webkit-animation: rhin 0.6s 1 cubic-bezier(0.17, 0.67, 0.59, 1) forwards;
          animation: rhin 0.6s 1 cubic-bezier(0.17, 0.67, 0.59, 1) forwards;
}

.lhIn {
  opacity: 0;
}
.lhIn.onAnim {
  -webkit-animation: lhin 0.6s 1 cubic-bezier(0.17, 0.67, 0.59, 1) forwards;
          animation: lhin 0.6s 1 cubic-bezier(0.17, 0.67, 0.59, 1) forwards;
}

.smallIn {
  opacity: 0;
  transform: scale(1.1);
  transform-origin: top center;
}
.smallIn.onAnim {
  -webkit-animation: smallin 0.6s 1 cubic-bezier(0.17, 0.67, 0.59, 1) forwards;
          animation: smallin 0.6s 1 cubic-bezier(0.17, 0.67, 0.59, 1) forwards;
}

.popIn {
  transform: scale(0.9);
  transform-origin: center center;
  opacity: 0;
}
.popIn.onAnim {
  -webkit-animation: popin 0.4s 1 cubic-bezier(0.15, 0.75, 0.22, 1.39) both;
          animation: popin 0.4s 1 cubic-bezier(0.15, 0.75, 0.22, 1.39) both;
}

@-webkit-keyframes upin {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100%, to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes upin {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100%, to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes dwnin {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100%, to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes dwnin {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100%, to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes rhin {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100%, to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rhin {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100%, to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes lhin {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100%, to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes lhin {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100%, to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes smallin {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100%, to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes smallin {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100%, to {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes popin {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100%, to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes popin {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100%, to {
    opacity: 1;
    transform: scale(1);
  }
}
.D01 {
  -webkit-animation-delay: 0.1s !important;
          animation-delay: 0.1s !important;
  transition-delay: 0.1s !important;
}

.D02 {
  -webkit-animation-delay: 0.2s !important;
          animation-delay: 0.2s !important;
  transition-delay: 0.2s !important;
}

.D03 {
  -webkit-animation-delay: 0.3s !important;
          animation-delay: 0.3s !important;
  transition-delay: 0.3s !important;
}

.D04 {
  -webkit-animation-delay: 0.4s !important;
          animation-delay: 0.4s !important;
  transition-delay: 0.4s !important;
}

.D05 {
  -webkit-animation-delay: 0.5s !important;
          animation-delay: 0.5s !important;
  transition-delay: 0.5s !important;
}

.D06 {
  -webkit-animation-delay: 0.6s !important;
          animation-delay: 0.6s !important;
  transition-delay: 0.6s !important;
}

.D07 {
  -webkit-animation-delay: 0.7s !important;
          animation-delay: 0.7s !important;
  transition-delay: 0.7s !important;
}

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

.D09 {
  -webkit-animation-delay: 0.9s !important;
          animation-delay: 0.9s !important;
  transition-delay: 0.9s !important;
}

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

.D11 {
  -webkit-animation-delay: 1.1s !important;
          animation-delay: 1.1s !important;
  transition-delay: 1.1s !important;
}

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

.D13 {
  -webkit-animation-delay: 1.3s !important;
          animation-delay: 1.3s !important;
  transition-delay: 1.3s !important;
}

.D14 {
  -webkit-animation-delay: 1.4s !important;
          animation-delay: 1.4s !important;
  transition-delay: 1.4s !important;
}

.D15 {
  -webkit-animation-delay: 1.5s !important;
          animation-delay: 1.5s !important;
  transition-delay: 1.5s !important;
}

.D16 {
  -webkit-animation-delay: 1.6s !important;
          animation-delay: 1.6s !important;
  transition-delay: 1.6s !important;
}

.D17 {
  -webkit-animation-delay: 1.7s !important;
          animation-delay: 1.7s !important;
  transition-delay: 1.7s !important;
}

.D18 {
  -webkit-animation-delay: 1.8s !important;
          animation-delay: 1.8s !important;
  transition-delay: 1.8s !important;
}

.D19 {
  -webkit-animation-delay: 1.9s !important;
          animation-delay: 1.9s !important;
  transition-delay: 1.9s !important;
}

.D20 {
  -webkit-animation-delay: 2s !important;
          animation-delay: 2s !important;
  transition-delay: 2s !important;
}

.D21 {
  -webkit-animation-delay: 2.1s !important;
          animation-delay: 2.1s !important;
  transition-delay: 2.1s !important;
}

.D22 {
  -webkit-animation-delay: 2.2s !important;
          animation-delay: 2.2s !important;
  transition-delay: 2.2s !important;
}

.D23 {
  -webkit-animation-delay: 2.3s !important;
          animation-delay: 2.3s !important;
  transition-delay: 2.3s !important;
}

.D24 {
  -webkit-animation-delay: 2.4s !important;
          animation-delay: 2.4s !important;
  transition-delay: 2.4s !important;
}

.D25 {
  -webkit-animation-delay: 2.5s !important;
          animation-delay: 2.5s !important;
  transition-delay: 2.5s !important;
}

.D26 {
  -webkit-animation-delay: 2.6s !important;
          animation-delay: 2.6s !important;
  transition-delay: 2.6s !important;
}

.D27 {
  -webkit-animation-delay: 2.7s !important;
          animation-delay: 2.7s !important;
  transition-delay: 2.7s !important;
}

.D28 {
  -webkit-animation-delay: 2.8s !important;
          animation-delay: 2.8s !important;
  transition-delay: 2.8s !important;
}

.D29 {
  -webkit-animation-delay: 2.9s !important;
          animation-delay: 2.9s !important;
  transition-delay: 2.9s !important;
}

.D30 {
  -webkit-animation-delay: 3s !important;
          animation-delay: 3s !important;
  transition-delay: 3s !important;
}

#main {
  position: relative;
  background: #fafdfd;
}

#sunscreenContents {
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 400;
  font-style: normal;
  box-shadow: 4px 6px 20px 0 rgba(0, 0, 0, 0.15);
  width: 750px;
  margin: 0 auto;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #sunscreenContents {
    width: 100%;
    box-shadow: none;
    overflow: hidden;
  }
}
#sunscreenContents h2 img, #sunscreenContents h3 img {
  line-height: 0;
  display: block;
}
#sunscreenContents section#kvSec {
  height: 1455px;
  padding-bottom: 25px;
  overflow: hidden;
  line-height: 1;
  background: #fef4ce url(../img/kv_bg.png) 0 0 no-repeat;
  background-size: auto 1427px;
  position: relative;
}
#sunscreenContents section#kvSec div {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
#sunscreenContents section#kvSec .notice {
  font-size: 18px;
  transform: rotate(0.05deg);
  position: absolute;
  bottom: 0;
  right: 58px;
}
#sunscreenContents section#kvSec + section.cartBox {
  padding-top: 55px;
}
@media screen and (max-width: 768px) {
  #sunscreenContents section#kvSec {
    height: 191vw;
    padding-bottom: 3.333vw;
    background-size: auto 187.767vw;
  }
  #sunscreenContents section#kvSec .notice {
    font-size: 2.4vw;
    right: 7.733vw;
  }
  #sunscreenContents section#kvSec + section.cartBox {
    padding-top: 7.333vw;
  }
}
#sunscreenContents .pr {
  position: relative;
}
#sunscreenContents .pa {
  position: absolute;
}
#sunscreenContents section.cartBox {
  background: #fef4ce;
  padding: 80px 0;
}
#sunscreenContents section.cartBox img{
  display: block;
}
#sunscreenContents section.cartBox .cv_btn{
  bottom: 70.3%;
  left: 50%;
  transform: translateX(-50%);
  width: 86%;
}

/* #sunscreenContents section.cartBox > div {
  background: #fff;
  border: 3px solid #22b9e7;
  border-radius: 30px;
  padding: 53px 25px 30px;
} */
#sunscreenContents section.cartBox div.figWrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
#sunscreenContents section.cartBox div.figWrap figure {
  width: 192px;
}
#sunscreenContents section.cartBox div.figWrap > div {
  width: 383px;
}
#sunscreenContents section.cartBox div.figWrap h2 {
  font-size: 34px;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  letter-spacing: -0.14em;
}
#sunscreenContents section.cartBox div.figWrap h2 em {
  font-size: 48px;
  color: #22b9e7;
  font-style: normal;
}
#sunscreenContents section.cartBox div.figWrap h2 + p {
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 32px;
  font-feature-settings: "palt";
  line-height: 1;
  margin-top: 15px;
}
#sunscreenContents section.cartBox div.figWrap h2 + p span {
  letter-spacing: -0.08em;
}
#sunscreenContents section.cartBox div.figWrap ul {
  display: flex;
  justify-content: space-around;
  width: 100%;
  transform: rotate(0.05deg);
  margin-top: 15px;
}
#sunscreenContents section.cartBox div.figWrap ul li {
  display: flex;
  align-items: center;
  line-height: 1;
  height: 36px;
  font-size: 22px;
  font-weight: 500;
  padding: 0 0.3em;
  border: 1px solid #000;
  border-radius: 10px;
}
#sunscreenContents section.cartBox div.figWrap dl {
  display: flex;
  font-size: 20px;
  line-height: 1;
  transform: rotate(0.05deg);
  margin-top: 20px;
}
#sunscreenContents section.cartBox div.figWrap dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  width: 106px;
  border: 1px solid #000;
  border-radius: 16px 0 0 16px;
}
#sunscreenContents section.cartBox div.figWrap dl dd {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  color: #fff;
  height: 32px;
  width: 116px;
  border-radius: 0 16px 16px 0;
}
#sunscreenContents section.cartBox div.figWrap div.priceBox {
  margin-top: 23px;
}
#sunscreenContents section.cartBox div.figWrap div.priceBox .reguler {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1;
}
#sunscreenContents section.cartBox div.figWrap div.priceBox .reguler .price {
  font-weight: 800;
  padding: 0 0 0 0.5em;
}
#sunscreenContents section.cartBox div.figWrap div.priceBox .reguler .tax {
  font-size: 20px;
}
#sunscreenContents section.cartBox div.figWrap div.priceBox .reguler .tax strong {
  font-weight: 800;
}
#sunscreenContents section.cartBox div.figWrap div.priceBox .sel {
  font-size: 58px;
  line-height: 1;
  letter-spacing: -0.2em;
  color: #d70000;
  margin-left: -0.1em;
}
#sunscreenContents section.cartBox div.figWrap div.priceBox .sel .priceWrap {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
}
#sunscreenContents section.cartBox div.figWrap div.priceBox .sel .price {
  font-size: 96px;
  letter-spacing: -0.04em;
  font-weight: 500;
}
#sunscreenContents section.cartBox div.figWrap div.priceBox .sel .tax {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0;
}
#sunscreenContents section.cartBox div.figWrap div.priceBox .sel .tax strong {
  font-weight: 800;
}
#sunscreenContents section.cartBox ul.linkWrap {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
#sunscreenContents section.cartBox ul.linkWrap li.btnDetail a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 130px;
  background: #d3f1fa;
  border: 1px solid #22b9e7;
  border-radius: 10px;
  font-size: 26px;
  font-weight: 500;
  text-align: center;
  color: #000;
  text-decoration: none;
  line-height: 1.3;
}
#sunscreenContents section.cartBox ul.linkWrap li.btnCart a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 420px;
  height: 130px;
  background: linear-gradient(to bottom, #90dcf3 0%, #22b9e7 100%);
  border-radius: 10px;
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.15);
  filter: drop-shadow(6px 6px 5px rgba(0, 0, 0, 0.15));
}
#sunscreenContents section.cartBox ul.linkWrap li.btnCart a::after {
  content: "";
  width: 50px;
  height: 41px;
  background: url(../img/cart.png) 0 0 no-repeat;
  background-size: contain;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.15));
}
@media screen and (max-width: 768px) {
  #sunscreenContents section.cartBox {
    padding: 10.667vw 7.733vw;
  }
  #sunscreenContents section.cartBox:first-of-type {
    padding-top: 7.333vw;
  }
  /* #sunscreenContents section.cartBox > div {
    border: 0.4vw solid #22b9e7;
    border-radius: 4vw;
    padding: 7.067vw 3.333vw 4vw;
  } */
  #sunscreenContents section.cartBox div.figWrap figure {
    width: 25.6vw;
  }
  #sunscreenContents section.cartBox div.figWrap > div {
    width: 51.067vw;
  }
  #sunscreenContents section.cartBox div.figWrap h2 {
    font-size: 4.533vw;
  }
  #sunscreenContents section.cartBox div.figWrap h2 em {
    font-size: 6.4vw;
  }
  #sunscreenContents section.cartBox div.figWrap h2 + p {
    font-size: 4.267vw;
    margin-top: 2vw;
  }
  #sunscreenContents section.cartBox div.figWrap ul {
    margin-top: 2vw;
  }
  #sunscreenContents section.cartBox div.figWrap ul li {
    height: 4.8vw;
    font-size: 2.933vw;
    border-radius: 1.333vw;
  }
  #sunscreenContents section.cartBox div.figWrap dl {
    font-size: 2.667vw;
    margin-top: 2.667vw;
  }
  #sunscreenContents section.cartBox div.figWrap dl dt {
    height: 4.267vw;
    width: 14.133vw;
    border-radius: 2.133vw 0 0 2.133vw;
  }
  #sunscreenContents section.cartBox div.figWrap dl dd {
    height: 4.267vw;
    width: 15.467vw;
    border-radius: 0 2.133vw 2.133vw 0;
  }
  #sunscreenContents section.cartBox div.figWrap div.priceBox {
    margin-top: 3.067vw;
  }
  #sunscreenContents section.cartBox div.figWrap div.priceBox .reguler {
    font-size: 3.733vw;
  }
  #sunscreenContents section.cartBox div.figWrap div.priceBox .reguler .tax {
    font-size: 2.667vw;
  }
  #sunscreenContents section.cartBox div.figWrap div.priceBox .sel {
    font-size: 7.733vw;
  }
  #sunscreenContents section.cartBox div.figWrap div.priceBox .sel .price {
    font-size: 12.8vw;
  }
  #sunscreenContents section.cartBox div.figWrap div.priceBox .sel .tax {
    font-size: 3.2vw;
  }
  #sunscreenContents section.cartBox ul.linkWrap {
    margin-top: 2.667vw;
  }
  #sunscreenContents section.cartBox ul.linkWrap li.btnDetail a {
    width: 17.333vw;
    height: 17.333vw;
    border-radius: 1.333vw;
    font-size: 3.467vw;
  }
  #sunscreenContents section.cartBox ul.linkWrap li.btnCart a {
    gap: 2vw;
    width: 56vw;
    height: 17.333vw;
    border-radius: 1.333vw;
    font-size: 4vw;
    text-shadow: 0.4vw 0.4vw 0.4vw rgba(0, 0, 0, 0.15);
    filter: drop-shadow(0.8vw 0.8vw 0.667vw rgba(0, 0, 0, 0.15));
  }
  #sunscreenContents section.cartBox ul.linkWrap li.btnCart a::after {
    width: 6.667vw;
    height: 5.467vw;
    filter: drop-shadow(0.4vw 0.4vw 0.4vw rgba(0, 0, 0, 0.15));
  }
}
#sunscreenContents section#point4Sec {
  background: url(../img/point_bg.jpg) center 0 no-repeat;
  background-size: cover;
  padding: 0 58px 60px;
}
#sunscreenContents section#point4Sec section.pointSec {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  position: relative;
  padding: 0 37px;
}
#sunscreenContents section#point4Sec section.pointSec ~ section.pointSec {
  margin-top: 135px;
}
#sunscreenContents section#point4Sec section.pointSec .label {
  position: absolute;
  width: 108px;
  height: 108px;
  top: -54px;
  left: 263px;
  z-index: 10;
}
#sunscreenContents section#point4Sec section.pointSec h3 {
  line-height: 0;
  border-bottom: 2px solid #22b9e7;
}
#sunscreenContents section#point4Sec section.pointSec div.p1Box {
  padding-bottom: 40px;
}
#sunscreenContents section#point4Sec section.pointSec div.p1Box figure.cutImg {
  border-bottom: 2px dashed #22b9e7;
}
#sunscreenContents section#point4Sec section.pointSec div.p1Box figure.typeList {
  width: 750px;
  margin: 0 -95px;
}
#sunscreenContents section#point4Sec section.pointSec div.p1Box p {
  font-size: 18px;
  text-align: right;
  transform: rotate(0.05deg);
  margin-right: 30px;
}
#sunscreenContents section#point4Sec section.pointSec div.p2Box {
  padding-bottom: 70px;
}
#sunscreenContents section#point4Sec section.pointSec div.p2Box ul {
  display: flex;
  justify-content: space-between;
  margin: 60px auto 15px;
  background: url(../img/p2_arr.svg) 50% 60px no-repeat;
  background-size: 20px auto;
  text-align: justify;
}
#sunscreenContents section#point4Sec section.pointSec div.p2Box li {
  width: 260px;
}
#sunscreenContents section#point4Sec section.pointSec div.p2Box li figure {
  width: 198px;
  margin: 0 auto 15px;
}
#sunscreenContents section#point4Sec section.pointSec div.p2Box li p {
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.05em;
}
#sunscreenContents section#point4Sec section.pointSec div.p2Box > p {
  font-size: 18px;
  transform: rotate(0.05deg);
  letter-spacing: -0.1em;
}
#sunscreenContents section#point4Sec section.pointSec div.p3Box:first-of-type {
  margin-top: 65px;
}
#sunscreenContents section#point4Sec section.pointSec div.p3Box h4 {
  font-size: 32px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  background: #fff;
  height: 66px;
  border-radius: 33px;
  color: #ff8800;
}
#sunscreenContents section#point4Sec section.pointSec div.p3Box .fig1 {
  width: 634px;
  margin: 0 -37px;
}
#sunscreenContents section#point4Sec section.pointSec div.p4Box {
  padding-bottom: 60px;
}
#sunscreenContents section#point4Sec section.pointSec div.p4Box div.listBox {
  width: 508px;
  border: 2px solid #22b9e7;
  border-radius: 30px;
  background: #fff;
  overflow: hidden;
  margin: 10px auto 0;
}
#sunscreenContents section#point4Sec section.pointSec div.p4Box div.listBox h4 {
  background: #22b9e7;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#sunscreenContents section#point4Sec section.pointSec div.p4Box div.listBox ul {
  padding: 20px 0 15px 20px;
  letter-spacing: -0.05em;
  font-size: 26px;
}
#sunscreenContents section#point4Sec section.pointSec div.p4Box div.listBox ul li {
  display: flex;
  align-items: center;
  line-height: 1.38;
  font-weight: 500;
}
#sunscreenContents section#point4Sec section.pointSec div.p4Box div.listBox ul li::before {
  content: "";
  width: 28px;
  height: 28px;
  background: url(../img/p4_check.png) 0 0 no-repeat;
  background-size: contain;
  margin-right: 8px;
}
#sunscreenContents section#point4Sec section.pointSec div.p4Box div.listBox ul li ~ li {
  margin-top: 13px;
}
#sunscreenContents section#point4Sec section.pointSec div.p4Box .notice {
  margin-top: 20px;
  padding: 0 24px;
  transform: rotate(0.05deg);
  font-size: 17px;
  letter-spacing: -0.08em;
  line-height: 1.65;
}
@media screen and (max-width: 768px) {
  #sunscreenContents section#point4Sec {
    padding: 0 7.733vw 8vw;
  }
  #sunscreenContents section#point4Sec section.pointSec {
    border-radius: 6.667vw;
    padding: 0 4.933vw;
  }
  #sunscreenContents section#point4Sec section.pointSec ~ section.pointSec {
    margin-top: 18vw;
  }
  #sunscreenContents section#point4Sec section.pointSec .label {
    width: 14.4vw;
    height: 14.4vw;
    top: -7.2vw;
    left: 35.067vw;
  }
  #sunscreenContents section#point4Sec section.pointSec h3 {
    border-bottom: 0.267vw solid #22b9e7;
  }
  #sunscreenContents section#point4Sec section.pointSec div.p1Box {
    padding-bottom: 5.333vw;
  }
  #sunscreenContents section#point4Sec section.pointSec div.p1Box figure.cutImg {
    border-bottom: 0.267vw dashed #22b9e7;
  }
  #sunscreenContents section#point4Sec section.pointSec div.p1Box figure.typeList {
    width: 100vw;
    margin: 0 -12.667vw;
  }
  #sunscreenContents section#point4Sec section.pointSec div.p1Box p {
    font-size: 2.4vw;
    margin-right: 4vw;
  }
  #sunscreenContents section#point4Sec section.pointSec div.p2Box {
    padding-bottom: 9.333vw;
  }
  #sunscreenContents section#point4Sec section.pointSec div.p2Box ul {
    margin: 8vw auto 2vw;
    background: url(../img/p2_arr.svg) 50% 8vw no-repeat;
    background-size: 2.667vw auto;
  }
  #sunscreenContents section#point4Sec section.pointSec div.p2Box li {
    width: 34.667vw;
  }
  #sunscreenContents section#point4Sec section.pointSec div.p2Box li figure {
    width: 26.4vw;
    margin: 0 auto 2vw;
  }
  #sunscreenContents section#point4Sec section.pointSec div.p2Box li p {
    font-size: 2.933vw;
  }
  #sunscreenContents section#point4Sec section.pointSec div.p2Box > p {
    font-size: 2.4vw;
  }
  #sunscreenContents section#point4Sec section.pointSec div.p3Box:first-of-type {
    margin-top: 8.667vw;
  }
  #sunscreenContents section#point4Sec section.pointSec div.p3Box h4 {
    font-size: 4.267vw;
    height: 8.8vw;
    border-radius: 4.4vw;
  }
  #sunscreenContents section#point4Sec section.pointSec div.p3Box .fig1 {
    width: 84.533vw;
    margin: 0 -4.933vw;
  }
  #sunscreenContents section#point4Sec section.pointSec div.p4Box {
    padding-bottom: 8vw;
  }
  #sunscreenContents section#point4Sec section.pointSec div.p4Box div.listBox {
    width: 67.733vw;
    border: 0.267vw solid #22b9e7;
    border-radius: 4vw;
  }
  #sunscreenContents section#point4Sec section.pointSec div.p4Box div.listBox h4 {
    height: 9.067vw;
  }
  #sunscreenContents section#point4Sec section.pointSec div.p4Box div.listBox ul {
    padding: 2.667vw 0 2vw 2.667vw;
    font-size: 3.467vw;
  }
  #sunscreenContents section#point4Sec section.pointSec div.p4Box div.listBox ul li::before {
    width: 3.733vw;
    height: 3.733vw;
    margin-right: 1.067vw;
  }
  #sunscreenContents section#point4Sec section.pointSec div.p4Box div.listBox ul li ~ li {
    margin-top: 1.733vw;
  }
  #sunscreenContents section#point4Sec section.pointSec div.p4Box .notice {
    margin-top: 2.667vw;
    padding: 0 3.2vw;
    font-size: 2.267vw;
  }
}
#sunscreenContents section#voiceSec {
  padding: 80px 58px;
}
#sunscreenContents section#voiceSec > div {
  background-image: url(../img/bracket1.png), url(../img/bracket2.png);
  background-position: left top, right bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: 60px 62px, 54px 54px;
  padding: 35px 24px 24px 35px;
}
#sunscreenContents section#voiceSec h2 {
  border-bottom: 2px solid #22b9e7;
  line-height: 0;
}
#sunscreenContents section#voiceSec div.figBox {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
#sunscreenContents section#voiceSec div.figBox p {
  width: 340px;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: -0.1em;
  text-align: justify;
}
#sunscreenContents section#voiceSec div.figBox p span {
  font-weight: 500;
}
#sunscreenContents section#voiceSec div.figBox figure {
  width: 212px;
  height: 212px;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  #sunscreenContents section#voiceSec {
    padding: 10.667vw 7.733vw;
  }
  #sunscreenContents section#voiceSec > div {
    background-size: 8vw 8.267vw, 7.2vw 7.2vw;
    padding: 4.667vw 3.2vw 3.2vw 4.667vw;
  }
  #sunscreenContents section#voiceSec h2 {
    border-bottom: 0.267vw solid #22b9e7;
  }
  #sunscreenContents section#voiceSec div.figBox {
    margin-top: 2.667vw;
  }
  #sunscreenContents section#voiceSec div.figBox p {
    width: 45.333vw;
    font-size: 3.733vw;
  }
  #sunscreenContents section#voiceSec div.figBox figure {
    width: 28.267vw;
    height: 28.267vw;
    margin-top: 0.667vw;
  }
}
#sunscreenContents section#answerSec {
  background: #e8f7f9;
}
#sunscreenContents section#answerSec div.noteBox {
  width: 590px;
  margin: 0 auto;
  font-size: 28px;
  line-height: 1.4;
  text-align: justify;
  letter-spacing: -0.03em;
}
#sunscreenContents section#answerSec div.noteBox blockquote {
  font-size: 18px;
  transform: rotate(0.05deg);
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #sunscreenContents section#answerSec div.noteBox {
    width: 78.667vw;
    font-size: 3.733vw;
  }
  #sunscreenContents section#answerSec div.noteBox blockquote {
    font-size: 2.4vw;
    margin-bottom: 1.333vw;
  }
}
#sunscreenContents section#tableSec {
  padding-bottom: 80px;
}
#sunscreenContents section#tableSec h2 + p {
  text-align: center;
  font-size: 30px;
  line-height: 1.3;
}
#sunscreenContents section#tableSec div.tableWrap {
  overflow: auto;
  width: 634px;
  margin: 30px auto 10px;
}
#sunscreenContents section#tableSec div.tableWrap + p {
  font-size: 20px;
  padding-left: 58px;
  transform: rotate(0.05deg);
}
#sunscreenContents section#tableSec table {
  width: 1280px;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}
#sunscreenContents section#tableSec table th, #sunscreenContents section#tableSec table td {
  font-size: 20px;
  font-weight: 500;
  vertical-align: middle;
  text-align: center;
  line-height: 1.4;
  letter-spacing: -0.05em;
  border-right: 1px solid #fff;
}
#sunscreenContents section#tableSec table th p, #sunscreenContents section#tableSec table td p {
  transform: rotate(0.05deg);
  padding: 12px 0;
}
#sunscreenContents section#tableSec table th sup, #sunscreenContents section#tableSec table td sup {
  display: inline-block;
  font-size: 70%;
  vertical-align: super;
  transform: translateY(0.3em);
}
#sunscreenContents section#tableSec table th:last-of-type, #sunscreenContents section#tableSec table td:last-of-type {
  border: none;
}
#sunscreenContents section#tableSec table th {
  background: #22b9e7;
  color: #fff;
}
#sunscreenContents section#tableSec table td {
  background: #d3f1fa;
}
#sunscreenContents section#tableSec table td:nth-child(2n) {
  background: #e9f8fd;
}
#sunscreenContents section#tableSec table tr:nth-child(2n) td {
  background: #f4fbfe;
}
#sunscreenContents section#tableSec table tr:nth-child(2n) td:nth-child(2n) {
  background: #fff;
}
#sunscreenContents section#tableSec table tr:last-child td {
  background: #fff;
  padding-bottom: 25px;
}
#sunscreenContents section#tableSec table a {
  font-size: 20px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 46px;
  background: linear-gradient(to bottom, #90dcf3 0%, #22b9e7 100%);
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #sunscreenContents section#tableSec {
    padding-bottom: 10.667vw;
  }
  #sunscreenContents section#tableSec h2 + p {
    font-size: 4vw;
  }
  #sunscreenContents section#tableSec div.tableWrap {
    width: 84.533vw;
    margin: 4vw auto 1.333vw;
  }
  #sunscreenContents section#tableSec div.tableWrap + p {
    font-size: 2.667vw;
    padding-left: 7.733vw;
  }
  #sunscreenContents section#tableSec table {
    width: 170.667vw;
    border-radius: 4vw 4vw 0 0;
  }
  #sunscreenContents section#tableSec table th, #sunscreenContents section#tableSec table td {
    font-size: 2.667vw;
  }
  #sunscreenContents section#tableSec table th p, #sunscreenContents section#tableSec table td p {
    padding: 1.6vw 0;
  }
  #sunscreenContents section#tableSec table tr:last-child td {
    padding-bottom: 3.333vw;
  }
  #sunscreenContents section#tableSec table a {
    font-size: 2.667vw;
    width: 26.667vw;
    height: 6.133vw;
    border-radius: 1.333vw;
  }
}
#sunscreenContents section#htuSec {
  background: #fffbeb;
  padding-bottom: 90px;
}
#sunscreenContents section#htuSec div.figBox {
  width: 580px;
  margin: 0 auto;
  font-size: 28px;
  line-height: 1.4;
  text-align: justify;
  letter-spacing: -0.08em;
  position: relative;
}
#sunscreenContents section#htuSec div.figBox > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
#sunscreenContents section#htuSec div.figBox:first-of-type > div h3 {
  margin-right: -20px;
}
#sunscreenContents section#htuSec div.figBox:nth-of-type(2n) > div {
  flex-direction: row-reverse;
}
#sunscreenContents section#htuSec div.figBox ~ div.figBox {
  margin-top: 60px;
}
#sunscreenContents section#htuSec div.figBox .bln {
  width: 180px;
  height: 180px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #333;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 22px;
  position: absolute;
  top: -55px;
  right: -55px;
  z-index: 10;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #sunscreenContents section#htuSec {
    padding-bottom: 12vw;
  }
  #sunscreenContents section#htuSec div.figBox {
    width: 77.333vw;
    font-size: 3.733vw;
  }
  #sunscreenContents section#htuSec div.figBox > div {
    margin-bottom: 2.667vw;
  }
  #sunscreenContents section#htuSec div.figBox:first-of-type > div h3 {
    margin-right: -2.667vw;
  }
  #sunscreenContents section#htuSec div.figBox ~ div.figBox {
    margin-top: 8vw;
  }
  #sunscreenContents section#htuSec div.figBox .bln {
    width: 24vw;
    height: 24vw;
    font-size: 2.933vw;
    top: -7.333vw;
    right: -7.333vw;
  }
}
#sunscreenContents section#mamakidsSec {
  position: relative;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
}
#sunscreenContents section#mamakidsSec::before {
  content: "";
  width: 100%;
  height: 20px;
  background: url(../img/mk_top.png) center top no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  #sunscreenContents section#mamakidsSec {
    font-size: 4vw;
  }
  #sunscreenContents section#mamakidsSec::before {
    height: 2.667vw;
  }
}
/*# sourceMappingURL=sunscreen.css.map */