@charset "utf-8";
/***** 全体 *****/
#wrapper {
	position: relative;
}

/***** ボタン *****/
.c-btn,
.c-btn02 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	text-decoration: none;
	font-weight: 500;
	color: var(--base-color);
	text-align: center;
	padding: clamp(1.6rem,4.3vw,2.4rem) 3.2rem clamp(1.6rem,1.3vw,2.4rem) 1rem;
	border: 1px solid var(--base-color);
	background-color: #fff;
	position: relative;
	transition: 0.3s;
}

.c-btn02 {
	color: var(--orange-color);
	border-color: var(--orange-color);
}

.c-btn:hover {
	background-color: var(--light-blue-color);
}

.c-btn02:hover {
	background-color: var(--light-orange-color);
}

.c-btn::before,
.c-btn::after,
.c-btn02::before,
.c-btn02::after {
	content: "";
	position: absolute;
	transition: 0.3s;
}

.c-btn::before,
.c-btn02::before {
	width: clamp(6px,1.6vw,8px);
	height: clamp(6px,1.6vw,8px);
	right: clamp(10px,2.7vw,16px);
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	border-top: 2px solid var(--base-color);
	border-right: 2px solid var(--base-color);
}

.c-btn02::before {
	border-color: var(--orange-color);
}

.c-btn:hover::before,
.c-btn02:hover::before {
	right: 1.1rem;
}

.c-btn::after,
.c-btn02::after {
	width: clamp(12px,3.2vw,16px);
	height: 2px;
	right: clamp(10px,2.7vw,16px);
	top: 50%;
	transform: translateY(-50%);
	background: var(--base-color);
}

.c-btn02::after {
	background: var(--orange-color);
}

.c-btn:hover::after,
.c-btn02:hover::after {
	width: 21px;
	right: 1.1rem;
}

.c-btn__flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: clamp(1rem,1.3vw,2.4rem);
}

.c-btn__flex__item {
	width: calc((100% - clamp(1rem,1.3vw,2.4rem))/2);
	display: flex;
}

.c-txtbtn,
.c-txtbtn02 {
	text-decoration: none;
	color: var(--black-color);
	font-size: clamp(1.6rem,4.2vw,2rem);
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	transition: 0.3s;
}

.c-txtbtn__cover,
.c-txtbtn__cover02 {
	display: block;
	position: relative;
	width: clamp(60px,16vw,80px);
	height: clamp(30px,8vw,40px);
	overflow: hidden;
	border: 1px solid var(--base-color);
	margin-left: var(--item-s-margin);
	transition: 0.3s;
}

.c-txtbtn__cover02 {
	border-color: var(--orange-color);
}

.c-txtbtn:hover .c-txtbtn__cover {
	background: var(--base-color);
}

.c-txtbtn02:hover .c-txtbtn__cover02 {
	background: var(--orange-color);
}

.c-txtbtn__arrow:before,
.c-txtbtn__arrow02:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: clamp(22px,5.9vw,28px);
	margin: auto;
	width: clamp(18px,4.8vw,24px);
	height: 2px;
	background: var(--base-color);
	transition: 0.3s;
}

.c-txtbtn__arrow02:before {
	background: var(--orange-color);
}

.c-txtbtn:hover .c-txtbtn__arrow:before,
.c-txtbtn02:hover .c-txtbtn__arrow02:before {
	right: clamp(17px,4.5vw,23px);
	width: clamp(23px,6.1vw,29px);
	background: #fff;
}

.c-txtbtn__arrow:after,
.c-txtbtn__arrow02:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: clamp(22px,5.9vw,28px);
	margin: auto;
	width: clamp(8px,2.1vw,10px);
	height: clamp(8px,2.1vw,10px);
	border-left: 2px solid var(--base-color);
	border-bottom: 2px solid var(--base-color);
	transform: rotate(-135deg);
	transition: 0.3s;
}

.c-txtbtn__arrow02:after {
	border-color: var(--orange-color);
}

.c-txtbtn:hover .c-txtbtn__arrow:after,
.c-txtbtn02:hover .c-txtbtn__arrow02:after {
	right: clamp(17px,4.5vw,23px);
	border-color: #fff;
}

.c-btn__ss {
	width: 30%;
}

.c-btn__s {
	width: 40%;
}

.c-btn__m {
	width: 50%
}

.c-btn__l {
	width: 65%;
}

