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

reset style

=================================================================== */
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;
  padding: 0;
  border: 0;
  letter-spacing: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

body {
  line-height: 1;
}

ol {
  margin-left: 3.0rem;
}
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;
}


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

init style

=================================================================== */
html{
  overflow-y: scroll;
    font-size: 10px;
}
@media only screen and (max-width: 749px) {
  html {
    font-size: calc(100vw * 5 / 375);
  }
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 3.0rem;
  line-height: 1.5;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.8px;
  background: #fff;
  color: #333;
}

:root {
  --main-color: #8cc63f;
  --submain-color: #00331f;
  --accent-color: #f0be46;
  --subaccent-color: #b4820a;
  --belt-main-color: #005050;
  --belt-submain-color: #002323;
  --mini-main-color: #029292;
  --mini-submain-color: #20c4c4;
  --red-color: #c1272d;

  --rgb-main-color: 140 198 63;
  --rgb-submain-color: 0 51 31;
  --rgb-accent-color: 240 190 70;
  --rgb-belt-main-color: 0 80 80;
  --rgb-belt-submain-color: 0 35 35;
  --rgb-mini-main-color: 2 146 146;
  --rgb-red-color: 193 39 45;
}

::-moz-selection {
  background: rgba(20, 0, 0, 0.6);
  color: #fff;
}
::selection {
  background: rgba(20, 0, 0, 0.6);
  color: #fff;
}

_:lang(x)::-ms-backdrop,
.selector {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

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

a:hover {
  text-decoration: none;
  color: var(--red-color);
  opacity: 0.8;
  transition: all 0.5s;
}

strong {
  font-weight: 900;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  width: 100%;
  height: auto;
}

select,
input,
textarea,
button {
  vertical-align: middle;
}

#wrap {
  overflow-x: hidden;
  width: 100%;
  margin: 0 auto;
}

@media only screen and (min-width: 750px) {
  #wrap {
    max-width: 750px;
    box-shadow: 0 0 2.0rem rgba(0, 0, 0, 0.1);
  }
  #wrap img {
    max-width: none;
  }
}

main,
header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  overflow-x: hidden;
}

video {
  width: 100%;
}


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

utility style

=================================================================== */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
.flex.eq {
  justify-content: space-between;
  flex-wrap: wrap;
}

/* .sp_only {
  display: none;
}
.pc_only {
  display: block;
}
@media (max-width: 749px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
} */

.mincho {
  font-family: "Noto Serif JP",'游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}

.yt_box {
  position: relative;
  padding-bottom: 56.5%;
  height: 0;
  overflow: hidden; 
}

.youtube_mv {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* テーブル */
table.table_base {
  width: 100%;
  border-top: 2px solid var(--main-color);
  margin-bottom: 5%;
}
table.table_base th,
table.table_base td {
  padding: 2%;
  vertical-align: middle;
  background: rgb(255 255 255 / 0.8);
}
table.table_base th {
  color: #fff;
  background: rgb(var(--rgb-submain-color) / 0.9);
}
table.table_base tr {
  border-bottom: 2px solid var(--main-color);
}
table.table_base tr th:first-child,
table.table_base tr td:first-child {
  border-right: 2px solid var(--main-color);
  width: 30%;
}
table.table_base tr>td:first-of-type {
  background: rgb(var(--rgb-main-color) / 0.3);
}
table.table_base tr>td:not(:first-of-type) {
  text-align: left;
}
table.table_base span {
  color: var(--main-color);
}

/* セクション区切り */
.triangle {
  position: relative;
}
.triangle::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: "";
  width: 100%;
  height: 50px;
  background: url(../images/bg3.png);
  background-size: 100%;
  clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 0%, 50% 98%);
}

/* リボンボックス */
.ribbon {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  color: #fff;
}
.ribbon h4 {/*真ん中*/
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0 20px;
  background: linear-gradient(70deg,var(--accent-color),var(--subaccent-color),var(--accent-color));
  z-index: 3;
}
.ribbon:after {/*右のリボン*/
  content: '';
  position: absolute;
  bottom: -1.0rem;
  right: -2.0rem;
  z-index: 2;
  border-width: 2.3rem 1.0rem 2.3rem 2.0rem;
  border-color: var(--subaccent-color) transparent var(--subaccent-color) var(--subaccent-color);
  border-style: solid;
}
.ribbon h4:after {/*右の折り返し*/
  position: absolute;
  content: '';
  top: 100%;
  right: 0;
  border: none;
  border-bottom: solid 1.0rem transparent;
  border-left: solid 1.0rem #806239;
}
.ribbon:before {/*左のリボン*/
  content: '';
  position: absolute;
  bottom: -1.0rem;
  left: -2.0rem;
  z-index: 2;
  border-width: 2.3rem 2.0rem 2.3rem 1.0rem;
  border-color: var(--subaccent-color) var(--subaccent-color) var(--subaccent-color) transparent;
  border-style: solid;
}
.ribbon h4:before {/*左の折り返し*/
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 1.0rem transparent;
  border-right: solid 1.0rem #806239;
}
.ribbonbox {
  position: relative;
  background: linear-gradient(-45deg,var(--main-color),var(--submain-color),var(--main-color));;
  border: 2px solid var(--accent-color);
  color: #fff;
  padding: 10% 5% 5%;
  margin: -3% 5% 0;
  z-index: 1;
  text-align: left;
  width: 90%;
}
.ribbonbox:after {
  position: absolute;
  content: '';
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  top: -4px;
  left: -4px;
  margin: auto auto;
  --x-gradient: linear-gradient(90deg, var(--accent-color) 0 20px, transparent 0 calc(100% - 20px), var(--accent-color) calc(100% - 20px));
  --y-gradient: linear-gradient(var(--accent-color) 0 20px, transparent 0 calc(100% - 20px), var(--accent-color) calc(100% - 20px));
  background-image: var(--x-gradient),var(--y-gradient),var(--x-gradient),var(--y-gradient);
  background-repeat: no-repeat;
  background-size: 100% 6px, 6px 100%, 100% 6px, 6px 100%;
  background-position: top, right, bottom, left;
}
.ribbonbox li {
  position: relative;
  padding-left: 2.5rem;
}
.ribbonbox li::before {
  content: '';
  display: block;
  position: absolute;
  top: 1.2rem;
  left: 0;
  width: 1.5rem;
  height: 1.0rem;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
}


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

