@charset "utf-8";

/******************
 * reset
******************/
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  line-height: 1.5;
}
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}
a:not([class]) {
  color: currentColor;
}
img,
picture {
  max-width: 100%;
  display: block;
}
input,
button,
textarea,
select {
  font: inherit;
}
textarea:not([rows]) {
  min-height: 10em;
}
:target {
  scroll-margin-block: 5ex;
}
em {
  font-style: normal;
}

/******************
 * base
 ******************/
:root {
  --base-width: 375; /* 基準幅 */
  --max-width: 640; /* 最大幅 */
  --base-font-size: 10; /* 基準フォントサイズ (10px) */
  /* 最大横幅サイズ時の最大フォントサイズ */
  --max-font-size: calc((var(--base-font-size) / var(--base-width)) * var(--max-width) * 1px);
}

html {
  /** 以下指定により「1rem = width 375px 時の 10px」となる */
  font-size: min(calc((var(--base-font-size) / var(--base-width)) * 100vw), var(--max-font-size));
  scroll-behavior: smooth;
}

body {
  background: #f3dae3;
  font-family: 'Hiragino Kaku Gothic ProN', sans-serif;
  font-style: normal;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1.4rem;
}
img,
video {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
a {
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.6;
    transition: opacity 0.2s;
  }
  button:hover {
    cursor: pointer;
  }
  label:hover {
    cursor: pointer;
  }
}
input,
textarea,
select,
button {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: inherit;
  font-size: 1.4rem;
}
input:focus,
textarea:focus,
select:focus,
button:focus {
  outline: auto;
}

button {
  border: none;
  border-radius: 0.7rem;
  cursor: pointer;
}

/******************
 * utility
******************/
.u-mb-1 {
  margin-bottom: 1rem;
}
.u-mb-2 {
  margin-bottom: 2rem;
}
.u-mb-3 {
  margin-bottom: 3rem;
}
.u-mb-4 {
  margin-bottom: 4rem;
}
.u-mb-5 {
  margin-bottom: 5rem;
}
.aC {
  text-align: center;
}

/******************
 * page
******************/
.page-wrap {
  width: 100%;
  max-width: calc(var(--max-width) * 1px);
  margin: 0 auto;
  overflow-x: hidden;
}
.page-footer {
  padding: 2rem 1rem;
  text-align: center;
  font-size: 1rem;
}
.page-footer a {
  margin: 0 0.5rem;
}

/* carousel */
.csl__inner {
  padding: 1.5rem;
}
.csl__box {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background-color: #fff;
  border-radius: 0.7rem;
}
.csl__head {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  -moz-column-gap: 2%;
  column-gap: 2%;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.3;
}
.csl__head-number {
  width: 12%;
}
.csl__btn-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.csl__btn-wrap.column-one .csl__select-btn {
  width: 100%;
}
.csl__btn-wrap.column-two .csl__select-btn {
  width: 48.5%;
}
.csl__select-btn {
  padding: 1rem;
  margin-bottom: calc(3% + 6px);
  background-color: #e02860;
  box-shadow: 0 6px 0 #bd1b4c;
  color: #fff;
  line-height: 1.3;
  transition: all 0.2s;
  font-weight: bold;
}
@media (hover: hover) {
  .csl__select-btn:hover {
    transform: translateY(6px);
    box-shadow: none;
    transition: all 0.2s;
  }
}
.csl__prev-btn {
  margin-top: 0.5rem;
  width: 40%;
  background-color: transparent;
  font-size: 1rem;
  text-align: left;
  font-weight: normal;
}
.csl__prev-btn:focus {
  outline: #fff;
}
.csl__sub-text {
  font-size: 0.8rem;
  text-align: right;
}