.c-btn__ll {
	width: 80%;
}

.c-btn__center {
	margin-inline: auto;
}

.c-btn__right {
	margin-left: auto;
}

.c-btn__left {
	margin-right: auto;
}

@media screen and (max-width:768px) {
	.c-btn__flex {
		flex-direction: column;
	}
	
	.c-btn__flex__item {
		width: 100%;
	}
	
	.c-btn__ss {
		width: 70%;
	}
	
	.c-btn__s {
		width: 80%;
	}
	
	.c-btn__m,
	.c-btn__l,
	.c-btn__ll {
		width: 100%;
	}
	
	.c-btn__right,
	.c-btn__left {
		margin-inline: auto;
	}
}

/***** 画像 *****/
.c-img__full,
.c-img__full__800,
.c-img__full__500,
.c-img__full__300 {
	width: 100%;
	margin: var(--item-m-margin) auto;
}

.c-img__full__800 {
	max-width: 800px;
}

.c-img__full__500 {
	max-width: 500px;
}

.c-img__full__300 {
	max-width: 300px;
}

.c-img__border {
	border: 1px solid var(--border-color);
}

.c-img__flex {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 2.4rem;
	margin: var(--item-m-margin) auto;
}

.c-img__flex__txt {
	flex: 1;
}

.c-img__flex__img {
	width: 45%;
	max-width: 550px;
	height: 100%;
}

.c-img__cap {
	position: relative;
}

.c-img__cap__center {
	position: absolute;
	width: 100%;
	left: 98%;
	font-size: 1.4rem;
	margin-top: 10px;
}

.c-img__cap__margin {
	margin-top: 35px;
}

@media screen and (max-width:768px) {
	.c-img__full__800,
	.c-img__full__500,
	.c-img__full__300,
	.c-img__flex__img {
		width: 100%;
		max-width: none;
	}
	
	.c-img__flex {
		flex-direction: column;
		gap: 1.6rem;
	}
	
	.c-img__flex:last-child {
		margin-bottom: 0;
	}
	
	.c-img__cap__center {
		display: none;
	}
	
	.c-img__cap__margin {
		margin-top: 10px;
	}
}

/***** header *****/
.l-header {
	position: fixed;
	z-index: 9999;
	background: rgba(255,255,255,0.9);
	top: 0;
	left: 0;
	width: calc(100% - 40px);
	height: var(--header-height);
	margin: 10px 20px 0;
	box-shadow: 0px 3px 5px rgba(0,0,0,0.16);
	border-radius: 10px;
	padding: var(--item-s-padding) 2rem;
	transition: 0.3s;
}

.l-header.change-color {
	background: #fff;
	width: 100%;
	margin: 0;
	border-radius: 0;
}

.l-header__contents {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 44px;
	gap: 1rem;
}

.l-header__logo {
	display: flex;
	align-items: center;
}

.l-header__ttl {
	margin-right: clamp(1.4rem,5.4vw,2rem);
}

.l-header__ttl__link {
	display: block;
}

.l-header__ttl img {
	max-height: 44px;
}

.l-header__logo .l-header__subttl:first-of-type {
	margin-right: clamp(1.4rem,5.4vw,2rem);
}

.l-header__subttl img {
	max-height: 35px;
}

.l-header__txtlink {
	display: flex;
	align-items: center;
}

.l-header__txtlink__list {
	display: flex;
	align-items: center;
	gap: clamp(1rem,1vw,2.4rem);
}

.l-header__txtlink__link {
	text-decoration: none;
	color: var(--black-color);
	font-size: clamp(1.2rem,1.3vw,1.4rem);
	font-weight: 500;
	display: flex;
	align-items: center;
	position: relative;
	transition: 0.3s;
	white-space: nowrap;
}

.l-header__txtlink__link:hover {
	opacity: 0.7;
}

.l-header__txtlink__link::before {
	content: "";
	margin-right: 4px;
	display: inline-block;
}

.l-header__txtlink__item:first-child .l-header__txtlink__link::before {
	width: 20px;
	height: 18px;
	background: url("../images/common/contact_icon.svg") 0 50% no-repeat;
	background-size: 20px 18px;
}

.l-header__txtlink__item:last-child .l-header__txtlink__link::before {
	width: 18px;
	height: 25px;
	background: url("../images/common/map_icon.svg") 0 50% no-repeat;
	background-size: 20px 25px;
}