section style

=================================================================== */
/********************/
/* top */
#top {
  position: relative;
}

#top .copy {
  position: absolute;
  width: 60%;
  top: 0;
  left: 4%;
  color: #fff;
  font-size: 2.0rem;
  text-shadow: 0 0 5px rgb(0 0 0 / 0.3);
  transform: rotate(-5deg);
}
#top .copy>div {
  display: flex;
  align-items: flex-end;
}
#top .copy>div img {
  width: 45%;
  margin-right: -2%;
}
#top .copy>div p {
  font-size: 4.0rem;
  margin-bottom: 5%;
}
#top .copy>p {
  font-size: 3.5rem;
  line-height: 1.0;
}
#top .copy>p strong {
  font-size: 5.0rem;
}

#top .title {
  position: absolute;
  width: 92%;
  top: 25%;
  left: 4%;
  transform: rotate(-5deg);
  font-size: 7.0rem;
  text-shadow: 3px 3px 0 #fff, 7px 7px 0 rgb(0 0 0 / 0.3);
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
}
#top .title strong {
  background: linear-gradient(to right, var(--subaccent-color),var(--accent-color),var(--subaccent-color));
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 50%;
}

#top .badge {
  position: absolute;
  width: 30%;
  bottom: 20%;
  right: 4%;
}
#top .circle_width {
  border-radius: 50%;
  background: linear-gradient(45deg, var(--accent-color), var(--subaccent-color), var(--accent-color), var(--subaccent-color));
  outline: 2px solid #fff;
  outline-offset: -5px;
}
#top .circle_height {
  position: relative;
  padding-top: 100%;
  height: 0;
}
#top .circle_height p {
  position: absolute;
  top: calc((100% - 8.0rem)/2);
  left: 0;
  right: 0;
  margin: 0;
  text-align: center;
  color: #fff;
  transform: rotate(-5deg);
}
#top .circle_height p strong {
  font-size: 4.5rem;
  font-weight: 700;
}

#top .logo {
  position: absolute;
  width: 80%;
  bottom: 3%;
  left: 10%;
  text-align: center;
}


/********************/
/* intro */
#intro {
  text-align: center;
  font-size: 4.0rem;
}

#intro .text span {
  font-size: 6.0rem;
  color: var(--main-color);
  margin-top: 10%;
}

#intro .intro_video {
  position: relative;
  margin-top: 15%;
}
#intro .intro_video h2 {
  position: absolute;
  top: -10%;
  left: 4%;
  width: 92%;
  font-size: 6.0rem;
  color: #fff;
  padding: 3% 0;
  line-height: 1.2;
  background: linear-gradient(to right, var(--submain-color), var(--main-color));
}
#intro .intro_video img {
  position: absolute;
  top: 7%;
  right: 0;
  width: 100%;
}

#intro .box {
  padding: 10% 4% 0;
}

#intro .copy {
  transform: rotate(-5deg);
  font-size: 6.0rem;
}
#intro .copy p {
  font-size: 7.5rem;
  color: #fff;
  background: linear-gradient(70deg, var(--submain-color), var(--main-color));
  padding: 0.5rem 0;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
}

#intro .logo {
  padding: 5% 10% 10%;
}


/********************/
/* diffusion */
#diffusion {
  width: 100%;
  padding: 4% 4% 15%;
  text-align: center;
  background: url(../images/shine.png), linear-gradient(150deg, var(--subaccent-color), var(--accent-color) 20%, #fff, var(--accent-color));
  background-size: 100%;
  line-height: 1.1;
}

#diffusion .title1 {
  font-size: 7.0rem;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
#diffusion .title1 .koshi {
  position: relative;
  font-size: 15.0rem;
  display: inline-block;
  transform: rotate(-5deg);
}
#diffusion .title1 .koshi::after{
	position: absolute;
	/* top: 0; */
	left: 0;
	content: "100";
	background: linear-gradient(to bottom, #fff 30%, var(--main-color), var(--submain-color));
  background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: none;
}

#diffusion .title2 {
  font-size: 12.0rem;
  color: #fff;
  letter-spacing: 0.5rem;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  margin-bottom: 5%;
}

#diffusion .notes {
  font-size: 1.5rem;
  text-align: right;
}


/********************/
/* answer */
#answer {
  width: 100%;
  padding: 10% 0;
  text-align: center;
  background: url(../images/bg3.png);
  background-size: 100%;
}

#answer.triangle::after {
  background: #fff;
}

