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

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

=================================================================== */
:root {
  --main-color: #ea5a24;
  --submain-color: #ee9300;
  --red-color: #c1272d;
  --gray-color: #666;
  --text-color: #231815;

  --rgb-main-color: 234 90 36;
  --rgb-submain-color: 238 147 0;
  --rgb-red-color: 193 39 45;
}


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: 400;
  font-size: 3.0rem;
  line-height: 1.5;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.8px;
  background: url(../images/bg.jpg);
  background-attachment: fixed;
  color: var(--text-color);
}

::-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(--main-color);
}

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

strong {
  font-weight: 800;
}

small {
  font-size: 2.5rem;
}

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;
  background: #fff;
}

@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-main-color) / 0.8);
}
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(--text-color);
}

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

/* 吹き出し */
.fukidashi {
  position: relative;
  width: 100%;
  padding: 2%;
  margin-bottom: 5%;
  color: var(--main-color);
  text-align: center;
  border: 2px solid var(--main-color);
}
.fukidashi::after {
  position: absolute;
  content: '';
  background: var(--main-color);
  left: 47%;
  bottom: -15%;
  width: 2px;
  height: 20%;
  transform: rotate(-30deg);
}

/* セクションタイトル */
.title_base .subtitle {
  color: #fff;
  background: var(--text-color);
  position: relative;
  padding: 1% 5%;
  margin: 10% auto 5%;
  letter-spacing: 1.0rem;
  width: fit-content;
}
.title_base .subtitle: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(--text-color) transparent transparent transparent;
}
.title_base h2 {
  font-size: 6.0rem;
  font-weight: 700;
  position: relative;
  width: fit-content;
  padding: 1% 5%;
  margin: 0 auto 10%;
  color: var(--main-color);
}
.title_base h2 small {
  font-size: 5.5rem;
}
.title_base 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;
}


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

section style

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

#top .title1 {
  position: absolute;
  width: 40%;
  top: 3%;
  left: 4%;
}

#top .title2 {
  position: absolute;
  top: 3%;
  right: 8%;
  color: #fff;
  background: var(--text-color);
  writing-mode: vertical-rl;
  padding-top: 2%;
}

#top .badge {
  position: absolute;
  width: 32%;
  top: 47%;
  right: 4%;
}

#top .product {
  position: absolute;
  width: 45%;
  top: 56%;
  left: 8%;
  transform: scaleX(-1);
}

#top .logo {
  position: absolute;
  width: 80%;
  bottom: 6%;
  left: 10%;
  text-align: center;
}
#top .logo p {
  background: #fff;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.5rem;
  margin-bottom: 2%;
}


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

#intro .inner {
  position: absolute;
  top: 6%;
  left: 4%;
  width: 92%;
}

#intro .box {
  display: flex;
}
#intro .box img {
  width: 40%;
}
#intro .box p {
  font-size: 5.0rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.3;
}
#intro .box p strong {
  font-size: 8.5rem;
}

#intro h3 {
  color: #fff;
  background: var(--main-color);
  font-size: 5.0rem;
  font-style: italic;
  margin: 6% 0 45%;
}

#intro .text {
  background: #fff;
  line-height: 2.0;
}


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

#sns h2 {
  position: absolute;
  top: 5%;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 6.0rem;
  font-weight: 900;
  line-height: 1.2;
  font-style: italic;
}
#sns h2 strong {
  font-size: 8.5rem;
  color: var(--main-color);
}

#sns .photo {
  position: absolute;
  width: 40%;
  top: 23%;
  left: 4%;
}
#sns .photo:nth-of-type(3) {
  top: 25%;
  left: 53%
}
#sns .photo:nth-of-type(4) {
  top: 28%;
  left: 28%;
}
#sns .photo:nth-of-type(5) {
  top: 63%;
  left: 30%;
}
#sns .photo:nth-of-type(6) {
  top: 73%;
  left: 57%;
}
#sns .photo:nth-of-type(7) {
  top: 70%;
  left: 7%;
}
#sns .photo:nth-of-type(8) {
  top: 45%;
  left: 50%;
}
#sns .photo:nth-of-type(9) {
  top: 50%;
  left: 11%;
}


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

#worry .inner {
  position: absolute;
  top: 2%;
  left: 4%;
  width: 92%;
}

#worry h2 {
  color: #fff;
  font-size: 6.0rem;
  margin-bottom: 5%;
}