/* Slick */
.slide-title {
  width: 90%;
  margin: 0 auto;
}
.slider-wrapper {
  padding: 0 40px;
}
.slider-wrapper ul {
  margin: 0 auto;
}
.slider-wrapper ul li img {
  width: 100%;
}
.slick-next:before {
  background: url(../img/lr_right.png) !important;
  background-size: contain !important;
  content: '' !important;
  width: 30px !important;
  height: 30px !important;
  position: absolute;
  top: 20px;
  left: 0;
  opacity: 1;
}
.slick-prev:before {
  background: url(../img/lr_left.png) !important;
  background-size: contain !important;
  content: '' !important;
  width: 30px !important;
  height: 30px !important;
  position: absolute;
  top: 20px;
  left: 0;
  opacity: 1;
}
.slick-prev {
  left: -40px;
}
.slick-next {
  right: -60px;
}
.slick-prev,
.slick-next {
  top: 40%;
  width: 50px;
  height: 50px;
  z-index: 10;
}
.slide-items__textbox {
  padding-top: 5px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 11px;
}
.slide-items__textbox p {
  line-height: 1.4;
  font-size: 12px;
}
.slide-items__textbox p:first-child {
  font-weight: bold;
}
.slide-items__textbox p:last-child {
  text-align: right;
}
@media screen and (min-width: 640px) {
  .slide-items__textbox p {
    font-size: 13px;
  }
}
@media screen and (max-width: 375px) {
  .slide-items__textbox p {
    font-size: 11px;
  }
}

.thanks_txt {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: sans-serif;
  text-align: center;
  margin: 10px 0 20px;
  color: #333;
  line-height: 1.3;
}
.line_count {
  padding: 0 5%;
}
.get-coupon-btn {
  margin-top: 20px;
  padding-bottom: 20px;
  background-color: #f3dae3;
}
.img.btn {
  margin: 0 10px 0.5em;
}
.personals {
  border-radius: 5px;
  position: relative;
  z-index: 1;
  font-size: 3rem;
  font-weight: bold;
}

.about {
  border-top: 1px solid #dae8fa;
  background: url("../img/about.png") no-repeat;
  padding: 2px 10px 20px 10px;
  margin-top: -3px;
  background-size: 100%;
}
/* doctor */
.doctor {
  margin-top: -10px;
  position: relative;
}
.doctor__thumb {
  width: 36%;
  height: auto;
  position: absolute;
  top: 29%;
  left: 10%;
}
/* detail */
.detail {
  position: relative;
}
.detail__text {
  position: absolute;
  top: 15%;
  left: 0;
}
.detail-2 {
  position: relative;
}
.detail-2__video {
  margin-bottom: 20px;
}
.detail__text-1 {
  position: absolute;
  top: 2%;
  left: 45%;
  width: 39%;
}
.detail__text-2 {
  position: absolute;
  top: 63%;
  left: 2%;
  width: 70%;
}
.detail__text-3 {
  position: absolute;
  top: 20%;
  left: 6%;
  width: 90%;
}
/* sns */
.sns {
  position: relative;
  background-color: #fff;
}
.sns__text-1 {
  position: absolute;
  top: 19%;
  left: 37%;
  width: 52%;
}
.sns__text-2 {
  position: absolute;
  top: 44%;
  left: 19%;
  width: 47%;
}
.sns__text-3 {
  position: absolute;
  top: 66%;
  left: 37%;
  width: 52%;
}
.sns__text-4 {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 34%;
}
/* flow */
.flow {
  margin-top: -3px;
}
.flow__video {
  margin-top: -3px;
}
/* coupon top */
.coupon-top {
  position: relative;
}
.coupon-top__text-1 {
  position: absolute;
  top: 0;
  left: 0;
}
.coupon-top__text-2 {
  position: absolute;
  top: 24%;
  left: 0;
}
.coupon-top__text-2-wrap {
  display: inline-block;
  overflow: hidden;
  opacity: 0;
  margin: auto;
}
.coupon-top__text-2-inner {
  display: inline-block;
}
.coupon-top__text-2-img {
  width: 100%;
}
.coupon-top__price {
  position: absolute;
  top: 40%;
  left: 0;
}
/* coupon bottom */
.coupon-bottom {
  position: relative;
}
.coupon-bottom__text {
  position: absolute;
  top: 22px;
  left: 0;
}
.coupon-bottom__price {
  position: absolute;
  top: 16%;
  left: 0;
}
/*div.access*/
.access {
  background-color: #fff4f6;
  padding: 12px;
}
.access__head {
  position: relative;
}
.access__head-text {
  position: absolute;
  top: 46%;
  left: 0;
}
/* アコーディオン */
.toggle {
  display: none;
}
.Label {
  padding: 0.5em;
  letter-spacing: -1px;
  display: block;
  color: #000;
  background: #e02860;
  text-align: center;
  color: #fff;
  font-weight: bold;
}
.Label h3 {
  font-size: 1.6rem;
  text-align: left;
}
.accordion__content {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.5;
}