#answer h2 {
  font-size: 5.0rem;
  margin-bottom: 10%;
}
#answer h2 span {
  font-size: 12.0rem;
  line-height: 1.1;
  color: var(--main-color);
}

#answer .product {
  position: relative;
  margin: 5% 0 10%;
}
#answer .product p {
  position: absolute;
  background: rgb(255 255 255 / 0.8);
  border: 2px solid var(--main-color);
  border-radius: 10px;
  padding: 1% 2%;
  box-shadow: 0 0 10px #fff;
  color: var(--submain-color);
  font-size: 2.5rem;
}
#answer .product p strong {
  font-size: 4.5rem;
  color: var(--main-color);
}
#answer .product p.point1 {
  top: 0;
  right: 4%;
}
#answer .product p.point2 {
  top: 6%;
  left: 4%;
}
#answer .product p.point3 {
  bottom: 6%;
  left: 4%;
}
#answer .product p.point4 {
  bottom: 15%;
  right: 4%;
}
#answer .product p::before {
  content: '';
  position: absolute;
  background: var(--main-color);
  width: 60%;
  height: 2px;
  transform-origin: 100% 50%;
  display: inline-block;
}
#answer .product p.point1::before {
  top: 100%;
  left: -5%;
  transform: rotate(-45deg);
}
#answer .product p.point2::before {
  width: 40%;
  top: 100%;
  left: -35%;
  transform: rotate(-110deg);
}
#answer .product p.point3::before {
  width: 25%;
  bottom: 100%;
  left: 50%;
  transform: rotate(90deg);
}
#answer .product p.point4::before {
  width: 55%;
  bottom: 100%;
  left: 10%;
  transform: rotate(90deg);
}

#answer h3 {
  color: #fff;
  font-size: 4.5rem;
  background: linear-gradient(to right, var(--submain-color), var(--main-color));
  padding: 2% 0;
  margin: 0 4% 2%;
}

#answer .answer_video {
  padding: 4%;
}


/********************/
/* after */
#after {
  background: url(../images/shine.png), linear-gradient(to bottom, #fff, var(--main-color));
  background-size: 100%;
  padding: 4%;
  text-align: center;
}

#after .text1 {
  font-size: 4.0rem;
}

#after h3 {
  font-size: 6.5rem;
  color: var(--submain-color);
  line-height: 1.3;
  text-shadow: 2px 2px 0 #fff,1px 1px 2px #fff;
}

#after .afterbox {
  display: flex;
  margin: 4% 0;
}
#after .afterbox>div {
  width: 50%;
}
#after .afterbox>div:first-of-type {
  background: var(--submain-color);
}
#after .afterbox>div:last-of-type {
  background: url(../images/shine.png), linear-gradient(to right,var(--subaccent-color),var(--accent-color));
  background-size: 100%;
}
#after .afterbox>div span {
  letter-spacing: 1.0rem;
  color: #fff;
}

#after .after_video {
  display: flex;
  padding: 0;
}


/********************/
/* point */
#point {
  text-shadow: 0 0 5px rgb(255 255 255 / 0.3);
}

#point .pointbox {
  position: relative;
}

#point .title_circle_width {
  position: absolute;
  width: 20%;
  top: 5%;
  left: 4%;
  border-radius: 50%;
  color: var(--main-color);
  border: 2px solid var(--main-color);
  text-align: center;
}
#point .title_circle_height {
  position: relative;
  padding-top: 100%;
  height: 0;
}
#point .title_circle_height p {
  font-size: 8.0rem;
  position: absolute;
  top: calc((100% - 10.0rem)/2);
  left: 0;
  right: 0;
  margin: 0;
}
#point .title_circle_height span {
  font-size: 2.0rem;
  position: absolute;
  top: calc((100% - 10.0rem)/2);
  left: 0;
  right: 0;
  margin: 0;
}
#point h2 {
  font-size: 4.5rem;
  color: var(--main-color);
  position: absolute;
  top: 10%;
  left: 27%;
}
#point .text {
  position: absolute;
  width: 92%;
  bottom: 4%;
  left: 4%;
  background: rgb(255 255 255 / 0.5);
  padding: 3%;
}

#point .point_video {
  display: flex;
}


/********************/
/* kiraku */
#kiraku {
  position: relative;
  text-align: center;
}

#kiraku p {
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #fff;
  font-size: 6.0rem;
  text-shadow: 0 0 5px rgb(0 0 0 / 0.3);
}


/********************/
/* scene */
#scene {
  text-align: center;
  margin-bottom: 10%;
}

#scene h2 {
  font-size: 5.0rem;
  color: #fff;
  background: url(../images/bg5.jpg) bottom;
  background-size: 100%;
  padding: 7% 0 9%;
}
#scene h2 strong {
  font-size: 6.0rem;
}
#scene h2 strong:last-of-type {
  font-size: 8.0rem;
  line-height: 1.0;
}

#scene .box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background: url(../images/bg4.jpg);
  background-size: 100%;
}
#scene .box img {
  width: 50%;
}
#scene .box p {
  width: 42%;
  color: #fff;
  background: var(--submain-color);
  margin: 0 4%;
}

#scene .copy {
  color: #fff;
  background: var(--main-color);
  position: relative;
  padding: 1% 5%;
  margin: 10% auto 2%;
  letter-spacing: 1.0rem;
  width: fit-content;
}
#scene .copy:after {
  position: absolute;
  bottom: -9px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  content: '';
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: var(--main-color) transparent transparent transparent;
}

#scene>img {
  padding: 0 15%;
}


