@charset "utf-8";

/* base
-------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section {
	display: block;
}
html {
	line-height: 1;
}
ul, ol {
	list-style-type: none;
}
table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}
q, blockquote {
	quotes: none;
}

q::before, q::after, blockquote::before, blockquote::after {
	content: "";
	content: none;
}
a img {
	border: none;
}
img {
	vertical-align: bottom;
	border: none;
	max-width: 100%;
	width: 100%;
	height: auto;
}
img[src*=".svg"] {
	width: 100%;
}
a {
	color: inherit;
	text-decoration: none;
}
*,
::before,
::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font: inherit;
	border: none;
	border-radius: 0;
	outline: none;
}
textarea {
	resize: vertical;
}
input[type='checkbox'],
input[type='radio'] {
	display: none;
}
input[type='submit'],
input[type='button'],
label,
button,
select {
	cursor: pointer;
}
select::-ms-expand {
	display: none;
}

/* --------------------------------------------------------
	フォントと背景
-------------------------------------------------------- */
html {
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body {
	font-family: source-han-sans-japanese, sans-serif;
	color: #1f2833;
	font-size: 1.4em;
	font-weight: 500;
	background: #fff;
	letter-spacing: 0.05em;
	line-height: 1.6;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}


/* --------------------------------------------------------
	リンク
-------------------------------------------------------- */
a {
	color: inherit;
	transition: .5s;
}


/* --------------------------------------------------------
	共通
-------------------------------------------------------- */
#lp_content {
	max-width: 750px;
	width: 100%;
	margin: auto;
}

/* flex系 */
.flex {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
}
.nowrap { flex-wrap: nowrap; }
.fd_c {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
}
.fd_rr {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	flex-direction: row-reverse;
}
.ai_fs {
	-webkit-box-align: start;
	align-items: flex-start;
}
.ai_fe {
	-webkit-box-align: end;
	align-items: flex-end;
}
.ai_c {
	-webkit-box-align: center;
	align-items: center;
}
.jc_fs {
	-webkit-box-pack: start;
	justify-content: flex-start;
}
.jc_fe {
	-webkit-box-pack: end;
	justify-content: flex-end;
}
.jc_c {
	-webkit-box-pack: center;
	justify-content: center;
}
.jc_sb {
	-webkit-box-pack: justify;
	justify-content: space-between;
}
.jc_sa {
	justify-content: space-around;
}
.order1 {
	-ms-flex-order: 1;
	-webkit-order: 1;
	order: 1;
}
.order2 {
	-ms-flex-order: 2;
	-webkit-order: 2;
	order: 2;
}


/* --------------------------------------------------------
	スクロールアニメーション
-------------------------------------------------------- */
.fadeIn {
	display: block;
	opacity: 0;
	transform: translateY(50px);
	transition: .5s;
}
.fadeIn.is_shown {
	opacity: 1;
	transform: translateY(0);
}

/* --------------------------------------------------------
	header
-------------------------------------------------------- */
header {
	height: 98px;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	justify-content: center;
	padding: 0 0 0 10px;
}
header .logo {
	max-width: 267px;
}
@media screen and (max-width: 768px) {
header {
	height: 60px;
}
header .logo {
	max-width: 195px;
}
}


/* --------------------------------------------------------
	footer
-------------------------------------------------------- */
footer {
	padding: 8% 9.6%;
	position: relative;
}
footer .page_top {
	width: 15%;
	position: absolute;
	top: -25%;
	right: 2.266%;
}
footer ul li {
	margin: 4% 15% 0 0;
}
footer ul li:nth-child(-n + 2) {
	margin-top: 0;
}
footer ul li:nth-child(1) {
	width: 14%;
}
footer ul li:nth-child(2) {
	width: 41.733%;
}
footer ul li:nth-child(3) {
	width: 34.8%;
}
footer ul li:nth-child(4) {
	width: 20.933%;
}


