@charset "utf-8";
/* CSS Document */

/*==============================
root
==============================*/
:root {
  --base-width: 1200px;
  --over-width-half: calc((100vw - var(--base-width)) / 2);
  --base-color: var(--black);
  --base-bg: var(--white);
  --ff: "メイリオ", "Meiryo", "ＭＳ ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  --webf: "Zen Maru Gothic", serif;
  --transition: 0.3s;

  --black: #000000;
  --white: #fff;
  --gray: #595757;

  --color_typeP: #e9528f;
  --color_typeP-1: #f9dce3;
  --color_typeP-2: #eb8ca2;
  --color_typeP-3: #ed4c9a;
  --color_typeP-4: #f6bad2;
  --color_typeP-5: #e5006e;
  --color_typeY: #fff100;
  --color_typeG: #89c122;
  --color_typeG-1: #ddedbc;
}

body {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-width: var(--base-width);
  max-width: 100vw;
  margin: 0 auto;
  font-size: 1.6rem;
  font-family: var(--ff);
  line-height: 1.6;
  word-break: break-all;
  color: var(--base-color);
  background-color: var(--base-bg);
}

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

@media (max-width: 520px) {
  :root {
    --base-width: 100%;
    --over-width-half: 5%;
  }

  body {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 520px) {
  main {
    width: 100vw;
    overflow: hidden;
  }
}

/*==============================
footer
==============================*/
.sp_footer {
  display: none;
}

footer {
  text-align: center;
  font-weight: bold;
  padding: 80px 5%;
  background: url(../images/kazari6.webp) no-repeat bottom 100px right 15%;
  font-family: var(--webf);
}

footer h2 {
  font-size: 2.2rem;
  margin: 0 0 1.5em;
}

footer p {
  font-size: 3rem;
  margin: 0.2em auto;
}

footer address {
  margin: 1.5em auto;
}

footer address,
footer address p {
  font-size: 2rem;
}

footer .copy {
  font-size: 1.4rem;
  margin: 8em auto 0;
  line-height: 2;
  color: var(--gray);
}

a.tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 3rem;
}

a.tel svg {
  width: 1.5em;
  height: 1.5em;
  fill: var(--fontColor);
}

@media (max-width: 520px) {
  .sp_footer {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
  }

  .sp_footer a {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 15px;
    grid-template-areas:
      "small icon"
      "p icon";
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 10px 30px;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    background-color: var(--color_typeP);
  }

  .sp_footer small {
    grid-area: small;
    font-size: 1.4rem;
  }

  .sp_footer a::after {
    grid-area: icon;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12.5px 0 12.5px 15px;
    border-color: transparent transparent transparent var(--white);
  }

  footer {
    padding-top: 40px;
    background-position: bottom 90px right 5%;
    background-size: 80px auto;
    padding-bottom: 150px;
  }

  footer h2 {
    font-size: 1.6rem;
  }

  footer p {
    font-size: 2rem;
    margin: 0 auto;
  }

  a.tel {
    font-size: 2rem;
  }

  footer address,
  footer address p {
    font-size: 1.5rem;
  }

  footer address a {
    font-size: 1.3rem;
  }

  footer .copy {
    font-size: 1rem;
    margin: 3em auto 0;
    line-height: 2;
  }
}

/**------------------------------ 
イベント終了時のCSS
 ------------------------------**/

body:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
}

body:before {
  width: fit-content;
  display: block;
  content: "本イベントは終了しました";
  background: #cc0000;
  color: white;
  padding: 30px;
  position: fixed;
  top: 300px;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 3rem;
  font-weight: bold;
  border: 5px solid white;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.3);
  z-index: 5;
}

@media (max-width: 520px) {
  body:before {
    width: fit-content;
    display: block;
    content: "本イベントは終了しました";
    background: #cc0000;
    color: white;
    padding: 30px;
    position: fixed;
    top: 300px;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 2rem;
    font-weight: bold;
    border: 5px solid white;
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.3);
    z-index: 5;
  }
}

/*==============================
tit
==============================*/

.cP {
  color: var(--color_typeP-5);
}

.cG {
  color: var(--color_typeG);
  background: var(--white);
}

.titA {
  text-align: center;
  font-size: 5rem;
  font-weight: bold;
  line-height: 1.3;
  margin: 0.5em 0;
}