/********************/
/* support */
#support {
  text-align: center;
  background: url(../images/bg3.png);
  background-size: 100%;
}

#support .title {
  display: flex;
  gap: 4%;
  flex-direction:column;
  justify-content: center;
  align-items: center;
  color: var(--main-color);
  font-size: 6.0rem;
  padding: 10% 0;
}
#support h2 {
  /* writing-mode: vertical-rl; */
  color: #fff;
  padding: 0 5%;
  background: linear-gradient(to top, var(--submain-color), var(--main-color));
}

#support .support_video {
  position: relative;
  margin-bottom: 4%;
}
#support .support_video p {
  position: absolute;
  top: 4%;
  left: 4%;
  color: #fff;
  background: var(--submain-color);
  padding: 0 5%;
}

#support h3 {
  font-size: 4.5rem;
  margin: 5% 0;
}
#support h3 strong {
  font-size: 5.5rem;
  color: var(--main-color);
}

#support .compare {
  display: flex;
  gap: 8%;
  padding: 2% 4%;
  color: #fff;
  background: linear-gradient(to right, var(--submain-color) 50%, var(--main-color) 50%);
}
#support .compare>div {
  width: 46%;
}

#support .text {
  text-align: left;
  margin: 4%;
  padding: 4%;
  border: 2px solid var(--main-color);
}

/********************/
/* meet */
.meet {
  position: relative;
}

.meet p {
  position: absolute;
  top: 12%;
  right: 4%;
  color: #fff;
  font-size: 6.0rem;
  font-weight: 700;
  text-align: right;
}


/********************/
/* solution */
#solution {
  color: #fff;
}

#solution .title {
  background: url(../images/shine.png), linear-gradient(to bottom, var(--main-color) 80%, rgb(var(--rgb-main-color) / 0) 99%);
  background-size: 100%;
  z-index: 100;
  padding: 10% 4% 15%;
  text-align: center;
}
#solution p {
  font-size: 4.0rem;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
#solution p strong {
  font-size: 6.0rem;
}
#solution p span {
  font-size: 10.0rem;
}

#solution .solution_video {
  position: relative;
  width: 100%;
  display: flex;
  z-index: -1;
  margin-top: -10%;
}

#solution .copy {
  background: url(../images/shine.png), linear-gradient(to top, var(--submain-color), var(--main-color) 80%, rgb(var(--rgb-main-color) / 0) 99%);;
  background-size: 100%;
  padding: 15% 5% 10%;
  margin-top: -12%;
  line-height: 1.2;
  position: relative;
}
#solution .copy .product {
  position: absolute;
  width: 50%;
  bottom: 10%;
  right: 0;
}


/********************/
/* ashikata */
#ashikata {
  text-align: center;
  background-blend-mode: multiply;
  background: url(../images/ashikata4.png) no-repeat, url(../images/bg3.png);
  background-size: 100%;
}

#ashikata .title {
  color: #fff;
  font-size: 4.5rem;
  font-style: italic;
  background: url(../images/shine.png) bottom no-repeat, linear-gradient(to bottom, var(--submain-color) 0%, var(--main-color) 100%);
  background-size: 100%;
  padding: 8% 0;
  position: relative;
}
#ashikata .title::before {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  content: "";
  width: 100%;
  height: 50px;
  background: var(--main-color);
  clip-path: polygon(0% 0%, 100% 0%, 100% 5px, 50% 100%, 0% 5px);
}
#ashikata .title strong {
  font-size: 7.0rem;
  border-bottom: 2px solid #fff;
}

#ashikata>div {
  padding: 50% 4% 4%;
}

#ashikata .morebox {
  display: flex;
  gap: 4%;
}
#ashikata .morebox>div {
  position: relative;
  width: 48%;
  border: 2px solid var(--main-color);
  color: var(--main-color);
}
#ashikata .morebox>div::after {
  position: absolute;
  content: '';
  background: var(--main-color);
  left: 47%;
  bottom: -8%;
  width: 2px;
  height: 15%;
  transform: rotate(30deg);
}
#ashikata .morebox>div p {
  margin: 5% 0;
}
#ashikata .morebox>div img {
  width: 60%;
}

#ashikata .copy {
  padding: 0 4%;
  position: relative;
  font-size: 4.0rem;
  transform: rotate(-5deg);
  margin: 5% 0 -2%;
  z-index: 1;
}
#ashikata .copy strong {
  font-size: 6.0rem;
}
#ashikata .copy p {
  font-size: 6.0rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(70deg,var(--submain-color),var(--main-color));
  padding: 0.5rem 1.0rem;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}
#ashikata .copy p strong {
  font-size: 8.0rem;
}

#ashikata .reasonbox {
  border: 2px solid var(--main-color);
  border-radius: 10px;
  margin: 5% 0;
  padding: 3%;
  text-align: left;
  font-size: 2.5rem;
}
#ashikata .reasonbox>div img {
  padding: 2% 20% 0;
}
#ashikata .reasonbox h3 {
  position: relative;
  font-size: 4.5rem;
  color: var(--main-color);
  border: 2px solid var(--main-color);
  border-radius: 5px;
  margin: 0 0 8% 10%;
  padding-top: 1%;
  line-height: 1.3;
  text-align: center;
}
#ashikata .reasonbox h3:before {
  position: absolute;
  content: "？";
  display: inline-block;
  padding: 2% 2.5% 1.5%;
  text-align: center;
  color: #fff;
  background: var(--main-color);
  font-weight: 900;
  width: 6.0rem;
  height: 100%;
  left: -10%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
}