/* --------------------------------------------------------
	mv
-------------------------------------------------------- */
#mv {
	background: #fff;
	padding: 0 0 8%;
}
#mv .main > div {
	position: relative;
	z-index: 0;
}
#mv .main > div img {
    width: 100%;
}
#mv .header_logo {
    position: absolute;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 37%;
}
#mv .catch {
    width: 65%;
    position: absolute;
    top: 5.733%;
    left: 50%;
    transform: translateX(-50%);
}
#mv .mv_content {
	margin-top: -32%;
	padding-bottom: 5%;
}
#mv .mv_content .campaign {
	padding: 0 3%;
	width: 93%;
	margin: 0 auto 2%;
}
#mv .mv_content .campaign a {
	display: block;
}
#mv .mv_content .campaign a:hover {
	opacity: .5;
}
.notes {
    padding: 0 2%;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
    width: 100%;
}
#mv .notes {
  color: #b7b7b7;
}
#mv .benefit {
}

#mv .benefit.notes{
	text-align: center;
}
#mv .benefit {
	margin: 2% 0;
}
.mv_plan_dutas {
	position: relative;
	margin-bottom: 10%;
}
.mv_plan_dutas a {
	position: absolute;
	top: 56%;
	display: block;
	left: 50%;
	transform: translateX(-50%);
	width: 77%;
}
.mv_plan {
	background: #e3f9ff;
	margin: 3% 5%;
	padding: 4%;
}
#mv .main > div .mv_plan img {
	width: 100%;
	display: block;
	margin: 0 auto 5%;
}
@media screen and (max-width: 768px) {
	#mv {
		padding-bottom: 0;
	}
.notes {
    font-size: 2.8vw;
}
#mv .benefit.notes{
}
}
/* --------------------------------------------------------
	選ばれる理由
-------------------------------------------------------- */
#reason {
    padding: 5% 2.666% 10%;
    background-color: #efefef;
    border-radius: 70px 70px 0 0;
    margin-top: -11%;
    position: relative;
}
#reason h2 {
    width: 69.733%;
    margin: 10% auto 3%;
}
#reason h2 img {
width: 100%;
}
.reason_read {
margin: 8% 0;
}
.reason_read img {
width: 100%;
}
.reason_list li {
margin: 5% 0;
}

/* --------------------------------------------------------
	クーポンコード
-------------------------------------------------------- */
#coupon {
    background: #fdfaf5;
	padding-bottom: 5%;
}
.coupon_wrap {
display: flex;
    justify-content: space-evenly;
	padding: 0 2%;
	margin-top: 2%;
    margin-bottom: 5%;
}
.coupon_wrap p {
width: 80%;
height: auto;
}
.coupon_wrap img:hover {
opacity: 0.8;
}
.cancel_bn {
	padding: 0 4% 8%;
  }
.coupon_text {
font-size: 1.2rem;
padding: 0 2%;
letter-spacing: 0.02em;
}
.coupon_text strong {
font-size: 1.4rem;
}
.coupon-code {
color: #f26405;
}
/* --------------------------------------------------------
	お悩み
-------------------------------------------------------- */
#intro {
margin-top: -13%;
}
.worries01 {
background-color: #343836;
padding-bottom: 16%;
}
.worries01 p:nth-child(1) {
margin-top: -5%;
}
.worries01 p:nth-child(2) {
margin-top: -7%;
}
.worries01 p:nth-child(3) {
margin-top: -23%;
}
.worries01 p:nth-child(4) {
margin-top: -12%;
}
/* --------------------------------------------------------
	キャンペーン割引価格について
-------------------------------------------------------- */
#plan {
    background: url(../img/plan_bg.png) no-repeat center top;
    background-size: cover;
    padding: 18% 2.666% 5%;
}
#plan h2 {
margin: 6% auto;
    width: 51.733%;
}
#plan ul li {
  position: relative;
margin-bottom: 4.5%;
}
#plan ul li:nth-child(2) {
margin-bottom: 4.5%;
}
#plan ul li a {
  position: absolute;
  display: block;
  width: 90%;
  position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
}