.toggle:checked + .Label + .accordion__content {
  height: auto;
  padding: 20px;
  transition: all 0.3s;
}

.accordion Label::before {
  content: '';
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 0.5rem);
  right: 1rem;
  transform: rotate(135deg);
}
.Label,
.accordion__content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.accordion__content {
  height: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  overflow: hidden;
}
.toggle:checked + .Label + .accordion__content {
  height: auto;
  padding: 20px;
  transition: all 0.3s;
}
.accordion .toggle:checked + .Label::before {
  transform: rotate(-45deg) !important;
}

/*クリニック一覧*/
.clinic-list-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0 50px;
}
.clinic-header {
  margin: 0 0 15px;
}
.area-item {
  width: 100%;
}
.area-item .item-header {
  background-color: #ffd1d5;
  border: solid 1px #000;
  padding: 4%;
  display: flex;
  cursor: pointer;
  margin: 10px 20px 0;
  box-shadow: 0px 7px 0px 0px rgba(190, 190, 190, 0.4);
}
.area-item .item-header p {
  text-align: center;
  margin: 0 auto;
  font-size: 18px;
  color: #333;
}
.area-item .item-header img {
  width: 45%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.area-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
}
.sub-item {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}
.sub-header {
  font-family: YuMincho, 'Yu Mincho', serif;
  padding: 15px 0;
  color: #222222;
  text-align: center;
  border-top: 1px solid #222222;
  border-bottom: 1px solid #222222;
  font-size: 20px;
  margin-top: 16px;
  margin-bottom: 16px;
  font-weight: 900;
}
.sub-body {
  font-family: YuGothic, 'Yu Gothic', sans-serif;
  font-size: 15px;
  color: #222222;
  font-weight: 300;
}
.table-wrapper {
  width: 100%;
}
.clinic-list {
  background-color: #fff;
}
.map__main-img {
  margin-bottom: 20px;
}
.map-wrapper {
  width: 100%;
}
.map-wrapper iframe {
  width: 100%;
}
.table-wrapper th {
  white-space: nowrap;
  text-align: left;
  font-weight: normal;
  vertical-align: baseline;
}
.table-wrapper td {
  padding-left: 16px;
  padding-bottom: 12px;
}
.area-item input {
  display: none;
}