/********************/
/* size */
#size {
  width: 100%;
  text-align: center;
  padding: 25% 4% 5%;
  background: url(../images/size1.png) no-repeat;
  background-size: 100%;
}

#size .copy {
  color: #fff;
  background: var(--red-color);
  position: relative;
  padding: 1% 5%;
  margin: 0 auto 2%;
  letter-spacing: 1.0rem;
  width: fit-content;
}
#size .copy:after {
  position: absolute;
  bottom: -9px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  content: '';
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: var(--red-color) transparent transparent transparent;
}

#size h2 {
  font-size: 7.0rem;
  font-weight: 700;
  position: relative;
  width: fit-content;
  padding: 1% 5%;
  margin: 0 auto;
  color: var(--main-color);
}

#size h2 small {
  font-size: 5.5rem;
}

#size h2:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: auto auto;
  --x-gradient: linear-gradient(90deg, var(--submain-color) 0 20px, transparent 0 calc(100% - 20px), var(--submain-color) calc(100% - 20px));
  --y-gradient: linear-gradient(var(--submain-color) 0 20px, transparent 0 calc(100% - 20px), var(--submain-color) calc(100% - 20px));
  background-image: var(--x-gradient),var(--y-gradient),var(--x-gradient),var(--y-gradient);
  background-repeat: no-repeat;
  background-size: 100% 6px, 6px 100%, 100% 6px, 6px 100%;
  background-position: top, right, bottom, left;
}

#size p {
  margin: 5% 0;
}

#size small {
  font-size: 2.0rem;
}

#size h3 {
  color: #fff;
  background: var(--submain-color);
  padding: 1% 2%;
}
#size h3 strong {
  font-size: 4.0rem;
}

#size .text {
  text-align: left;
}
#size .text strong {
  color: var(--main-color);
}


/********************/
/* exchange */
.exchange {
  background: linear-gradient(to bottom, #fff, #fafafa);
  position: relative;
  line-height: 1.2;
  text-align: center;
}

.exchange .text {
  position: relative;
  padding: 5% 2%;
  margin: 5% 4% 0;
  color: var(--main-color);
  font-size: 4.0rem;
  text-align: center;
  border: 2px solid var(--main-color);
}
.exchange .text::after {
  position: absolute;
  content: '';
  background: var(--main-color);
  left: 47%;
  bottom: -15%;
  width: 2px;
  height: 20%;
  transform: rotate(-30deg);
}

.exchange div {
  position: absolute;
  top: 25%;
  right: 0;
  left: 0;
  margin: 0 4%;
  transform: rotate(-5deg);
}
.exchange div span {
  font-size: 5.0rem;
  color: var(--red-color);
}
.exchange div p {
  font-size: 6.0rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(70deg,var(--submain-color),var(--main-color));
  padding-bottom: 1.0rem;
  margin-top: 2%;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.exchange div p strong {
  font-size: 9.0rem;
}


/********************/
/* expert */
#expert {
  width: 100%;
  padding: 4%;
  background: linear-gradient(45deg, var(--main-color) 0%, var(--submain-color) 25%, var(--main-color) 100%);
  font-size: 2.0rem;
  text-align: center;
}

#expert .box {
  padding: 5% 2%;
  background: #fff;
}
#expert .title {
  padding: 0 20% 5%;
}

#expert h2 {
  background: var(--submain-color);
  padding: 2%;
  transform: rotate(-3deg);
}
#expert h2 p {
  position: relative;
  font-size: 4.0rem;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  border-left: 2px solid var(--main-color);
  border-right: 2px solid var(--main-color);
  border-bottom: 2px solid var(--main-color);
}
#expert h2 p:before {
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  right: 0;
  width: 0;
  height: 0;
  content: '';
  margin: 0 auto;
  border-width: 1.5rem 1.0rem 0 1.0rem;
  border-style: solid;
  border-color: var(--main-color) transparent transparent transparent;
}

#expert .photo {
  position: relative;
  margin-top: 10%;
}
#expert .photo::after {
  content: '';
  position: absolute;
  transform: rotate(45deg);
  width: 15%;
  height: 7.5%;
  background-color: #fff;
  z-index: 1;
  top: -4%;
  right: -7.5%;
  border-bottom: 2px solid var(--accent-color);
}

#expert .clinic {
  color: #fff;
  background: var(--main-color);
}

#expert .name strong {
  font-size: 4.0rem;
}

#expert h3 {
  font-size: 3.0rem;
  color: var(--main-color);
}
#expert h3 strong {
  font-size: 4.5rem;
  color: var(--red-color);
}

#expert .text p {
  font-size: 2.5rem;
  margin-top: 1.0rem;
  text-align: left;
}
#expert .text p strong {
  background: rgb(var(--rgb-main-color) / 0.3);
}


/********************/
/* media */
#media {
  width: 100%;
  text-align: center;
  background: url(../images/bg3.png);
  background-size: 100%;
  padding: 10% 4% 0;
  font-size: 2.2rem;
}

#media h2 {
  font-size: 4.0rem;
  margin-bottom: 4.0rem;
  color: var(--main-color);
}

#media .text {
  text-align: left;
  margin-bottom: 10px;
}

#media h3 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--submain-color);
}

#media .yt_box {
  margin-bottom: 10%;
}