#worry .worrybox {
  display: flex;
  gap: 3%;
  align-items: center;
  text-align: left;
  font-weight: 600;
  background: rgb(255 255 255 / 0.8);
  padding: 1% 5%;
  margin-bottom: 4%;
}

#worry .worrybox p {
  flex-grow: 1;
}
#worry .worrybox p span {
  color: #fff;
  background: var(--main-color);
  padding: 0 1%;
}

#worry .small {
  color: #fff;
  font-size: 1.0rem;
  font-weight: 600;
  margin-bottom: 4%;
}

#worry .stress {
  color: #fff;
  font-size: 2.5rem;
  background: var(--gray-color);
  padding: 1% 3%;
  margin-bottom: 19%;
}
#worry .stress strong {
  font-size: 4.0rem;
}

#worry h3 {
  color: var(--main-color);
  font-size: 5.5rem;
  text-shadow: 5px 5px 0 #fff;
}


/********************/
/* why */
#why {
  position: relative;
  margin-top: -20%;
}

#why .inner {
  position: absolute;
  top: 6%;
  left: 4%;
  width: 92%;
}

#why h2 span {
  font-size: 6.0rem;
  font-weight: 600;
  margin-bottom: 5%;
  border-bottom: 3px solid var(--main-color);
}
#why h2 span strong {
  font-size: 7.0rem;
}
#why h2 span strong:last-of-type {
  color: var(--main-color);
  background: linear-gradient(transparent 20%, var(--text-color) 20%, var(--text-color) 90%, transparent 90%);
}

#why .whybox {
  display: flex;
  gap: 4%;
  margin-top: 11%;
}
#why .whybox>div {
  width: 48%;
  color: #fff;
  text-align: center;
  font-weight: 600;
  background: linear-gradient(to bottom, var(--main-color), var(--submain-color), rgb(255 255 255 / 0));
  padding: 4% 2% 8%;
  margin-bottom: 4%;
}
#why .whybox span {
  color: var(--text-color);
  background: #fff;
  font-size: 2.5rem;
}


/********************/
/* diff */
#diff {
  position: relative;
}

#diff .inner {
  position: absolute;
  top: 4%;
  text-align: center;
}

#diff h2 {
  font-size: 5.0rem;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  margin-bottom: 18%;
}

#diff .tag {
  font-size: 2.5rem;
  color: #fff;
  background: var(--text-color);
  width: 15%;
  margin: 13% 0 6% 4%;
}
#diff .tag:not(:has(~ .tag)) {
  background: var(--main-color);
  margin: 8% 0 0 4%;
}

#diff p {
  font-size: 4.0rem;
  margin: 5% 4% 0;
}

#diff .arrow_wrapper {
	position: relative;
	display: inline-block;
  width: 25%;
}
#diff .arrow {
	position: absolute;
	left: 28%;
	top: 0;
	width: 80%;
	height: 10px;
	background-color: var(--text-color);
}
#diff .arrow:before {
	position:absolute;
	top: -10px;
	left: -25px;
	content:'';
	display:inline-block;
	border: 15px solid transparent;
	border-right: 20px solid var(--text-color);
}
#diff .arrow:after {
	position: absolute;
	top: -10px;
	right: -25px;
	content:'';
  display: inline-block;
	border: 15px solid transparent;
	border-left: 20px solid var(--text-color); 
}
#diff .arrow_wrapper:not(:has(~ .arrow_wrapper)) .arrow {
  width: 105%;
  background-color: var(--main-color);
}
#diff .arrow_wrapper:not(:has(~ .arrow_wrapper)) .arrow:before {
  border-right: 20px solid var(--main-color); 
}
#diff .arrow_wrapper:not(:has(~ .arrow_wrapper)) .arrow:after {
  border-left: 20px solid var(--main-color); 
}


/********************/
/* point */
#point {
  text-shadow: 0 0 5px rgb(255 255 255 / 0.3);
  text-align: center;
  padding: 4% 4% 0;
}

#point .box {
  display: flex;
  gap: 3%;
  align-items: center;
  margin-bottom: -3%;
}

#point .title_circle_width {
  width: 20%;
  border-radius: 50%;
  color: var(--main-color);
  border: 2px solid var(--submain-color);

}
#point .title_circle_height {
  position: relative;
  padding-top: 100%;
  height: 0;
}
#point .title_circle_height p {
  font-size: 7.0rem;
  position: absolute;
  top: calc((100% - 9.0rem)/2);
  left: 0;
  right: 0;
  margin: 0;
}
#point .title_circle_height span {
  font-size: 2.0rem;
  position: absolute;
  top: calc((100% - 9.0rem)/2);
  left: 0;
  right: 0;
  margin: 0;
}