/* クリニック一覧　矢印*/
.toggle:checked + .item-header + .item-inner {
  height: auto;
  padding: 20px;
  transition: all 0.3s;
}
.item-header,
.item-inner {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.item-inner {
  height: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  overflow: hidden;
}
.toggle:checked + .item-header + .item-inner {
  height: auto;
  padding: 20px;
  transition: all 0.3s;
}

/*.line_dtl主なリスク・副作用について*/
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.accordionBox {
  width: 90%;
  display: block;
  margin: 0 auto;
  padding-top: 2rem;
}
.accordionBox input,
.accordionBox textarea,
.accordionBox select,
.accordionBox button {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: inherit;
  font-size: 1.4rem;
}
.accordionBox .Label {
  padding: 0.8em;
  letter-spacing: -1px;
  display: block;
  background: #f3dae3;
  font-size: 20px;
  text-align: left;
  color: #000;
  font-weight: bold;
  border-radius: 30px;
}
.accordionBox .toggle {
  display: none;
}
.accordionBox .toggle:checked {
  border-bottom: none;
}
.accordionBox .Label,
.accordion__content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.accordionBox .toggle:checked + .Label {
  border-bottom: none !important;
}
.accordionBox Label::before {
  content: '';
  position: absolute;
  top: calc(50% - 5px);
  right: 18px;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 9px solid #000;
}
.accordionBox Label.risk_label::before {
  right: 50px;
}
.accordionBox .toggle:checked + .Label::before {
  transform: rotate(-180deg) !important;
}
.accordionBox .toggle:checked + .Label::before {
  transform: rotate(-180deg) !important;
}
.accordionBox h3.risk_h3 {
  text-align: center;
  border: 1px #000 solid;
  border-radius: 100px;
  padding: 15px;
  font-weight: normal;
  font-size: 16px;
}
.accordionBox .accordion__content {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.5;
  height: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  overflow: hidden;
}
.accordionBox .Label,
.accordion__content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.accordionBox .toggle:checked + .Label + .accordion__content {
  height: auto;
  padding: 20px;
  transition: all 0.3s;
}
.accordionBox .toggle:checked + .Label + .accordion__content {
  height: auto;
  padding: 20px;
  transition: all 0.3s;
  color: #fff;
}
.accordionBox section {
  position: relative;
}
.accordionBox .risk_txt {
  text-align: center;
  font-size: 16px;
  color: #000;
  margin: 0;
  line-height: 1.5;
  margin-top: 1rem;
}
.accordionBox .risk_url {
  text-align: center;
  margin: 20px 0;
  font-size: 16px;
  color: #000;
  border-bottom: #000 solid 1px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}
.accordionBox .risk_title {
  text-align: center;
  font-weight: bold;
  margin-top: 30px;
  font-size: 16px;
  color: #000;
}
.kome {
  margin: 30px auto 0;
  text-align: center;
  font-size: 16px;
  font-weight: normal;
  padding-bottom: 2rem;
}


@media screen and (max-width: 620px) {
  .accordionBox .risk_title {
    font-size: 12px;
  }
  .accordionBox .risk_txt {
    font-size: 12px;
  }
  .accordionBox .risk_url {
    font-size: 12px;
  }
}

/*戻るボタン*/
.q_bottom {
  margin-top: -2rem;
  padding: 0 1.5rem;
}

.item-header::before {
  content: '';
  width: 6px;
  height: 6px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 3px);
  right: 20px;
  transform: rotate(135deg);
}

.animate__slideAnimeLeftRight {
  -webkit-animation-name: slideTextX100;
  animation-name: slideTextX100;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate__slideAnimeRightLeft {
  -webkit-animation-name: slideTextX-100;
  animation-name: slideTextX-100;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}
@-webkit-keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    opacity: 1;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    opacity: 1;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate__delay-01s {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.animate__delay-02s {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.animate__delay-03s {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.animate__delay-04s {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.animate__delay-05s {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.animate__delay-06s {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.animate__delay-07s {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.animate__delay-08s {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.animate__delay-09s {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

/******************
 * JS
******************/
/* carousel */
.js-csl {
  opacity: 0;
}


.ofv {
  overflow: visible;
}
.title_back {
  position: relative;
}
.title_back .back_img {
  width: 100%;
}
.title_front28 {
  position: absolute;
  top: 4%;
  right: 0;
  left: 0;
  margin: auto;
  width: 22%;
}
.title_front29 {
  position: absolute;
  top: 16%;
  right: 0;
  left: 0;
  margin: auto;
  width: 81%;
}
.title_front30 {
  position: absolute;
  top: 26.5%;
  right: 0;
  left: 0;
  margin: auto;
  width: 90%;
}
.title_front31 {
  position: absolute;
  top: 38%;
  left: 7%;
  margin: auto;
  width: 20%;
}
.title_front32 {
  position: absolute;
  top: 47%;
  right: 7%;
  margin: auto;
  width: 20%;
}
.title_front33 {
  position: absolute;
  top: 58%;
  left: 7%;
  margin: auto;
  width: 20%;
}
.title_front34 {
  position: absolute;
  top: 68%;
  right: 7%;
  margin: auto;
  width: 20%;
}
.title_front35 {
  position: absolute;
  bottom: 2%;
  right: 0;
  left: 0;
  margin: auto;
  width: 15%;
}
/************************
クリニック一覧 アコーディオン
************************/
.sec-clinic-list__wrap,
.sec-clinic-list__wrap * {
  all: unset;
}
.sec-clinic-list__wrap {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 0 6% 10%;
  line-height: 1.5;
  background-color: #fff;
}
.sec-clinic-list__wrap img {
  width: 100%;
  height: auto;
}
.sec-clinic-list__wrap .sec-clinic-list__item {
  width: 100%;
}
.sec-clinic-list__wrap .sec-clinic-list__header {
  background-color: #ffd1d5;
  padding: 3% 0;
  display: flex;
  justify-content: center;
  cursor: pointer;
  margin-top: 6%;
  font-size: clamp(10px, 4vw, 20px);
  border-radius: 4px;
  font-weight: 500;
}
.sec-clinic-list__wrap .sec-clinic-list__header img {
  width: 45%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.sec-clinic-list__wrap .sec-clinic-list__sub-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.sec-clinic-list__wrap .sec-clinic-list__sub-header {
  padding: 15px 0;
  color: #222222;
  text-align: center;
  border-top: 1px solid #222222;
  border-bottom: 1px solid #222222;
  font-size: 20px;
  margin-top: 16px;
  margin-bottom: 16px;
  font-weight: 500;
}
.sec-clinic-list__wrap .sec-clinic-list__sub-body {
  font-size: 15px;
  color: #222222;
  font-weight: 300;
}
.sec-clinic-list__wrap .sec-clinic-list__table-wrap {
  width: 100%;
}
.sec-clinic-list__wrap .sec-clinic-list__table-wrap table {
  width: 100%;
  display: table;
  border-collapse: collapse;
}
.sec-clinic-list__wrap .sec-clinic-list__table-wrap table tr {
  display: table-row;
}
.sec-clinic-list__wrap .sec-clinic-list__table-wrap table th {
  display: table-cell;
}
.sec-clinic-list__wrap .sec-clinic-list__table-wrap table td {
  display: table-cell;
}
.sec-clinic-list__wrap .sec-clinic-list__map-wrap {
  width: 100%;
}
.sec-clinic-list__wrap .sec-clinic-list__map-wrap iframe {
  width: 100%;
  height: 300px;
}
.sec-clinic-list__wrap .sec-clinic-list__table-wrap th {
  white-space: nowrap;
  text-align: left;
  font-weight: normal;
  vertical-align: baseline;
}
.sec-clinic-list__wrap .sec-clinic-list__table-wrap td {
  padding-left: 16px;
  padding-bottom: 12px;
}
.sec-clinic-list__wrap .sec-clinic-list__item input {
  display: none;
}
.sec-clinic-list__wrap .sec-clinic-list__item-inner {
  display: none;
}
.sec-clinic-list__wrap .sec-clinic-list__item input[type='checkbox']:checked + .sec-clinic-list__item-inner {
  display: block;
}
/************************
/ クリニック一覧 アコーディオン
************************/
/* アコーディオン */
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.accordionBox {
  width: 90%;
  display: block;
  margin: 0 auto;
  padding-top: 2rem;
}
.accordionBox input,
.accordionBox textarea,
.accordionBox select,
.accordionBox button {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: inherit;
  font-size: 1.4rem;
}
.accordionBox .Label {
  padding: 0.8em;
  letter-spacing: -1px;
  display: block;
  font-size: 20px;
  text-align: left;
  color: #000;
  font-weight: bold;
  border-radius: 30px;
}
.accordionBox .toggle {
  display: none;
}
.accordionBox .toggle:checked {
  border-bottom: none;
}
.accordionBox .Label,
.accordion__content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.accordionBox .toggle:checked + .Label {
  border-bottom: none !important;
}
.accordionBox Label::before {
  content: '';
  position: absolute;
  top: calc(50% - 5px);
  right: 18px;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 9px solid #135e49;
}
.accordionBox Label.risk_label::before {
  right: 50px;
}
.accordionBox .toggle:checked + .Label::before {
  transform: rotate(-180deg) !important;
}
.accordionBox .toggle:checked + .Label::before {
  transform: rotate(-180deg) !important;
}
.accordionBox h3.risk_h3 {
  text-align: center;
  border: 1px #000 solid;
  border-radius: 100px;
  padding: 15px;
  font-weight: normal;
  font-size: 16px;
  background: #fff;
}
.accordionBox .accordion__content {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.5;
  height: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  overflow: hidden;
}
.accordionBox .Label,
.accordion__content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.accordionBox .toggle:checked + .Label + .accordion__content {
  height: auto;
  padding: 20px;
  transition: all 0.3s;
}
.accordionBox .toggle:checked + .Label + .accordion__content {
  height: auto;
  padding: 20px;
  transition: all 0.3s;
  color: #fff;
}
.accordionBox section {
  position: relative;
}
.bkg_white {
  text-align: center;
}
.accordionBox .risk_txt {
  text-align: center;
  font-size: 16px;
  color: #707070;
  margin: 0;
  line-height: 1.5;
  margin-top: 1rem;
}
.accordionBox .risk_url {
  text-align: center;
  margin: 20px 0;
  font-size: 16px;
  color: #707070;
  border-bottom: #000 solid 1px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}
.accordionBox .risk_title {
  text-align: center;
  font-weight: bold;
  margin-top: 30px;
  font-size: 16px;
  color: #707070;
}
.kome {
  margin: 30px auto 0;
  text-align: center;
  font-size: 16px;
  padding-bottom: 2rem;
}

.taboo__txt {
  margin: auto 0;
  text-align: center;
  font-size: 12px;
  padding-bottom: 2rem;
  font-weight: normal;
}

@media screen and (max-width: 620px) {
  .accordionBox .risk_title {
    font-size: 12px;
  }
  .accordionBox .risk_txt {
    font-size: 12px;
  }
  .accordionBox .risk_url {
    font-size: 12px;
  }
}

.ex_bg {
  background: url(../img/ex_bg.png);
  background-size: cover;
}

/* ポップアップ */
.js-fixed{
  position: fixed;
  position: -webkit-fixed;
  width: 100%;
  height: 100%;
  text-align: center;
  left: 0%;
  right: 0%;
  margin: auto;
}

.js-bg_color{
  background-color: #ffe9c9;
  margin-top: -1px;
  padding: 0px 20px 20px;
  border-radius: 0px 0px 10px 10px;
  text-align: center;
}
.js-overlay{
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.8);
  position: fixed;
  z-index: 1000;
  left: 0;
}


.js-modal_innner{
  width: 90%;
  max-width: 600px;
  display: block;
  position: fixed;
  transform: translate(-50%,-50%);
  top: 50%;
  left: 50%;
  z-index: 2000;
  
}
.js-modal img.js-modal_popup-img{
  width: 100%;
  border-radius: 10px 10px 0px 0px;
}

.js-modal_close{
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #333;
  border: 2px solid #ffffff;
  z-index: 1000;
  right: 0;
  top: 0;
  margin-top: -15px;
  margin-right: -15px;
}


.js-modal_close:before,.js-modal_close:after{
  content: "";
  display: block;
  position: absolute;
  background: #fff;
  z-index:3000;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 25px;
}
.js-modal_close::before{
  transform: translate(-50%,-50%) rotate(45deg);
}

.js-modal_close::after{
  transform: translate(-50%,-50%) rotate(-45deg);
}

.is-animated {
  animation: zoomIn 1s cubic-bezier(0.79, 0, 0.31, 1) forwards;
  position: fixed;
  inset: 0;
  margin: auto;
  top:12.5%;
}
@media screen and (max-width: 30em) {
  .is-animated {
    top: 25%;
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
