/** mobile common */
:root {
	--mobile-header-offset: 45px;
}

/* tablet 含む */
.mobile-only {
	display: none;
}

/* スマホのみ (550px以下) */
.sp-only {
	display: none;
}
.ranking-missing-sp,
.ranking-entries.ranking-entries-sp {
	display: none;
}

/* 切替 */
.collapsable {
	/* box-sizing: border-box; */
	position: relative;
}
.collapsable::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
}
.collapsable.opened::after {
	content: "-";
}

/** mobile header */
.header-mobile {
	display: flex;
	justify-content: space-between;
	padding: 5px 0;
	padding: 8px 0;
}
.header-mobile-logo {
	width: 130px;
	/* width: 100%; */
}

.header-part{/*add kitakaze 2022/02/17 ヘッダー部分フィードバック対応*/
	display: flex;
}

.btn-mobile-search {
	display: flex;
	align-items: center;
}

.btn-mobile-search img{
	width: 20px;
}

/** mobile menu */
.btn-mobile-menu {
	display: flex;
	align-items: center;
	padding: 5px 40px 5px 15px;
	background: url("img/icon-mobile-hambergmenu.png") center right 10px no-repeat;
	border-radius: 4px;
	text-decoration: none;
	font-size: 12px;
	color: white;
	background-color: var(--color-gme-blue);
}
.btn-mobile-menu.active {
	background-image: url("img/icon-mobile-hambergmenu-active.png");
}

/* main container */
#mobile-main-menu {
	z-index: 9;
	position: fixed;
	top: var(--mobile-header-offset);
	left: 0;
	right: 0;
	max-height: calc(100vh - 70px);
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	background: white;
	box-shadow: 0 2px 10px rgb(100 100 100 / 40%);

	opacity: 0;
	transform: scaleY(0);
	transform-origin: top center;
	/* transition: opacity ease 0.2s,
							transform ease 0.2s; */
}

p.method-resizeimage-sp img { display:none; } 	/* add okb 2022/04/06 */

#mobile-main-menu.active {
	opacity: 1;
	transform: scaleY(1);
}

@media (min-width: 801px) {
	#mobile-main-menu {
		display: none;
	}
}

/* menu main entries */
.container-mobilemenu {
	padding: 0 15px;
}

.mmenu-entries {
	display: flex;
	flex-direction: column;
}

.mmenu-entries>a,
.mobile-smenu-links>a {
	position: relative;
	display: flex;
	padding: 15px 15px;
	border-bottom: 1px solid #CCCCCC;
	color: black;
	text-decoration: none;
	font-size: 13px;
}
.mmenu-entries a._has-submenu::before {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	right: 15px;
	width: 14px;
	height: 2px;
	background-color: #666;
}
.mmenu-entries a._has-submenu::after {
	content: "";
	position: absolute;
	top: calc(50% - 7px);
	right: 21px;
	width: 2px;
	height: 14px;
	background-color: #666;
}
.mmenu-entries a._has-submenu.active::after {
	display: none;
}

/* sub menu entries */
.mobile-smenu:not(.active) {
	display: none;
}
.mobile-smenu {
	background-color: #E6E6E6;
	border-bottom: 1px solid #CCCCCC;
}

.mobile-smenu .btn-pc-menu-kit {
	font-size: 11px;
}
.mobile-smenu-buttons {
	display: flex;
	flex-flow: row wrap;
	gap: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
}
.mobile-smenu-buttons .btn-pc-menu-kit {
	flex: 0 1 calc(50% - 27px);
}
.mobile-smenu-buttons._bigbuttons .btn-pc-menu-kit::before {
	width: 26px;
	height: 28px;
	flex-shrink: 0;
}

.mobile-smenu-links a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--color-gme-blue);
	background-color: #E7F2FF;
}
.mobile-smenu-links a:first-child {
	border-top: 1px solid #CCCCCC;
}
.mobile-smenu-links a:last-child {
	border-bottom: none;
}
.mobile-smenu-links a::after {
	display: inline-block;
	content: "";
	width: 7px;
	height: 7px;
	margin-right: 5px;
	border-right: 1px solid var(--color-gme-blue);
	border-top: 1px solid var(--color-gme-blue);
	transform: rotate(45deg);
}

.mmenu-links-lr {
	padding: 20px 0;
	display: flex;
	flex-flow: row wrap;
	gap: 10px;
}
.mmenu-links-lr a {
	flex: 0 1 calc(50% - 10px);
	font-size: 11px;
	text-decoration: none;
	color: black;
}
.mmenu-links-lr a::after {
	display: inline-block;
	margin-left: 0.5em;
	content: "";
	width: 7px;
	height: 7px;
	border-right: 1px solid black;
	border-top: 1px solid black;
	transform: rotate(45deg);
}