/* --------------------------------------------------------
	治療事例
-------------------------------------------------------- */
#BA_contents {
    background: #06c0d0 url(../img/ba_bg.png) no-repeat center top;
    background-size: 100% auto;
    padding: 25% 2.666% 2%;
}
#BA_contents h2 {
    margin: 6% auto;
    width: 55.733%;
}
#BA_contents h2 img {
    width: 100%;
    height: auto;
}
#BA_contents ul li {
margin-bottom: 3.5%;
}
#BA_contents ul li p {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 100;
    padding: 2%;
}
/* --------------------------------------------------------
	AGA治療の処方薬について
-------------------------------------------------------- */
.drug01 {
	position: relative;
}
.drug01 p {
	width: 53.6%;
	position: absolute;
	top: 10%;
	left: 50%;
	transform: translateX(-50%);
}
.drug02 {
	background: #edfbff;
	padding: 18% 2.666% 18%;
}
.drug02 ul li {
	position: relative;
}
.drug02 .icon {
	width: 25.466%;
	position: absolute;
	top: -7.777%;
	left: -0.533%;
}
.drug02 .icon > span {
	transition-delay: .5s;
}
.drug02 ul li:nth-child(1) {
	margin: 0 0 15%;
}
.drug02 ul li:nth-child(1) .icon {
}

.drug_info_section {
	background-color: #bce6eb;
	padding: 3% 2.666% 10%;
}
.drug_info_section p {
	font-size: 28px;
	text-align: center;
	margin: 3% 0;
}


/* --------------------------------------------------------
	医師
-------------------------------------------------------- */
#doctor {
    padding: 0.2% 5% 15%;
	background: url("../img/doctor_bg.png")no-repeat center;
    background-color: #01afb9;
    background-size: cover;
width: 100%;
height: auto;
}
#doctor h2 {
    margin-top: -12%;
}
#doctor ul li {
margin-bottom: 4%;
}


/* --------------------------------------------------------
	こんな“お悩み”ありませんか？
-------------------------------------------------------- */
.intro01 {
	margin-top: -7%;
	position: relative;
}
.intro01 h2,
.intro01 p {
	position: absolute;
}
.intro01 h2 {
	width: 93%;
	top: 12.44%;
	left: 50%;
	transform: translateX(-50%);
}
.intro01 .img.img01,
.intro01 .img.img04 {
	left: 5.333%;
}
.intro01 .img.img02,
.intro01 .img.img03 {
	right: 5.333%;
}
.intro01 .img.img01 {
	width: 79.866%;
	top: 22.502%;
}
.intro01 .img.img02 {
	width: 84.533%;
	top: 44.163%;
}
.intro01 .img.img03 {
	width: 83.733%;
	top: 62.751%;
}
.intro01 .img.img04 {
	width: 87.066%;
	top: 80.387%;
}
.intro02 {
	position: relative;
	z-index: 2;
}
.intro02 h3 {
margin-top: -13%;
}
.intro03 {
	background: #a4dfff;
	padding: 0 0 10%;
	margin-top: -37%;
    position: relative;
    z-index: 1;
}
.intro03 .top {
	position: relative;
	z-index: 0;
}
.intro03 ul {
	width: 94.66668%;
	margin: -8% auto 0;
	position: relative;
	z-index: 1;
}
.intro03 ul li:not(:last-child) {
	margin: 0 0 4%;
}


/* --------------------------------------------------------
	AGAの原因とは？
-------------------------------------------------------- */
.cause01 {
	background: url(../img/cause01_bg.png) no-repeat center top;
	background-size: cover;
	padding: 16% 2.666% 23%;
  position: relative;
  z-index: 2;
}
.cause01 h2 {
  width: 80.6%;
  text-align: center;
  margin: 0 auto 10%;
}
.cause01 ul li:not(:last-child) {
	margin: 0 0 8%;
}
.cause02 {
  position: relative;
  margin-top: -16%;
  z-index: 0;
}
.cause02 h3 {
	width: 87.666%;
	margin: auto;
	position: absolute;
	top: 13.5%;
	left: 50%;
	transform: translateX(-50%);
}


/* --------------------------------------------------------
	AGAの治療薬と市販の育毛剤の違いとは？
-------------------------------------------------------- */
#comparison {
	background: linear-gradient(to bottom, #b7ddeb 0%, #b8deeb 100%);
  padding-bottom: 14%;
}
#comparison h3 {
  width: 94%;
    margin: -5% auto 0;
}