/********************/
/* select */
#select {
  width: 100%;
  text-align: center;
  background: url(../images/shine.png)no-repeat, linear-gradient(45deg, var(--main-color) 0%, var(--submain-color) 25%, var(--main-color) 100%);
  background-size: 100%;
  padding: 10% 4% 0;
  color: #fff;
}

#select .text {
  font-size: 4.0rem;
  color: var(--submain-color);
}

#select h2 {
  font-size: 6.0rem;
  font-weight: 700;
  margin: 2% 0 3%;
}
#select h2 .num {
  width: 25%;
}

#select h3 {
  font-size: 6.0rem;
  font-weight: 900;
  color: #fff;
  background: var(--red-color);
  padding: 0 3.0rem;
  transform: rotate(-5deg);
  width: fit-content;
  margin: 0 auto 7%;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

#select .reasonbox>div {
  background: var(--main-color);
  border: 2px solid #fff;
  margin-bottom: 5%;
}

#select .title {
  display: flex;
  gap: 5%;
  justify-content: center;
  align-items: center;
  padding: 2%;
}
#select .title p {
  font-size: 3rem;
}
#select .title p strong {
  font-size: 5.0rem;
  font-weight: 700;
  font-style: italic;
  line-height: 4.5rem;
}
#select h4 {
  color: #fff;
  font-size: 4.0rem;
}

#select .select_video {
  display: flex;
}


/********************/
/* original */
#original {
  width: 100%;
  padding: 5% 4% 0;
  background: url(../images/bg3.png);
  background-size: 100%;
}

#original .worry>div {
  position: relative;
  width: 100%;
  padding: 5% 3%;
  margin-bottom: 10%;
  color: var(--main-color);
  font-size: 4.0rem;
  text-align: center;
  border: 2px solid var(--main-color);
}
#original .worry>div::after {
  position: absolute;
  content: '';
  background: var(--main-color);
  left: 47%;
  bottom: -15%;
  width: 2px;
  height: 20%;
  transform: rotate(30deg);
}

#original h2 {
  text-align: center;
  font-size: 4.5rem;
  font-weight: 700;
  font-style: italic;
}
#original h2 strong {
  font-size: 6.0rem;
}

#original ol {
  margin-left: 0;
}

#original .title {
  position: relative;
  color: #fff;
  padding: 1% 5%;
  background: var(--main-color);
  width: fit-content;
  z-index: 1;
  margin: 5% auto -3%;
}
#original .title strong {
  font-size: 4.5rem;
}
#original .box {
  color: #fff;
  font-size: 3.5rem;
  background: var(--submain-color);
  border: 2px solid var(--main-color);
  padding: 5%;
}
#original .box strong {
  color: var(--accent-color);
  font-size: 5.5rem;
}
#original .box ol {
  counter-reset:number;
  list-style-type: none!important;
}
#original .box ol li {
  position: relative;
  padding: 1.5rem 1.0rem 1.5rem 8.0rem;
  border-bottom: 1px dashed rgba(255,255,255,0.3);
}
#original .box ol li:before{
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  background: var(--main-color);
  color: var(--submain-color);
  font-weight: 900;
  left: 0;
  width: 5.0rem;
  height: auto;
  text-align: center;
  top: 55%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
#original .customer {
  text-align: center;
}
#original .customer .tel {
  font-size: 8.0rem;
  font-weight: 900;
  line-height: 1.0;
}
#original .customer .time {
  color: #fff;
  background: var(--main-color);
  margin: 2% 0;
  font-size: 2.5rem;
}
#original .customer .customerbox .note1 {
  border: 1px solid #fff;
  padding: 2%;
  margin-bottom: 2%;
}
#original .customer .customerbox .note2 {
  color: var(--main-color);
  font-weight: 700;
}
#original .customer .supportbox img {
  padding: 0 20%;
}

#original .sarani {
  color: rgb(var(--rgb-main-color) / 0.5);
  font-size: 9.0rem;
  font-weight: 900;
  line-height: 1.0;
  text-align: center;
  margin-top: 4%;
}


/********************/
/* try */
#try {
  width: 100%;
  text-align: center;
}
#try .box {
  width: 100%;
  padding: 4%;
  background: rgb(var(--rgb-main-color) / 0.5);
}

#try h2 {
  color: #fff;
  font-size: 7.0rem;
  font-weight: 700;
  transform: rotate(-5deg);
  margin: 8% 0 5%;
  line-height: 1.1;
}
#try h2 strong {
  font-size: 10.0rem;
}

#try .text {
  text-align: left;
}

#try .inquiry {
  color: var(--submain-color);
  background: #fff;
  /* border: 2px solid var(--submain-color); */
  margin: 5% 0;
  padding: 2%;
  font-weight: 700;
}
#try .inquiry span {
  color:  #fff;
  background: var(--red-color);
  padding: 0 1%;
  margin-right: 0.5rem
}

#try h5 {
  margin: 10% 0;
  padding-top: 2%;
  border-top: 2px dashed var(--submain-color);
  font-weight: 700;
}

#try .trybox .event_copy {
  color: var(--main-color);
  font-size: 3.0rem;
  font-weight: 700;
  font-style: italic;
}

#try .trybox .event_photo {
  display: flex;
  gap: 2%;
}
#try .trybox .event_photo img {
  width: 32%;
}

