@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}h1,h2,h3,h4{text-wrap:balance}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
******************/
html {
  /** 1rem = width 375px 時の 10px */
  font-size: clamp(5px, 2.666666666666667vw, 16px);
  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;
  white-space: inherit;
  line-height: 1.4;
}
img,
video {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
a {
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s;
}
@media (hover: hover) {
  a:hover {
    opacity: .6;
    transition: opacity .2s;
  }
}
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: none;
}

button {
  border: none;
  border-radius: .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: #f3dae3;
}
.page-header h1 {
  padding: .5rem 1rem;
  text-align: center;
  font-size: 1rem;
  font-weight: normal;
  text-align: center;
  color: #fff;
}
.page-footer {
  padding: 5rem 1rem 2rem 1rem;
  text-align: center;
  font-size: 1.2rem;
  color: #000;
}
.page-footer a {
  margin: 0 .5rem;
}
/* slide-box */
.slide-box__inner {
  width: calc(100% - (1.5rem*2));
  margin: 1.5rem auto 0 auto;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: .7rem;
}
.slide-box__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;
}
.slide-box__head-number {
  width: 12%;
}
.slide-box__btn-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.slide-box__btn-wrap.column-one .slide-box__select-btn {
  width: 100%;
}
.slide-box__btn-wrap.column-two .slide-box__select-btn {
  width: 48.5%;
}
.slide-box__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 .2s;
  font-weight: bold;
}
@media (hover: hover) {
  .slide-box__select-btn:hover {
    transform: translateY(6px);
    box-shadow: none;
    transition: all .2s;
  }
}
.slide-box__prev-btn {
  margin-top: .5rem;
  padding: .5rem 0;
  width: 42%;
  background-color: transparent;
  font-size: 1.2rem;
  text-align: left;
}


.slide-title {
  width: 90%;
  margin: 0 auto;
}
.slider-wrapper {
	padding: 0 40px;
  overflow-x: hidden;
}
.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: #000;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 11px;
}
.slide-items__textbox p {
  line-height: 1.4;
  font-size: 12px;
  letter-spacing: .5px !important;
}
.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:9px;
}
}

.csl_item_text {
  font-size: 12px;
  text-align: right;
}
.thanks_txt{
  font-size: 26px;
  font-weight: bold;
  font-family: sans-serif;
  text-align: center;
  margin: 30px 0 20px;
  color: #000;
  line-height: 1.3;
}
.sp {
  display: none;
}
@media screen and (max-width:540px) {
  .thanks_txt{
    font-size: 16px;
  }
  .sp {
    display: block;
  }
}

.about {
    background-color: #ffecf3;
    border-top: 1px solid #fadaea;
    padding: 12px;
}

.kome{
	font-size: 10px;
	vertical-align: top;
}
@media screen and (min-width:640px) {
	.kome{
		font-size: 13px;
		vertical-align: top;
	}
}

.line_count {
    padding: 10% 6% 0;
}

.img.btn {
    margin: 0 10px 1.5em;
}

/*div.access*/
.access {
  background-color: #fff;
  padding: 12px;
}

.last-content__inner {
  padding: 1.5rem
}
.get-coupon-btn {
  margin-top: -10px;
  padding-bottom: 20px;
  background-color: #d74278;
}
/* アコーディオン */
.toggle {
  display: none;
}
.Label {
  padding: .8em;
  letter-spacing: -1px;
  display: block;
  color: #fff;
  background: #e02860;
  font-size: 20px;
  text-align: center;
  color: #fff;
  font-weight: bold;
}
.accordion__content {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.5;
}

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

.accordion Label::before{
content:"";
width: 6px;
height: 6px;
border-top: 2px solid #fff;
border-right: 2px solid #fff;
-webkit-transform: rotate(45deg);
position: absolute;
top:calc( 50% - 3px );
right: 12px;
transform: rotate(135deg);
}
.Label,
.accordion__content {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transform: translateZ(0);
transition: all 0.3s;
text-align: left;
}
.accordion__content {
height: 0;
margin-bottom:10px;
padding:0 20px;
overflow: hidden;
}
.toggle:checked + .Label + .accordion__content {
height: auto;
padding:20px ;
transition: all .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: #fe89af;
  padding: 4%;
  display: flex;
  cursor: pointer;
  margin: 10px 10px 0;
  border-radius: 4px;
}
.area-item .item-header p {
  text-align: center;
  margin: 0 auto;
  font-size: 18px;
}
.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 .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;
  line-height: 1.3;
}
.toggle:checked + .item-header + .item-inner {
	height: auto;
	padding:20px ;
	transition: all .3s;
}


/*.line_dtl主なリスク・副作用について*/
.line_dtl{
	background:#f3dae3;
  margin: 30px 0 0;
}
.line_dtl_ttl{
	padding-top: 20px;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
}
.line_dtl_txt {
	margin-top: 10px;
	padding: 0 20px 20px 20px;
	text-align: center;
	font-size: 12px;
	line-height: 1.5;
}
.q_bottom {
  padding: 1rem 2rem;
}
.js-csl {
  opacity: 0;
}
.js-csl__item:not(:first-child) {
  height: 0;
  overflow-y: hidden;
}