#point h3 {
  font-size: 4.5rem;
  color: var(--main-color);
  text-align: left;
}

#point .text {
  margin-bottom: 10%;
}

#point .point_video {
  display: flex;
}


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

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

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

#answer h3 {
  font-size: 5.0rem;
  color: var(--submain-color);
  line-height: 1.3;
  text-shadow: 2px 2px 0 #fff,1px 1px 2px #fff;
  margin-bottom: 5%;
}
#answer h3 strong {
  font-size: 6.5rem;
}

#answer .afterbox {
  display: flex;
  flex-wrap: wrap;
  margin: 0 4%;
}
#answer .afterbox div {
  width: 50%;
}
#answer .afterbox .tag {
  letter-spacing: 1.0rem;
  color: #fff;
  background: var(--text-color);
}
#answer .afterbox .tag:not(:has(~ .tag)) {
  background: url(../images/shine.png), linear-gradient(to right,var(--main-color),var(--submain-color));
  background-size: 100%;
}


/********************/
/* howto */
#howto {
  padding: 4%;
}


/********************/
/* compact */
#compact {
  padding: 4%;
  text-align: center;
}

#compact h2 {
  font-size: 5.5rem;
  color: #fff;
  background: linear-gradient(to right,var(--main-color),var(--submain-color));
  width: fit-content;
  margin: 2% auto 5%;
}

/********************/
/* scene */
#scene {
  position: relative;
}
#scene .inner {
 position: absolute; 
}

#scene h2 {
  position: absolute;
  top: 6%;
  left: 0;
  font-size: 5.5rem;
  color: #fff;
  background: linear-gradient(to right, var(--submain-color), var(--main-color));
  width: fit-content;
  padding: 0 2%;
  line-height: 1.2;
}
#scene h2:last-of-type {
  top: 14%;
}
#scene h2 strong {
  font-size: 6.0rem;
}

#scene .box img {
  position: absolute;
  width: 40%;
  top: 25%;
  left: 4%;
  transform: rotate(-5deg);
}
#scene .box img:nth-of-type(2) {
  top: 30%;
  left: 50%;
  transform: rotate(5deg);
}
#scene .box img:nth-of-type(3) {
  top: 60%;
  left: 8%;
  transform: rotate(3deg);
}
#scene .box img:nth-of-type(4) {
  top: 64%;
  left: 55%;
  transform: rotate(-7deg);
}

#scene .box p {
  position: absolute;
  width: fit-content;
  top: 31%;
  left: 29%;
  transform: rotate(5deg);
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
  background: var(--text-color);
  padding: 0 2%;
}
#scene .box p:nth-of-type(2) {
  top: 50%;
  left: 78%;
  transform: rotate(-5deg);
}
#scene .box p:nth-of-type(3) {
  top: 87%;
  left: 17%;
  transform: rotate(-5deg);
}
#scene .box p:nth-of-type(4) {
  top: 64%;
  left: 66%;
}


/********************/
/* size */
#size {
  width: 100%;
  text-align: center;
  padding: 0 4% 4%;
}

#size img {
  margin: 3% 0;
}


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

.exchange .fukidashi {
width: 92%;
  margin: 0 4%;
}

.exchange div {
  position: absolute;
  top: 15%;
  right: 0;
  left: 0;
  margin: 0 4%;
  transform: rotate(-5deg);
  line-height: 1.2;
}
.exchange div span {
  font-size: 5.0rem;
  color: var(--text-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);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.exchange div p strong {
  font-size: 9.0rem;
}


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

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

#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(--text-color);
  padding: 5%;
}
#original .box strong {
  color: var(--submain-color);
  font-size: 5.0rem;
}
#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: #fff;
  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 .note1 {
  border: 1px solid var(--submain-color);
  padding: 2%;
  margin-bottom: 2%;
  font-size: 2.5rem;
}
#original .customer .note2 {
  color: var(--submain-color);
  font-weight: 700;
}
#original .customer img {
  width: 49%;
  margin: 3% 0;
}

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


/********************/
/* try */
#try {
  width: 100%;
  text-align: center;
  font-size: 2.5rem;
  margin-top: -1%;
}
#try .box {
  width: 100%;
  padding: 4%;
  background: var(--submain-color);
}

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