.l-header__btn__link {
	text-decoration: none;
	color: #fff;
	background: var(--sub-color);
	font-size: clamp(1.2rem,1.3vw,1.4rem);
	font-weight: 500;
	margin: 0 clamp(1rem,1vw,1.6rem) 0 clamp(1rem,1vw,2.4rem);
	padding: 1rem 2.4rem;
	border-radius: 10px;
	min-width: 118px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transition: 0.3s;
}

.l-header__btn__link:hover {
	background: var(--base-color);
}

.l-header__btn__link::before {
	content: "";
	width: 20px;
	height: 20px;
	margin-right: 5px;
	background: url("../images/common/lock_icon.svg") 0 50% no-repeat;
	background-size: 20px 20px;
	display: inline-block;
}

.l-header__lang__list,
.l-header.open .l-header__lang.sp .l-heade__lang__list {
	display: flex;
	align-items: center;
	padding: 0.6rem 1rem;
	border: 1px solid var(--border-color);
	border-radius: 10px;
	background-color: #fff;
}

.l-header__lang__link {
	font-size: clamp(1.2rem,1.3vw,1.4rem);
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
	display: inline-block;
	color: var(--black-color);
	border-radius: 10px;
	padding: 4px 16px;
	transition: 0.3s;
}

.l-header__lang__link.active {
	color: #fff;
	background-color: var(--sub-color);
}

.l-header__lang.sp {
	display: none;
}

@media screen and (max-width:914px) {
	.l-header {
		width: calc(100% - 32px);
		margin: var(--item-s-margin) var(--item-s-margin) 0;
		padding: 1.2rem;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 1rem;
	}
	
	.l-header.open {
		margin: 0;
		padding: 12px var(--item-s-padding) 0;
		width: 100%;
		gap: 0;
	}
	
	.l-header.open:before {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
		z-index: 99;
		background-color: #fff;
		height: 140px;
	}
	
	.l-header__contents {
		height: 26px;
	}
	
	.l-header__txtlink {
		display: none;
	}
	
	.l-header__txtlink__link {
		font-size: 1.4rem;
	}
	
	.l-header.open .l-header__logo {
		z-index: 999;
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
		margin-top: auto;
	}
	
	.l-header.open .l-header__subttl img {
		max-height: 26px;
	}
	
	.l-header.open .l-header__lang.sp {
		display: flex;
		z-index: 999;
		flex-direction: column;
		margin: 0 var(--item-s-margin) 0 auto;
	}
	
	.l-header.open .l-header__lang.sp .l-heade__lang__list {
		padding: 0.5rem 0.8rem;
	}
	
	.l-header.open .l-header__lang.sp .l-header__lang__link {
		font-size: 1.2rem;
		padding: 4px 10px;
	}
	
	.l-header.open .l-header__ttl {
		margin: 0;
	}
	
	.l-header__ttl img {
		max-height: 26px;
	}
	
	.l-header__logo .l-header__subttl:first-of-type {
		display: none;
	}
	
	.l-header.open .l-header__logo .l-header__subttl:first-of-type {
		display: block;
		margin: 0;
	}
	
	.l-header__subttl img {
		max-height: 22px;
	}
}

/***** nav *****/
.l-header__nav {
	margin-top: var(--item-s-margin);
}

