/* -------------------------
オンライン診療LP用
------------------------- */

h1,h2,h3,h4,h5,h6{
	font-weight: 700;
	font-feature-settings: "palt";
}
@font-face {
	font-family: "Noto sans JP";
	src: url(../fonts/NotoSansJP-Regular.woff);
	font-weight: 400;
    font-style: normal;
}
@font-face {
	font-family: "Noto sans JP";
	src: url(../fonts/NotoSansJP-Bold.woff);
	font-weight: 700;
    font-style: normal;
}
.online_shinryo{
	font-size: 14px;
	line-height: 1.666;
}
.online_shinryo h2{
	font-size: 24px;
	margin-bottom: 40px;
	}
.online_shinryo h3{
	font-size: 18px;
	}
.online_shinryo h4{
	font-size: 18px;
	}
@media (min-width:920px){
	.online_shinryo{
		font-size: 16px;
		line-height: 1.6;
	}
	.online_shinryo h2{
		font-size: 36px;
		margin-bottom: 64px;
	}
	.online_shinryo h3{
		font-size: 24px;
	}
	.online_shinryo h4{
		font-size: 24px;
	}
}

/* -------------------------
header
------------------------- */
.offken_header{
	background-color: var(--primary-white);
	border-bottom: 2px solid var(--primary-green800);
	position: sticky;
	top: 0px;
	z-index: 10;
	height: 60px;
}
.offken_header .inner{
	padding: 0 10px;
}
.offken_header nav{
	height: 60px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
}
.logo{
	width: 101px;
	height: 30px;
	margin-right: auto;
}
.header_cta_btn_sp{
	font-size: 14px;
	font-weight: bold;
	color: var(--primary-white);
	background-color: var(--primary-green800);
	width: 140px;
	height: 38px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
}
.burger{
	width: 44px;
	height: 38px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
	border: 1px solid var(--primary-green800);
	background-color: var(--primary-white);
	margin-left: 16px;
	position: relative;
	cursor: pointer;
}
.burger::before,
.burger::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 24px;
	height: 24px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	opacity: 1;
	transition: opacity 0.3s ease;
	transform: translate(-50%, -50%);
}
.burger::before {
	background-image: url('../images/burger.svg');
	opacity: 1;
}
.burger.active::before {
	opacity: 0;
}
.burger::after {
	background-image: url('../images/close.svg');
	opacity: 0;
}
.burger.active::after {
	opacity: 1;
}
.menu {
	display: none;
	list-style: none;
	padding: 0px 12px 0px;
	margin: 0;
	background: #fff;
	position: absolute;
	top: 60px; /* 適宜調整 */
	right: 0px;
	z-index: 999;
	width: 100%;
	height: 0;
	transition: 200ms ease;
}
.burger.active + .menu {
	height: calc(100vh - 60px);
    padding: 16px 12px 80px;
  	overflow-y: auto;
  	-webkit-overflow-scrolling: touch; /* iOSスムーススクロール */
}
.menu > li{
	padding: 14px 4px 16px;
	border-bottom: 1px solid var(--primary-green200);
}
.menu > li > span,
.menu > li > a{
	font-size: 14px;
	font-weight: bold;
	color: var(--primary-black);
	position: relative;
	display: block;
}
.menu > li > a::after{
	content:'';
	position: absolute;
	width: 6px;
	height: 11px;
	background: url(../images/right.svg) 50% 50% no-repeat;
	background-size: contain;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.menu > li.bottom{
	padding: 8px 24px;
	border-bottom: none;
}
.menu > li.bottom > a::after{
	content:none;
}
.menu .tel_num{
	margin-top: 40px;
}
.menu > li.tel_num a{
	color: var(--primary-green800);
	display: block;
}
.tel_num a span{
	font-size: 29px;
	display: table;
}
.menu > li.btn_box a{
	color: var(--primary-white);
	font-size: 20px;
	width: 300px;
	height: 62px;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: background-color 200ms ease;
}
.menu_cta_btn_dl{
	background-color: var(--primary-yellow);
}
.menu_cta_btn_ct{
	background-color: var(--primary-green800);
}

.services {
	padding-top: 16px;
}
.services li{
	padding: 8px 0px 8px 24px;
}
.services li a{
	font-size: 14px;
	color: var(--primary-black);
	position: relative;
	display: block;
}
.services li a::after{
	content:'';
	position: absolute;
	width: 6px;
	height: 11px;
	background: url(../images/right.svg) 50% 50% no-repeat;
	background-size: contain;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.services li a .sp_none{
	display: none;
}
@media (min-width:1220px){
	.offken_header,
	.offken_header nav{
		height: 77px;
	}
	.offken_header .inner{
		max-width: 1280px;
		margin: 0 auto;
	}
	.logo{
		width: 145px;
		height: 43px;
	}
	.header_cta_btn_sp,
	.burger{
		display: none;
	}
	.menu,.burger.active + .menu{
		display: flex!important;
		justify-content: flex-end;
		align-items: center;
		padding: 0px;
		margin: 0;
		position: static;
		top: auto; /* 適宜調整 */
		right: auto;
		z-index: 1;
		width: fit-content;
		height: 60px;
		transition: none;
		background-color: transparent;
		gap: 10px;
		width: 1040px;
		min-height: auto;
	}
	.menu > li{
		padding: 0;
		border-bottom: none;
		margin: 0 auto;
	}
	.menu > li:first-child > span,
	.services li:not(:first-child){
		display: none;
	}
	.menu li a::after{
		content: none;
	}
	.services{
		padding: 0;
	}
	.services li:first-child{
		padding: 0;
	}
	.services li:first-child a{
		font-weight: bold;
	}
	.services li a .sp_none{
		display: inline;
	}
	.services li a .pc_none{
		display: none;
	}
	.menu > li.bottom,.menu .tel_num{
		padding: 0;
		margin: 0;
	}
	.menu > .tel_num a{
		font-size: 12px;
		line-height: 1;
	}
	.tel_num a span{
		font-size: 25px;
		line-height: 1;
	}
	.menu > li.btn_box a{
		font-size: 14px;
		width: 200px;
		height: 44px;
	}
	.menu_cta_btn_dl:hover{
		background-color: var(--primary-orange);
	}
	.menu_cta_btn_ct:hover{
		background-color: var(--primary-green900);
	}
}

/*--1280pxにするとビチビチに詰まってしまうので少し余裕を持たせてから最大固定--*/
@media (min-width:1320px){
	.offken_header .inner{
		width: 1280px;
		padding: 0;
	}
}
/* -------------------------
main visual
------------------------- */
.main_visual{
	background: #ddd;
	height: 100vh;
	height: 100dvh;
	max-height: 800px;/*--仮--*/
}
@media (min-width:768px){
}
@media (min-width:920px){
}
@media (min-width:1280px){
	.main_visual{
		max-height: 1000px;/*--仮--*/
	}
}

/* -------------------------
section共通
------------------------- */
.content{
	padding: 80px 0;
}
.content .inner{
	width: 100%;
	padding: 0 15px;
	margin: 0 auto;
}
@media (min-width:768px){
	.content{
		padding: 96px 0;
	}
	.content .inner{
		padding: 0 80px;
	}
}
@media (min-width:920px){
	.content{
		padding: 120px 0;
	}
	.content .inner{
		padding: 0 40px;
	}
}
@media (min-width:1280px){
	.content .inner{
		max-width: 1280px;
	}
}

/* -------------------------
about
------------------------- */
.about .text_box p:not(:last-child){
	margin-bottom: 23px;
}
@media (min-width:768px){
	.about h2 br:last-child{
		display: none;
	}
}
@media (min-width:920px){
	.about .flex_nowrap{
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: flex-start;
	}
	.about h2{
		word-break: keep-all;
	}
	.about h2 br:last-child{
		display: inline;
	}
	.about .text_box{
		margin-top: 144px;
		padding-left: 56px;
	}
}
@media (min-width:1280px){
	.about h2 br:last-child{
		display: none;
	}
	.about .text_box{
		margin-top: 85px;
		padding-left: 64px;
	}
}

/* -------------------------
features
------------------------- */
.features{
	background-color: var(--primary-green050);
}
.features_list{
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.features_list li{
	background-color: var(--primary-white);
	border-radius: 8px;
	padding: 40px 24px 32px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.features_list h3{
	order: 1;
	color: var(--primary-green800);
	position: relative;
	z-index: 1;
}
.features_list .num{
	position: absolute;
	width: 48px;
	height: 30px;
	top: -20px;
	left: 0px;
	z-index: -1;
	object-fit: contain;
	object-position: left bottom;
}
.features_list .text_box{
	order: 3;
}
.features_list .small{
	font-size: 10px;
	line-height: 18px;
	margin-top: 10px;
}
.features_list .small .flex_nowrap{
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	width: 100%;
}
.features_list .small .flex_nowrap i{
	display: none;
}
.features_list picture{
	order: 2;
}
.doctor{
	order: 4;
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 80px;
	position: relative;
}
.doctor::before{
	content: '';
	display: block;
	position: absolute;
	width: calc(100% + 16px);
	height: 26px;
	top: -64px;
	left: -8px;
	background: url(../images/stroke.svg) 50% 50% no-repeat;
	background-size: contain;
}
.doctor h4{
	order: 1;
	text-align: center;
	color: var(--primary-green800);
}
.doctor .text_box{
	order: 3;
}
.doctor .text_box .doc_name{
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
}
.doctor .text_box h5{
	font-size: 10px;
	font-weight: bold;
	margin-bottom: 10px;
}
.doctor picture{
	order: 2;
}
@media (min-width:768px){
}
@media (min-width:920px){
	.features_list{
		gap: 40px;
	}
	.features_list li {
		border-radius: 0px;
		padding: 40px 40px 40px;
		position: relative;
		min-height: 425px;
		justify-content: center;

	}
	.features_list .num{
		width: 80px;
		height: 56px;
		top: -40px;
		left: -8px;
	}
	.features_list h3{
		width: 54%;
	}
	.features_list .text_box{
		width: 50%;
		order: 2;
	}
	.features_list picture{
		width: 40%;
		max-width: 460px;
		order: 3;
		position: absolute;
		top: 50%;
		right: 40px;
		transform: translateY(-50%);
	}
	.features_list .features_list_03{
		min-height: 880px;
		flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
	}
	.features_list .features_list_03 h3{
		margin-top: 6%;
	}
	.features_list .features_list_03 > .text_box{
		margin-top: -6%;
	}
	.features_list .features_list_03 > picture{
		top: 0px;
		transform: translateY(20%);
	}
	.features_list_03 .doctor::before{
		background: url(../images/stroke_pc.svg) 0% 50% no-repeat;
		top: -32px;
		left: 0;
		width: 100%;
		height: 20px;
	}
	.doctor{
		margin: 0;
		align-self: flex-end;
		padding: 20px 32px;
	}
	.doctor h4{
		text-align: left;
	}
	.doctor .text_box{
		order: 3;
	}
	.doctor .text_box .doc_name{
		font-size: 24px;
		margin-bottom: 40px;
	}
	.doctor .text_box h5{
		font-size: 12px;
		margin-bottom: 18px;
	}
	.doctor picture img{
		border-radius: 16px;
	}
}
@media (min-width:1280px){
	.features_list .features_list_03 h3{
		margin-top: 10%;
	}
}


/* -------------------------
medical_subject
------------------------- */
.medical_subject{
	background-color: var(--primary-green200);
}
.subjects{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}
.subjects li{
	background: var(--primary-white);
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	gap: 4px;
	padding: 14px 16px;
	border-radius: 8px;
}
.subjects li picture{
	width: 45px;
}
.subjects li p{
	font-size: 14px;
	font-weight: bold;
	color: var(--primary-green800);
	text-align: center;
	width: calc(100% - 50px);
}
.medical_subject p {
	font-size: 10px;
    color: var(--primary-green800);
    margin-top: 10px;
}
@media (min-width:768px){
	.subjects li p br{
		display: none;
	}
}
@media (min-width:920px){
	.subjects{
		grid-template-columns: 1fr 1fr 1fr 1fr;
		gap: 20px;
	}
	.subjects li{
		flex-direction: column;
		justify-content: center;
		padding: 24px 8px;
		gap: 10px;
	}
	.subjects li picture{
		width: 100px;
	}
	.subjects li p{
		font-size: 18px;
		width: 100%;
	}
	.subjects li p br{
		display: inline;
	}
	.medical_subject p {
	font-size: 12px;
}
}
@media (min-width:1280px){
	.subjects li{
		padding: 32px 8px;
		gap: 16px;
	}
	.subjects li p br{
		display: none;
	}
}

/* -------------------------
usage
------------------------- */
.flow{
	margin-bottom: 80px;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	position: relative;
}
.flow li{
	padding-left: 80px;
	width: 100%;
	position: relative;
}
.flow li::before{
	content: attr(data-num);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 64px;
	height: 64px;
	border-radius: 100%;
	background-color: var(--primary-green800);
	color: var(--primary-white);
	font-size: 32px;
	font-weight: bold;
	line-height: 0;
	position: absolute;
	top: -16px;
	left: 0;
	z-index: 3;
}
.flow li:not(:last-child)::after{
	content: '';
	display: block;
	position: absolute;
	top: 12px;
	left: 29px;
	width: 0px;
	height: 100%;
	z-index: 1;
	border-left: 7px dotted var(--primary-green500);
}
.flow .heading{
	font-size: 18px;
	font-weight: bold;
	color: var(--primary-green800);
	margin-bottom: 16px;
}
.flow img{
	margin-bottom: 10px;
}
.movie_title{
	text-align: center;
}
.movie iframe{
	margin: 0 auto;
}
.cta_btn{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 300px;
	height: 60px;
	border-radius: 8px;
	background-color: var(--primary-green800);
	color: var(--primary-white);
	font-size: 16px;
	font-weight: bold;
	margin: 40px auto 0;
	position: relative;
}
.cta_btn::after{
	content: '';
	width: 16px;
	height: 14px;
	background: url(../images/icon_next_white.svg) 50% 50% no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}
@media (min-width:768px){
}
@media (min-width:920px){
	.flow{
		margin-bottom: 120px;
		flex-wrap: nowrap;
		gap: 36px;
	}
	.flow li{
		padding-left: 0px;
		width: auto;
	}
	.flow li::before{
		top: -18px;
		left: -24px;
	}
	.flow li:not(:last-child)::after{
		top: 12px;
		left: 0px;
		width: 100%;
		height: 0;
		border-top: 5px dotted var(--primary-green500);
		border-left: none;
	}
	.flow .heading{
		font-size: 18px;
		margin-bottom: 8px;
		padding-left: 48px;
		padding-right: 4px;
		display: inline-block;
		background-color: var(--primary-white);
		position: relative;
		z-index: 2;
	}
	.flow img{
		margin-bottom: 20px;
	}
	.cta_btn{
		width: 380px;
		height: 75px;
		font-size: 24px;
	}
	.cta_btn::after{
		width: 20px;
		height: 20px;
	}
	.cta_btn:hover{
		background-color: var(--primary-green900);
	}
}
@media (min-width:1280px){
	.flow .heading{
		font-size: 24px;
		margin-bottom: 8px;
		padding-left: 64px;
		padding-right: 16px;
	}
	.flow li::before{
		top: -8px;
        left: -16px;
	}
	.flow li:not(:last-child)::after{
		top: 17px;
	}
}

/* -------------------------
price
------------------------- */
.price table{
	border-collapse: collapse;
	width: 100%;
}
.price th,.price td{
	border: 1px solid var(--primary-gray400);
}
.header_th{
	background-color: var(--primary-green800);
	color: var(--primary-white);
	padding: 16px 4px;
	font-size: 12px;
}
.left_th{
	text-align: center;
	padding: 16px 2px;
	background-color: var(--primary-green050);
	font-size: 10px;
}
.left_th .dis_ib{
	display: inline-block;
	text-align: left;
}
.sp_vertical{
	writing-mode: vertical-rl;
	white-space: pre;
	font-size: 12px;
	line-height: 1.2;
}
.sp_vertical .sp_none{
	display: none;
}
.price td{
	font-size: 12px;
	text-align: center;
}

@media (min-width:768px){
	.price th,.price td{
		font-size: 14px;
	}
}
@media (min-width:920px){
	.left_th{
		text-align: left;
	}
	.left_th .dis_ib br{
		display: none;
	}
	.price th{
		font-size: 20px;
		padding: 24px 24px 24px 16px;
	}
	.price td{
		font-size: 16px;
		padding: 24px 24px;
	}
	.sp_vertical{
		writing-mode: horizontal-tb;
		text-align: left;
		font-size: 20px;
	}
	.sp_vertical .sp_none{
		display: inline;
	}
}
@media (min-width:1280px){
	.price th{
		font-size: 20px;
		padding: 24px 48px;
	}
	.price td{
		font-size: 16px;
		padding: 24px 48px;
	}
	.sp_vertical .wide_none{
		display: none;
	}
	.price td .wide_none{
		display: none;
	}
}

/* -------------------------
faq
------------------------- */
.faq{
	background-color: var(--primary-green100);
}
.faq_list{
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.faq_list li{
	background-color: var(--primary-white);
	padding: 24px 12px 24px 16px;
	border-radius: 8px;
}
details summary::marker,
:is(::-webkit-details-marker) {
	display: none;
}
details[open] summary::marker {
	display: none;
}
details summary{
	position: relative;
	padding-right: 16px;
	list-style: none;
}
details summary::before{
	content: '';
	background: url(../images/down.svg) 50% 50% no-repeat;
	background-size: contain;
	width: 16px;
	height: 9px;
	display: block;
	position: absolute;
	top: 50%;
	right: 0px;
	transform: translateY(-50%) rotate(0deg);
}
details[open] summary::before{
	transform: translateY(-50%) rotate(180deg);
}
summary h3{
	padding-left: 30px;
	font-size: 14px;
	position: relative;
}
summary h3::before{
	content: 'Q';
	font-size: 24px;
	font-weight: bold;
	line-height: 1;
	color: var(--primary-green800);
	position: absolute;
	top: 0;
	left: 0;
}
details .text_box{
	margin-top: 20px;
	padding: 20px 0px 0px 30px;
	position: relative;
	border-top: 2px solid var(--primary-green100);
}
details[open] .text_box{
	animation: fadeIn 0.5s ease forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0; /* 透明 */
    transform: translateY(-10px); /* 上から表示 */
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
details .text_box::before{
	content: 'A';
	font-size: 24px;
	font-weight: bold;
	line-height: 1;
	color: var(--primary-green600);
	position: absolute;
	top: 20px;
	left: 0;
}
details .text_box h4{
	font-size: 14px;
}
details .spacer{
	height: 1em;
}
@media (min-width:768px){
}
@media (min-width:920px){
	.faq_list li {
		padding: 40px 24px 40px 48px;
	}
	details summary{
		padding-right: 32px;
	}
	details summary::before{
		width: 20px;
		height: 11px;
	}
	summary h3{
		padding-left: 48px;
	}
	summary h3::before{
		top: 4px;
	}
	details .text_box{
		margin-top: 24px;
		padding: 24px 0px 0px 48px;
	}
}
@media (min-width:1280px){
}


/* -------------------------
news
------------------------- */
.news_list li{
	padding: 16px 0 20px;
	border-top: 1px solid var(--primary-gray600);
}
.news_list li:last-child{
	border-bottom: 1px solid var(--primary-gray600);
}
.news_list li a{
	display: flex;
	flex-direction: column;
	padding-right: 40px;
	position: relative;
}
.news_list li a::after{
	content: '';
	position: absolute;
	width: 6px;
	height: 11px;
	background: url(../images/right.svg) 50% 50% no-repeat;
	background-size: contain;
	top: calc(50% + 2px);
	right: 0;
	transform: translateY(-50%);
}
.news_list .date{
	font-weight: bold;
	color: var(--primary-green800);
}
.news_list .news_title{
	color: var(--primary-black);
}
@media (min-width:768px){
}
@media (min-width:920px){
	.news .flex_wrap{
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: flex-start;
	}
	.news_list{
		width: 70%;
		min-width: 600px;
	}
	.news_list li{
		padding: 32px 0;
	}
	.news_list li a{
		flex-direction: row;
		padding-left: 48px;
		gap: 48px;
	}
}
@media (min-width:1280px){
}


/* -------------------------
footer
------------------------- */
.offken_footer{
	background-color: var(--primary-green100);
	text-align: center;
	padding: 20px 0;
}