.titB {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.3;
  margin: 0.5em 0;
  color: var(--color_typeP);
}

.titB:before,
.titB:after {
  content: "";
  display: block;
  aspect-ratio: 77/145;
  width: 77px;
  height: auto;
  background: url(../images/kazari4.webp) no-repeat center / contain;
}

.titB:after {
  transform: scale(-1, 1);
}

@media screen and (max-width: 520px) {
  .titA {
    font-size: 2.5rem;
  }

  .titB {
    font-size: 1.8rem;
    gap: 10px;
    text-align: center;
  }

  .titB:before,
  .titB:after {
    width: 40px;
  }
}

/*==============================
 btn set
==============================*/
.btnset {
  text-align: center;
  margin: 50px auto;
  font-weight: bold;
}

.btnset small {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 20px;
  font-size: 1.8rem;
}

.btnset small:before,
.btnset small:after {
  content: "";
  aspect-ratio: 14/27;
  width: 14px;
  height: auto;
  background: url(../images/kazari7.webp) no-repeat center / contain;
}

.btnset small:after {
  transform: scale(-1, 1);
}

.btnset a {
  position: relative;
  display: block;
  background: var(--color_typeP);
  color: var(--white);
  font-size: 3.4rem;
  width: min(100%, 500px);
  padding: 20px;
  margin: 5px auto;
  text-align: center;
  border-radius: 30px;
}

.btnset a::after {
  grid-area: icon;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12.5px 0 12.5px 15px;
  border-color: transparent transparent transparent var(--white);
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.btnset a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 520px) {
  .btnset {
    width: 90%;
  }

  .btnset small {
    font-size: 1.6rem;
  }

  .btnset a {
    font-size: 2.4rem;
  }

  .btnset a::after {
    border-width: 10px 0 8px 8px;
  }
}

/*==============================
section
==============================*/
section {
  position: relative;
}

.sec-w_base {
  padding-left: var(--over-width-half);
  padding-right: var(--over-width-half);
}

/*==============================
#sec01
==============================*/

.mv img {
  width: 100%;
  height: auto;
}

/*==============================
#sec02
==============================*/
#sec02 {
  text-align: center;
  font-weight: bold;
}

#sec02 .wrap-sec02 {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  background: var(--color_typeP-1);
}

#sec02 .wrap-sec02:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 30px 0 30px;
  border-color: var(--color_typeP-1) transparent transparent transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

#sec02 .wrap-sec02 picture {
  display: block;
  margin: 50px auto;
}

#sec02 .wrap-sec02 .fz20 {
  font-size: 2rem;
}

#sec02 .inner-sec02 {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 50px;
  font-size: 3rem;
  padding: 60px 0;
}

#sec02 .inner-sec02 p {
  margin: 0 0 30px;
}

#sec02 .inner-sec02 .cP {
  font-size: 4rem;
}

#sec02 .inner-sec02 .liner {
  display: inline-block;
  line-height: 1.3;
  border-bottom: 8px solid var(--color_typeP-4);
}

#sec02 .inner-sec02 img {
  flex: none;
}

@media screen and (max-width: 520px) {
  #sec02 .wrap-sec02 {
    padding-bottom: 20px;
  }

  #sec02 .wrap-sec02 .fz20 {
    font-size: 1.6rem;
    padding: 0 5%;
  }

  #sec02 .wrap-sec02 picture {
    display: block;
    margin: 20px auto;
  }

  #sec02 .inner-sec02 {
    display: grid;
    grid-template-columns: 1fr 130px 130px 1fr;
    grid-template-areas:
      "p p p p"
      ". img1 img2 .";
    justify-content: center;
    gap: 15px 0;
    font-size: 1.7rem;
    padding: 60px 5% 0;
  }

  #sec02 .inner-sec02 .cP {
    font-size: 1.3em;
  }

  #sec02 .inner-sec02 .liner {
    border-bottom: 6px solid var(--color_typeP-4);
  }

  #sec02 .inner-sec02 p {
    grid-area: p;
    margin: 0;
  }

  #sec02 .inner-sec02 img {
    grid-area: img1;
    margin: 0;
  }

  #sec02 .inner-sec02 p + img {
    grid-area: img2;
  }
}