/* --------------------------------------------------------
	全額保証制度
-------------------------------------------------------- */
#security {
  background: repeating-linear-gradient(
    45deg, #393837, #393837 10px, #434241 10px, #434241 15px);
  position: relative;
  padding: 15% 2.666% 25%;
}
#security::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7%;
  background: linear-gradient(to bottom, rgba(6, 192, 208, 1) 0%, rgb(6 192 208 / 66%) 50%, transparent 100%);
  pointer-events: none;
}
#security h3 {
  margin-top: -56%;
  padding: 5.9%;
  font-size: 28px;
  line-height: 1.8;
  font-weight: 600;
}
#security p {
  color: #000;
  font-size: 19px;
  font-weight: 100;
  margin-top: -9%;
  padding: 5.9%;
  position: relative;
}
#security h3 .text_gold {
  color: #bc940a;
}
#security a {
  color: #01aeb9;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 8px 12px;
  display: inline-block;
  margin: -8px -12px;
}
#security h3 sup {
  font-size: 0.6em;
  vertical-align: super;
  top: -0.5em;
}
/* --------------------------------------------------------
	オンライン診療の流れ
-------------------------------------------------------- */
#flow {
	background: #ecfbff;
	padding: 14% 2.666%;
}
#flow h2 {
	text-align: center;
	margin: 0 auto 12%;
  width: 84.266%;
}
#flow ul li:not(:last-child) {
	margin: 0 0 4%;
}


/* --------------------------------------------------------
	オンライン予約
-------------------------------------------------------- */
.cta {
	position: relative;
}
.cta a {
    width: 83.066%;
    display: block;
    position: absolute;
    top: 70.7%;
    left: 50%;
    transform: translateX(-50%);
}
.cta a:hover {
	opacity: .5;
}
.cta .cta_aten {
    width: 84.066%;
    display: block;
    position: absolute;
    top: 82.9%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    color: #b7b7b7;
    line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .cta .cta_aten  {
    font-size: 2.2vw;
    letter-spacing: 0;
  }
}
/* --------------------------------------------------------
	配送について
-------------------------------------------------------- */
#other {
    width: 700px;
    margin: 0 auto;
	padding-top: 10%;
}
@media screen and (max-width: 768px) {
	#other {
		width: 92vw;
		margin: 0 auto;
	}
  }

#other .ttl01 {
    font-size: min(calc(32 / 750* 100vw), 3.2rem);
    font-weight: bold;
    color: #001825;
    line-height: 1;
    margin-bottom: 3%;
}

#other dd {
    font-size: min(calc(28 / 750* 100vw), 2rem);
    color: #001825;
    line-height: 1.5;
    margin-bottom: min(calc(50 / 750* 100vw), 5.0rem);
}
#other span.annotation{
    font-size: min(calc(28 / 750* 100vw), 1.5rem);
    color: #001825;
    line-height: 1.5;
    margin-bottom: min(calc(50 / 750* 100vw), 5.0rem);
}

#other .ttl02 {
    font-size: min(calc(28 / 750* 100vw), 2.8rem);
    font-weight: bold;
    color: #001825;
    line-height: 1;
	margin-bottom: 3%;
}

#other dd img {
    width: 100%;
    margin-bottom: min(calc(24 / 750* 100vw), 2.4rem);
}

/*calender*/
#calendar {
  background: #edfbff;
  padding: 9vw 0;
}
#calendar iframe {
  border-radius: 15px;
  border: 2px solid #05c1ba;
  width: 96% !important;
  margin: 0 2%;
}
#calendar .ttl h2, #calendar p.text {
  width: 68%;
  margin: 0 auto 5vw;
}
@media screen and (max-width: 768px) {
  #calendar {
    padding: 13vw 0;
  }
}
.floating {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  background: #ffffff;
  background: rgb(255 255 255 / 70%);
  padding: 1.5% 4% 1%;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  z-index: 1000;
}
.floating img {
  width: 100%;
  height: auto;
}

/* Note Section Styles */
#note {
  max-width: 750px;
  margin: 120px auto 40px auto;
  font-family: 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}

