@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: #fff;
  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;
}
/******************
 * page
******************/
.page-wrap {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
}

.page-footer {
  padding: 2rem 1rem;
  text-align: center;
  font-size: 1rem;
  color: #000;
  width: 100%;
  max-width: 640px;
  margin: 15px auto 0;
  background: #fff;
}

.page-footer a {
  margin: 0 0.5rem;
}

/* carousel */
.csl__inner {
  padding: 1.5rem;
}
.csl__box {
  padding: 2rem 1rem;
  margin-bottom: 1.5rem;
  background: #135e49;
  border-radius: 0.7rem;
}
.csl__head {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 2%;
  column-gap: 2%;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.3;
}
.csl__head-number {
  width: 62.5%;
  display: block;
  margin: 4% auto 0;
}
.csl__head h2 {
  color: #fff;
  margin: 0 auto;
  text-align: center;
}
.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(2% + 6px);
  background-color: #fff;
  box-shadow: 0 3px 6px #09372a;
  color: #000;
  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;
  padding: 0.5rem 0.5rem 0.5rem 0;
  width: 40%;
  background-color: unset;
  font-size: 1rem;
  margin-left: -15px;
  color: #fff;
}
.personals .csl__prev-btn {
  color: #145aad;
}

/*アンケート回答お礼文章*/
.thanks_txt {
  background: #dbeaff;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: sans-serif;
  text-align: center;
  margin-top: 20px;
  padding: 10px 0;
  color: #145aad;
  line-height: 1.3;
}
.personals {
  background: #dbeaff;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  font-size: 3rem;
  font-weight: bold;
}
/*about*/
.about {
  background-color: #fff;
  padding: 12px;
}
/* coupon top */
.coupon-top {
  position: relative;
}
.coupon-top__text-1 {
  position: absolute;
  top: -1%;
  left: 0;
}
.coupon-top__text-2 {
  position: absolute;
  top: 12%;
  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: 20%;
  left: 0;
}
/*detail*/
.detail-text-1 {
  position: absolute;
  top: 55%;
  left: 0;
}
.detail-text_plan-img {
  position: absolute;
  top: 62%;
  left: 0;
}
/*btn*/
.btn {
  margin: 20px auto;
  width: 95%;
}
/*.access*/
.access {
  background-color: #f1f7ff;
  padding: 12px;
}
.access__head {
  position: relative;
}
.access__head-text {
  position: absolute;
  top: 46%;
  left: 0;
}
.caution {
  font-size: 1rem;
  color: #c0c0c0;
  text-align: right;
  letter-spacing: 0px;
}
/* アコーディオン */
.toggle {
  display: none;
}
.Label {
  padding: 0.5em;
  letter-spacing: -1px;
  display: block;
  color: #000;
  background: rgb(109,152,238);
  background: linear-gradient(45deg, rgba(109,152,238,1) 0%, rgba(133,194,237,1) 100%);
  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;
}

/*クリニック一覧*/
.area-item {
  width: 100%;
}
.area-item .item-header {
  background-color: #d7e8ff;
  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%;
}
.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主なリスク・副作用について*/
.line_dtl {
  background: #dbeaff;
  margin: 30px 0 0;
}
.line_dtl_ttl {
  padding-top: 20px;
  text-align: center;
  color: #333;
  font-size: 14px;
  font-weight: bold;
}
.line_dtl_txt {
  margin-top: 10px;
  padding: 0 20px 20px 20px;
  color: #333;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
}
.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;}