/*==============================
#sec03
==============================*/
#sec03 {
  padding-top: 130px;
  padding-bottom: 100px;
  background: var(--color_typeP-2);
  color: var(--white);
  text-align: center;
}

#sec03:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/bg02.webp) no-repeat bottom center / 100% 100%;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#sec03 > * {
  position: relative;
  z-index: 5;
}

#sec03 picture {
  display: block;
  margin: 60px auto;
}

#sec03-2 {
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
  font-weight: bold;
  font-size: 2.6rem;
}

#sec03-2 h2 {
  margin: 40px auto 0;
  font-size: 4rem;
}

@media screen and (max-width: 520px) {
  #sec03 {
    padding: 40px 0;
  }

  #sec03 i,
  #sec03 p {
    display: block;
    width: 90%;
    margin: 0 auto;
  }

  #sec03:before {
    background: url(../images/bg02.webp) repeat-y top center / 100% auto;
  }

  #sec03 picture {
    display: block;
    margin: 20px auto;
    padding-left: 15px;
  }

  #sec03-2 {
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: 1.6rem;
  }

  #sec03-2 h2 {
    margin: 20px auto 0;
    font-size: 2rem;
  }
}

/*==============================
#sec04
==============================*/
#sec04 {
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--color_typeY);
  text-align: center;
  font-weight: bold;
  line-height: 1.8;
}

#sec04:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 30px 0 30px;
  border-color: var(--color_typeY) transparent transparent transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

#sec04 strong {
  font-size: 1.3em;
}

#sec04 :is(h2, h3) {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

#sec04 h2 {
  font-size: 3.6rem;
  margin: 50px auto;
}

#sec04 h3 {
  font-size: 2.6rem;
}

#sec04 h2:after,
#sec04 h3:before {
  content: "";
  aspect-ratio: 77/81;
  width: 77px;
  height: auto;
  background: url(../images/kazari8.webp) no-repeat center / contain;
  position: absolute;
  top: -50px;
}

#sec04 h2:after {
  transform: scale(-1, 1);
}

#sec04 h3:before {
  left: -30px;
}

@media screen and (max-width: 520px) {
  #sec04 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  #sec04 h2 {
    font-size: 2rem;
    margin: 50px auto;
  }

  #sec04 h3 {
    font-size: 1.5rem;
  }

  #sec04 h2:after,
  #sec04 h3:before {
    width: 40px;
    top: -40px;
  }

  #sec04 h2:after {
    right: 0;
    rotate: -30deg;
  }

  #sec04 h3:before {
    left: 0;
    rotate: 30deg;
  }
}

/*==============================
#sec05
==============================*/
#sec05 {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
  font-weight: bold;
  line-height: 1.8;
  font-family: var(--webf);
  background: linear-gradient(
    to right,
    var(--color_typeP-1) var(--over-width-half),
    var(--white) var(--over-width-half),
    var(--white) calc(100% - var(--over-width-half)),
    var(--color_typeP-1) calc(100% - var(--over-width-half))
  );
}

#sec05 ul {
  margin: 50px auto;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 30px 40px;
  width: calc(230px * 3 + 40px * 2);
}

#sec05 .fz28 {
  font-size: 2.8rem;
}

#sec05 .fz60 {
  font-size: 6rem;
}

#sec05 .fz22 {
  font-size: 2.2rem;
  margin: 0 0 40px;
}

#sec05 .fz34 {
  font-size: 3.4rem;
}

.map iframe {
  display: block;
  width: 100%;
  height: 400px;
}

@media screen and (max-width: 520px) {
  #sec05 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  #sec05 > img {
    margin: 0 0 0 5px;
  }

  #sec05 ul {
    margin: 30px auto;
    gap: 15px;
    width: 90%;
  }

  #sec05 ul li {
    width: calc((100% - 15px) / 2);
  }

  #sec05 .fz28 {
    font-size: 1.6rem;
  }

  #sec05 .fz60 {
    font-size: 3rem;
  }

  #sec05 .fz22 {
    font-size: 1.3rem;
    margin: 0 0 20px;
  }

  #sec05 .fz34 {
    font-size: 2rem;
  }

  .map iframe {
    height: 80vw;
  }
}

/*==============================
#sec06
==============================*/
#sec06 {
  width: min(90%, 820px);
  margin: 100px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  font-weight: bold;
  font-family: var(--webf);
}