#try .trybox {
  position: relative;
  border: 2px solid #fff;
  background: #fff;
  padding: 4% 4% 2%;
  margin-top: 15%;
  font-size: 2.2rem;
}
#try .trybox .area {
  position: absolute;
  width: calc(31% + 2px);
  height: 5.0rem;
  top: calc(-5.0rem + -2px);
  left: -2px;
  padding: 1% calc(2% - 0.5rem) 0 2%;
  color: #fff;
  border-radius: 10px 10px 0 0;
  background: var(--submain-color);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5rem;
}
#try .trybox .rc {
  position: absolute;
  width: 31%;
  height: 5.0rem;
  top: calc(-5.0rem + -2px);
  left: 33%;
  padding: 1% calc(2% - 0.5rem) 0 2%;
  color: #fff;
  border-radius: 10px 10px 0 0;
  background: var(--red-color);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5rem;
}
#try .trybox .rc.event {
  width: 50%;
}

#try .trybox>div div {
  margin-bottom: 2%;
}

#try .trybox .namebox {
  display: flex;
  gap: 2%;
  justify-content: center;
  align-items: center;
}
#try .trybox .photo {
  width: 30%;
  height: auto;
}
#try .trybox .name {
  width: 68%;
}
#try .trybox .name strong {
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 1.1;
}

#try .trybox .addressbox {
  display: flex;
  gap: 2%;
  justify-content: center;
  align-items: center;
  text-align: left;
}
#try .trybox .address {
  flex-grow: 1;
}
#try .trybox .navi {
  color: var(--main-color);
  font-weight: 700;
}
#try .trybox .badge {
  width: 15%;
  height: auto;
}

#try table .att {
  color: var(--main-color);
  font-weight: 700;
  line-height: 1.2;
  padding-left: 1em;
  text-indent: -1em;
}

#try small {
  font-size: 1.7rem;
}
#try .close {
  background: #ccc;
  text-align: center;
}

#try .iframe_wrap {
  height: 100%;
  position: relative;
  padding-top: 40%;
  overflow: hidden;
}
#try .iframe_wrap iframe {
  width: 100%; 
  height: calc(100% + 300px);
  position: absolute;
  top: 0;
  left: 0;
  margin-top: -160px;
}
#try .try_gmcafe .iframe_wrap iframe {
  height: calc(100% + 420px);
}

#try .attbox {
  background: var(--red-color);
  color: #fff;
  padding: 2%;
  text-align: left;
  font-size: 2.0rem;
}

#try .btnbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#try .btnbox a {
  display: block;
  background: var(--main-color);
  color: #fff;
  padding: 5%;
  border-radius: 50vh;
}


/********************/
/* howto */
#howto .copy {
  color: #fff;
  background: var(--red-color);
  position: relative;
  padding: 1% 5%;
  margin: 10% auto 2%;
  text-align: center;
  letter-spacing: 1.0rem;
  width: fit-content;
}
#howto .copy:after {
  position: absolute;
  bottom: -9px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  content: '';
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: var(--red-color) transparent transparent transparent;
}

#howto h2 {
  font-size: 7.0rem;
  font-weight: 700;
  position: relative;
  width: fit-content;
  padding: 1% 5%;
  margin: 0 auto;
  color: var(--main-color);
}

#howto h2:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: auto auto;
  --x-gradient: linear-gradient(90deg, var(--submain-color) 0 20px, transparent 0 calc(100% - 20px), var(--submain-color) calc(100% - 20px));
  --y-gradient: linear-gradient(var(--submain-color) 0 20px, transparent 0 calc(100% - 20px), var(--submain-color) calc(100% - 20px));
  background-image: var(--x-gradient),var(--y-gradient),var(--x-gradient),var(--y-gradient);
  background-repeat: no-repeat;
  background-size: 100% 6px, 6px 100%, 100% 6px, 6px 100%;
  background-position: top, right, bottom, left;
}

#howto p {
  margin: 5% 4%;
}

#howto .howto_video {
  width: 100%;
  display: flex;
}


/********************/
/* detail */
#detail {
  width: 100%;
  text-align: center;
  background: url(../images/bg3.png);
  background-size: 100%;
  padding: 4%;
}

#detail h2 {
  color: var(--main-color);
  font-size: 10.0rem;
  font-weight: 100;
}

#detail small {
    font-size: 2.0rem;
}

#detail li {
  position: relative;
  padding-left: 3.5rem;
  text-align: left;
}
#detail li::before {
  content: '※';
  position: absolute;
  top: 0;
  left: 0;
}


/********************/
/* faq */
#faq {
  width: 100%;
}

#faq .title {
  color: #fff;
  text-align: center;
  background: linear-gradient(to bottom,var(--submain-color),var(--main-color));
  padding: 4%;
}
#faq .title h3 {
  background: var(--red-color);
  width: fit-content;
  margin: 0 auto 1%;
  padding: 0 3% 0.5%;
  border-radius: 50vh;
}
#faq .title h2 {
  font-size: 5.0rem;
}

#faq #faq_list {
  font-size: 2.5rem;
  box-sizing: border-box;
}

#faq .toggle_btn {
  background: rgb(var(--rgb-main-color) / 0.2);
  padding: 3%;
  box-sizing: border-box;
  margin-bottom: 3px;
  cursor: pointer;
}

#faq .toggle_btn span:nth-of-type(2) {
  width: 83%;
}

#faq .icons_toggle,
#faq .icons_q,
#faq .icons_a {
  width: 2.5rem;
  color: var(--main-color);
  font-weight: 900;
}

#faq .toggle_area .icons_a {
  color: #c1272d;
}