.btn-mobile-mypage {
	display: block;
	padding: 15px 30px;
	border-radius: 5px;
	background: var(--color-gme-red);
	color: white;
	text-align: center;
	text-decoration: none;
}
.mobile-mypage-flex {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
.btn-mobile-mypage hr {
	border: none;
	height: 1px;
	background-color: white;
}
.btn-mobile-mypage small {
	display: block;
}

.mobile-menu-footer {
	display: flex;
	gap: 1px;
	justify-content: center;
	margin-top: 20px;
	background-color: #CCCCCC;
    border-bottom: 40px solid lightgrey;  /*add okabe 2022/04/18 */
}
.mobile-menu-footer a {
	flex: 0 1 calc(50% - 1px);
	padding: 20px 0;
	background-color: #E6E6E6;
	color: var(--color-gme-blue);
	font-size: 13px;
	text-decoration: none;
	text-align: center;
}

/** mobile footer */
.mobile-footer-links-header {
	display: flex;
	justify-content: space-between;
	padding: 10px;
	color: var(--color-gme-blue);
	background-color: #E7F2FF;
	border-top: 1px solid #808080;
}
.mobile-footer-links-header::after {
	content: "+";
	font-size: 25px;
	line-height: 25px;
}
.mobile-footer-links-header.open::after {
	content: "-";
}
.mobile-footer-links-flex {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	font-size: 12px;
}
.mobile-footer-links-flex:not(.open) {
	display: none;
}
.mobile-footer-links-flex>* {
	flex: 1 1 50%;
	display: flex;
	justify-content: space-between;
	padding: 10px;
	border-top: 1px solid #808080;
	align-items: center;
	box-sizing: border-box;
	background: #F2F2F2;
}
.mobile-footer-links-flex>*:nth-child(odd) {
	flex-basis: calc(50% - 1px);
	border-right: 1px solid #808080;
}
.mobile-footer-links-flex>a::after {
	display: inline-block;
	content: "";
	width: 7px;
	height: 7px;
	border-right: 1px solid #808080;
	border-top: 1px solid #808080;
	transform: rotate(45deg);
}

.footer-mobile-buttons {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	gap: 1px;
	margin-top: 10px;
	background: #aaa;
	z-index: 99999;
}
.footer-mobile-buttons>* {
	flex: 1 1 25%;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 8px 0;
	text-align: center;
	font-size: 11px;
	background: #D6EBFF;
	color: black;
}
.fmb-contact::before {
	display: block;
	content: "";
	margin-bottom: 10px;
	height: 21px;
	width: 25px;
	background: url("img/icons-mobile-footer-buttons.png") left center no-repeat;
}
.fmb-mypage::before {
	display: block;
	content: "";
	margin-bottom: 10px;
	height: 21px;
	width: 19px;
	background: url("img/icons-mobile-footer-buttons.png") left -26px center no-repeat;
}
.fmb-results::before {
	display: block;
	content: "";
	margin-bottom: 10px;
	height: 21px;
	width: 15px;
	background: url("img/icons-mobile-footer-buttons.png") left -46px center no-repeat;
}
.fmb-viewcart::before {
	display: block;
	content: "";
	margin-bottom: 10px;
	height: 21px;
	width: 23px;
	background: url("img/icons-mobile-footer-buttons.png") left -62px center no-repeat;
}

/** sp home support */
.home-support-sp {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.hssp-entry {
	display: flex;
	min-height: 94px;
	border: 1px solid var(--color-gme-blue);
	border-radius: 5px;
	text-decoration: none;
	color: #000;
}
.hssp-pic {
	width: 125px;
	flex-shrink: 0;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
.hssp-entry1 .hssp-pic {
	background: url("img/pic-support-1a.jpg") center center no-repeat;
	background-size: cover;
}
.hssp-entry2 .hssp-pic {
	background: url("img/pic-support-2a.jpg") center center no-repeat;
	background-size: cover;
}
.hssp-entry3 .hssp-pic {
	background: url("img/pic-support-3a.jpg") center center no-repeat;
	background-size: cover;
}
.hssp-entry4 .hssp-pic {
	background: url("img/pic-support-4a.jpg") center center no-repeat;
	background-size: cover;
}
.hssp-txt {
	display: flex;
	flex-direction: column;
	padding: 10px;
	gap: 10px;
}
.hssp-txt>* {
	margin: 0;
}
.hssp-txt h3 {
	padding-bottom: 7px;
	border-bottom: 1px solid var(--color-gme-blue);
	font-size: 16px;
}
.hssp-txt p {
	font-size: 13px;
	letter-spacing: 1px;
}

@media (max-width: 1045px) {
	/* 病気メニュー start 2022/01/20 */
	.disease-menu-onekit {
		flex: 0 1 calc(50% - 10px);
	}
	/* 病気メニュー end 2022/01/20 */
	/* 結果確認画面 start 2022/02/08 kitakaze */
	.ins-result-conf-cont1 {
    width: 52%;
    display: flex;
    flex-direction: column;
    gap: 50px;
	}
	.ins-result-conf-cont2 {
    width: 45%;
	}
	.home-contact-phones-result{
		display: block;
	}
	.ins-result-text1{
		font-size: 23px;
	}
	/* 結果確認画面 end   2022/02/08 kitakaze */
	/*add kitakaze start 2022/02/14 申し込みから検査結果確認までの流れ */
	.mailing-step1-detail2-flex{
		display: block;
	}
	.mailing-step1-detail2-flex >div{
		max-width: 100%;
	}
	.mailing-step1-detail-flex{
		display: block;
	}
	.mailing-step1-detail-flex >div{
		margin: 10px auto;
	}
	/*add end kitakaze  2022/02/14 申し込みから検査結果確認までの流れ */
}

/* add Start azet-toyama 2021-02-10 検査結果の判定についてページ */
@media only screen and (max-width: 1000px) {
	.inspection_result-guide_table-flex {
		width: 75%;
	}
	.inspection_result-guide_table2-flex {
		width: 75%;
	}
}
/* add End azet-toyama 2021-02-10 検査結果の判定についてページ */


@media (max-width: 900px) {
/* add Start azet-toyama 2021-02-09 男性 症状別ページ */
  .condition-men-frame-title {
    font-size: 18px;
  }
  .condition-men-frame-title-green {
    font-size: 18px;
  }
/* add end azet-toyama 2021-02-09 男性 症状別ページ */
/* add start azet-toyama 2021-02-09 女性 症状別ページ */
.condition-women-frame-title {
	font-size: 18px;
}
.condition-women-frame-title-green {
	font-size: 18px;
}
/* add end azet-toyama 2021-02-09 女性 症状別ページ */

}


/** tablets */
@media (max-width: 890px) {
	.home-contact {
		padding: 20px;
	}
	.home-contact-num {
		font-size: 20px;
	}
	/* .guide-menu-font-bold ,.guide-anker-txt-sp{
		font-size: 11px;
	} */
	.guide-cp-fonts{
		font-size: 11px;
	}

	/* kitakaze start 2022/02/07 胃がん */
	.illness-symptoms-period-top{
		width: 100%;
	}

	.illness-symptoms-course-title2{
		width: 70%;
	}
	.illness-symptoms-course-title2 img{
		width: 100%;
	}
	.illness-symptoms-course-title3{
		width: 90%;
	}
	.illness-symptoms-course-title3 img{
		width: 100%;
	}
	/* kitakaze end 2022/02/07 胃がん */

}

@media (max-width: 850px) {
	.illness-men-detail{
		font-size: 13px;
	}

	
	/* 病気詳細ページ 梅毒 start */
	.illness-types-methods-syphilis2-sp{
		display: block;
		font-size: 13px;
	}
	.illness-types-methods-syphilis2-sp-flex{
		display: flex;
		/* border: #0095f0 solid 2px; */
	}
	.illness-types-methods-syphilis2-sp-flex:not(:last-child){
		display: flex;
		/* border: #0095f0 solid 1px; */
		border-bottom: #0095f0 solid 1px;
	}
	/* .illness-types-methods-syphilis2-sp-flex:last-child{
		display: flex;
		border: #0095f0 solid 1px;
	} */

	.illness-types-methods-syphilis2-sp-flex>div:nth-child(1){
		padding: 0 5px;
		background-color: #cbebff;
		border-right: 1px solid;
		color: #0095f0;
		width: 30%;
		text-align: center;
	}
	.illness-types-methods-syphilis2-sp-flex>div:nth-child(2){
		padding: 0 5px;
		width: 70%;
	}
	.illness-types-methods-syphilis2-sp-flex2{
		display: flex;
	}
	.illness-types-methods-syphilis2-sp-flex2>div{
		padding: 0 10px;
	}
	.illness-types-methods-syphilis2-sp-flex2>div:nth-child(1){
		border-right: 1px solid #0095f0;
	}
	.illness-types-methods-syphilis2-sp-border{
		border: 1px solid #0095f0;
	}

	.illness-types-methods-syphilis2-sp-flex-title{
		display: flex;
		border: solid 1px #0095f0;
		font-weight: bold;
	}
	.illness-types-methods-syphilis2-sp-flex-title > div{
		padding: 10px 5px;
	}
	.illness-types-methods-syphilis2-sp-flex-title > div:nth-child(1){
		background-color: #0095f0;
		color: #f8f8f8;
		border-right: solid 1px #0095f0;
		width: 30%;
		text-align: center;
	}
	.illness-types-methods-syphilis2-sp-flex-title > div:nth-child(2){
		/* border-right: solid 1px #0095f0; */
		width: 70%;
	}

	.illness-types-methods-syphilis2{
		display: none;
	}

	/* 病気詳細ページ 梅毒 end */

	/* 支払いナビゲーションのボタン start */

	.page-nav-shiharai{
		/* flex-wrap: nowrap; */
		justify-content: space-between;
		justify-content: center;
		gap: 20px 50px;
	}

	.page-nav-shiharai a{
		padding: 17px 10px;
		/* width: 120px; */
	}
	/* 支払いナビゲーションのボタン end */

}

@media (max-width: 800px) {
	.pc-only {
		display: none !important;
	}
	.mobile-only {
		display: block;
	}

	body {
		padding-top: var(--mobile-header-offset);
		padding-bottom: 65px;
	}
	header {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		height: var(--mobile-header-offset);
	}

	header.not-shadow{
		box-shadow: unset;
	}

	.footer-address {
		border-top: 1px solid #808080;
		padding-bottom: 0;
	}
	.footer-address-flex nav {
		display: none;
	}
	.footer-address-flex {
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}
	.footer-copy {
		padding-top: 2em;
		padding-bottom: 45px;
	}
	.footer-copy .sep {
		display: block;
	}
	.copy-line {
		display: block;
		padding-top: 1em;
	}

	footer .support-ad {
		width: max-content;
		margin: 20px auto 40px auto;
		font-weight: bold;
		font-size: 16px;
	}
	.footer-links-brands {
		justify-content: center;
	}
	.mobile-only .footer-links-brands img {
		width: 48px;
	}

	.kit-list-diseases{
		justify-content: space-between;
	}

	/** HOME */

	/* PC menu OFF */
	.pc-menu {
		display: none;	
	}

	.header-home-right-catch {
		margin: 0 0 20px 0;
		font-size: 17pt;
	}
	.header-home .btn-round {
		flex-grow: 1;
		padding: 10px 0;
		font-size: 16px;
		text-align: center;
	}
	.header-home-flex {
		min-height: unset;
		padding: 30px 20px;
	}
	.header-home-right-catch span {
		display: block;
	}
	.mobile-home-header-buttons {
		display: flex;
		gap: 8px;
		margin: 0 0 40px 0;
		padding: 0 5px;
	}
	a.btn-mobile-home-header {
		flex: 1 1 30%;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		padding: 10px 5px;
		background: white;
		border: 2px solid transparent;
		border-radius: 4px;
		color: black;
		font-size: 12px;
		text-decoration: none;
		text-align: center;
		box-shadow: 2px 2px 5px rgba(100, 100, 100, 0.4);
	}
	a.btn-mobile-home-header img {
		display: block;
		align-self: center;
		margin-top: auto;
		margin-bottom: 10px;
	}
	a.btn-mobile-home-header:hover {
		opacity: 1;
		border: var(--border-default);
		border-width: 2px;
	}
	/** home info */
	.home-news {
		padding: var(--padding-default) 0;
		background: #F2F2F2;
	}
	.news-list-entry {
		flex-wrap: wrap;
		align-items: baseline;
		gap: 0;
		padding: 0;
		border-bottom: none;
	}
	.news-list-entry:not(:last-child) {
		margin-bottom: var(--padding-default);
	}

	.news-list-newflag {
		display: none;
	}
	.news-category {
		min-width: unset;
		width: 100px;
		margin-right: 0.5em;
		padding: 3px;
		font-size: 12px;
	}
	.news-list-entry:last-child {
		border-bottom: none;
	}
	.news-list-title {
		width: 100%;
		margin-top: 5px;
		font-size: 14px;
	}
	.home-news2 .news-list-entry .news-category {
		font-size: 12px;
	}
	/** Home services */
	.home-services {
		flex-direction: column;
		gap: var(--padding-default);
	}
	.home-services-buttons {
		justify-content: space-between;
		max-width: unset;
	}
	/** Home Ranking */
	.home-ranking.container-content {
		padding-bottom: 40px;
	}
	.ranking-entries {
		align-items: flex-start;
	}
	.ranking-entries-pc {
		display: none;
	}
	.ranking-entries.ranking-entries-sp {
		display: block;
	}
	.ranking-entries .slick-arrow {
		position: absolute;
		top: 50%;
		z-index: 2;
		appearance: none;
		width: 15px;
		height: 15px;
		background: transparent;
		border: none;
	}
	.ranking-entries .slick-arrow.slick-disabled {
		opacity: 0;
	}
	.ranking-entries .slick-arrow.slick-prev {
		left: 0;
		border-left: 2px solid gray;
		border-top: 2px solid gray;
		transform: rotate(-45deg);
	}
	.ranking-entries .slick-arrow.slick-next {
		right: 0;
		border-right: 2px solid gray;
		border-top: 2px solid gray;
		transform: rotate(45deg);
	}
	.ranking-entry {
		flex: 0 0 calc(100% - 30px);
		flex-direction: column;
		gap: 10px;
		padding: var(--padding-default);
		border: none;
	}
	.ranking-entry::after {
		display: none;
	}
	.ranking-crown {
		margin-bottom: 10px;
		display: flex;
		gap: 10px;
		flex-direction: row;
		align-items: baseline;
	}
	.ranking-pic,
	.ranking-pic-link {
		display: block;
		margin: auto auto 15px auto;
	}
	.ranking-title {
		flex-wrap: wrap;
	}
	.ranking-price-name {
		width: 100%;
	}
	.ranking-price-fee {
		margin-left: 0;
	}
	.ranking-desc {
		font-size: smaller;
		line-height: 1.4;
		margin: 7px 0;
	}
	.btn-ranking-seemore {
		display: none;
	}
	/** Home services */
	.home-services2 {
		margin-bottom: 30px;
	}
	/** Home contact */
	.home-contact {
		flex-direction: column;
		margin-bottom: 30px;
	}

	/** お客様の声 */
	.reviews-search-part.opened,
	.reviews-search-sp ul.opened {
		display: block;
	}
	.reviews-search-sp {
		display: block;
		margin-bottom: 20px;
		border: 1px solid #757575;
	}
	.reviews-search-sp h2 {
		background-color: #E6E6E6;
		color: var(--color-gme-blue);
	}
	.reviews-search-sp h3 {
		margin: 0;
		padding: 10px;
		border-bottom: 1px solid #E6E6E6;
		background-color: #F2F2F2;
	}
	.reviews-search-sp h3.opened {
		border: none;
	}
	.reviews-search-sp hr {
		display: none;
	}
	.reviews-search-sp ul {
		padding: 10px 0;
	}
	.voices-search-btnarea {
		padding: 10px;
		background: #F2F2F2;
	}
	.btn-voices-search {
		appearance: none;
		-webkit-appearance: none;
		display: block;
		margin: auto;
		padding: 15px;
		border: none;
		background: #E6E6E6;
		font-weight: bold;
		color: var(--color-gme-blue);
		width: 90%;	/* add 2022-03-04 */
	}

	/* 北風追加 ご購入ガイド  2022/01/14 start*/
	.section-order-guide .collapsable::after {
		display: block;
	}
	.order-collapsable-container {
		display: none;
	}
	.order-collapsable-container.opened {
		display: block;
	}
	.order-guide-row{
		display: block;
	}
	.guide-menu-qr{
		display: none;
	}
	.guide-disp-sp{
		display: block;
	}
	.guide-disp-pc{
		display: none;
	}
	.guide-cnt-horizontal-flexspb-sp{
		display: flex;
		gap: 10px;
	}
	.guide-sp-flex-spbt{
		justify-content: space-between;
	}
	.guide-cp-fonts{
		font-size: 13px;
	}
	.guide-menu-del-pay{
		color: red;
	}
	.guide-flexjs-reset{
		justify-content: unset;
	}
	.guide-flex-spar{
		justify-content: space-around;
	}
	.guide-menu-cnt-exp{
		padding: 0;
	}
	.paypay{
		width: 40%;
	}
	/* 北風追加 ご購入ガイド 2022/01/14 end*/

	/* kitakaze お客様アンケート start 2022/01/17 */
	.enquete-anxiety{
		display: block;
		/* text-align: center; */
	}
	.enquete-anxiety-graf{
		margin-bottom: 40px;
		text-align: center;
	}
	.enquete-graf-percentage li div:nth-child(2) {
    width: 20%;
	}
	.enquete-anxiety-detail-btn {
    display: flex;
		justify-content: unset;
    gap: 20px;
    padding-left: 20px;
	}
	/* kitakaze お客様アンケート end 2022/01/17 */

	.kit-list-disease {
		flex: 0 0 calc(50% - 13px);
	}
	.kit-list-tab-mobile-trigger {
		font-size: 12px;
	}
	.kit-list-tab-mobile-trigger.collapsable::after {
		content: "◀";
	}
	.kit-list-tab-mobile-trigger.collapsable.opened::after {
		content: "▼";
	}
	.kit-list-tab-mobile {
		display: none;
	}
	.kit-list-tab-mobile.opened {
		display: block;
	}

	/* ぺーア・定期のキットページ */
	.kit-single-info {
		flex-direction: column;
	}
	/* kitakaze start 2022/02/07 胃がん */
	.illness-symptoms-period-top{
		width: 100%;
	}

	.illness-symptoms-course-title2{
		width: 50%;
	}
	.illness-symptoms-course-title2 img{
		width: 100%;
	}
	.illness-symptoms-course-title3{
		width: 70%;
	}
	.illness-symptoms-course-title3 img{
		width: 100%;
	}
	/* kitakaze end 2022/02/07 胃がん */

/* add Start azet-toyama 2021-02-10 検査結果の判定についてページ */

	.inspection_result-guide_table-flex {
		width: 85%;
	}
	.inspection_result-guide_table2-flex {
		width: 85%;
	}
/* add End azet-toyama 2021-02-10 検査結果の判定についてページ */

	/* add start simon 2022/03/10 sitemap >>> */
	.page-slug-sitemap ul {
		margin-top: 20px;
	}

	.page-slug-sitemap .footer-links-flex {
		flex-direction: column;
	}
	.page-slug-sitemap .footer-links-flex>* {
		width: 300px;
		margin: auto;
	}

	.page-slug-sitemap .footer-links-brands {
		display: none;
	}

	.page-slug-sitemap .footer-links-big li::before {
		display: none;
	}
	/* add end simon 2022/03/10 sitemap <<< */
}

@media (max-width: 750px) {
	/* トップページにあるSNS */
	.home-sns {
		display: none;
	}

	.kit-byouki-title-sponly {
		display: block;
	}
	.kit-byouki h3 {
		position: relative;
		text-align: center;
		border-radius: 5px;
	}
	.kit-byouki h3 a {
		display: block;
		color: var(--color-gme-blue);
		text-decoration: none;
	}
	.kit-byouki h3 a::after {
		content: "";
		position: absolute;
		right: 15px;
		top: 50%;
		display: inline-block;
		width: 10px;
		height: 10px;
		border-right: 1px solid var(--color-gme-blue);
		border-top: 1px solid var(--color-gme-blue);
		transform: translateY(-50%) rotate(135deg);
	}
	.kit-byouki-accordeon-title.collapsable::after {
		content: "";
		display: inline-block;
		width: 10px;
		height: 10px;
		border-right: 1px solid var(--color-gme-blue);
		border-top: 1px solid var(--color-gme-blue);
		transform: translateY(-50%) rotate(135deg);
	}
	.kit-byouki-accordeon-title.collapsable.opened::after {
		transform: translateY(-50%) rotate(-45deg);
	}
	.kit-byouki-accordeon {
		display: none;
	}
	.kit-byouki-accordeon.opened {
		display: block;
	}

	.kit-pictures-buy-block {
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
	}
	.kit-pictures-buy-block>* {
		flex: 1 1 auto;
	}
	.kit-single-buy-packagetype {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.kit-single-buy-packagetype>a {
		display: flex;
		align-items: center;
		gap: 5px;
		padding: 3px 5px;
		background: #E6E6E6;
		color: #737373;
		font-size: 11px;
		text-decoration: none;
	}
	.kit-single-buy-desc {
		gap: 5px;
	}
	.kit-single-buy-pricecol {
		display: flex;
		flex-direction: column;
		gap: 5px;
		align-items: flex-start;
	}
	.kit-single-buy-pricelabel,
	.kit-single-buy-pricenum small {
		font-size: 11px;
	}
}

@media only screen and (max-width: 740px) {
	/* add Start azet-toyama 2021-02-16 検査案内ページ */
	.test_information-antibody-flex {
		display: block;
	}
	.test_information-antibody-flex .flexbox1 {
		margin-left: auto;
		margin-right: auto;
	}
	.test_information-antibody-flex .flexbox2 {
		display: none;
	}
	.test_information-antibody-flex .flexbox2-sp {
		display: block;
		margin: 40px 0;
		margin-left: auto;
		margin-right: auto;
		width: 160px;
		padding: 0 15px;
	}
	.test_information-antibody-flex .flexbox2-sp img {
		margin-left: calc(100% / 3);
	}
	.test_information-antibody-flex .flexbox3 {
		margin-left: auto;
		margin-right: auto;
	}
	.test_information-yield-flex {
		display: block;
		margin: 20px 0;
	}
	.test_information-yield-flex .flexbox1 {
		margin-left: auto;
		margin-right: auto;
	}
	.test_information-yield-flex .flexbox2 {
		display: none;
	}
	.test_information-yield-flex .flexbox2-sp {
		display: block;
		margin-left: auto;
		margin-right: auto;
		width: 160px;
		padding: 0 15px;
	}
	.test_information-yield-flex .flexbox2-sp img {
		margin-left: calc(100% / 3);
	}
	.test_information-yield-flex .flexbox3, .flexbox4, .flexbox5, .flexbox6, .flexbox7, .flexbox8 {
		margin: 0 auto 0 auto !important;
	}
	/* add end azet-toyama 2021-02-16 検査案内ページ */
}


@media (max-width: 720px) {
	.home-services-buttons {
		flex-wrap: wrap;
	}
	.btn-home-service {
		flex-basis: 40%;
	}

	.home-contact-lr {
		max-width: 350px;
		margin-left: auto;
		margin-right: auto;
		flex-direction: column;
		align-items: stretch;
	}

	/* 病気メニュー start 2022/01/20 */
	.disease-menu-onekit {
		flex: 1 1 auto;
	}
	/* 病気メニュー end 2022/01/20 */
	
	/* お支払 start 2022/01/24 */
	.shiharai-packing-flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
	}
	.shiharai-packing-flex div {
    width: 42%;
	}
	.shiharai-packing-line-none{
		display: none;
	}
	/* お支払 end 2022/01/24 */

	/* 結果確認画面 start 2022/02/08 */
	.ins-result-text-align-center{
		text-align: justify;
	}
	.ins-result-conf-flex {
    display: block;
	}
	.ins-result-conf-cont1 {
    width: 100%;
	}
	.ins-result-conf-cont2{
    width: 100%;
	}
	.ins-result-conf-login>img {
    display: none;
	}
	.ins-result-conf-login-btn {
    width: auto;
		padding-top: 20px;
		padding-bottom: 20px;
		flex-grow: 1;
		font-size: 16px;
	}
	.ins-result-conf-cot-flex2 {
    display: block;
	}
	.ins-result-conf-sample{
		width: 100%;
	}
	.ins-result-banner-flex{
		width: 100%;	
	}
	.ins-result-banner-flex {
    display: block;
	}
	.ins-result-banner-flex>a:nth-child(1){
		width: 100%;
		box-sizing: border-box;
		margin-bottom: 20px;
	}
	.ins-result-banner-flex>a:nth-child(2){
		width: 100%;
		box-sizing: border-box;
	}
	.ins-result-text1{
		font-size: 21px;
	}
	.ins-result-sp-mg{
		margin: 20px 0 0 0;
		text-align: justify;
		margin-bottom: 15px;	/*add 2022-03-09 */
	}
	.ins-result-conf-gray-wh {
		text-align: justify;
	}
	.result-disp-section-sub-title {
		padding: 10px;
		font-size: 4.5vw;
	}
	.result-disp-section-sub-title._smaller {
		font-size: 4.1vw;
	}
	.home-contact-num-result {
		/* text-align: center; */
		font-size: 29px;
	}
	/* 結果確認画面 end 2022/02/08 */
}

/* add Start azet-toyama 2022-03-08 共同開発についてページ */
@media only screen and (max-width: 700px) {

	/* add start azet-toyama 2022-03-08 共同開発についてページ */
	.research-top img {
		top: 0px;
	}
	.research-h1 {
		font-size: 1.6em;
	}
	.research-h1-text {
		font-size: 16px;
	}
	.research-sec1-flex {
		display: block;
		text-align: center;
	}
	.research-sec1-flex div {
		width: 100% !important;
		margin: 10px auto 10px;
	}
	.research-sec2-flex {
		display: block;
		text-align: center;
	}
	.research-sec2-flex div {
		width: 100% !important;
		margin: 10px auto 30px;
	}
	.research-sec3-flex {
		display: block;
		text-align: center;
	}
	.research-sec3-flex div {
		width: 100% !important;
		margin: 10px auto 30px;
	}
	/* add End azet-toyama 2022-03-08 共同開発についてページ */

    /* add Start azet-toyama 2022-03-08 採取器具の安全性についてページ */
    .blood-top img {
		top: 0px;
	}
	.blood-h1 {
		font-size: 1.6em;
	}
	.blood-sec1-flex {
		display: block;
		margin-bottom: 60px;
	}
	.blood-sec1-imgtext {
		text-align: justify;
	}
	.blood-sec1-flex div {
		  width: 100%;
		  text-align: center;
	}
	  .blood-sec1-flex div:last-child {
		margin-top: 25px;
	}
	  .blood-sec1-text {
		font-size: 17px;
	}
	  .blood-sec1-caution {
		width: fit-content;
	}
	.blood-sec2-flex {
		display: block;
	}
	.blood-sec2-flex div {
		margin-top: 30px;
		text-align: center;
	}
	.blood-sec2-flex img {
		max-width: 260px;
	}
	.blood-vertical-line {
		display: none;
	}
	.blood-sec3 {
		padding: 20px;
	}
	.blood-sec3-flex {
		display: block;
	}
	.blood-sec3-flex div {
		width: 100% !important;
	}
	.blood-sec3-bold {
		margin-bottom: 5px;
		font-size: 15px;
	}
    /* add end azet-toyama 2022-03-08 採取器具の安全性についてページ */



    /* add Start azet-toyama 2022-03-14 検査精度についてページ */
	.accuracy-top {
		display: none;
	}
	.accuracy-top-sp {
		display: block;
		position: relative;
	}
	.accuracy-top-sp img {
		width: 100%;
	}
	.accuracy-sec1-flex div {
		width: 100%;
		max-width: 480px;
		margin-left: auto;
		margin-right: auto;
	}
	.accuracy-sec2_1, .accuracy-sec2_2 {
		display: none;
	}
	.accuracy-sec2_1-sp {
		display: block;
		max-width: 480px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 30px;
	}
	.accuracy-sec2_2-sp {
		display: block;
		max-width: 480px;
		margin-left: auto;
		margin-right: auto;
	}
	.accuracy-sec2_1-sp img, .accuracy-sec2_2-sp img {
		width: 100%;
	}
	.accuracy-sec2_1-text-sp span:first-child, .accuracy-sec2_2-text-sp span:first-child {
		display: block;
		color: #43a1ea;
		font-size: 20px;
		font-weight: bold;
		margin: 10px 0;
	}
	.accuracy-sec2_1-text-sp span:last-child, .accuracy-sec2_2-text-sp span:last-child {
		font-size: 14px;
		letter-spacing: 0.8px;
		text-align: justify;
	}
	.accuracy-sec3-flex {
		display: block;
		max-width: 480px;
		margin-left: auto;
		margin-right: auto;
	}
	.accuracy-sec3-flex div:last-child {
		width: 100%;
	}
	.accuracy-sec3-bold {
		margin: 10px 0;
	}
	.accuracy-sec3-rep {
		display: none;
	}
	.accuracy-sec3-rep-sp {
		display: block;
		border: 2px solid #43a1ea;
		border-radius: 15px;
		margin-bottom: 60px;
		padding: 20px;
		font-size: 15px;
		letter-spacing: 0.8px;
		line-height: 1.6;
		text-align: justify;
	}
	.accuracy-h1-sp {
		color: #43a1ea;
		margin: 0 0 10px 0;
		font-size: 18px;
	}
	.accuracy-sec3 {
		margin-bottom: 30px;
	}
	.accuracy-sec3-rep-sp div {
		text-align: center;
		margin-top: 10px;
	}
	.accuracy-sec3-rep-sp img {
		width: 100%;
		max-width: 350px;
	}
	.accuracy-sec4-flex {
		display: block;
		max-width: 480px;
		margin-left: auto;
		margin-right: auto;
	}
	.accuracy-sec4-flex div:first-child {
		width: 100%;
		max-width: 220px;
		margin-left: auto;
		margin-right: auto;
	}
	.accuracy-sec4-title {
		font-weight: bold;
	}
	.accuracy-sec5 {
		line-height: initial;
	}
	.accuracy-sec5 img {
		float: unset;
		display: block;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
    /* add end azet-toyama 2022-03-14 検査精度についてページ */
	
	/* add start kitakaze 2022/03/10 支払いページのナビゲーションボタン */
	.page-nav-shiharai a{
		font-size: 14px;
	}
/* add end kitakaze 2022/03/10 支払いページのナビゲーションボタン */

/* add start azet-toyama 2022-03-10 申込から検査結果までのながれページ */
.mailing-top {
	height: 150px;
}
.mailing-top img {
	top: 0px;
}
.mailing-top-title span {
	margin-top: 15px;
}
.mailing-top-flex {
	overflow-x: scroll;
	-webkit-overflow-scrolling: touch;
	padding-left: 1px;
	position: relative;
}
.mailing-top-flex-step {
	min-width: 150px;
}
.mailing-top-slidemark-sp {
	display: inline;
	position: absolute;
	top: 40%;
	right: 1px;
	font-size: 36px;
}
.mailing-step-font {
	font-size: 14px;
	letter-spacing: 1.0px;
	line-height: 1.8;
}
.mailing-step-number {
	font-size: 18px;
}
.mailing-step-linkfield img {
	width: 100%;
}
.mailing-step-titles div {
	font-size: 18px;
	padding: 10px 15px;
}
.mailing-step1-number1-flex, .mailing-step1-number2-flex {
	display: block;
}
.mailing-step1-number1-flex div {
	width: 100%;
	margin: 10px 0;
}
.mailing-step1-number1-flex a{
	width: 100%;
}
.mailing-step2-phone {
	display: none;
}
.mailing-step2-phone-sp {
	display: unset;
}
.mailing-step1-dialinfo {
	margin: 10px 20px 10px 0;
}
.mailing-step1-dialinfo span {
	padding-left: 0;
}
.mailing-step1-faxpdf {
	width: calc(100% - 10px);
	margin: 15px 0;
	padding: 5px;
}
.mailing-step1-faxpdf-flex {
	margin: 10px 0;
}
.mailing-step1-faxpdf-link a {
	display: block;
	text-align: center;
}
.mailing-step1-pay {
	display: none;
}
.mailing-step1-pay-sp {
	display: block;
	margin: 10px 0;
}
.mailing-step1-pay-sp img {
	width: 100%;
}
.mailing-step1-point {
	display: block;
}
.mailing-step1-point div {
	width: calc(100% - 30px);
	margin-bottom: 15px;
	padding: 10px 15px;
}
.mailing-step2 {
	font-size: 13px;
}
.mailing-step2-flex {
	display: block;
}
.mailing-step2-flex div:first-child {
	width: 70% !important;
	margin-left: auto;
	margin-right: auto;
}
.mailing-step2-linkfield {
	margin-left: auto !important;
	margin-right: auto !important;
	max-width: 400px;
}
.mailing-step3-youtube {
	width: 100%;
}
.mailing-step3-banner {
	font-size: 14px;
	letter-spacing: 0.6px;
}
.mailing-step4-info {
	padding: 10px;
}
.mailing-step4-info-field {
	margin: 20px 0 !important;
	padding: 10px;
}
.mailing-step6-flex {
	display: block;
}
.mailing-step6-flex div {
	width: 100%;
	display: flex;
	text-align: start;
	vertical-align: middle;
}
.mailing-step6-flex span {
	margin-top: auto;
	margin-bottom: auto;
	font-size: 17px;
	width: 60%;
	padding-right: 15px;
}
.mailing-step6-img {
	display: none !important;
}
.mailing-step6-img-sp {
	display: flex !important;
}
.mailing-step6-img-sp img {
	max-width: 125px;
}
.mailing-dotline-vertical {
	display: none !important;
}
.mailing-dotline {
	display: unset;
	border-bottom: 2px dotted gray;
	width: 100% !important; 
	height: 0px;
	margin: 10px 0;
}	
/* add End azet-toyama 2022-03-10 申込から検査結果までのながれページ */

}

@media (max-width: 680px) {
	/* add Start azet-toyama 2021-02-14 検査精度についてページ */
	.accuracy-skillup-flex div p {
		font-size: 10px;
	}
	/* add end azet-toyama 2021-02-14 検査精度についてページ */

	/* add Start azet-toyama 2022-03-03 結果が陽性の方へページ */
	.attention-section1-flex {
		display: block;
	}
	.attention-section1-flex div:first-child {
		width: 100%;
	}
	.attention-section1-img {
		display: block;
		text-align: center;
	}
	/* add Start azet-toyama 2022-03-03 結果が陽性の方へページ */

}


@media (max-width: 650px) {
	.paging {
		justify-content: center;
	}
	.kit-section.kit-voices .page_prev,
	.kit-section.kit-voices .page_next {
		display: none;
	}
	.review-page-next {
		display: block;
		text-align: center;
	}
	.btn-paging-next {
		display: block;
	}

	.kit-title {
		font-size: 22px;
	}
	.kit-title-badge {
		font-size: 12px;
	}
	.kit-section-title {
		font-size: 16px;
	}

	/* 共有バナー（３つのパターン） */
	.page-banners-bottom-3 ._pc {
		display: none;
	}
	.page-banners-bottom-3 ._sp {
		display: block;
	}
	.page-banners-bottom-3 {
		flex-flow: column nowrap;
	}

	/** home kit search */
	.home-kits-search-buttons {
		margin: 20px 0 40px 0;
		flex-wrap: wrap;
		gap: var(--padding-default);
	}
	a.btn-home-kit-search {
		box-sizing: border-box;
		padding: 10px;
		flex: 1 0 calc(50% - 15px);
		font-size: 14px;
	}

	/** Home Accuracy */
	.home-accuracy {
		margin-bottom: 0;
		padding: 25px 0 30px 0;
	}
	.home-accuracy h2 {
		font-size: 20px;
	}
	.home-accuracy .container-content {
		max-width: unset;
	}
	.home-accuracy .sep {
		display: block;
	}
	.home-accuracy p {
		font-size: smaller;
	}
	.home-accuracy p:last-of-type {
		margin-bottom: 25px;
	}
	.home-accuracy .btn-gme-blue {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.accuracy-item {
		flex: 0 1 calc(50% - 15px);
	}
	.accuracy-item h3 {
		font-size: 70%;
		min-height: 3em;
	}
	.home-accuracy .btn-gme-blue {
		width: auto;
	}

	/** client support */
	.home-support-lr {
		max-width: 548px;
		margin-left: auto;
		margin-right: auto;
		flex-direction: column;
		gap: var(--padding-default);
	}
	/** home banners */
	.home-banners {
		flex-direction: column;
		margin-bottom: 30px;
	}

	.home-banners a{
		width: 100%;
	}
	/** キット詳細 */
	.scrollable-container-x {
		overflow-x: scroll;
		/* 50px = outerのpadding (15x2)+tdのpadding (10x2) */
		width: calc(100vw - 50px);
	}
	.scrollable-container-x table {
		width: 650px;
	}

	.kit-byouki-block {
		flex: 0 0 50%;
	}
	table.kit-package-diff {
		display: none;
	}
	.kit-package-diff-sp {
		display: block;
		font-size: 12px;
	}
	.kit-package-diff-sp h4 {
		margin: 5px 0;
		padding: 5px 0;
		border-bottom: 2px solid #BFBFBF;
		font-size: 14px;
	}
	.kit-package-diff-sp>p {
		margin: 0 0 5px 0;
	}
	.kit-package-diff-sp table {
		margin: 10px 0;
		border-collapse: collapse;
		border: 1px solid black;
	}
	.page-slug-kit-teiki .kit-package-diff-sp table,
	.page-slug-kit-pair .kit-package-diff-sp table {
		min-width: 1000px;
	}
	.kit-package-diff-sp th,
	.kit-package-diff-sp td {
		/* min-width: 90vw; */
		padding: 8px;
		vertical-align: top;
		text-align-last: left;
		border: 1px solid black;
		-webkit-text-size-adjust: none;	/* add 2022/03/04 */
	}
	.kit-package-diff-sp thead th {
		background-color: #F2F2F2;
		font-size: 14px;
		white-space: nowrap;
	}
	.kit-package-diff-sp tbody th {
		background-color: #E7F2FF;
		/* writing-mode: vertical-lr; */
		/* writing-mode: vertical-rl; */
	}

	.kit-details-list,
	.kit-details-list>tbody,
	.kit-details-list>tbody>tr,
	.kit-details-list>tbody>tr>th,
	.kit-details-list>tbody>tr>td {
		display: block;
		width: auto;
	}
	.kit-details-list>tbody>tr>th {
		position: relative;
	}
	.kit-details-list>tbody>tr>th::after {
		content: "+";
		position: absolute;
		top: calc(50% - 0.5em);
		right: 15px;
		color: #4D4D4D;
	}
	.kit-details-list>tbody>tr>th.opened::after {
		content: "-";
	}
	.kit-details-list>tbody>tr>td:not(.opened) {
		display: none;
	}

	/** お客様の声 */
	.kit-voice {
		position: relative;
		flex-direction: column;
		padding: 15px;
		border-radius: 5px;
		background: white;
		border: 1px solid #B3B3B3;
	}
	.kit-voice-side {
		flex: 1 1 auto;
		display: flex;
		flex-direction: row;
		gap: 15px;
		align-items: center;
	}
	.kit-voice-side img {
		height: 30px;
	}
	.kit-voice-gender {
		display: none;
	}
	.kit-voice-title {
		padding-right: 30px;
	}
	.kit-voice-main {
		padding: 0;
		font-size: 13px;
	}
	.btn-voice-kitbyouki {
		display: block;
		position: absolute;
		top: 15px;
		right: 15px;
	}
	.kit-voice-kitname {
		font-size: 14px;
	}
	.kit-voice-kitbyouki {
		display: none;
	}
	.kit-voice-kitbyouki.opened {
		display: block;
		position: absolute;
		width: 80vw;
		top: -5px;
		right: 0;
		box-sizing: border-box;
		padding: 15px;
		transform: translateY(-100%);
		border: 1px solid #0095F0;
		border-radius: 5px;
		background: white;
		box-shadow: 0 2px 10px rgba(100, 100, 100, 0.3);
	}
	.kit-voice-kitbyouki .kit-details-byouki-links {
		gap: 0;
	}
	.kit-voice-kitbyouki .kit-details-byouki-links a {
		padding: 0 1em 0 0;
		background: transparent;
	}
	.kit-voice-kitbyouki.opened::before {
		content: "検査項目";
		display: block;
		font-weight: bold;
	}
	.kit-voice-kitbyouki.opened::after {
		content: "";
		position: absolute;
		right: 15px;
		bottom: -9px;
		content: "";
		width: 15px;
		height: 15px;
		background: white;
		border-right: 1px solid #0095F0;
		border-bottom: 1px solid #0095F0;
		transform: rotate(45deg);
	}

	/** お勧めキット */
	.kit-recommend-list {
		overflow-x: scroll;
		flex-wrap: nowrap;
		width: calc(100vw - 50px);
	}
	.kit-recommend-block {
		flex: 0 0 auto;
		width: 170px;
	}
	.kit-recommend-badge {
		font-size: 12px;
	}
	.kit-recommend-title {
		font-size: 14px;
	}
	.kit-recommend-comment {
		font-size: 12px;
	}
	.enquete-ins-chance-reason{
		display: block;
	}
	/* kitakaze お客様アンケート start 2022/01/18 */
	.enquete-graf-percentage li div:nth-child(2) {
    width: 15%;
	}
	/* kitakaze お客様アンケート end 2022/01/18 */
	/*2022/03/28 start お客様アンケートFB修正 */
  .enquete-cont-chil{
		width: 100%;
  }
 /*2022/03/28 end お客様アンケートFB修正 */
	.hejimete-ins-content {
		padding: 30px 20px;
		border-radius: 0px;
	}
	.hajimete-ins-3col {
    display: block;
  }
	.hajimete-ins-3col-cnt {
    width: 100%;
		margin-bottom: 40px;
	}
	.hajimete-2col {
		margin-left: auto;
		margin-right: auto;
		max-width: 480px;
		flex-direction: column;
		/* align-items: center; */
	}

	ul.disease-list {
		gap: 2vw;
	}
	.disease-list li {
		flex: 0 0 calc(50% - 2vw);
		margin-top: 2vw;
		padding: 1vw;
		font-size: 14px;
	}
	/* お支払 start 2022/01/24 */
	.shiharai-each-packing-flex div:nth-child(1) {
    padding: 0px;
	}
	.shiharai-each-packing-flex div:nth-child(1){
		width: 100%;
	}
	.shiharai-each-packing-flex {
		display: block;
	}
	.shiharai-each-packing-flex div:nth-child(2) {
    width: 80%;
		margin: 0 auto;
	}
	/* お支払 end 2022/01/24 */

	/* ▼▼▼▼▼ モーダル表示＋お届けポップアップ対応 ▼▼▼▼▼ */
	.modal-delivery * {
		font-size: smaller;
	}
	/* ▲▲▲▲▲ モーダル表示＋お届けポップアップ対応 ▲▲▲▲▲ */

	/* ▼▼▼▼▼ FAQ ▼▼▼▼▼ */
	.faq-categories {
		gap: 10px;
	}
	.btn-faq-category-main {
		flex-basis: calc(50% - 10px);
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 8px;
		font-size: 12px;
	}
	/* ▲▲▲▲▲ FAQ ▲▲▲▲▲ */

	/* ▼▼▼▼▼ お問い合わせ ▼▼▼▼▼ */
	.contact-top {
		padding-right: 33vw;
	}
	.contact-info-lr {
		flex-direction: column;
	}
	.contact-attention {
    padding: 140px 20px 20px 20px;
		background-position: center top 10px;
	}
	/* ▲▲▲▲▲ お問い合わせ ▲▲▲▲▲ */

	/*  start キット一覧 */
	.kit-list-results li {
		grid-template-columns: auto auto 35%;
		grid-template-rows: auto auto auto;
	}
	.kit-list-title {
		grid-row: 1;
		grid-column: 1 / -1;
	}
	.kit-list-pic {
		grid-row: 2;
		grid-column: 3;
		justify-self: center;
	}

	.kit-list-comment {
		grid-row: 2;
		grid-column: 1 / span 2;
	}

	.kit-list-price {
		grid-row: 3;
		grid-column: 1 / -1;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.kit-list-results .kit-details-byouki-links {
		/*display: none;*/ /* del 2022-03-07 */
		/* grid-row: 4;
		grid-column: 1 / -1; */
		/* ↓ へ修正 2022-03-07 */
		grid-row: 4;
		grid-column: 1 / -1;
	}
	/* end キット一覧 */

	/* kitakaze start 2022/02/07 胃がん */
	.illness-symptoms-period-top{
		width: 100%;
	}

	.illness-symptoms-course-title2{
		width: 100%;
	}
	.illness-symptoms-course-title2 img{
		width: 70%;
	}
	.illness-symptoms-course-title3{
		width: 90%;
	}
	.illness-symptoms-course-title3 img{
		width: 100%;
	}
	/* kitakaze end 2022/02/07 胃がん */


	/*add start kitakaze 2022/03/11 初めての方へ FB対応 */

	.hajimete-cnt-top{
		margin-bottom: 20px;
	}

	.hajimete-cnt-top div:nth-child(2){
		text-align: start;
		line-height: 1.5;
	}
	

	.hajimete-pc-image{
		display: none;
	 }
	 .hajimete-sp-image{
		display: block;
		width: 100%;
	 }
	/*add end kitakaze 2022/03/11 初めての方へ FB対応*/

	/*add start kitakaze 2022/03/15 お客様の声 FB*/
	.enquete-graf img{
		width: 100%;
		height: unset;
	}
	/*add end kitakaze 2022/03/15 お客様の声 FB*/
	
}


@media only screen and (max-width: 640px) {
	/* add Start azet-toyama 2021-02-10 検査結果の判定についてページ */
	.inspection_result-intro {
		text-align: justify;
	}
	.inspection_result-guide_table-flex {
		width: 100%;
	}
	.inspection_result-guide_table2-flex {
		width: 100%;
	}
	.inspection_result-flow-step {
		font-size: 18px;
	}
	.inspection_result-guide_table-flex div,
	.inspection_result-guide_table2-flex div {
		padding: 10px;
	}
	/* add End azet-toyama 2021-02-10 検査結果の判定についてページ */

	/* add Start azet-toyama 2021-02-15 採血器具の安全性についてページ */
	.blood_collection-point-flex {
		display: block;
	}
	.blood_collection-point-left {
		width: 100%;
		margin-bottom: 20px;
	}
	.blood_collection-structure div {
		font-size: 13px;
	}
	/* add End azet-toyama 2021-02-15 採血器具の安全性についてページ */

	.test_information-top-flex {
		display: inline-block;
		width: 100%;
	}
	.test_information-top-flex .flex2 {
		background: #F7F7F7;
		border-radius: 5px;
		width: auto;
		margin-top: 0;
		padding: 10px;
		font-size: 14px;
	}
	.test_information-title-blue {
		margin: 15px 0 15px 0;
	}
	.test_information-reliability-flex {
		display: block;
	}
	.test_information-reliability-flex div {
		width: calc(100% - 1px) !important;
	}
	.test_information-reliability-flex-child1 div:last-child {
		width: calc(100% - 1px) !important;
		border-right: 1px solid #DDD;
		border-bottom: 0;
	}
	.test_information-reliability-flex-child2 div:last-child {
		width: calc(100% - 1px) !important;
		border-right: 1px solid #DDD;
		border-left: 1px solid #DDD;
		border-bottom: 0;
	}
	.test_information-reliability-flex-child3 div:last-child {
		width: calc(100% - 1px) !important;
		border-right: 1px solid #DDD;
		border-left: 1px solid #DDD;
	}
	.test_information-chlamydia-img {
		display: none;
	}
	.test_information-chlamydia-img-sp {
		display: block;
		text-align: center;
	}
	/* add end azet-toyama 2021-02-16 検査案内ページ */

	/* add start azet-toyama 2021-02-21 検査申込書ページ */
	.fill_method-top-text2 {
		display: none;
	}
	.fill_method-form {
		display: none;
	}
	.fill_method-form-sp {
		display: block;
		margin: 10px 0;
	}
	.fill_method-form-sp img {
		width: 90%;
		margin-right: 30px;
	}
	.fill_method-form-sp div {
		margin-left: 30px;
		margin-bottom: 10px;
		font-size: 14px;
	}
	.fill_method-form-sp img:nth-child(1) {
		width: 100%;
		margin: 0 0 10px 0 !important;
	}
	.fill_method-form-flex {
		display: none;
	}
	.fill_method-form-oldimg {
		margin: auto;
	}
	.fill_method-confirm-flex {
		display: block;
		text-align: center;
	}
	.fill_method-confirm-flex img {
		margin: 10px 0;
	}
	/* add End azet-toyama 2021-02-21 検査申込書ページ */

	/* add start kitakaze 2022/03/04 検査規約画面 レスポンシブ*/
	.table-inspection-fromx .tr .td-add-atr {
		border-left: 1px solid silver;
	}
		/* add end kitakaze 2022/03/04 検査規約画面 レスポンシブ*/

}


@media (max-width: 600px) {
/* add End azet-toyama 2021-02-09 男性 症状別ページ */
  .condition-men-frame-list {
    flex-wrap: wrap;
  }
  .condition-men-frame-list div {
    width: 100% !important;
  }
  .condition-men-frame-list div:nth-child(2) {
    width: 100% !important;
    padding-left: 15px;
  }
  .condition-men-frame-list div:last-child {
    text-align: right;
		height: unset;
  }
/* add End azet-toyama 2021-02-09 男性 症状別ページ */
/* add start azet-toyama 2021-02-09 女性 症状別ページ */
	.condition-women-frame-list {
		flex-wrap: wrap;
	}
	.condition-women-frame-list div {
		width: 100% !important;
	}
	.condition-women-frame-list div:nth-child(2) {
		width: 100% !important;
		padding-left: 15px;
	}
	.condition-women-frame-list div:last-child {
		text-align: right;
		height: unset;
	}
/* add End azet-toyama 2021-02-09 女性 症状別ページ */

	.kit-single-title {
		font-size: 16px;
	}


	.gme5-flex{
		display: flex;
		gap: 10px;
		flex-direction: column;
	}

	.gme5-flex div:nth-child(1){
	 text-align: center;
	}
	.gme5-flex div:nth-child(2){
		width: 100%;
	}

	.gme5-banner-cnt{
		flex-direction: column;
		margin: 40px 0;
		gap: 40px;
	}

	.gme5-flex div:nth-child(1) img{
		width: 80%;
	}

	.gme5-banner-cnt a{
		width: 100%;
	}
	.gme5-align-center{
		text-align: unset;
	}
}



@media (max-width: 580px) {
/* add start azet-toyama 2021-02-14 検査精度についてページ */
	.accuracy-top-flex {
		display: block;
	}
	.accuracy-top-flex div:last-child {
		text-align: center;
		margin: 0;
	}
	.accuracy-facility-flex {
		display: block;
	}
	.accuracy-facility-flex div:nth-child(1) {
		text-align: center;
	}
	.accuracy-facility-flex-text {
		padding: 0;
	}
	.accuracy-facility-flex-text div {
		text-align: left !important;
	}
	.accuracy-skillup-flex {
		display: none;
	}
	.accuracy-skillup-sp {
		display: inline-block;
		margin-bottom: 20px;
	}
	.accuracy-skillup-sp div p {
		margin: 0;
	}
	.accuracy-skillup-title-sp1 {
		padding: 30px 0 20px 20px;
		background-color: #efc7c7;
		color: #FFF;
		font-size: 20px;
		font-weight: bold;
	}
	.accuracy-skillup-title-sp2 {
		padding: 30px 0 20px 20px;
		background-color: #a4dfc1;
		color: #FFF;
		font-size: 20px;
		font-weight: bold;
	}
	.accuracy-skillup-title-sp3 {
		padding: 30px 0 20px 20px;
		background-color: #a8cde8;
		color: #FFF;
		font-size: 20px;
		font-weight: bold;
	}
	.accuracy-skillup-text-sp1 {
		padding: 10px;
		background-color: #efc7c7;
	}
	.accuracy-skillup-text-sp1 p {
		background-color: #FFF;
		padding: 5px;
		font-size: 13px;
	}
	.accuracy-skillup-text-sp2 {
		padding: 10px;
		background-color: #a4dfc1;
	}
	.accuracy-skillup-text-sp2 p {
		background-color: #FFF;
		padding: 5px;
		font-size: 13px;
	}
	.accuracy-skillup-text-sp3 {
		padding: 10px;
		background-color: #a8cde8;
	}
	.accuracy-skillup-text-sp3 p {
		background-color: #FFF;
		padding: 5px;
		font-size: 13px;
	}
	.accuracy-check-flex {
		display: none;
	}
	.accuracy-check-flex-sp {
		display: flex;
		justify-content: center;
		gap: 15px;
		margin: 20px 0;
	}
	.accuracy-check-flex-sp div p {
		background: #EBEBEB;
		border-radius: 3px;
		font-size: 13px;
		text-align: center;
		padding: 5px 0;
	}
	
	.accuracy-check-sp {
		display: block;
	}
	.accuracy-check-sp div:last-child img {
		width: 100%;
	}
	.accuracy-check-flex div p {
		background: #EBEBEB;
		border-radius: 3px;
		font-size: 13px;
		text-align: center;
		padding: 5px 0;
	}
	.accuracy-labo-flex {
		display: block;
		margin: 20px 0;
	}
	.accuracy-labo-flex div {
		width: 100%;
	}
	.accuracy-certificate-flex {
		display: block;
	}
	.accuracy-certificate-flex div:nth-child(1) {
		text-align: center;
	}
	/* add End azet-toyama 2021-02-14 検査精度についてページ */
}


@media (max-width: 550px) {
	.sp-hidden {
		display: none !important;
	}

	.not-sp {
		display: none;
	}
	.sp-only {
		display: block;
	}
	img.sp-only {
		width: 100%;
	}

	.btn-gme-blue {
		width: unset;
		font-size: smaller;
	}

	/** home ranking */
	.home-ranking .ranking-tabs-flex {
		margin-bottom: var(--padding-default);
		gap: var(--padding-default);
	}
	.btn-home-ranking-tab {
		padding: 10px;
		font-size: 14px;
	}

	/** home contact */
	.home-contact h2 {
		font-size: 14px;
	}
	.home-contact-lr {
		/* max-width: 250px; */ /*del kitakaze 初めての方へページフィードバック 2022/02/16*/
		max-width: unset; /* add kitakaze 初めての方へページフィードバック 2022/02/16 */
		margin-left: auto;
		margin-right: auto;
		gap: 20px;
	}
	.home-contact-phones {
		flex-direction: column-reverse;
		gap: 0px;
	}
	.contact-freedial {
		display: flex;
	}
	.contact-freedial .home-contact-header {
		padding: 0 1em 0 0;
		font-weight: bold;
		background: none;
	}
	.contact-mobile .home-contact-num {
		text-align: center;
		font-size: 28px;
	}
	.contact-freedial,
	.contact-freedial .home-contact-num {
		font-size: 14px;
	}
	.home-contact-hours {
		flex-wrap: wrap;
	}
	.home-contact-hours span {
		flex-grow: 0;
		padding: 0 10px;
	}
	.home-contact-hours b {
		flex-grow: 1;
		text-align: left;
	}
	.home-contact-hours em {
		width: 100%;
	}
	.btn-home-contact {
		font-size: smaller;
		align-self: stretch;
	}
	.btn-home-contact  img {
		height: 16px;
	}
	/* 初めての方へページ start 2022/01/20 */
	.hajimete-top {
		margin-left: -15px;
		margin-right: -15px;
		padding-left: 30px;
		padding-right: 30px;
	}
	/* TOP SP画像 */
	.hajimete-top-rl img:nth-child(2){
		display: block;
		width: 100%;
	}
	.hajimete-top-ab h2{
		font-size: 20px;
	}
	/* test */
	.hajimete-top-sp-ab {
		position: absolute;
		top: 20px;
		top: 50%;
		left: 5%;
		transform: translate(0%, -50%);
		-webkit-transform: translate(0%, -50%);
		-ms-transform: translate(0%, -50%);
	}
	.hajimete-top-sp-ab div{
		font-size: 14px;
		letter-spacing :1.5px;
	}
	.hajimete-top-sp-ab h2{
		font-size: 20px;
		letter-spacing :3px;
	}
	/* test end */
	.hajimete-step-flexbox {
		display: block;
		background: rgb(242,242,242);
	}
	/* .hajimete-step-flexbox div img{
		height: 160px;
	} */
	.hajimete-step-flexbox div:nth-child(1) {
		width: 100%;
	}
	.hajimete-flow-detail {
		margin: 25px 0 25px 15px;
	}
	.hajimete-about-lead {
		text-align: unset;
		margin: 0px;
		margin-bottom: 20px;
	}
	.hajimete-mgb-120 {
    margin-bottom: 120px;
	}
	.hajimete-step-flexbox div:nth-child(2) {
		width: 100%;
		box-sizing: border-box;
		padding: 20px 5px;
		letter-spacing :1.5px;
	}
	.hajimete-flow-bubble {
		width: 100%;
	}
	.hajimete-timing {
		display: block;
	}
	.hajimete-timing a {
		width: 100%;
		margin: 10px 0;
	}
	.hajimete-timing a:nth-child(3){
		margin-bottom: 60px;
	}

	.hajimete-yousei{
		width: 100%;
		/* margin-bottom: 40px; */
	}
	.hajimete-display-pc img{
		display: none;
	}
	.hajimete-display-sp img{
		display: block;
	}
	.hajimete-step6{
		margin: 20px 0;
		font-size: 21px;
	}
	.hejimete-ins-title{
		font-size: 18px;
	}
	/* 初めての方へページ end 2022/01/20 */

	/* method fix simon start 2022/01/24 */
	.method-movie {
		flex-direction: column;
	}
	/* method fix simon end 2022/01/24 */
	/* 配送・お支払いについて start 2022/01/21 */
	.shiharai-top-sp-ab {
		position: absolute;
		top: 20px;
		top: 50%;
		left: 5%;
		transform: translate(0%, -50%);
		-webkit-transform: translate(0%, -50%);
		-ms-transform: translate(0%, -50%);
	}
	.shiharai-top-sp-ab div{
		font-size: 14px;
		letter-spacing :1.5px;
	}
	.shiharai-top-sp-ab h2{
		font-size: 20px;
		letter-spacing :3px;
	}

	.shiharai-top-sp{
		position: relative;
	}
	.shiharai-top-rl{
		display: none;
	}
	.shiharai-top-sp{
		display: block;
	}
	/* TOP SP画像 */
	.shiharai-top-sp img:nth-child(1){
		width: 100%;
		display: block
	}
	.shiharai-txt-center{
		text-align: center;
	}
	.shiharai-section-flex{
		display: block;
	}
	.shiharai-section-flex div:nth-child(1){
		width: 100%;
	}
	.shiharai-section-flex div:nth-child(2){
		width: 100%;
	}
	.shiharai-about-pc-img{
		display: none;
	}
	.shiharai-about-sp-img{
		display: block;
	}
	.shiharai-about-sp-img div{
		margin-top: 10px;
	}
	.shiharai-about-sp-img img{
		width: 100%;
	}
	.shiharai-credit-card{
		width: 100%;
	}
	.shiharai-transfer-table{
		display: block;
	}
	.shiharai-transfer-table-details1 {
    padding: 10px 0 0 12px;
    border-bottom: 1px solid;
	}
	.shiharai-transfer-table-details2{
		display: block;
		border-left: none;
		width: 100%;
	}
	.shiharai-transfer-xaddmsg {	/*add okabe 2022/04/01 */
		font-size: 14px;
	}
	.shiharai-transfer-table-details2 div{
		width: 100%;
		font-size: 14px;
		padding: 5px 0 5px 5px;
		justify-content: space-between;
	}
	.shiharai-transfer-title{
		font-size: 18px;
		padding: 10px 0;
	}
	.shiharai-paypay{
		width: 70%;
	}
	.shiharai-np{
		width: 100%;
	}
	.shiharai-price-table div{
		font-size: 15px;
	}
	.shiharai-price-table div div:nth-child(1) {
    background-color: rgb(242,242,242);
    border-top: #000 solid 1px;
    border-left: #000 solid 1px;
    border-bottom: #000 solid 1px;
    width: 30%;
    padding-left: 5px;
		padding-top: 5px;
		padding-bottom: 5px;
		/* font-size: 14px; */
	}

	.shiharai-slip-flex {
    display: block;
    margin: 10px 0 40px 0;
  }
	.shiharai-slip-flex>div:nth-child(1) {
    width: 100%;
    margin: 0 auto;
	}
	.shiharai-slip-flex>div:nth-child(2) {
    width: 100%;
	}
	.shiharai-disp-none{
		display: none;
	}
	.shiharai-detention-flex {
    display: block;
	}
	.shiharai-address-flex {
    display: block;
	}
	.shiharai-address-flex>div:nth-child(1) {
    width: 100%;
	}
	.shiharai-address-flex>div:nth-child(2) {
    width: 100%;
		margin: 20px 0;
	}
	.shiharai-shipping-and-receiving-flex>div{
		display: none;
	}
	.shiharai-shipping-and-receiving-disp-sp{
		display: block;
	}
	.shiharai-shipping-and-receiving-flex-sp{
		display: flex;
		gap: 10px;
		margin: 10px;
	}
	.shiharai-shipping-and-receiving-flex-sp>div:nth-child(1){
		max-width: 120px;
	}
	.shiharai-shipping-and-receiving-flex-sp>div img{
		width: 100%;
	}
	.shiharai-shipping-and-receiving-flex-sp>div:nth-child(2){
		width: 100%;
		font-size: 15px;
	}
	.shiharai-common-table{
		font-size: 14px;
	}
	.shiharai-common-table div div:nth-child(1) {
    width: 75%;
	}
	.shiharai-common-table div div:nth-child(2) {
    background-color: rgb(255, 255, 255);
    border: #000 solid 1px;
    width: 25%;
	}
	.shiharai-shipping-and-receiving-flex {
    display: block;
	}
	.shiharai-slip-sub-title:not(:first-child){
		margin: 0;
	}
	.page-section-title {
		margin: 15px 0 8px 0;
	}
	.shiharai-about-title {
		margin: 30px 0 20px 0;
	}
	/* 配送・お支払いについて end   2022/01/21 */
	/* 病気 : 詳細ページ kitakaze start 2022/01/27 */
	.illness-menu{
		display: block;
		list-style: none;
		/* justify-content: space-between; */
		align-items: baseline;
		font-size: 12px;
		background-color: unset;
		border-bottom: 1px dotted #000;
		background: unset;
	}
	.illness-menu li{
		border-left: 0;
		text-align: unset;
		transition: all  0.3s ease;
		border-bottom: 1px dotted #000;
		background-color: unset;
	}
	.illness-menu li:last-child{
		border-right: #000 1px solid;
	}
	.illness-menu li:nth-child(1){
		width: 100%;
	}
	.illness-menu li:nth-child(2){
		width: 100%;
	}
	.illness-menu li:nth-child(3){
		width: 100%;
	}
	.illness-menu li:nth-child(4){
		width: 100%;
	}
	.illness-menu li:nth-child(5){
		width: 100%;
	}
	.illness-menu li:nth-child(6){
		width: 100%;
	}
	.illness-menu li:last-child{
		border-right: 0;
		border-bottom: 0;
	}
	.illness-symptoms-period-flex{
		display: block;
	}
	.illness-symptoms-period-flex>div{
		width: 100%;
		box-sizing: border-box;
	}
	.illness-flex-cnt{
		display: block;
	}
	.case-item4-sp ,.case-item5-sp{
		display: none;
	}
	.illness-prevention-parent-flex{
		display: block;
	}
	.illness-prevention-parent-flex>div:nth-child(1){
		width: 100%;
	}
	.illness-top-cnt{
		padding: 10px;
	}
	.illness-top-cnt >div:nth-child(2){
		font-size: 25px;
	}
	.illness-women-title {
    margin: 10px 0 10px 0;
	}
	.illness-infection-detail1{
		width: 100%;
	}
	.case-01-itm_chlamydia-pc{
		display: none;
	}
	.case-01-itm_chlamydia-sp{
		display: block;
	}
	.illness-infection-detail2 {
    width: 80%;
    margin: 0 auto;
	}
	.case-01-itm_chlamydia-sp>div{
		text-align: center;
		margin-bottom: 10px;
	}
	.illness-menu{
		font-size: 13px;
	}
	.illness-menu li a{
		padding: 0.5rem 0;
	}
	.illness-route-txt{
		font-size: 13px;
	}
	.illness-prevention-flex{
		display: block;
	}
	.illness-prevention-flex>div:nth-child(1){
		width: auto;
	}
	.illness-prevention-flex>div:nth-child(2){
		width: auto;
	}
	.illness-top-cnt{
		display: none;
	}
	.illness-top-cnt-sp{
		display: block;
		background-color: #E7F2FF;
		padding: 20px 0 10px 6px;
	}
	.illness-top-cnt-sp >div{
		color: #0095f0;
		font-weight: bold;
	}
	.illness-top-cnt-sp >div:nth-child(1){
		font-size: 12px;
	}
	.illness-top-cnt-sp >div:nth-child(2){
		font-size: 24px;
	}
	.illness-tabletxt-allcenter{
		text-align: left;
		vertical-align: unset;
	}
	.illness-hiv-detail1{
		width: 100%;
	}
	.illness-hiv-detail2{
		width: 100%;
	}
	.illness-treatment-list-child{
		padding: 0;
	}
	.illness-timing{
		display: none;
	}
	.illness-disp-sp{
    display: block;
    width: 80%;
    margin: 0 auto;
	}
	.illness-disp-sp img{
		width: 100%;
	}
	.illness-hiv-yousei{
		display: none;
	}
	.illness-table-sp-disp{
		display: block;
		font-size: 13px;
	}
	.illness-disp-pc{
		display: none;
	}
	.illness-hiv-detail2{
		margin: 0 auto;
	}

	/* B型肝炎 start 2022/01/31*/
	.illness-types-methods2 tr:nth-child(1) th{
		display: none;
	}
	.illness-types-methods2 tr th:nth-child(1){
		width: 100%;
		text-align: unset;
	}
	.illness-types-methods2 tr th:nth-child(2){
		width: 100%;
	}
	.illness-types-methods2 tr th:nth-child(3){
		width: 100%;
	}
	.illness-types-methods2 table ,.illness-types-methods2 tbody ,.illness-types-methods2 tr ,.illness-types-methods2 td  {
    width: auto;
    display: block;
	}
	.illness-types-methods2 tr:nth-child(n+2) td:nth-child(1){
		text-align: unset;
		width: 100%;
		box-sizing: border-box;
	}
	.illness-types-methods2 tr:nth-child(n+3) td:nth-child(1){
		text-align: unset;
		margin-top: 30px;
	}
	.illness-sp-header2 {
		display: block;
		padding: 5px;
		color: #0095F0;
		/* margin: -5px -5px 10px -5px; */
		border-bottom: 1px solid #999;
		background-color: rgb(213,236,253);
		font-weight: bold;
		text-align: center;
	}
	.illness-sp-title{
		margin: 10px 0;
		background-color: #0095f0;
		color: #F2F2F2;
		text-align: center;
		font-size: 16px;
		font-weight: bold;
	}
	.illness-sp-method{
		/* margin: 10px 0; */
    background-color: #0095f0;
    color: #F2F2F2;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
		padding: 10px;
	}
	.illness-sp-method-cnt{
		display: block;
    padding: 5px;
    color: #0095F0;
    /* margin: -5px -5px 10px -5px; */
    border-bottom: 1px solid #999;
    background-color: rgb(213,236,253);
    font-weight: bold;
    text-align: center;
	}
	.illness-border-white-padding0{
		border: 1px solid rgb(190, 190, 190);
		margin: 20px 0;
	}
	.illness-flex-between{
		display: block;
	}
	.illness-flow-cnt1 {
    width: 70%;
    margin: 20px auto;
	}
	.illness-flow-cnt2{
		width: 100%;
    margin: 30px auto;
    box-sizing: border-box;
	}
	.illness-width-100{
		width: 100%;
	}
	.illness-prevention-parent-flex>div:nth-child(2){
		display: none;
	}
	/* B型肝炎 end 2022/01/31 */
	/* C型肝炎 start 2022/02/01 kitakaze */
	.illness-types-methods3 tr:nth-child(1) th{
		display: none;
	}
	.illness-types-methods3 tr th:nth-child(1){
		width: 100%;
		text-align: unset;
	}
	.illness-types-methods3 tr th:nth-child(2){
		width: 100%;
	}
	.illness-types-methods3 tr th:nth-child(3){
		width: 100%;
	}
	.illness-types-methods3 table ,.illness-types-methods3 tbody ,.illness-types-methods3 tr ,.illness-types-methods3 td  {
		width: auto;
		display: block;
	}
	.illness-types-methods3 tr:nth-child(n+2) td:nth-child(1){
		text-align: unset;
		width: 100%;
		box-sizing: border-box;
	}
	.illness-types-methods3 tr:nth-child(n+3) td:nth-child(1){
		text-align: unset;
		margin-top: 30px;
	}
	.illness-infection-detail2-typec {
		width: 45%;
		margin: 0 auto;
	}
	.illness-infection-detail-typec {
		width: 100%;
		/* word-break: break-all; */
	}
	/* C型肝炎 end   2022/02/01  kitakaze*/
	/* 梅毒 start kitakaze 2022/02/01 */
	.illness-types-methods-syphilis tr:nth-child(1) th{
		display: none;
	}
	.illness-types-methods-syphilis tr th:nth-child(1){
		width: 100%;
		text-align: unset;
	}
	.illness-types-methods-syphilis tr th:nth-child(2){
		width: 100%;
	}
	.illness-types-methods-syphilis tr th:nth-child(3){
		width: 100%;
	}
	.illness-types-methods-syphilis table ,.illness-types-methods-syphilis tbody ,.illness-types-methods-syphilis tr ,.illness-types-methods-syphilis td  {
		width: auto;
		display: block;
		text-align: unset;
	}
	.illness-types-methods-syphilis tr:nth-child(n+2) td:nth-child(1){
		/* text-align: unset; */
		padding: 10px 0;
		background-color: #0095f0;
		color: #fff;
	}
	.illness-types-methods-syphilis tr:nth-child(n+3) td:nth-child(1){
		/* text-align: unset; */
		margin-top: 30px;
	}
	.illness-sp-header2 {
		display: block;
		padding: 5px;
		color: #0095F0;
		margin: -5px -5px 10px -5px;
		border-bottom: 1px solid #999;
		background-color: rgb(213,236,253);
		font-weight: bold;
		text-align: center;
	}
	.illness-types-methods-syphilis tr:nth-child(n+2) td{
		text-align: unset;
	}
	.illness-infection-detail-syphilis{
		width: 100%;
	}
	.illness-infection-detail2-syphilis {
		width: 65%;
		margin: 0 auto;
	}
	.illness-combination-border{
		font-size: 12px;
		line-height: 1.8rem;
	}
	/* 梅毒 end kitakaze 2022/02/01  */
	
	/* add Start azet-toyama 2021-02-02 軟性下疳 */
	.illness-symptoms-flex_nanseigekan {
		display: block;
		margin-bottom: 10px;
	}
	.illness-symptoms-course_nanseigekan {
		width: 100%;
		box-sizing: border-box;
		padding: 0;
	}
	.illness-symptoms-course_nanseigekan div img {
		width: 100%;
	}
	/* add End azet-toyama 2021-02-02 軟性下疳 */
	/* add Start azet-toyama 2021-02-02 非クラミジア性非淋菌性尿道炎 */
	.illness-symptoms-flex_nyodoen {
		display: block;
		margin-bottom: 10px;
	}
	.illness-symptoms-course_nyodoen {
		width: 100%;
		box-sizing: border-box;
		padding: 0;
		text-align: center;
	}
	.illness-symptoms-course_nyodoen div img {
		width: 100%;
	}
	.illness-symptoms-frame{
		text-align: left;
	}
	.illness-symptoms-frame div img{
		width: 140px;
	}
	.illness-caution-en-nyodouen div {
		padding: 15px 0 15px 80px;
	}
	/* add End azet-toyama 2021-02-02 非クラミジア性非淋菌性尿道炎 */
	/* add Start azet-toyama 2021-02-02 ヒトパピローマウイルス(HPV) */
	.illness-top-cnt-pink{
		display: none;
	}
	.illness-top-cnt-pink-sp{
		display: block;
		background-color: #ffe6e6;
		padding: 20px 0 10px 6px;
	}
	.illness-top-cnt-pink-sp >div{
		color: #dc4c4c;
		font-weight: bold;
	}
	.illness-top-cnt-pink-sp >div:nth-child(1){
		font-size: 12px;
	}
	.illness-top-cnt-pink-sp >div:nth-child(2){
		font-size: 24px;
	}
	.illness-symptoms-flex_hpv {
		display: block;
		margin-bottom: 10px;
	}
	.illness-symptoms-course_hpv {
		width: 100%;
		box-sizing: border-box;
		padding: 0;
		text-align: center;
	}
	.illness-symptoms-frame-pink{
		text-align: left;
	}
	.illness-prevention-flex-pink{
		display: block;
	}
	.illness-prevention-flex-pink>div:nth-child(1){
		width: auto;
	}
	.illness-prevention-flex-pink>div:nth-child(2){
		width: auto;
	}
	/* add End azet-toyama 2021-02-02 ヒトパピローマウイルス(HPV) */
	/* add Start azet-toyama 2021-02-03 性器ヘルペス */
	.illness-symptoms-flex_herpes {
		display: block;
		margin-bottom: 10px;
	}
	.illness-symptoms-course_herpes {
		width: 100%;
		box-sizing: border-box;
		padding: 0;
		text-align: center;
	}
	.illness-symptoms-course_herpes div img {
		width: 100%;
	}
	/* add End azet-toyama 2021-02-03 性器ヘルペス */
	/* add Start azet-toyama 2021-02-03 赤痢アメーバ症 */
	.illness-caution-en-sekiri {
		background: url(img/each_illness/case-caution_en.png) 15px 32px no-repeat #FDEDEE;
		min-height: 84px;
	}
	/* add End azet-toyama 2021-02-03 赤痢アメーバ症 */
	/* add Start azet-toyama 2021-02-03 尖圭コンジローマ */
	.illness-symptoms-flex_condylomate {
		display: block;
		margin-bottom: 10px;
	}
	.illness-symptoms-course_condylomate {
		width: 100%;
		box-sizing: border-box;
		padding: 0;
		text-align: center;
	}
	.illness-symptoms-course_condylomate div img {
		width: 100%;
	}
	.illness-types-methods-flex_condylomate {
		display: block;
	}
	.illness-types-methods-flex_condylomate div{
		display: block;
	}
	.illness-types-methods-flex_condylomate div:nth-child(1){
		width: auto;
	}
	.illness-types-methods-flex_condylomate div:nth-child(2){
		padding-left: 20px;
	}
	/* add End azet-toyama 2021-02-03 尖圭コンジローマ */
	/* add Start azet-toyama 2021-02-04 咽頭感染症（淋菌・クラミジア） */
	.illness-symptoms-flex_intou-kansen {
		display: block;
		margin-bottom: 10px;
	}
	.illness-symptoms-flex_intou-kansen div div img {
		width: 100%;
	}
	.illness-symptoms-course_intou-kansen {
		width: 100%;
		box-sizing: border-box;
	}
	.illness-symptoms-course_intou-kansen div img {
		width: 100%;
	}
	.illness-types-methods2_intou-kansen {
		display: none;
	}
	.illness-types-methods2_intou-kansen-sp {
		display:block;
		border-collapse: collapse;
		border: 1px solid #bdd3e5;
		border-bottom: 0;
		width: 100%;
		margin: 20px 0;
	}
	.illness-types-methods2_intou-kansen-sp div:nth-child(2n-1) {
		background-color: #d5ecfd;
		color: #0095f0;
		padding: 5px 0;
		border-bottom: 1px solid #bdd3e5;
		font-size: 13px;
		text-align: center;
	}
	.illness-types-methods2_intou-kansen-sp div:nth-child(2n) {
		padding: 12px;
		border-bottom: 1px solid #bdd3e5;
		font-size: 13px;
		text-align: left;
	}
	.illness-treatment-flex_intou-kansen {
		display: block;
	}
	.illness-treatment-flex_intou-kansen div{
		width: 100%;
		margin-left: 10px;
	}
	.illness-treatment-flex_intou-kansen div:nth-child(1){
		width: 100%;
		margin-left: 0;
	}
	/* add End azet-toyama 2021-02-04 咽頭感染症（淋菌・クラミジア） */
	/* add Start azet-toyama 2021-02-04 細菌性膣症 */
	.illness-treatment-flex_saikin-chitsusyo {
		display: block;
	}
	.illness-treatment-flex_saikin-chitsusyo div{
		width: 100%;
		margin-left: 10px;
	}
	.illness-treatment-flex_saikin-chitsusyo div:nth-child(1){
		width: 100%;
		margin-left: 0;
	}
	/* add End azet-toyama 2021-02-04 細菌性膣症 */

	/* kitakaze start 2022/02/07 胃がん */
	.illness-symptoms-period-top{
		width: 100%;
	}
	.illness-symptoms-course-title2{
		width: 100%;
	}
	.illness-symptoms-course-title2 img{
		width: 140px;
	}
	.illness-symptoms-course-title3{
		width: 100%;
	}
	.illness-symptoms-course-title3 img{
		width: 200px;
	}
	/* kitakaze end 2022/02/07 胃がん */

	/* kitakaze add  start 2022/02/07 ナビゲーション2 */
	.illness-menu2{
		display: block;
		list-style: none;
		/* justify-content: space-between; */
		align-items: baseline;
		font-size: 12px;
		background-color: unset;
		border-bottom: 1px dotted #000;
		background: unset;
	}
	.illness-menu2 li{
		border-left: 0;
		text-align: unset;
		transition: all  0.3s ease;
		border-bottom: 1px dotted #000;
		background-color: unset;
	}
	.illness-menu2 li:last-child{
		border-right: #000 1px solid;
	}
	.illness-menu2 li:nth-child(1){
		width: 100%;
	}
	.illness-menu2 li:nth-child(2){
		width: 100%;
	}
	.illness-menu2 li:nth-child(3){
		width: 100%;
	}
	.illness-menu2 li:nth-child(4){
		width: 100%;
	}
	.illness-menu2 li:nth-child(5){
		width: 100%;
	}
	.illness-menu2 li:nth-child(6){
		width: 100%;
	}
	.illness-menu2 li:last-child{
		border-right: 0;
		border-bottom: 0;
	}

	/* add end kitakaze 2022/02/07 ナビゲーション2 */


	/* add Start azet-toyama 2021-02-05 子宮頸がん */
	.illness-width-100-sp {
		width: 100%;
	}
	.illness-width-100-sp img {
		width: 100%;
	}
	.illness-prevention-flex-pink_shikyukeigan {
		display: block;
	}
	.illness-prevention-flex-pink_shikyukeigan div {
		display: block;
		box-sizing: border-box;
		width: 100%;
		padding: 5px;
	}
	.illness-prevention-flex-pink_shikyukeigan div:nth-child(1){
		display: block;
		width: 100%;
	}
	.illness-prevention-flex-pink_shikyukeigan div:nth-child(2){
		display: block;
		width: 100%;
	}
	.illness-symptoms-period-flex-pink_shikyukeigan{
		display: block;
	}
	.illness-symptoms-period-flex-pink_shikyukeigan div{
		width: 100%;
	}
	.illness-types-methods-pink_shikyukeigan {
		display: none;
	}
	.illness-treatment-flex_shikyukeigan {
		display: none;
	}
	.illness-treatment-flex2_shikyukeigan {
		display: none;
	}
	.illness-treatment-flex_shikyukeigan-sp {
		display:block;
		width: 100%;
		margin: 15px 0;
	}
	.illness-treatment-flex_shikyukeigan-sp div img {
		width: 100%;
	}
	.illness-types-methods-pink_shikyukeigan-sp {
		display:block;
		border-collapse: collapse;
		border: 1px solid #fed0d0;
		border-bottom: 0;
		width: 100%;
		margin: 0 0 20px 0;
	}
	.illness-types-methods-pink_shikyukeigan-sp div:nth-child(2n-1) {
		background-color: #ffdddd;
		color: #ed6868;
		padding: 5px 0;
		border-bottom: 1px solid #fed0d0;
		font-size: 13px;
		text-align: center;
	}
	.illness-types-methods-pink_shikyukeigan-sp div:nth-child(2n) {
		padding: 5px;
		border-bottom: 1px solid #fed0d0;
		font-size: 13px;
		text-align: left;
	}
	.illness-types-methods-h-pink_shikyukeigan-sp {
		display: flex;
		margin: 10px 0 0 0;
		border-collapse: collapse;
		border: 1px solid #fed0d0;
		border-bottom: 0;
		width: 100%;
		text-align: center;
	}
	.illness-types-methods-h-pink_shikyukeigan-sp div {
		background-color: #ffdddd;
		color: #ed6868;
		padding: 5px 0;
		font-size: 13px;
		width: 50%;
	}
	.illness-types-methods-h-pink_shikyukeigan-sp div {
		border-right: 1px solid #fed0d0;
	}
	.illness-types-methods-h2-pink_shikyukeigan-sp {
		display: flex;
		margin: 0;
		border-collapse: collapse;
		border: 1px solid #fed0d0;
		border-bottom: 0;
		width: 100%;
		text-align: center;
	}
	.illness-types-methods-h2-pink_shikyukeigan-sp div {
		background-color: #fff5f5;
		padding: 5px 0;
		font-size: 13px;
		width: 50%;
	}
	.illness-types-methods-h2-pink_shikyukeigan-sp div {
		border-right: 1px solid #fed0d0;
	}

	/* add Start azet-toyama 2021-02-05 子宮頸がん */
	/* kitakaze start 2022/02/07 肺がん */
	.illness-prevention .illness-prevention-flex3:nth-child(1){
		border: 1px solid  #afc1cf;
	}
	.illness-prevention .illness-prevention-flex3:not(:nth-child(1)){
		border: 1px solid  #afc1cf;
		border-top: 0;
	}
	.illness-prevention-flex3{
		display: block;
		border: 1px solid #afc1cf;
	}
	.illness-prevention-flex3>div{
		padding: 10px;
		box-sizing: border-box;
		align-items: center;
	}
	.illness-prevention-flex3>div:nth-child(1){
		display: block;
		text-align: center;
		align-items: center;
		background-color: #B3DEFF;
		color: #218BFD;
		width: 100%;
		border-right: 1px solid  #afc1cf;
	}
	.illness-prevention-flex3>div:nth-child(2){
		width: 100%;
	}
	.illness-prevention-flex3>div:nth-child(2) ul{
		padding: 0;
		margin-top: 0;
		list-style-position: inside;
	}
	
	.illness-prevention .illness-prevention-flex3:nth-child(1){
		border: 1px solid  #afc1cf;
	}
	.illness-prevention .illness-prevention-flex2:not(:nth-child(1)){
		border: 1px solid  #afc1cf;
		border-top: 0;
	}
	.illness-prevention-flex2{
		display: block;
		border: 1px solid #afc1cf;
	}
	.illness-prevention-flex2>div{
		padding: 10px;
		box-sizing: border-box;
		align-items: center;
	}
	.illness-prevention-flex2>div:nth-child(1){
		display: flex;
		text-align: center;
		align-items: center;
		background-color: #B3DEFF;
		color: #218BFD;
		width: 100%;
		border-right: 1px solid  #afc1cf;
		justify-content: center;
	
	}
	.illness-prevention-flex2>div:nth-child(2){
		width: 100%;
	}
	.illness-prevention-flex2>div:nth-child(2) ul{
		padding: 0;
		margin-top: 0;
		list-style-position: inside;
	}
	
	.illness-types-methods2_lung-cancer{
		display: none;
	}
	/* kitakaze end 2022/02/07 肺がん */
	/* 病気 : 詳細ページ kitakaze end 2022/01/27 */

	/* 結果確認画面 kitakaze 2022/02/09 start*/
	.ins-result-mg-btm{
		margin: 0;
	}
	/* 結果確認画面 kitakaze 2022/02/09 end*/
	
	/* ▼▼▼▼▼ お知らせ ▼▼▼▼▼ */
	.news-entry {
		flex-wrap: wrap;
	}
	/* .news-entry .news-badge,
	.news-entry .news-date {
		flex: 1 0 50%;
	} */
	.news-entry .news-title {
		flex: 1 1 100%;
	}
		/* ▲▲▲▲▲ お知らせ ▲▲▲▲▲ */
		/* 採取タイミング kitakaze 2022/02/09 start*/
		.timing_title_sp{
			display: block;
			width: 100%;
		}
		.timing_title_sp img{
			width: 100%;
		}
		.timing_title_pc{
			display: none;
		}
	.timing_grph_sp{
		display: block;
		width: 100%;
	}
	.timing_grph_sp img{
		width: 100%;
	}
	.timing_grph_pc{
		display: none;
	}
	.timing-cnt-flex{
		display: block;
	}
	.timing-sp{
		display: block;
		text-align: justify;
	}
	.timing-cnt2-sp{
		width: 100%;
	}
	.timing-cnt2-sp img{
		width: 100%;
	}
	.timing-pc{
		display: none;
	}
	.timing-cnt-title{
		font-size: 15px;
	}
	.timing-font-size18{
		font-size: 15px
	}
	.timing-koutai-cnt-sp{
		display: block;
	}
	.timing-slide-num-sp { /* スマホ slides text content */
		display: flex;
		align-items: flex-start;
	}
	.timing-koutai-cnt-sample-sp{
		width: 100%;
	}
	.timing-koutai-cnt-sample-sp img{
		width: 65%;
	}
	.timing-koutai-cnt{
		display: none;
	}
	.timing-koutai-cnt-sp >div{
		margin: 30px 0;
	}
	.timing-koutai-cnt-sp img {
		margin: auto;
	}


	.timing-koutai-cnt-sp .slick-arrow {
		position: absolute;
		top: 40%;
	}

	.timing-koutai-cnt-sp .slick-prev {
		left: 0;
	}

	.timing-koutai-cnt-sp .slick-next {
		right: 0;
	}
	.about-koutai img{
		width: 100%;
	}
	.timing-disp-sp >.slick-slider{
		display:block !important;
	}


	/* 採取タイミング kitakaze 2022/02/09 end */

	/*add start kitakaze 2022/03/04 レスポンシブ画面修正対応*/
	.new-corppro .tr .th {
		width: 100%;
	}

	.informed-img-left{
		width: 100%;
	}
	
	.kit-teiki-gender-title {
		flex-direction: column;
	}
	
	/*add end kitakaze 2022/03/04 レスポンシブ画面修正対応*/

	/* add start kitakaze 2022/03/10 支払いページのナビゲーションボタン */
	/* .page-nav-shiharai{
		display: flex;
		justify-content: space-between;
		align-items: stretch;
		flex-wrap: wrap;
		gap: 10px 0;
	}
	
	.page-nav-shiharai a{
		display: flex;
		color: #000;
		justify-content: center;
		align-items: center;
		width: 45%;
		height: 45px;
		margin: 0;
		padding: 5px;
		border: 1px solid silver;
		border-radius: 5px;
	} */
/* add end kitakaze 2022/03/10 支払いページのナビゲーションボタン */

/*add start kitakaze 2022-04-01 各性病説明*/
.fontsize11-unset{
	font-size: unset;
}
/*add end kitakaze 2022-04-01 各性病説明*/
/* add atart okabe 2022-04-02 細菌性膣症 検査について */
	.kensani-tsuite-xchi {
		margin-bottom: 5px;
	}
.xbottom-hiv-sub {
	border-bottom: none;
}
/* add end okabe 2022-04-02 細菌性膣症 検査について */

@media (max-width: 500px) {
	/* home banners */
	.home-services-banner2 {
		display: none;
	}
	.home-services-banner2-sp {
		display: block;
	}

	.home-services-banners {
		flex-direction: column;
		align-items: center;
	}

	/* 北風追加 匿名での検査について 2022/01/17 start*/
	.kit-tokumei-detail{
		display: block;
	}
	.kit-tokumei-img{
		text-align: center;
	}
	.kit-tokumei-privacy span{
		font-weight: normal;
	}
	/* 北風追加 匿名での検査について 2022/01/17 end*/

	/* 北風追加 ご購入ガイド  2022/01/14 start*/
	.paypay{
		width: 50%;
	}
	/* 北風追加 ご購入ガイド  2022/01/14 end*/
	/* kitakaze お客様アンケート start 2022/01/17 */
	.enquete-anxiety-graf img{
		width: 100%;
	}
	.enquete-graf-percentage li:nth-child(1){
	 font-size: 18px;
	}
	.enquete-graf-percentage li:nth-child(2), .enquete-graf-percentage li:nth-child(3){
		font-size: 16px;
	}
	.enquete-title{
		font-size: 18px;
		margin: 60px 0;
	}
	.enquete-graf-percentage li:nth-child(n+4){
		font-size: 15px;
	}
	.enquete-graf-percentage li div:nth-child(2) {
    width: 20%;
	}
	.enquete-txt {	/* add okabe 2022-03-10 */
		text-align: left!important;
	}
	/* kitakaze お客様アンケート end 2022/01/17 */

	/* キット詳細 */
	.kit-pictures-buy-block {
		flex-direction: column;
	}

	/* ペア＋定期キット */
	.kit-single-buy-block {
		min-width: auto;
		flex: 1 1 auto;
	}
	.kit-single-buy-desc {
		flex-direction: column;
	}
	.kit-single-buy-r button {
		flex-direction: row;
		width: 100%;
		padding: 10px;
		border-radius: 30px;
	}
	/* 病気 : 詳細ページ kitakaze start 2022/01/27 */
	.illness-sp-header {
		display: block;
		padding: 5px;
		color: #0095F0;
		margin: -5px -5px 10px -5px;
		border-bottom: 1px solid #999;
		background-color: rgb(213,236,253);
		font-weight: bold;
		text-align: center;
	}
	.illness-types-methods tr:nth-child(1) th{
		display: none;
	}
	.illness-types-methods tr th:nth-child(1){
		width: 100%;
		text-align: unset;
	}
	.illness-types-methods tr th:nth-child(2){
		width: 100%;
	}
	.illness-types-methods tr th:nth-child(3){
		width: 100%;
	}
	.illness-types-methods table ,.illness-types-methods tbody ,.illness-types-methods tr ,.illness-types-methods td  {
    width: auto;
    display: block;
	}
	.illness-types-methods tr:nth-child(n+2) td:nth-child(1){
		text-align: unset;
	}
	.illness-types-methods tr:nth-child(n+3) td:nth-child(1){
		text-align: unset;
		margin-top: 30px;
	}
	.illness-bc-white{
		background-color: #F7FAFF !important;
	}
	/* 病気 : 詳細ページ kitakaze end 2022/01/27 */
	/* 結果確認画面 kitakaze start 2022/02/08 */
	.ins-result-conf-login-btn {
		font-size: 16px;
	}
	/* 結果確認画面 kitakaze end 2022/02/08 */
	/* add kitakaze 申し込みから検査結果 2022/02/14 start */
	.mailing-step3-flex-cnt{
		display: block;
	}
	.mailing-step3-flex-cnt>div{
		width: 100%;
	}
	.mailing-step4-flex{
		display: block;
	}
	.mailing-step4-flex>div{
		width: 100%;
	}
	.mailing-step5-btn-cnt{
		display: block;
		margin: 10px 0;
	}
	.mailing-step5-btn-cnt>div{
		margin: 10px 0;
	}
	.mailing-step-flow>div:not(:last-child)::before{
		position: absolute;
		left: 50%;
		bottom: -32px;
		content: "↓";
		font-size: 20px;
		transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
		font-weight: bold;
	}
	.mailing-step-flow >div:not(:last-child) .mailing-step::after{
		content: "";
	}
	.mailing-step-flow >div{
		margin: 16px 0;
	}
	.mailing-step1-detail-flex{
		display: block;
	}
	.mailing-step1-detail-flex >div{
		margin: 10px auto;
	}
	.mailing-step-flow>div{
		width: 90%;
	}
	.mailing-detail-link{
		position: absolute;
    bottom: 7px;
    display: block;
    font-size: 14px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	}
	.mailing-step-detail{
		text-align: center;
		padding: 0px 10px;
	}

	.mailing-step-cnt-title {
    text-align: center;
    padding: 5px;
    font-size: 14px;
    border-bottom: 1px solid #dbe2e8;
    margin-bottom: 10px;
	}
	.mailing-step3-text {
    font-family: serif;
    font-size: 20px;
	}
	.mailing-step5-text-detail {
    font-size: 17px;
	}
	/* add kitakaze 申し込みから検査結果 2022/02/14 end */

	/* add start azet-toyama 2021-02-21 検査申込書ページ */
	.fill_method-top-title {
		background-image: unset;
	}
	.fill_method-top-title img {
		width: 100%;
		max-width: 354px;
	}
	/* add End azet-toyama 2021-02-21 検査申込書ページ */

}

@media only screen and (max-width: 480px) {
	.blood_collection-structure {
		display: none;
	}
	.blood_collection-structure-sp {
		display: block;
		margin: 15px 0;
		border: 1px solid #D9D9D9;
		border-radius: 5px;
		font-size: 14px;
	}
	.blood_collection-structure-sp img {
		width: 100%;
	}
	.blood_collection-structure-sp div {
		padding: 5px;
	}
	.blood_collection-structure-sp span {
		font-weight: bold;
	}
}


@media (max-width: 450px) {


	.kit-title{
    padding: 0px 0px;
    flex-direction: column;
		padding-bottom: 10px;
		align-items: flex-start;
	}

	.kit-title span{
		padding: 10px 0 10px 10px;
	}

	.kit-title ._female{
		text-align: start;
	}
	.kit-title-badge._male {
		background-color: var(--gender-color-male2);
		display: block;
    width: 100%;
    box-sizing: border-box;
	}
	.kit-title-badge._female {
		background-color: var(--gender-color-female2);
    display: block;
    width: 100%;
    box-sizing: border-box;
	}
	.kit-title-badge._common {
		background-color: var(--gender-color-common2);
		display: block;
    width: 100%;
    box-sizing: border-box;
	}

	/* add kitakaze 社会貢献ページ 2022/02/16 */
	.csr-donation-table {
  	display: block;
	}

	.csr-donation-table>div {
    width: 100%;
	}
	.csr-total-donation>span{
		display: block;
	}
	/* add kitakaze 社会貢献ページ 2022/02/16 end */

	/*add 初めての方へページ 2022/02/16 start */
	.hajimete-about-lead-sub {
		padding: 15px 5px;
		font-size: 15px;
		text-align: center;
	}

	.hajimete-about-title{
		font-size: 18px;
	}
	/*add 初めての方へページ 2022/02/16 end */
	/* add 自分に合った検査を知る kitakaze 2022/02/15 start */
	.explain-contents{
		font-size: 14px;
		padding: 12px;
	}

	.flex-cnt2{
		display: block;
	}

	.btn-flowchart-result{
		width: 100%;
		margin: 25px 0;
	}

	.explain-ul {
		column-count: 1;
	}

	.question-title{
		font-size: 18px;
	}

	.q-items {
    padding: 10px;
    border-radius: 20px;
    width: 222px;
    padding-left: 10px;
		font-size: 14px;
		box-sizing: border-box;
	}

	.flowchart-return-btn{
		width: 200px;
	}
	/* add 自分に合った検査を知る kitakaze 2022/02/15 start */

	.header-mobile {
		display: flex;
		/* justify-content: space-between; */
		padding: 8px 0;
		gap: 15px;
	}

	.header-part{
		flex-grow: 2;
		display: flex;
	}

	.btn-mobile-search{
		align-items: flex-end;
	}

	.btn-mobile-search .btn-mobile-menu{
		flex-grow: 1;
		gap: 5px;
	}

	.header-mobile-logo {
		/* width: unset; */
	}

	.disp-sp-receive-detail{
		display: block;
		margin-bottom: 70px;
		border: 1px solid ;
	}
	.receive-detail-title{
		text-align: center;
		padding: 10px;
		background-color: #9BC6DE;
		font-weight: bold;
	}
	.receive-detail-content{
		padding: 10px;
		font-size: 14px;
	}
	/* intro */
	.kit-info-free1 {
		display: block;
		text-align: center;
	}
	.kit-info-free1 .kit-main-pic {
		width: 100%;
	}
	.kit-info-free1 div{
		text-align: start;
	}
	.clt-equ-cnt-flex{
		display: block;
	}
	.clt-equ-cnt-flex div:nth-child(2){
		text-align: center;
	}
	.disease-list .disease-list-cnt::before {
		content: '';
    display: block;
    height: 19px;
    background-image: url(img/icon-disease-chevron.png);
    background-size: contain;
    background-repeat: no-repeat;
		margin: 0;
	}
	.disease-list .disease-list-cnt {
    flex-grow: 1;
    text-decoration: none;
    color: black;
    width: 89%;
		padding: 0;
		display: flex;
    align-items: center;
		flex: 0 0 calc(50% - 2vw);
		margin-top: 2vw;
		font-size: 14px;
		padding: 1.75vw;
		/* height: 70px; 高さを統一する場合はコメントを削除する必要がある */
	}
	.disease-list{
		gap: 15px 0;
	}
	.text-align-start{
		text-align: start;
	}
	/*レスポンシブ画面 395px 対応 2022/03/04 start */
	.method-each-notice-text{
		font-size: 12px;
	}
	.hajimete-sp-fontsize14{
		font-size: 14px;
	}
	.gme-googlemap-cnt{
		width: 100%;
	}

	/*レスポンシブ画面 395px 対応 2022/03/04 end */

		/* add start kitakaze 2022/03/10 支払いページのナビゲーションボタン */
		.page-nav-shiharai{
			display: flex;
			justify-content: space-between;
			align-items: stretch;
			flex-wrap: wrap;
			gap: 16px 0;
			/* box-sizing: border-box; */
		}
		
		.page-nav-shiharai a{
			font-size: 12px;
			display: flex;
			color: #000;
			justify-content: center;
			align-items: center;
			width: 27%;
			/* height: 45px; */
			/* align-content: stretch; */
			margin: 0;
			padding: 5px;
			border: 1px solid silver;
			border-radius: 5px;
		}
	/* add end kitakaze 2022/03/10 支払いページのナビゲーションボタン */
	

	/*add start kitakaze  2022/03/22 申込から検査結果までのながれページ FB修正*/
	.mailing-btn-02{
		margin: 0 auto;
	}

	.mailing-step-linkfield2{
		width: 100%;
		margin-bottom: 70px;
	}
	/*add end kitakaze  2022/03/22 申込から検査結果までのながれページ FB修正*/

	.sp-new-line{
		flex-direction: column;
	}

	/*2022/03/31 kitakaze start 検査結果が陽性の方へ*/
	.attention-section1-img {
		display: none;
	}
	.attention-section1-img-sp {
		display: block;
		text-align: center;
	}
	.attention-section1-img-sp img {
		width: 85%;
	}
	/*2022/03/31 kitakaze end 検査結果が陽性の方へ*/

	/*2022/03/31 kitakaze start 検査結果確認画面*/
	 .kensa_qr_disp_none{
		 display: none;
	 }
	/*2022/03/31 kitakaze end 検査結果確認画面*/

}

/* add okabe start 2022-01-20 */
@media (max-width: 400px) {
	p.method-resizeimage-pc img {
		max-width: 100%;
		height: auto;
		display:none;
	}
	p.method-resizeimage-sp img {
		max-width: 100%;
		height: auto;
		display:block;
	}
	.shiharai-sub-title-flex {
    font-size: 14px;
	}
	.shiharai-shipping-and-receiving-flex-sp>div:nth-child(1) {
    max-width: 90px;
	}
	.shiharai-shipping-and-receiving-flex-sp>div:nth-child(2) {
    width: 100%;
    font-size: 13px;
	}
	.shiharai-font-small{
		font-size: 17px;
	}
	.shiharai-about-title{
		font-size: 19px;
		margin-top: 40px;
	}
	.shiharai-font-large{
		font-size: 18px;
	}
	.shiharai-transfer-table-details1{
		font-size: 14px;
	}
	.shiharai-common-table div{
		font-size: 12px;
	}
	.shiharai-price-table div{
		font-size: 12px;
	}
	.shiharai-section-flex div:nth-child(2) {
    margin-top: 20px;
	}
	.shiharai-each-packing-flex{
		margin-bottom: 30px;
	}
	/* 病気 ：詳細 start 2022/01/26 */
	.antibody-test-results{
		font-size: 11px;
	}
	table.antibody-test-results thead th, table.antibody-test-results-bc tbody th, table.case-left tbody th {
		font-size: 13px;
	}
	/* 2022/02/03 start kitakaze 淋菌 */
	.illness-caution-col3>div:nth-child(1) {
    width: 33%;
    justify-content: center;
	}
	.illness-caution-col3>div:nth-child(2) {
    width: 100%;
    font-size: 13px;
	}
	.illness-caution-col3>div:nth-child(3){
		width: 0px;
	}
	.illness-caution-col3>div:nth-child(3) img{
		width: 0%;
	}
	.illness-caution-col3-bl{
		font-weight: bold;
		color: red;
	}
	/* 2022/02/03 start kitakaze 淋菌 */
	/* 2022/02/03 start kitakaze カンジダ症 */
	.illness-prevention-flex2>div{
		font-size: 13px;
	}
	/* 2022/02/03 end kitakaze カンジダ症 */
	/* kitakaze start 2022/02/07 胃がん */
	.illness-symptoms-period-top img{
		width: 140px;
	}
	/* kitakaze start 2022/02/07 胃がん */
	/* 病気 ：詳細 end 2022/01/26 */
	
	/* ▼▼▼▼▼ お問い合わせ ▼▼▼▼▼ */
	.contact-info-number {
		font-size: 7vw;
	}
	/* ▲▲▲▲▲ お問い合わせ ▲▲▲▲▲ */

	/* add start azet-toyama 2021-02-21 検査申込書ページ */
	.fill_method-form-text2 {
		display: none;
	}
	.fill_method-form-text2-sp {
		display: block;
		margin: 30px 0 5px 0;
	}
	/* add End azet-toyama 2021-02-21 検査申込書ページ */

	/* add start azet-toyama 2022-03-08 共同開発についてページ */
	.research-top {
		height: 100px;
	}
	.research-h1 {
		font-size: 1.2em;
	}
	.research-top-title h2 {
		font-size: 1.4em;
		letter-spacing: 1px;
	}
	.research-h1-text {
		margin-bottom: 30px;
	}
	.research-sec-title {
		margin-bottom: 15px;
	}
	.research-sec1-title {
		font-size: 1.3em;
		margin-bottom: 5px;
	}
	/* add End azet-toyama 2022-03-08 共同開発についてページ */


    /* add start azet-toyama 2022-03-08 採取器具の安全性についてページ */
    .blood-top {
		height: 100px;
	}
	.blood-top-title h2 {
		font-size: 1.4em;
		letter-spacing: 1px;
	}
	.blood-h1 {
		font-size: 1.15em;
	}
	.blood-h1-text {
		margin-bottom: 30px;
		font-size: 14px;
		line-height: 1.6;
	}
	.blood-sec1-caution {
		width: auto !important;
	}
    /* add End azet-toyama 2022-03-08 採取器具の安全性についてページ */



    /* add start azet-toyama 2022-03-14 検査精度についてページ */
	.accuracy-top {
		height: 100px;
	}
	.accuracy-top-title {
		top: 10px;
	}
	.accuracy-top-title h2 {
		display: none;
	}
	.accuracy-top-title h3 {
		display: inline;
		font-size: 1.2em;
		letter-spacing: 1px;
	}
    /* add End azet-toyama 2022-03-14 検査精度についてページ */

    /* add start azet-toyama 2022-03-14 申込から検査の流れ */
		.mailing-top-slidemark-sp {
			top: 50%;
		}

}
@media (min-width: 400px) {
	p.method-resizeimage-pc img {
		max-width: 100%;
		height: auto;
		display:block;
	}
	p.method-resizeimage-sp img {
		max-width: 100%;
		height: auto;
		display:none;
	}
}
@media (max-width: 800px) {
/*	method-select-links-pc {
		display:none;
	}
	method-select-links-sp {
		display:block;
	}
*/	/* add kitakaze 2022/02/17 検体採取方法ページ */
	.method-each-movie-text2 {
    justify-content: center;
	}
}
/*
@media (min-width: 800px) {
	method-select-links-sp {
		display:none;
	}
	method-select-links-pc {
		display:block;
	}
}
*/
/* add okabe end 2022-01-20 */
@media (max-width: 380px) {
	/* 病気メニュー start 2022/01/20 */
	.disease-menu-prices {
		flex-direction: column;
	}
	/* 病気メニュー end 2022/01/20 */

	/* 病気 ：詳細 start 2022/01/26 */
	.illness-caution {
    padding: 10px;
	}
	.illness-caution>div:nth-child(2){
		font-size: 12px;
	}
	table.antibody-test-results th, table.antibody-test-results td{
		padding: 6px;
	}
	.illness-dna{
		margin: 0 auto;
	}
	.illness-dna tr td{
		font-size: 14px;
		padding: 10px 10px;
	}
	/* 病気 ：詳細 end 2022/01/26 */
	/* add toyama 結果が陽性の方へ 2022/02/15 start */
	.attention-flow-flex div:last-child {
		display: none;
	}
	/* add toyama 結果が陽性の方へ 2022/02/15 end */

  /* add start azet-toyama 2022-03-03 結果が陽性の方へページ */
	.attention-section3-flex {
		justify-content: space-between;
		font-size: 13px;
	}
	.attention-section3-flex li {
		flex: 0 0 calc(50% - 5px);
	}
	.header-mobile {
		gap: 7px;
	}
	/* add End azet-toyama 2022-03-03 結果が陽性の方へページ */

	/*add kitakaze start レスポンシブ画面375ｐｘ対応*/
	.kit-single-plus-fontsize{
		font-size: 13px !important;
	}
	/*add kitakaze end レスポンシブ画面375ｐｘ対応*/

}

/* add start okabe 2022/02/10 */
/* 特定商取引に基づく表記 */
@media only screen and (max-width: 640px) {
  .table-notation-fromx .tr {
    display: block;
  }
  .table-notation-fromx .tr .th {
    display: block;
    width: 100%;
	text-align: left;
  }
  .table-notation-fromx .tr .td {
    display: block;
    width: 100%;
  }
	.table-notation-fromx .tr .th ,
  .table-notation-fromx .tr .td {
		box-sizing: border-box;
	}
	.table-notation-fromx .tr .td-add-atr {
		border-left: 1px solid silver;
	}
}
/* add end okabe 2022/02/10 */

/* add start okabe 2022/02/10 */
/* 個人情報の取扱いについて */
@media only screen and (max-width: 640px) {
  .table-privacy-fromx .tr {
    display: block;
  }
  .table-privacy-fromx .tr .th {
    display: block;
    width: 100%;
		text-align: left;
		box-sizing: border-box;
  }
  .table-privacy-fromx .tr .td {
    display: block;
    width: 100%;
		box-sizing: border-box;
  }
	.table-privacy-fromx .tr .td-add-atr{
		border-left: 1px solid silver;
	}
}
/* add end okabe 2022/02/10 */

/* 検査規約について */
/* add start okabe 2022/02/10 */
@media only screen and (max-width: 640px) {
  .table-inspection-fromx .tr {
    display: block;
  }
  .table-inspection-fromx .tr .th {
    display: block;
    width: 100%;
	text-align: left;
  }
  .table-inspection-fromx .tr .td {
    display: block;
    width: 100%;
  }
}
/* add end okabe 2022/02/10 */

/* add start okabe 2022/02/10 */
/* 用語集 */
@media only screen and (max-width: 640px) {
  .table-glossary-fromx .tr {
    display: block;
  }
  .table-glossary-fromx .tr .th {
    display: block;
    width: 100%;
	text-align: left;
  }
  .table-glossary-fromx .tr .td {
    display: block;
    width: 100%;
  }
}
/* add end okabe 2022/02/10 */
@media only screen and (max-width: 380px) {
	.attention-flow-flex div:last-child {
		display: none;
	}

/* add Start azet-toyama 2021-02-15 採血器具の安全性についてページ */
	.blood_collection-point-right div {
		height: 75px;
	}
	.blood_collection-point-lanset-flex {
		display: block;
	}
	.blood_collection-point-lanset-flex div div:last-child{
		margin-bottom: 20px;
		font-size: 13px;
	}
	.blood_collection-structure-top {
		display: none;
	}
	.blood_collection-structure-top-sp {
		display: block;
		margin: 15px 0;
		font-size: 18px;
	}
	.blood_collection-structure-top-sp div:last-child {
		text-align: right;
	}
	.blood_collection-structure-top-sp span {
		font-size: 13px;
	}
	.blood_collection-structure div {
		font-size: 9px;
	}
	.blood_collection-disposal-top {
		display: none;
	}
	.blood_collection-disposal-top-sp {
		display: block;
		margin: 15px 0;
		font-size: 18px;
	}
	.blood_collection-disposal-top-sp span {
		font-size: 13px;
	}
	.blood_collection-disposal-flex {
		display: block;
	}
	.blood_collection-disposal-flex div div:last-child{
		margin-bottom: 20px;
		font-size: 13px;
	}

/* add End azet-toyama 2021-02-15 採血器具の安全性についてページ */

/* add Start azet-toyama 2021-02-16 検査案内ページ */
.test_information-sick-flex {
	justify-content: center;
}
.test_information-sick-text-flex {
	display: block;
}
.test_information-sick-text-flex div:last-child {
	margin-left: auto;
}
.test_information-inspection-flex {
	display: block;
}
.test_information-inspection-flex div {
	width: calc(100% - 2px) !important;
}
.test_information-inspection-flex div:last-child {
	border-left: 1px solid #CEE3F6;
	width: calc(100% - 2px - 10px) !important;
}
.test_information-inspection-flex-even {
	display: block;
}
.test_information-inspection-flex-even div {
	width: calc(100% - 2px) !important;
}
.test_information-inspection-flex-even div:last-child {
	background: #FFF;
	border-left: 1px solid #CEE3F6;
	width: calc(100% - 2px - 10px) !important;
}
/* add end azet-toyama 2021-02-16 検査案内ページ */
}