#sec06 dl dt {
  margin: 0 0 20px;
  font-size: 2.2rem;
}

#sec06 dd p {
  margin: 20px 0 0;
  font-size: 1.8rem;
}

#sec06 dl ul li {
  display: flex;
  gap: 0.5em;
  font-size: 2rem;
  line-height: 1.7;
}

#sec06 dl ul li:before {
  flex: none;
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  border-radius: 50px;
  background: var(--color_typeG);
  margin-top: 3px;
}

#sec06 picture {
  flex: none;
  width: 420px;
}

@media screen and (max-width: 520px) {
  #sec06 {
    width: min(90%, 820px);
    margin: 30px auto;
    flex-flow: column;
    gap: 20px;
  }

  #sec06 dl dt {
    font-size: 2rem;
  }

  #sec06 dd p {
    font-size: 1.6rem;
  }

  #sec06 dl ul li {
    font-size: 1.8rem;
  }

  #sec06 picture {
    width: 100%;
  }
}

/*==============================
CTA
==============================*/
.sec-cta {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background: linear-gradient(
    to right,
    var(--color_typeP) var(--over-width-half),
    var(--white) var(--over-width-half),
    var(--white) calc(100% - var(--over-width-half)),
    var(--color_typeP) calc(100% - var(--over-width-half))
  );
}

@media screen and (max-width: 520px) {
  .sec-cta .btnset {
    width: 85%;
    margin: 50px auto 0;
  }
}

/*==============================
#sec07
==============================*/
#sec07 {
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
  font-weight: bold;
  font-family: var(--webf);
  background: var(--color_typeY);
}

#sec07 p {
  font-size: 2.4rem;
  line-height: 1.7;
}

@media screen and (max-width: 520px) {
  #sec07 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  #sec07 p {
    font-size: 1.6rem;
    text-align: left;
  }
}

/*==============================
#sec08
==============================*/
#sec08 {
  padding-top: 0px;
  padding-bottom: 38vw;
  text-align: center;
  font-weight: bold;
  background: var(--color_typeY) url(../images/img14.webp) no-repeat center bottom / 100% auto;
}

#sec08 .fz18 {
  font-size: 1.8rem;
}

#sec08 dl {
  font-family: var(--webf);
  position: relative;
  width: min(100%, 900px);
  background: var(--white);
  padding: 40px 40px 80px;
  margin: 50px auto;
}

#sec08 dl:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 20px 0 20px;
  border-color: var(--color_typeY) transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

#sec08 dl dt {
  color: var(--color_typeG);
  font-size: 4rem;
  margin: 40px 0 20px;
}

#sec08 dl ul {
  width: 75%;
  margin: 0 auto;
  text-align: left;
}

#sec08 dl ul li {
  display: flex;
  gap: 0.5em;
  color: var(--gray);
  font-size: 1.8rem;
  margin: 0 0 5px;
}

#sec08 dl ul li:before {
  flex: none;
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  border-radius: 50px;
  background: var(--color_typeG);
  margin-top: 3px;
}

#sec08 .inner-sec08 {
  font-family: var(--webf);
  width: 703px;
  margin: 0 auto;
  padding: 50px 0 80px;
  background: url(../images/bg03.webp) no-repeat center top / 100% 100%;
  color: var(--color_typeP);
  text-align: center;
  font-size: 3rem;
}

@media screen and (max-width: 520px) {
  #sec08 .fz18 {
    font-size: 1.4rem;
  }

  #sec08 dl {
    padding: 30px 15px;
  }

  #sec08 dl dt {
    font-size: 1.8rem;
    margin: 10px 0 15px;
  }

  #sec08 dl ul {
    width: 100%;
  }

  #sec08 dl ul li {
    display: flex;
    font-size: 1.4rem;
  }

  #sec08 .inner-sec08 {
    width: 100%;
    padding: 30px 0;
    font-size: 1.8rem;
  }
}

/*==============================
#sec09
==============================*/
#sec09 {
  padding-top: 60px;
  padding-bottom: 60px;
  margin: 0 auto 60px;
  text-align: center;
  background: var(--color_typeG-1);
  font-weight: bold;
}

#sec09 .fz20 {
  font-size: 2rem;
}