.l-header__nav__list {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.l-header__nav__item {
	flex: auto;
	padding: 0 1rem;
	border-right: 1px solid var(--border-color);
	display: flex;
	justify-content: center;
	align-items: center;
}

.l-header__nav__item:last-child {
	border: none;
}

.l-header__nav__link {
	text-decoration: none;
	font-weight: 600;
	color: var(--black-color);
	font-size: clamp(1.4rem,1.5vw,1.8rem);
	position: relative;
	display: block;
	cursor: pointer;
}

.l-header__nav__item:nth-child(2) .l-header__nav__link,
.l-header__nav__item:nth-child(3) .l-header__nav__link,
.l-header__nav__item:nth-child(4) .l-header__nav__link,
.l-header__nav__item:nth-child(5) .l-header__nav__link {
	padding-right: 20px;
}

.l-header__nav__item:nth-child(2) .l-header__nav__link:before,
.l-header__nav__item:nth-child(3) .l-header__nav__link:before,
.l-header__nav__item:nth-child(4) .l-header__nav__link:before,
.l-header__nav__item:nth-child(5) .l-header__nav__link:before {
	position: absolute;
	top: 40%;
	right: 0;
	width: 8px;
	height: 8px;
	border-right: 1px solid var(--black-color);
	border-bottom: 1px solid var(--black-color);
	transform: rotate(45deg);
	transform-origin: right;
	content: "";
	transition: 0.3s ease;
}

.l-header__nav__sublist {
	background-color: rgba(255,255,255,0.9);
	padding: var(--inner-padding);
	border-radius: 10px;
	box-shadow: 0px 3px 5px rgba(0,0,0,0.16);
	width: 100%;
	visibility: hidden;
	opacity: 0;
	transition: all .3s;
	position: absolute;
	top: 135px;
	left: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.6rem clamp(3.2rem,3.5vw,6rem);;
	align-items: center;
}

.l-header.change-color .l-header__nav__sublist {
	background-color: #fff;
	top: var(--header-height);
	border-radius: 0;
}

.l-header__nav__item:hover .l-header__nav__sublist {
	visibility: visible;
	opacity: 1;
}

.l-header__nav__subitem {
	font-size: clamp(1.4rem,1.5vw,1.8rem);
	font-weight: 600;
	color: var(--base-color);
	display: flex;
	align-items: center;
	height: 100%;
}

.l-header__nav__item:nth-child(3) .l-header__nav__subitem {
	color: var(--orange-color);
}

.l-header__nav__sublist .l-header__nav__subitem:first-child {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.l-header__nav__sublist .l-header__nav__subitem:first-child.l-header__nav__sublink02 {
	justify-content: flex-start;
}

.l-header__nav__sublist .l-header__nav__subitem:nth-child(2),
.l-header__nav__sublist .l-header__nav__subitem:nth-child(3) {
	flex-direction: column;
}

.l-header__nav__item:nth-child(4) .l-header__nav__subitem:last-child {
	margin-bottom: auto;
}

.l-header__nav__item:nth-child(2) .l-header__nav__subitem:first-child {
	grid-row: auto / span 4;
}

.l-header__nav__item:nth-child(3) .l-header__nav__subitem:first-child {
	grid-row: auto / span 3;
}

.l-header__nav__item:nth-child(5) .l-header__nav__subitem:first-child {
	grid-row: auto / span 2;
}

.l-header__nav__subttl {
	font-size: clamp(1.6rem,1.8vw,2.2rem);
	letter-spacing: 0.06em;
}

.l-header__nav__item:nth-child(2) .l-header__nav__subttl,
.l-header__nav__item:nth-child(3) .l-header__nav__subttl {
	padding-left: 60px;
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 50px 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.l-header__nav__item:nth-child(2) .l-header__nav__subttl {
	background-image: url("../images/common/gastro_icon.svg");
}

.l-header__nav__item:nth-child(3) .l-header__nav__subttl {
	background-image: url("../images/common/endocrine_icon.svg");
}

.l-header__nav__sublink {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	text-decoration: none;
	color: var(--black-color);
	font-weight: 500;
	position: relative;
	padding: 0 var(--item-m-padding) var(--item-s-padding) 0;
	border-bottom: 1px solid var(--border-color);
	transition: 0.3s;
	flex: 1;
}

.l-header__nav__sublink:hover {
	color: var(--base-color);
}

.l-header__nav__item:nth-child(3) .l-header__nav__sublink:hover,
.l-header__nav__item:nth-child(4) .l-header__nav__subitem:nth-child(3) .l-header__nav__sublink:hover,
.l-header__nav__item:nth-child(5) .l-header__nav__subitem:nth-child(3) .l-header__nav__sublink:hover {
	color: var(--orange-color);
}

.l-header__nav__sublink::before,
.l-header__nav__sublink::after {
	content: "";
	position: absolute;
	transition: 0.3s;
}

.l-header__nav__sublink::before {
	width: 8px;
	height: 8px;
	right: 0;
	top: 35%;
	transform: translateY(-50%) rotate(45deg);
	border-top: 2px solid var(--base-color);
	border-right: 2px solid var(--base-color);
}

.l-header__nav__item:nth-child(3) .l-header__nav__sublink::before,
.l-header__nav__item:nth-child(4) .l-header__nav__subitem:nth-child(3) .l-header__nav__sublink::before,
.l-header__nav__item:nth-child(5) .l-header__nav__subitem:nth-child(3) .l-header__nav__sublink::before {
	border-color: var(--orange-color);
}

.l-header__nav__sublink:hover::before {
	right: -8px;
}

.l-header__nav__sublink::after {
	width: 16px;
	height: 2px;
	right: 0;
	top: 35%;
	transform: translateY(-50%);
	background: var(--base-color);
}

.l-header__nav__item:nth-child(3) .l-header__nav__sublink::after,
.l-header__nav__item:nth-child(4) .l-header__nav__subitem:nth-child(3) .l-header__nav__sublink::after,
.l-header__nav__item:nth-child(5) .l-header__nav__subitem:nth-child(3) .l-header__nav__sublink::after {
	background: var(--orange-color);
}

.l-header__nav__sublink:hover::after {
	width: 24px;
	right: -8px;
}

.l-header__nav__item:nth-child(4) .l-header__nav__subitem:nth-child(4) {
	align-items: baseline;
}

.l-header__nav__item:nth-child(4) .l-header__nav__subitem:nth-child(4) .l-header__nav__sublink {
	display: block;
	height: auto;
}

.l-header__nav__sublist02 {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1.6rem;
	margin-top: var(--item-s-margin);
}

.l-header__nav__sublink02 {
	text-decoration: none;
	color: var(--black-color);
	font-size: clamp(1.4rem,1.5vw,1.6rem);
	font-weight: 500;
	margin-left: 1em;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--border-color);
	transition: 0.3s;
}

.l-header__nav__sublink02:hover {
	color: var(--base-color);
}

.l-header__nav__item:nth-child(4) .l-header__nav__subitem:nth-child(3) .l-header__nav__sublink02:hover {
	color: var(--orange-color);
}

.l-header__sp__btn {
	display: none;
}

@media screen and (max-width:914px) {
	.l-header__nav {
		width: 100%;
		height: 100%;
		margin: 0;
		overflow: auto;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 10;
		background: #fff;
		transform: translateX(100%);
		transition: translateX .5s cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	
	.l-header.open .l-header__nav {
		transform: translateX(0);
		padding-top: 150px;
	}
	
	.l-header__nav__list {
		display: block;
		margin: 0 var(--item-s-margin);
	}
	
	.l-header__nav__item,
	.l-header__nav__item:last-child {
		align-items: flex-start;
		flex-direction: column;
		border-right: none;
	}
	
	.l-header__nav__item:first-of-type {
		
	}
	
	.l-header__nav__subitem:first-of-type {
		display: none;
	}
	
	.l-header__nav__sublist02 {
		gap: 1rem;
		margin-bottom: 1.6rem;
		margin-top: 0;
	}
	
	.l-header__nav__subitem02 .l-header__nav__sublink02 {
		display: block;
		font-size: 1.4rem;
		font-weight: normal;
	}
	
	.l-header__nav__link {
		border-bottom: 1px solid var(--border-color);
		padding: 1.4rem 0;
		width: 100%;
	}
	
	.l-header__nav__item:nth-child(2) .l-header__nav__link,
	.l-header__nav__item:nth-child(3) .l-header__nav__link,
	.l-header__nav__item:nth-child(4) .l-header__nav__link,
	.l-header__nav__item:nth-child(5) .l-header__nav__link {
		width: 100%;
	}
	
	.l-header__nav__item:nth-child(2) .l-header__nav__link {
		color: var(--base-color);
		padding-left: 33px;
		background-position: left center;
		background-repeat: no-repeat;
		background-size: 28px 28px;
		background-image: url("../images/common/gastro_icon.svg");
	}
	
	.l-header__nav__item:nth-child(3) .l-header__nav__link {
		color: var(--orange-color);
		padding-left: 33px;
		background-position: left center;
		background-repeat: no-repeat;
		background-size: 28px 28px;
		background-image: url("../images/common/endocrine_icon.svg");
	}
	
	.l-header__nav__item:nth-child(2) .l-header__nav__link::before,
	.l-header__nav__item:nth-child(2) .l-header__nav__link::after,
	.l-header__nav__item:nth-child(3) .l-header__nav__link::before,
	.l-header__nav__item:nth-child(3) .l-header__nav__link::after,
	.l-header__nav__item:nth-child(4) .l-header__nav__link::before,
	.l-header__nav__item:nth-child(4) .l-header__nav__link::after,
	.l-header__nav__item:nth-child(5) .l-header__nav__link::before,
	.l-header__nav__item:nth-child(5) .l-header__nav__link::after {
		position:absolute;
		content:'';
		top: 0;
		right: 0;
		bottom: 0;
		width: 20px;
		height: 2px;
		margin: auto;
		background: var(--black-color);
		border: none;
		transform: none;
	}
	
	.l-header__nav__item:nth-child(2) .l-header__nav__link::after,
	.l-header__nav__item:nth-child(3) .l-header__nav__link::after,
	.l-header__nav__item:nth-child(4) .l-header__nav__link::after,
	.l-header__nav__item:nth-child(5) .l-header__nav__link::after {
		transform:rotate(-90deg);
		transition:transform 0.3s;
	}
	
	.l-header__nav__item:nth-child(2) .l-header__nav__link.active::after,
	.l-header__nav__item:nth-child(3) .l-header__nav__link.active::after,
	.l-header__nav__item:nth-child(4) .l-header__nav__link.active::after,
	.l-header__nav__item:nth-child(5) .l-header__nav__link.active::after {
		transform: rotate(0deg);
	}
	
	.l-header__nav__sublist {
		visibility: inherit;
		opacity: inherit;
		position: static;
		display: none;
		grid-template-columns: repeat(1, 1fr);
		box-shadow: none;
		padding: var(--inner-padding) 0 var(--item-l-padding) var(--item-s-padding);
	}
	
	.l-header__nav__sublist.active {
		display: block;
	}
	
	.l-header__nav__item:nth-child(2) .l-header__nav__subitem:first-of-type .l-header__nav__subttl,
	.l-header__nav__item:nth-child(3) .l-header__nav__subitem:first-of-type .l-header__nav__subttl,
	.l-header__nav__item:nth-child(4) .l-header__nav__subitem:first-of-type .l-header__nav__subttl,
	.l-header__nav__item:nth-child(5) .l-header__nav__subitem:first-of-type .l-header__nav__subttl {
		display: none;
	}
	
	.l-header__nav__sublink {
		font-size: 1.4rem;
		font-weight: normal;
		margin-bottom: var(--item-s-margin);
		padding-left: var(--item-l-padding);
	}
	
	.l-header__nav__sublink::before {
		left: 7px;
	}
	
	.l-header__nav__sublink::after {
		left: 0;
	}
	
	.l-header__sp__btn {
		display: flex;
		flex-direction: column;
		gap: 1.2rem;
		margin: var(--inner-margin) var(--item-s-margin) 0;
	}
	
	.l-header__btn.sp {
		display: block;
	}
	
	.l-header__btn__link {
		margin: 0;
	}
	
	.l-header__txtlink__list {
		gap: 0.8rem;
		justify-content: space-between;
	}
	
	.l-header__txtlink__item {
		width: 50%;
	}
	
	.l-header__txtlink__item:first-child .l-header__txtlink__link::before {
		background: url("../images/common/contact_w_icon.svg") 0 50% no-repeat;
		background-size: 20px 18px;
	}
	
	.l-header__txtlink__item:last-child .l-header__txtlink__link::before {
		background: url("../images/common/map_w_icon.svg") 0 50% no-repeat;
		background-size: 20px 25px;
	}
	
	.l-header__txtlink__link {
		color: #fff;
		background: var(--sub-color);
		padding: 1rem 2.4rem;
		border-radius: 10px;
		justify-content: center;
	}
	
	.l-header__mv__theme {
		margin: var(--section-margin) var(--item-s-margin) var(--section-margin);
		text-align: center;
		display: block;
	}
	
	.l-header__mv__txt {
		font-size: 1.8rem;
		font-weight: 500;
		font-family: "Noto Serif JP", serif;
		letter-spacing: 0.07em;
	}
	
	.l-header__mv__cross {
		width: 18px;
		display: inline-block;
		margin: 0.6rem 0;
		position: relative;
	}
	
	.l-header__mv__cross:before,
	.l-header__mv__cross:after {
		content: "";
		width: 100%;
		height: 1px;
		background: var(--black-color);
		position: absolute;
		top: 0;
		left: 0;
	}

	.l-header__mv__cross:before {
		transform: rotate(45deg);
	}

	.l-header__mv__cross:after {
		transform: rotate(-45deg);
	}
	
	.l-header__copy {
		font-size: 1.2rem;
		text-align: center;
		margin: 0 var(--item-s-margin) var(--item-s-margin);
		display: block;
	}
}

/* ハンバーガーボタン */
@media screen and (max-width:914px) {
	.c-menu__btn {
		width: 26px;
		height: 26px;
		z-index: 999;
		cursor: pointer;
		position: sticky;
		top: 0;
		right: 0;
		transition: 0.3s;
	}
	
	.c-menu__line {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		margin: auto;
		width: 100%;
		height: 10px;
		transition: 0.3s;
	}
	
	.c-menu__line::before {
		display: block;
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		margin: auto;
		width: 26px;
		height: 2px;
		transition: 0.3s;
		background: var(--sub-color);
	}
	
	.c-menu__line::after {
		display: block;
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		width: 26px;
		height: 2px;
		transition: 0.3s;
		background: var(--sub-color);
	}
	
	.c-menu__txt {
		display: block;
		position: absolute;
		top: 14px;
		left: 0;
		right: 0;
		margin: auto;
		width: 100%;
		transition: 0.3s;
	}
	
	.c-menu__txt::before {
		content: "MENU";
		text-align: center;
		color: var(--sub-color);
		font-size: 0.9rem;
		font-weight: 600;
		letter-spacing: 0.02em;
		opacity: 1;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		margin: auto;
	}
	
	.c-menu__txt::after {
		content: "CLOSE";
		text-align: center;
		color: var(--sub-color);
		font-size: 0.8rem;
		font-weight: 600;
		letter-spacing: 0.02em;
		opacity: 0;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		margin: auto;
	}
	
	.c-menu__btn.active .c-menu__line::before {
		transform: rotate(-20deg);
		top: 7px;
	}
	
	.c-menu__btn.active .c-menu__line::after {
		transform: rotate(20deg);
		bottom: 1px;
	}
	
	.c-menu__btn.active .c-menu__txt::before {
		opacity: 0;
	}
	
	.c-menu__btn.active .c-menu__txt::after {
		opacity: 1;
	}
}

/***** footer *****/
.l-footer {
	background-color: var(--gray-color);
	padding: 8rem var(--item-s-padding);
}

.l-footer__inner {
	width: 100%;
	max-width: var(--section-width);
	margin-inline: auto;
}

.l-footer__contents {
	display: flex;
	justify-content: space-between;
}

.l-footer__contents:first-of-type {
	margin-bottom:  var(--inner-margin);
	padding-bottom: var(--inner-padding);
	border-bottom: 1px solid var(--border-color);
}

.l-footer__contents:last-of-type {
	margin-bottom: var(--section-margin);
}

.l-footer__list {
	width: 90%;
	display: flex;
	justify-content: space-around;
	gap: 2.4rem;
}

.l-footer__item {
	width: 25%;
}

.l-footer__ttl {
	display: block;
	font-size: 1.6rem;
	font-weight: 600;
	margin-bottom: var(--item-s-margin);
}

.l-footer__sublist {
	padding-left: var(--item-s-padding);
	border-left: 1px solid var(--border-color);
}

.l-footer__subitem {
	margin-bottom: 0.5rem;
}

.l-footer__subitem__nolink {
	font-size: 1.4rem;
}

.l-footer__item:nth-child(3) .l-footer__subitem:nth-child(2),
.l-footer__item:nth-child(3) .l-footer__subitem:nth-child(3),
.l-footer__item:nth-child(3) .l-footer__subitem:nth-child(4),
.l-footer__item:nth-child(3) .l-footer__subitem:nth-child(6),
.l-footer__item:nth-child(3) .l-footer__subitem:nth-child(7),
.l-footer__item:nth-child(3) .l-footer__subitem:nth-child(8) {
	padding-left: 1em;
}

.l-footer__sublink {
	text-decoration: none;
	color: var(--black-color);
	font-size: 1.4rem;
}

.l-footer__nolist__item .l-footer__ttl {
	text-decoration: none;
	color: var(--black-color);
}

.l-footer__item:last-child .l-footer__nolist__item .l-footer__ttl {
	margin-top: var(--item-s-margin);
}

.l-footer__sidelist {
	width: 10%;
	margin-right: var(--item-m-margin);
}

.l-footer__sidelink {
	display: block;
	text-decoration: none;
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--black-color);
	margin-bottom: var(--item-s-margin);
	white-space: nowrap;
}

.l-footer__logo {
	display: block;
}

.l-footer__logo__img {
	max-height: 40px;
}

.l-footer__address {
	font-size: 1.4rem;
	margin-top: 8px;
}

.l-footer__infolist {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-bottom: var(--item-s-margin);
}

.l-footer__infolink {
	color: var(--black-color);
	font-size: 1.2rem;
	line-height: 1;
	transition: 0.3s;
}

.l-footer__infolink:not(:first-child) {
	margin-left: 1em;
	padding-left: 1em;
	border-left: 1px solid var(--border-color);
}

.l-footer__logolist {
	display: flex;
	align-items: center;
	gap: 1.6rem;
}

.l-footer__infoimg {
	display: block;
	flex: 1;
}

.l-footer__infoimg__img {
	height: 65px;
	padding: 1.2rem;
	background-color: #fff;
	border: 1px solid var(--border-color);
}

.l-footer__copy {
	font-size: 1.2rem;
	text-align: center;
}

@media screen and (max-width:768px) {
	.l-footer {
		padding: var(--inner-padding) var(--item-s-padding);
	}
	
	.l-footer__contents:first-of-type,
	.l-footer__list {
		flex-direction: column;
		margin-bottom: 0;
		padding: 0;
		border: none;
	}
	
	.l-footer__list {
		width: 100%;
		gap: 0;
		margin-bottom: 4px;
		padding: 0;
	}
	
	.l-footer__item {
		width: 100%;
	}
	
	.l-footer__sublist {
		display: none;
	}
	
	.l-footer__sublist.active {
		display: block;
		border: none;
		padding-left: 1rem;
	}
	
	.l-footer__ttl {
		cursor: pointer;
		position: relative;
		margin-bottom: 1.2rem;
		padding-bottom: 1.2rem;
		border-bottom: 1px solid var(--border-color);
	}
	
	.l-footer__item:nth-child(1) .l-footer__ttl {
		color: var(--base-color);
		padding-left: 33px;
		background-position: left top 2px;
		background-repeat: no-repeat;
		background-size: 28px 28px;
		background-image: url("../images/common/gastro_icon.svg");
	}
	
	.l-footer__item:nth-child(2) .l-footer__ttl {
		color: var(--orange-color);
		padding-left: 33px;
		background-position: left top 2px;
		background-repeat: no-repeat;
		background-size: 28px 28px;
		background-image: url("../images/common/endocrine_icon.svg");
	}
	
	.l-footer__ttl::before,
	.l-footer__ttl::after {
		position:absolute;
		content:'';
		top: 0;
		right: 0;
		bottom: 0;
		width: 20px;
		height: 2px;
		margin: auto;
		background: var(--black-color);
	}
	
	.l-footer__ttl::after {
		transform:rotate(-90deg);
		transition:transform 0.3s;
	}
	
	.l-footer__ttl.active::after {
		transform: rotate(0deg);
	}
	
	.l-footer__nolist__item .l-footer__ttl::before,
	.l-footer__nolist__item .l-footer__ttl::after {
		content: none;
	}
	
	.l-footer__subitem {
		margin-bottom: 0.8rem;
		padding-bottom: 0.8rem;
		border-bottom: 1px solid var(--border-color);
	}
	
	.l-footer__sidelink {
		font-size: 1.4rem;
		margin: 0;
	}
	
	.l-footer__sidelist {
		width: 100%;
		margin-bottom: 12px;
		padding-bottom: var(--item-s-padding);
		border-bottom: 1px solid var(--border-color);
		display: flex;
		flex-wrap: wrap;
		gap: 1.2rem;
	}
	
	.l-footer__sideitem {
		width: calc((100% - 13px)/2);
	}
	
	.l-footer__contents {
		flex-direction: column;
	}
	
	.l-footer__contents:last-of-type {
		align-items: center;
	}
	
	.l-footer__logo__img {
		max-height: 35px;
	}
	
	.l-footer__address {
		font-size: 1.2rem;
		margin-top: 5px;
	}
	
	.l-footer__infoitem {
		margin-top: var(--item-s-margin);
	}
	
	.l-footer__infolist {
		justify-content: center;
		margin-bottom: 1.2rem;
	}
	
	.l-footer__infoimg {
		text-align: left;
	}
	
	.l-footer__infoimg__img {
		padding: 1rem 2.4rem;
	}
	
	.l-footer__logolist {
		flex-direction: column;
		gap: 1rem;
	}
}