#try .text {
  color: #fff;
  margin-bottom: 2%;
}

#try .trybox {
  font-size: 2.0rem;
  text-align: left;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, .2);
  padding: 4%;
  margin-bottom: 2%;
}

#try .titlebox {
  display: flex;
  gap: 2%;
  align-items: flex-start;
}
#try .titlebox>img {
  width: 38%;
}
#try .titlebox>div {
  width: 60%;
}
#try .titlebox span {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--main-color);
  background: rgb(var(--rgb-main-color) / 0.1);
  border-radius: 3px;
  padding: 1% 3%;
  margin-right: 1%;
}
#try .titlebox span.yellow {
  color: var(--submain-color);
  background: rgb(var(--rgb-submain-color) / 0.2);
}
#try .titlebox span.blue {
  color: #0095d9;
  background: #e6f4fc;
}
#try .titlebox span.green {
  color: #3eb370;
  background: #eaf7ef;
}
#try .titlebox span.red {
  color: var(--red-color);
  background: rgb(var(--rgb-red-color) / 0.1);
}
#try .titlebox h3 {
  margin-top: 5%;
}
#try .trybox dt {
  font-weight: 700;
  line-height: 1.0;
  padding-left: 1%;
  margin-top: 2%;
  border-left: 5px solid var(--submain-color);
}
#try .trybox .att {
  font-size: 1.8rem;
  text-align: center;
  background: rgb(var(--rgb-submain-color) / 0.2);
  border-radius: 3px;
  padding: 5px;
  margin-top: 2%;
}

#try .inquiry {
  font-size: 2.0rem;
  background: #fff;
  margin-bottom: 5%;
  padding: 2%;
  font-weight: 600;
}
#try .inquiry span {
  color: var(--submain-color);;
  background: rgb(var(--rgb-submain-color) / 0.2);
  border-radius: 3px;
  padding: 0 2%;
  margin-right: 1%;
}

#try #try_list {
  box-sizing: border-box;
}
#try .toggle_btn {
  color: #fff;
  background: var(--gray-color);
  padding: 3%;
  margin-bottom: 1px;
  box-sizing: border-box;
  cursor: pointer;
}
#try .toggle_btn span:nth-of-type(1) {
  width: 95%;
}
#try .toggle_btn .icons_toggle {
  margin-left: 0;
  transition: 0.3s ease all;
}
#try #try_list .toggle_btn.active {
  display: flex !important;
}
#try .toggle_btn.active .icons_toggle {
  transform: rotate(45deg);
}
#try .toggle_btn.active span[class^="icons_"] {
  order: 0;
}
#try .toggle_btn.active .icons_toggle {
  order: 3;
}
#try .toggle_area {
  display: none;
  box-sizing: border-box;
}


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

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

#detail .att {
  padding: 3%;
  text-align: left;
  border: 2px solid var(--submain-color);
}
#detail .att h3 {
  color: var(--main-color);
  text-align: center;
}


/********************/
/* 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(--main-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.3rem;
  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: var(--red-color);
}

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

.cv .benefit {
  position: relative;
  background: linear-gradient(to right, var(--submain-color), var(--main-color));
  padding: 1% 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: 2%;
  justify-content: center;
  border-bottom: 1px solid var(--text-color);
  margin-bottom: 1%;
}

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

.cv .benefit .gold {
  /* text-shadow: 2px 2px 0 #fff; */
  -webkit-text-stroke: 3px #fff;
  paint-order: stroke fill;
}

.cv .benefit h3 {
  font-size: 5.0rem;
  font-weight: 900;
}
.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: 0 1%;
}

.cv .benefit .sarani {
  font-size: 2.0rem;
  background: var(--text-color);
  color: #fff;
  border-radius: 5px;
  padding: 0 2%;
  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: 1%;
}
.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 {
  font-size: 2.0rem;
  background: linear-gradient(180deg,#fff,#aeaeae);
  border: 1px solid #c8c8c8;
  border-radius: 50vh;
}
.cv .delivery a {
  display: block;
  padding: 2% 0;
  color: var(--text-color);
}

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

.cv .att {
  font-size: 2.5rem;
  color: var(--main-color);
}

.cv .cv_button {
	display: block;
	margin: auto;
	padding: 3%;
	background: linear-gradient(rgb(150, 219, 56) 0%, rgb(26, 85, 8) 100%);
	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(--main-color);
  font-size: 2.0rem;
  text-align: center;
}
footer a,
footer a:hover {
  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-right: 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; }
}