.list-table {
  font-family: var(--webf);
  width: min(100%, 900px);
  margin: 50px auto;
  padding: 0 0 50px;
  background: var(--white);
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

.list-table :is(dl, a) {
  display: flex;
}

.list-table dl {
  background: var(--color_typeG);
  color: var(--white);
  text-align: center;
  padding: 15px;
  font-size: 2rem;
  letter-spacing: 5px;
}

.list-table a {
  padding: 30px 15px;
  margin: 0 40px;
  text-align: left;
  font-size: 2rem;
  border-bottom: 2px solid var(--gray);
}

.list-table dl dt,
.list-table a h3 {
  flex: none;
  width: 40%;
}

.list-table a h3 {
  display: flex;
  gap: 10px;
  color: var(--color_typeG);
}
.list-table a h3:after {
  font-family: "Material Icons";
  content: "\e89e";
  font-weight: normal;
}

.list-table dl dd,
.list-table a p {
  flex: 1;
}

.list-table a p span:before {
  content: "●";
  color: var(--color_typeY);
}
.list-table a p span {
  display: inline-flex;
  line-height: 1.3;
}

@media screen and (max-width: 520px) {
  #sec09 {
    padding-top: 40px;
    padding-bottom: 40px;
    margin: 0 auto 30px;
  }

  #sec09 .fz20 {
    font-size: 1.6rem;
  }

  .list-table {
    margin: 30px auto 0;
  }

  .list-table dl {
    font-size: 1.7rem;
  }

  .list-table a {
    flex-flow: column;
    padding: 15px;
    margin: 0 15px;
    font-size: 1.7rem;
    line-height: 2;
  }

  .list-table a h3 {
    width: 100%;
  }
}

/*==============================
#sec10
==============================*/
#sec10 {
  padding-top: 60px;
  padding-bottom: 60px;
  margin: 60px auto 0;
  text-align: center;
  font-weight: bold;
  background: var(--color_typeY);
}

.toggle {
  display: none;
}

.wrap-toggle {
  font-family: var(--webf);
  position: relative;
  width: min(100%, 900px);
  background: var(--white);
  padding: 60px 40px 50px;
  margin: 50px auto;
  text-align: left;
}

.wrap-toggle:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 20px 0 20px;
  border-color: var(--color_typeY) transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.wrap-toggle > * {
  margin: 0 0 20px;
  padding: 10px 25px;
}

.cl,
.ans {
  padding: 1em 70px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: var(--transition);
}

.cl:before,
.ans:before {
  font-size: 1.5rem;
  position: absolute;
  left: 0;
}

.cl {
  margin: 0 auto;
  display: block;
  position: relative;
  background: var(--color_typeG);
  color: var(--white);
  border-radius: 15px;
  font-size: 2rem;
}

.cl:before {
  font-family: var(--ff);
  font-size: 2.5rem;
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  content: "Q";
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--color_typeG);
  border-radius: 50px;
}

.cl::after {
  content: "＋";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.ans {
  height: 0;
  padding: 0 40px 0 70px;
  overflow: hidden;
  font-size: 1.8rem;
}

.ans:before {
  content: "A";
  top: 1em;
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-family: var(--ff);
  font-size: 2.5rem;
  left: 15px;
  color: var(--color_typeP);
}

.toggle:checked + .cl + .ans {
  /*開閉時*/
  height: auto;
  padding: 1.5em 40px 1em 70px;
  transition: var(--transition);
}

.toggle:checked + .cl::after {
  content: "－";
}

@media screen and (max-width: 520px) {
  #sec10 {
    padding-top: 40px;
    padding-bottom: 40px;
    margin: 30px auto 0;
  }

  .wrap-toggle {
    padding: 30px 15px 20px;
    margin: 30px auto 0;
  }

  .wrap-toggle > * {
    padding: 0;
  }

  .cl,
  .ans {
    padding: 0.5em 10px 0.5em 1.5em;
  }

  .cl:before,
  .ans:before {
    font-size: 1.6rem;
    width: 25px;
    height: 25px;
  }

  .cl {
    line-height: 1.5;
    padding: 10px 20px 10px 3.5em;
    font-size: 1.5rem;
  }

  .cl::after {
    right: 5px;
  }

  .ans {
    padding: 0 10px 0 3.5em;
    font-size: 1.5rem;
  }

  .toggle:checked + .cl + .ans {
    padding: 15px 10px 1em 3.5em;
  }
}