.note-section {
  margin-bottom: 0;
  border: 4px solid #3f5060;
  border-bottom: none;
  background-color: #fff;
}

/* 注意事項セクション */
.note-section:first-child {
  position: relative;
}

.note-section:first-child h2 {
  background-color: #3f5060;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  margin: -48px auto 0 auto;
  padding: 15px 100px;
  width: fit-content;
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

.note-section:first-child p {
  padding: 30px 20px 50px 20px;
  font-size: 29px;
  line-height: 1.8;
  text-align: center;
  margin: 0;
  background-color: #fff;
}

/* 未承認薬情報セクション */
.note-section:nth-child(2) {
  border-top: 2px solid #3f5060;
}

.note-section:nth-child(2) h2 {
  background-color: #e1e2eb;
  color: #000;
  font-size: 32px;
  font-weight: bold;
  margin: 0;
  padding: 20px;
  text-align: left;
  border-bottom: 2px solid #3f5060;
}

.note-section:nth-child(2) h3 {
  font-size: 30px;
  font-weight: bold;
  margin: 30px 0 0;
  padding: 0 30px;
  color: #333;
}

.note-section:nth-child(2) dl {
  padding: 0 30px 30px 30px;
  margin: 0;
}

.note-section:nth-child(2) dt {
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 8px;
  color: #333;
  font-size: 21px;
  background-color: #e1e2eb;
  padding: 8px 12px;
  display: inline-block;
}

.note-section:nth-child(2) dd {
  margin-left: 0;
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 21px;
  font-weight: 400;
  color: #333;
}

/* 副作用セクション */
.note-section:nth-child(3) {
  border-top: 2px solid #3f5060;
  border-bottom: 4px solid #3f5060;
}

.note-section:last-child h2 {
  background-color: #e1e2eb;
  color: #000;
  font-size: 32px;
  font-weight: bold;
  margin: 0;
  padding: 20px;
  text-align: left;
  border-bottom: 2px solid #3f5060;
}

.note-section:last-child dl {
  padding: 20px;
  margin: 0;
}

.note-section:last-child dt {
  font-size: 30px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #333;
}

.note-section:last-child dt:first-child {
  margin-top: 0;
}

.note-section:last-child dd {
  margin-left: 0;
  margin-bottom: 20px;
  line-height: 2;
  font-size: 21px;
  font-weight: 400;
  color: #333;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  #note {
    margin: 60px 10px 20px 10px;
    max-width: none;
  }
  
  /* 注意事項セクション（SP） */
  .note-section:first-child h2 {
    font-size: 6.5vw;
    margin: -8vw auto 0 auto;
    padding: 10px 14vw;
  }
  
  .note-section:first-child p {
    padding: 25px 15px 35px 15px;
    font-size: 4.3vw;
  }
  
  /* 未承認薬情報セクション（SP） */
  .note-section:nth-child(2) h2 {
    font-size: 5vw;
    padding: 15px;
  }
  
  .note-section:nth-child(2) h3 {
    font-size: 5vw;
    padding: 0 15px;
    margin: 20px 0 0;
  }
  
  .note-section:nth-child(2) dl {
    padding: 0 15px 20px 15px;
  }
  
  .note-section:nth-child(2) dt {
    font-size: 4.1vw;
    padding: 6px 10px;
  }
  
  .note-section:nth-child(2) dd {
    font-size: 3.8vw;
  }
  
  /* 副作用セクション（SP） */
  .note-section:last-child h2 {
    font-size: 5vw;
    padding: 15px;
  }
  
  .note-section:last-child dl {
    padding: 15px;
  }
  
  .note-section:last-child dt {
    font-size: 5vw;
  }
  
  .note-section:last-child dd {
    font-size: 4.1vw;
    line-height: 1.8;
  }
  
  #security h3 {
    font-size: 3.78vw;
  }
  
  #security p {
    font-size: 2.5vw;
  }
  
  .drug_info_section p {
    font-size: 3.7vw;
  }
  
  #reason {
    border-radius: 40px 40px 0 0;
    margin-top: -13%;
  }
}