#faq .toggle_btn .icons_toggle {
  margin-left: 0;
  transition: 0.3s ease all;
}

#faq #faq_list .toggle_btn.active {
  display: flex !important;
}

#faq .toggle_btn.active .icons_toggle {
  transform: rotate(45deg);
}

#faq .toggle_btn.active span[class^="icons_"] {
  order: 0;
}

#faq .toggle_btn.active .icons_toggle {
  order: 3;
}

#faq .toggle_area {
  display: none;
  padding: 3%;
  box-sizing: border-box;
}

#faq .toggle_area table {
  width: 100%;
  display: table;
  vertical-align: top;
}

#faq .toggle_area td {
  width: 90%;
}

#faq .toggle_area td p {
  margin-bottom: 20px;
}

#faq .toggle_area th {
  width: 6%;
}

#faq .table_faq th {
  width: 30%;
  padding: 5px;
  border: 2px solid #fafafa;
  background: #f0f0f0;
}
#faq .table_faq td {
  width: 70%;
  padding: 5px;
  border: 2px solid #fafafa;
}


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

cv style

=================================================================== */
.cv {
  padding: 4%;
  text-align: center;
  /* background: url(../images/bg5.jpg) bottom;
  background-size: 100%; */
}

.cv .benefit {
  position: relative;
  color: #fff;
  font-weight: 900;
  background: var(--submain-color);
  padding: 0 4% 2%;
  line-height: 1.1;
  z-index: 10;
  overflow: hidden;
  box-shadow: 0 0 1.0rem rgba(0, 0, 0, 0.2);
}
.cv .benefit::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 30px;
  top: -180px;
  left: 0;
  background: #fff;
  opacity: 0;
  animation: shine 3s ease-in-out infinite;
  display: inline-block;
}

.cv .benefit .title {
  display: flex;
  gap: 3%;
  justify-content: center;
  border-bottom: 1px solid #fff;
  margin-bottom: 1%;
}

.cv .benefit .copy {
  background: #fff;
  color: var(--main-color);
  border-radius: 50vh;
  font-size: 1.5rem;
  margin-top: 4%;
  letter-spacing: 0.5rem;
}

.cv .benefit .gold {
  color: var(--main-color);
}

.cv .benefit h3 {
  font-size: 5.0rem;
}
.cv .benefit h3 strong {
  font-size: 9.0rem;
}

.cv .benefit strong {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-style: italic;
  margin-right: 1%;
}

.cv .benefit small {
  font-size: 2.5rem;
}

.cv .benefit .sarani {
  font-size: 2.0rem;
  background: var(--main-color);
  color: var(--submain-color);
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  border-radius: 5px;
  padding: 0 5%;
  margin-right: 1%;
  vertical-align: middle;
}

.cv .main {
  background: #fff;
  border: 2px solid var(--submain-color);
  padding: 4%;
  box-shadow: 0 0 1.0rem rgba(0, 0, 0, 0.2);
}
.cv .cv_box {
  display: flex;
  gap: 4%;
  flex-wrap: wrap;
  line-height: 1.1;
  margin-bottom: 5%;
}
.cv .cv_box .cv_left {
  width: 46%;
}
.cv .cv_box .cv_right {
  width: 50%;
}

.cv .product {
  width: 80%;
  margin: 3% 0;
}
.cv .size {
  display: flex;
  gap: 2.5%;
}
.cv .size>p{
  width: 100%;
  color: #fff;
  background: var(--main-color);
  border-radius: 3px;
  font-size: 2.5rem;
  padding: 1% 0;
}

.cv .notes {
  display: flex;
  gap: 4%;
  font-size: 2.0rem;
}
.cv .notes>p {
  width: 48%;
  color: #fff;
  background: var(--submain-color);
  margin: 2% 0;
  font-size: 2.0rem;
  padding: 1% 0;
}

.cv .delivery {
  /* text-align: center; */
  font-size: 1.5rem;
  background: linear-gradient(180deg,#fff,#aeaeae);
  border: 1px solid #c8c8c8;
  border-radius: 50vh;
}
.cv .delivery a {
  display: block;
  padding: 2% 0;
  color: #333;
}

.cv .price {
  font-size: 7.0rem;
  color: var(--red-color);
}
.cv .price span {
  font-size: 2.5rem;
}

.cv .att {
  color: var(--main-color);
}

.cv .cv_button {
  font-size: 2.5rem;
	display: block;
	margin: auto;
	padding: 3%;
	background: var(--red-color);
	border-radius: 100vh;
	color: #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
	transition: 0.5s;
  -webkit-animation-name: cvBtn;
          animation-name: cvBtn;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}


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

footer style

=================================================================== */
footer {
  color: #fff;
  background: var(--submain-color);
  font-size: 2.0rem;
  text-align: center;
}
footer a {
  color: #fff;
}
footer .footer_ul {
  display: flex;
  flex-wrap: wrap;
}
footer .footer_ul li {
  width: 50%;
}
footer .footer_ul li a {
  width: 100%;
  display: block;
  padding: 2.0rem 0;
  border-left: 1px solid rgb(255 255 255 / 0.1);
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
}

footer .footer_small {
  padding: 7.0rem 0;
}


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

keyframes

=================================================================== */
@-webkit-keyframes cvBtn {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
            filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
  }
  50% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.3));
            filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.3));
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
            filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
  }
}

@keyframes cvBtn {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
            filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
  }
  50% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.3));
            filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.3));
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
            filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
  }
}

@keyframes shine {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}