html, body {
  padding: 0;
  margin: 0;
  height: 100%;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
}
.ba-img{
    background-image: url("https://shop.wakasa.jp/img/usr/sunshineglasses_202510/3970302_m.jpg");
    background-repeat: no-repeat;
  background-size: cover;       /**/
  background-position: center;  /**/
  background-attachment: fixed; /**/
}

#wks_ssg {
  width: 100%;
  height: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
  background:#fff;
}
#wks_ssg .l-wks-ssg__header {
  left: 1rem;
  top: 16px;
  width: 200px;
  padding: 5px 8px 0px;
  background: #fff;
}

.form .form_wrap .form_btn input{
    width: 100%;
    max-width: 450px;
    height: 65px;
    border-radius: 10px;
    background: #fff;
    border: 0px solid #cdcdcd;
    font-size: 1.25rem;
    font-weight: bold;
    transition: .5s transform;
    color: #ffffff;
    background-color: #1c9604;
}

button.btn_area{
    display: block;
    background: none;
    padding: 0;
    border: none;
}
div .c-btn-down{
  margin-top: 20px;
}

.buru-btn{
  background-color: #1c9604;
    color: #ffffff;
    font-weight: bold;
    padding: 25px 15px;
    display: block;
    max-width: 450px;
    margin: 0 auto;
    border-radius: 50px;
    text-align: center;
    box-shadow: rgb(0 0 0 / 74%) 0px 2px 10px -3px;
    width: 100%;
    text-decoration: none;
    font-size: 20px;
}
.close-btn{
  background-color: #fff;
    color: #444444;
    font-weight: bold;
    padding: 10px;
    display: block;
    max-width: 450px;
    margin: auto;
    border-radius: 50px;
    text-align: center;
    box-shadow: rgb(0 0 0 / 74%) 0px 2px 10px -3px;
    width: 50%;
    text-decoration: none;
    font-size: 16px;
    border: 1px solid #000;
}
.close-box{
  padding: 20px;
}
.modal-box{
  background-color: #fff9d9;
  padding: 20px;
}
@media (max-width: 640px) {
  #wks_ssg .l-wks-ssg__header {
    width: 140px;
    right: 0.5rem;
  }
}
#wks_ssg .l-wks-ssg__article h1, #wks_ssg .l-wks-ssg__article h2, #wks_ssg .l-wks-ssg__article h3, #wks_ssg .l-wks-ssg__article h4 {
  margin: 0;
  padding: 0;
  border: none;
  display: block;
}
#wks_ssg .l-wks-ssg__article img {
  display: block;
}
#wks_ssg .l-wks-ssg__footer {
  background: #4e3f8c;
  color: #fff;
  text-align: center;
}

.c-wks-ssg-buy {
  position: relative;
}
.c-wks-ssg-buy .buy_area {
  position: absolute;
}
.c-wks-ssg-buy  {
  background-color: #fff9d9;
}
.c-wks-ssg-buy{
  display: block;
  padding:10px 20px 40px;
  border: none;
}

.p-wks-ssg__about-spec > div {
  display: grid;
  gap: 1rem;
  border-top: 1px solid #858084;
}
.p-wks-ssg__about-spec > div:nth-last-child(1) {
  border-bottom: 1px solid #858084;
}
.p-wks-ssg__about-spec .p-wks-ssg__grid {
  grid-template-columns: 1fr;
}
.try-box{
  display: none;
}
.try-box p{
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 10px;
    color: #603813;
}
.explanation_text{
	padding: 10px 10px 0;
}
.explanation_title{
	padding: 10px 10px 7px;
    background-color: #ddd;
    margin-bottom: 20px;
    font-weight: bold;
	font-size: 16px;
}
.explanation_text ul{
	text-align: left;
	font-size: 14px;
}

.explanation_text li{
	margin-bottom: 20px;
}
div.link_text
{
	width: 100%;
	max-width: 1000px;
	margin: 0% auto 0% auto;
	padding: 3% 2%;
	text-align: center;
	line-height: 160%;
	font-size: 11pt;
}

div.link_text a
{
	color: #4d4398;
	text-decoration: underline;
}
  .sp{
    display: none;
  }
@media (min-width: 641px) {
  .p-wks-ssg__about-spec .p-wks-ssg__grid {
    grid-template-columns: 2fr 6fr;
  }
}

@media (max-width: 640px) {
  .sp{
    display: block;
  }
  .try-box{
  background-color: #fffadf;
  text-align: center;
  padding:0 30px 50px;
      display: block;
}
}

/*繧｢繧ｳ繝ｼ繝�ぅ繧ｪ繝ｳ*/
.accordion {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 2rem;
  font-family: sans-serif;
  padding:10px;
}

details {
  margin-bottom: 8px;
}

summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em;
  cursor: pointer;
  list-style: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  padding: 10px;
    background: #000;
    color: #fff;
    margin: 10px 0px;
}

summary::-webkit-details-marker {
  display: none;
}

.icon {
  transition: transform 0.3s ease;
  font-size: 0.8em;
}

details[open] .icon {
  transform: rotate(180deg);
}

.content {
  overflow: hidden;
  padding: 0 1em;
  animation: accordion-close 0.3s ease forwards;
}

details[open] .content {
  animation: accordion-open 0.3s ease forwards;
  margin-bottom: 20px;
}

@keyframes accordion-open {
  from {
    opacity: 0;
    height: 0;
  }
  to {
    opacity: 1;
    height: var(--content-height);
  }
}

@keyframes accordion-close {
  from {
    opacity: 1;
    height: var(--content-height);
  }
  to {
    opacity: 0;
    height: 0;
  }
  
}
@media (max-width: 640px) {
  .accordion{
    padding: 10px;
    font-size: 1rem;
    margin: 0 auto;
  }
  .content{
    padding: 0 0.5em;
  }
}
/*# sourceMappingURL=style.css.map */
説明