@charset "UTF-8";

/*メインイメージ
---------------------------------------------------------*/
.m_imgbox {
	position: relative;
}
.m_imgbox .m_img {
	position: absolute;
	z-index: 0;
}
.m_imgbox .m_content {
	position: absolute;
	z-index: 10;
}
.m_imgbox .m_logo {
	position: absolute;
	z-index: 9;
}

.m_imgbox::before,
.m_imgbox::after {
	position: absolute;
	content: "";	/*上下グラデ*/
	width: 100%;
	z-index: 1;
	left: 0;
}
.m_imgbox::before {
	background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
	height: 17%;
	top: 0;
}
.m_imgbox::after {
	background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
	height: 30%;
	bottom: 0;
}

.m_imgbox .m_img {
	width: 100%;
	height: 100%;
}
.m_imgbox .m_img .slide {
	width: 100%;
	background: url("../images/m_img1_2@2x.jpg") no-repeat center;
	background-size: cover;
}
.m_imgbox .m_img .slide2 {
	width: 100%;
	background: url("../images/m_img2_2@2x.jpg") no-repeat center;
	background-size: cover;
}
.m_imgbox .m_img .slide3 {
	width: 100%;
	background: url("../images/m_img3@2x.jpg") no-repeat center;
	background-size: cover;
}
.m_imgbox .m_img .slide4 {
	width: 100%;
	background: url("../images/m_img4_2@2x.jpg") no-repeat center;
	background-size: cover;
}
.m_imgbox .m_img .slide5 {
	width: 100%;
	background: url("../images/m_img5_2@2x.jpg") no-repeat center top;
	background-size: cover;
}

.m_imgbox .m_content {
	left: 0;
	right: 0;
	margin: auto;
	top: 50%;
	transform: translateY(-50%);
}
.m_imgbox .m_inbox {
	position: relative;
	padding: 20% 0 16%;
	box-sizing: border-box;
}
.m_imgbox .m_inbox .recruit {
	position: absolute;
	left: 10%;
	top: 11%;
	width: 18vw;
	max-width: 220px;
}
.m_imgbox .m_inbox .m_copy {
	width: 58%;
	max-width: 859px;
	text-align: center;
	margin: 0 auto;
}
.m_imgbox .m_inbox .entry {
	position: absolute;
	background-color: var(--color-primary);
	color: #000000;
	right: 9%;
	top: 45%;
}
.m_imgbox .m_inbox .entry:hover {
	background-color: var(--color-secondary);
}

.m_imgbox .m_logo {
	width: 100%;
	box-sizing: border-box;
	padding: 0 5%;
	text-align: right;
	color: #FFF;
	font-size: 90%;
	left: 0;
	bottom: 5%;
}
.m_imgbox .m_logo p {
	width: 26vw;
	max-width: 356px;
}
.m_imgbox .m_logo ul {
	line-height: 1.6em;
	margin-top: 1.5em;
	display: flex;
    flex-wrap: wrap;
}
.m_imgbox .m_logo ul li::after {
	content: "／";
}
.m_imgbox .m_logo ul li:last-child::after {
	display: none;
}

/*アニメーション*/
.m_imgbox .m_inbox .m_copy,
.m_imgbox .m_inbox .recruit,
.m_imgbox .m_inbox .entry {
	opacity: 0;
}
.m_imgbox.anime_on .m_inbox .m_copy {
	animation: fadeIn 3.0s 2s forwards;
}
.m_imgbox.anime_on .m_inbox .recruit {
	animation: fadeIn 1.0s 3s forwards;
}
.m_imgbox.anime_on .m_inbox .entry {
	animation: fadeIn 1.0s 3.3s forwards;
}
.box_s .line {
	position: absolute;
	width: 1px;
	height: 100%;
	left: 50%;
}
.box_s .line::before {
	position: absolute;
	content: "";
	background-color: rgba(0,0,0,0.5);
	width: 1px;
	height: 16%;
	left: 50%;
	bottom: 12%;
	animation: slideLine 2s infinite;
}

/*オーバーレイ*/
.m_imgbox .overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.m_imgbox.anime_on .overlay .overlay1 {
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(295deg, transparent 0%, transparent 43%, #B0EBE7 43%, #B0EBE7 100%);
	mix-blend-mode: multiply;
	animation: slideInRight 2s;
}
.m_imgbox.anime_on .overlay .overlay2 {
	opacity: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(205deg, transparent 0%, transparent 80%, rgba(0,0,0,0.7) 80%, rgba(0,0,0,0.7) 100%);
	animation: slideInRight 2s 1s forwards;
}


@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideLine {
0% {
	top: 70%;
	height: 0;
	opacity: 0;
}
30% {
	top: 70%;
	height: 16%;
	opacity: 1;
}
80% {
	top: 78%;
	height: 8%;
	opacity: 0;
}
100% {
	top: 86%;
	height: 0;
	opacity: 0;
}
}

/* 高さ1000px以下（タブレット幅まで）
------------------------------------------*/
@media only screen and (min-width: 960px) and (max-height: 1000px) {
.m_imgbox .m_inbox {
	padding: 21vh 0 23vh;
}
.m_imgbox .box_s {
	width: 12vw;
	min-width: 150px;
}
.m_imgbox .m_inbox .m_copy {
	width: 50%;
}
.m_imgbox .m_inbox .entry {
	right: 12%;
	top: 40%;
}
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.m_imgbox .m_inbox .recruit {
	left: 5%;
	top: 5%;
	width: 20vw;
}
.m_imgbox .m_logo {
	font-size: 80%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.m_imgbox::before,
.m_imgbox::after {
	display: none;
}
.m_imgbox .m_img .slide {
	width: 100%;
	background: url("../images/m_img_sp1_2@2x.jpg") no-repeat center;
	background-size: cover;
}
.m_imgbox .m_img .slide2 {
	width: 100%;
	background: url("../images/m_img_sp2_2@2x.jpg") no-repeat center;
	background-size: cover;
}
.m_imgbox .m_img .slide3 {
	width: 100%;
	background: url("../images/m_img_sp3@2x.jpg") no-repeat center;
	background-size: cover;
}
.m_imgbox .m_img .slide4 {
	width: 100%;
	background: url("../images/m_img_sp4_2@2x.jpg") no-repeat center;
	background-size: cover;
}
.m_imgbox .m_img .slide5 {
	width: 100%;
	background: url("../images/m_img_sp5_2@2x.jpg") no-repeat center top;
	background-size: cover;
}
.m_imgbox .m_content {
	position: static;
	height: 100%;
	top: auto;
	transform: none;
}
.m_imgbox .m_inbox {
	height: 100%;
	padding: 0;
}
.m_imgbox .m_inbox .recruit {
	left: 5%;
	top: 3%;
	width: 30vw;
}
.m_imgbox .m_inbox .m_copy {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translateX(-50%)translateY(-45%);
}
.m_imgbox .m_inbox .entry {
	right: 5%;
	top: auto;
	bottom: 5%;
}
.m_imgbox .m_logo {
	width: 65%;;
	font-size: 90%;
	left: 0;
	bottom: 5%;
}
.m_imgbox .m_logo p {
	width: 85%;
	max-width: 100%;
}	

/*オーバーレイ*/
.m_imgbox.anime_on .overlay .overlay1 {
	background: linear-gradient(295deg, transparent 0%, transparent 55%, #B0EBE7 55%, #B0EBE7 100%);
}
.m_imgbox.anime_on .overlay .overlay2 {
	background: linear-gradient(215deg, transparent 0%, transparent 73%, rgba(0,0,0,0.7) 73%, rgba(0,0,0,0.7) 100%);
}
}



/*instagram
---------------------------------------------------------*/
#insta {
	background-color: var(--bg-beige);
}
#insta .w1350 {
	padding: 100px 0 80px;
}
#insta .com_lead{
	text-align: center;
}
#insta .com_lead dt {
	font-size: 206%;
	font-weight: bold;
	line-height: 1.8em;
	letter-spacing: .4em;
	margin-bottom: 0.5em;
}
#insta .com_lead dt span {
	color: var(--color-grn);
}

#insta .insta__heading {
	text-align: center;
}
#insta .insta__heading .ft_azo {
	color: var(--color-grn);
	font-size: 206%;
	letter-spacing: .16em;
	line-height: 1.0em;
	padding-top: 2.7em;
	background: url("../images/icon_insta@2x.png") no-repeat center top;
	background-size: auto 1.7em;
}
#insta .insta__heading .fw_bold {
	font-size: 147%;
	letter-spacing: .4em;
	line-height: 1.4em;
	margin: 1.2em 0 .8em;
}
#insta .insta__feed {
	width: 95%;
	max-width: 1060px;
	margin: 1.5em auto 0;
	position: relative;
}
#insta .insta__feed .dummy {
	width: 100%;
	aspect-ratio: 1060 / 215;
	background: #ccc;
}
#insta .insta__feed .insta__btn {
	display: block;
	text-align: center;
	color: #fff;
	font-size: min(118%,1.7vw);
	letter-spacing: .16em;
	width: 7.5em;
	aspect-ratio: 1 / 1;
	background: #4ca08c;
	border-radius: 50%;
	position: absolute;
	z-index: 2;
	right: 0;
	bottom: 0;
	transform: translate(50%,70%);
}
#insta .insta__feed .insta__btn div {
	line-height: 1.5em;
	padding-bottom: 1.7em;
	position: absolute;
	margin: auto;
	left: 0;
	right: 0;
	bottom: 1.0em;
}
#insta .insta__feed .insta__btn div::before {
	content: "";
	position: absolute;
	width: 1.2em;
	aspect-ratio: 1 / 1;
	background: #372308 url("../images/arrow1@2x.png") no-repeat center center;
	background-size: contain;
	border-radius: 50%;
	margin: auto;
	left: 0;
	right: 0;
	bottom: 0;
}
#insta .insta__feed .insta__btn:hover {
	background: var(--color-primary);
	color: #000;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
#insta .w1350 {
	padding: 8% 0;
}
#insta .com_lead dt {
	font-size: 3.5vw;
}
#insta .insta__heading .ft_azo {
	padding-top: 2.0em;
	background-size: auto 1.5em;
}
#insta .insta__heading .fw_bold {
	margin: .6em 0 .4em;
}
#insta .insta__feed {
	width: 100%;
}
#insta .insta__feed .insta__btn {
	transform: translate(30%,70%);
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
#insta .w1350 {
	padding: 10% 0;
}
#insta .com_lead dt {
	font-size: 170%;
	letter-spacing: .1em;
	line-height: 1.6em;
	margin-bottom: 0.4em;
}
#insta .com_lead dd{
	text-align: left;
}

#insta .insta__heading .ft_azo {
	font-size: 180%;
	letter-spacing: .1em;
	padding-top: 1.8em;
	background-size: auto 1.2em;
}
#insta .insta__heading .fw_bold {
	font-size: 120%;
	letter-spacing: .1em;
	line-height: 1.4em;
	margin: 1.0em 0 .5em;
}
#insta .insta__feed .dummy {
	aspect-ratio: 1060 / 500;
}
#insta .insta__feed .insta__btn {
	font-size: 80%;
	width: 7.0em;
	transform: translate(30%,60%);
}
/* pluign */
#sbi_images {
	gap: 10px !important;
}
}



/*とも歯科で働くなら
---------------------------------------------------------*/
#if .if_bg{
	padding-top: 100px;
}
#if .if_index {
	padding-top: 80px;
}
#if h2 {
	font-size: 206%;
	font-weight: bold;
	line-height: 1.8;
	letter-spacing: .4em;
	padding-left: 5.1em;
	margin-left: 6%;
	margin-bottom: 1em;
	position: relative;
}
#if h2::before {
	position: absolute;
	content: "if";
	font-size: 457%;
	font-family: azo-sans-web, sans-serif;
	font-weight: 500;
	font-style: normal;
	line-height: 1;
	letter-spacing: .16em;
	width: 5.1em;
	height: 100%;
	left: 0;
	top: -0.56em;
}
#if .box_s {
	background-color: #000;
	position: absolute;
	top: -50px;
}
.if_inbox {
	position: relative;
	max-width: 1400px;
	padding: 80px;
	box-sizing: border-box;
}
.if_inbox::before {
	position: absolute;
	content: "";
	width: 100vw;
	height: 100%;
	top: 0;
	z-index: -10;
}
.if_inbox > * {
	position: relative;
	z-index: 10;
}
#if .index p {
	font-size: 135%;
	font-weight: bold;
	letter-spacing: .4em;
	line-height: 1.7;
}
#if .index .com_index1 {
	color: #FFF;
}

.skill, .support, .benefits,
.support .if_inbox .bg {
	position: relative;
}
.skill::before,
.benefits::before {
	position: absolute;
	content: "";
	height: 100%;
	max-width: 1000px;
	z-index: -1;
	right: 0;
}
.skill::after,
.support .if_inbox::after,
.benefits::after {
	position: absolute;
	content: "";
	height: 100%;
	max-width: 1000px;
	z-index: 0;
	right: 0;
}


/*SKILL*/
.skill::before {
	width: 67%;
	background: url("../images/skill_bg_2@2x.png") no-repeat right top;
	background-size: 100% auto;
	top: 0;
}
.skill::after {
	width: 67%;
	height: 54vw;
	max-height: 800px;
	background: radial-gradient(at 70% -50%, rgba(155,185,250,0) 0%, rgba(155,185,250,0) 40%, #73B9FA 70%);
	background-size: 100% auto;
	top: 0;
}
.skill .if_inbox {
	margin-left: 6%;
}
.skill .if_inbox::before {
	background-color: #73B9FA;
	left: 0;
}
.skill .box_s {
	right: 7%;
}
.skill .box_s span {
	color: #73B9FA;
}
.skill .box_img {
	width: 100%;
	margin-left: -12%;
	margin-bottom: 3em;
	position: relative;
}
.skill .box_img .abs {
	position: absolute;
	width: 20%;
	max-width: 195px;
	right: -10%;
	top: 60%;
}

/*SUPPORT*/
.support .if_inbox {
	background: url("../images/sup_bg_2@2x.png") no-repeat right top;
	background-size: 70% auto;
	padding-left: 100px;
	padding-bottom: 140px;
	margin-right: 6%;
	margin-left: auto;
}
.support .if_inbox::before {
	background-color: #64C4D9;
	right: 0;
}
.support .if_inbox::after{
	width: 72%;
	height: 0;
	padding-top: 58%;
	background: radial-gradient(at 80% -50%, rgba(100,196,217,0) 0%, rgba(00,196,217,0) 50%, #64C4D9 70%);
	top: 0;
}
.support .box_s {
	left: 7%;
}
.support .box_s span {
	color: #64C4D9;
}
.support .index {
	margin-left: 23%;
}
.support .index + p {
	font-size: 135%;
	font-weight: bold;
	color: #FFF;
	letter-spacing: .4em;
	line-height: 1.7;
	padding-left: 70px;
	margin-bottom: 60px;
	position: relative;
}
.support .index + p::before {
	position: absolute;
	content: "";
	background: url("../images/icon_beginner.svg") no-repeat left center;
	background-size: 100% auto;
	width: 42px;
	height: 59px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.support .flexbox.box1 {
	width: 80%;
	max-width: 770px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
	gap: 60px 0;
}
.support .flexbox li {
	width: 48%;
	max-width: 346px;
}
.support .flexbox li img {
	margin-bottom: 1.5em;
}
.support .flexbox li p {
	font-size: 85%;
	line-height: 1.6;
}
.support .flexbox li .img_large {
	display: block;
	width: 120.3%;
	max-width: 416px;
}
.support .box2 {
	position: relative;
	align-self: baseline;
}
.support .box2::after {
	position: absolute;
	content: "SEMINAR";
	color: rgba(0,0,184,0.05);
	font-size: 994%;
	font-family: azo-sans-web, sans-serif;
	font-weight: 500;
	font-style: normal;
	line-height: 1;
	letter-spacing: .04em;
	width: 67%;
	height: 100%;
	right: 2%;
	top: -15%;
}
.support .box2 .box_l {
	width: 35%;
	max-width: 415px;
	margin-bottom: 3%;
	position: relative;
}
.support .box2 .box_l .abs{
	position: absolute;
	width:  86%;
	height: 92%;
	left: -5%;
	top: 30%
}
.support .box2 .box_r {
	width: 61%;
	max-width: 741px;
	flex-wrap: nowrap;
}
.support .box2 .box_r > div {
	align-self: flex-end;
}
.support .box2 .box_r > div:first-of-type {
	width: 48%;
}
.support .box2 .box_r > div:last-of-type {
	width: 46%;
}

/*BENEFITS*/
.benefits::before {
	width: 40%;
	max-width: 600px;
	background: url("../images/ben_bg_2@2x.png") no-repeat right bottom;
	background-size: 100% auto;
	bottom: 0;
}
.benefits::after {
	width: 40%;
	height: 34vw;
	max-width: 600px;
	max-height: 500px;
	background: radial-gradient(at 80% 100%, rgba(146,217,135,0) 0%, rgba(146,217,135,0) 30%, #92D987 70%);
	bottom: 0;
}
.benefits .if_inbox {
	padding-bottom: 150px;
	margin-left: 6%;
}
.benefits .if_inbox::before {
	background-color: #92D987;
	left: 0;
}
.benefits .box_s {
	right: 7%;
}
.benefits .box_s span {
	color: #92D987;
}
.benefits .com_index1 {
	margin-bottom: 40px;
}
.benefits .index2 {
	margin-bottom: 40px;
}
.benefits .index2 .ft_azo {
	font-size: 994%;
	line-height: 1;
	display: inline-block;
	margin-bottom: 1rem;
}
.benefits .index2 .ft_azo .abs {
	position: relative;
}
.benefits .index2 .ft_azo .abs::after {
	position: absolute;
	content: "";
	background: url("../images/ben_abs1@2x.png") no-repeat center center;
	background-size: 100% auto;
	width: 5%;
	height: 100%;
	left: 103%;
	bottom: -15%;
}
.benefits .index2 .ft_azo .indent {
	padding-left: 1.7em;
}
.benefits .index2 .ft_azo .stroke {
	color: #92D987;
	text-stroke: 1px #1A1A19;
	-webkit-text-stroke: 1px #1A1A19;
}

.benefits .index2 .box_img {
	width: 19%;
	max-width: 220px;
	margin-top: -14%;
}
.benefits .index2 .box_txt {
	width: 76%;
}
.benefits .index2 .box_txt p {
	max-width: 900px;
	margin-right: auto;
}

.benefits .point_list .flexbox {
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
    justify-content: center;
    flex-wrap: wrap;
	gap: 40px 1.6%;
}
.benefits .point_list .flexbox li {
	width: 23.8%;
	position: relative;
}
.benefits .point_list .flexbox li.img_582 {
	width: 49.2%;
}
.benefits .point_list .flexbox li:nth-child(1) {
	margin-left: 12.7%;
}
.benefits .point_list .flexbox li:nth-child(2) {
	margin-right: 12.7%;
}
.benefits .point_list .flexbox li:nth-child(7) {
	margin-left: 12.7%;
}
.benefits .point_list .flexbox li:nth-child(9) {
	margin-right: 12.7%;
}
.benefits .point_list .flexbox li::before,
.benefits .point_list .flexbox li::after {
	position: absolute;
	content: "";
	z-index: 1;
}
.benefits .point_list .flexbox li.abs2::after {
	background: url("../images/ben_abs2@2x.png") no-repeat left top;
	background-size: 100% auto;
	width: 25%;
	height: 40%;
	right: -7%;
	bottom: -7%;
}
.benefits .point_list .flexbox li.abs7::before {
	background: url("../images/ben_abs7.svg") no-repeat left top;
	background-size: 100% auto;
	width: 25%;
	height: 35%;
	left: -0.5%;
	top: -5%;
}
.benefits .point_list .flexbox li.abs3:after {
	background: url("../images/ben_abs3@2x.png") no-repeat left top;
	background-size: 100% auto;
	width: 26%;
	height: 46%;
	right: -4%;
	bottom: -5%;
}
.benefits .point_list .flexbox li.abs8::before{
	background: url("../images/ben_abs8.svg") no-repeat left top;
	background-size: 100% auto;
	width: 32%;
	height: 45%;
	left: -1.5%;
	top: -10%;
}
.benefits .point_list .flexbox li.abs4::after {
	background: url("../images/ben_abs4@2x.png") no-repeat left top;
	background-size: 100% auto;
	width: 30%;
	height: 52%;
	right: -1%;
	bottom: -17%;
}
.benefits .point_list .flexbox li.abs5::after {
	background: url("../images/ben_abs5@2x.png") no-repeat left top;
	background-size: 100% auto;
	width: 42%;
	height: 86%;
	right: -33%;
	bottom: -10%;
}
.benefits .point_list .flexbox .in_txt1,
.benefits .point_list .flexbox .in_txt2 {
	color: #fff;
	letter-spacing: .1em;
	line-height: 1.4em;
	position: absolute;
	z-index: 2;
}
.benefits .point_list .flexbox .in_txt1 {
	font-size: min(100%,1.2vw);
}
.benefits .point_list .flexbox .in_txt2 {
	font-weight: bold;
	font-size: min(135%,1.5vw);
}
.benefits .point_list .flexbox .item1 .in_txt1 {
	right: 3%;
	bottom: 1.0em;
}
.benefits .point_list .flexbox .item2 .in_txt2,
.benefits .point_list .flexbox .item3 .in_txt2 {
	left: 12%;
	bottom: .8em;
}

.benefits .point_list .box_img {
	position: relative;
	border-right: 1px solid #1A1A19;
}
.benefits .point_list .flexbox li .box_img::before {
	position: absolute;
	content: "";
	background-color: #1A1A19;
	width: 82%;
	height: 1px;
	top: calc(100% - 1px);
	right: 0;
}
.benefits .point_list .flexbox li.img_582 .box_img::before {
	width: 92%;
}

/* PC調整
------------------------------------------*/
@media only screen and (max-width: 1500px) {
.support .box2::after {
	font-size: 11vw;
}
.benefits .index2 .ft_azo {
	font-size: 11.2vw;
}
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
#if .if_bg{
	padding-top: 8%;
}
#if .if_index {
	padding-top: 8%;
}
#if h2 {
	font-size: 160%;
	letter-spacing: .3em;
	padding-left: 4.5em;
}
#if h2::before {
	letter-spacing: .1em;
}
	
#if .box_s {
	top: -30px;
}
.if_inbox {
	padding: 5%;
}
#if .index p {
	font-size: 120%;
	letter-spacing: .2em;
}
/*BENEFITS*/
.benefits .if_inbox {
	padding-bottom: 10%;
}
.benefits .com_index1 {
	margin-bottom: 4%;
}
.benefits .point_list .flexbox {
	gap: 3vw 1.6%;
}
/*SUPPORT*/
.support .if_inbox {
	padding-left: 8%;
	padding-bottom: 10%;
}
.support .index + p {
	font-size: 115%;
	letter-spacing: .2em;
	padding-left: 8%;
	margin-bottom: 6%;
}
.support .index + p::before {
	width: 4%;
	height: 150%;
}
.support .flexbox li img {
	margin-bottom: 1em;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
#if .if_bg{
	padding-top: 10%;
}
#if .if_index {
	padding-top: 8%;
}
#if h2 {
	font-size: 130%;
	letter-spacing: .3em;
	padding-left: 4.5em;
}
#if h2::before {
	letter-spacing: .1em;
}
#if .box_s {
	width: 22%;
	top: -2%;
}
#if .if_inbox {
	padding: 8% 4%;
	margin-left: 0;
	margin-right: 0;
}
#if .index p {
	font-size: 100%;
	line-height: 1.5;
	letter-spacing: .1em;
	margin-bottom: .5em;
}
/*SKILL*/
.skill .box_img {
	width: 112%;
	margin-left: -12%;
	margin-bottom: 1em;
}
.skill .box_s {
	right: 7%;
}
/*SUPPORT*/
.support .if_inbox {
	padding-left: 4%;
	padding-bottom: 10%;
}
.support .box_s {
	left: 7%;
}
.support .index {
	text-align: right;
    margin-left: 0;
}
.support .index + p {
	font-size: 100%;
	letter-spacing: .1em;
	line-height: 1.2;
	padding-left: 10%;
	margin-bottom: 6%;
}
.support .index + p::before {
	width: 6%;
	height: 100%;
}
.support .flexbox.box1 {
	width: 100%;
	max-width: 100%;
	display: block;
}
.support .flexbox li {
	width: 100%;
	max-width: 100%;
	margin-bottom: 10%;
	display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.support .flexbox li:nth-child(even) {
	flex-direction: row-reverse;
}
.support .flexbox li img {
	width: 48%;
	margin-bottom: 0;
}
.support .flexbox li p {
	width: 47%;
	font-size: 90%;
}
.support .flexbox li:has(.img_large) {
	display: block;
}
.support .flexbox li .img_large {
	width: 100%;
	max-width: 100%;
}
.support .flexbox li .img_large img {
	display: block;
	width: 60%;
	max-width: 100%;
	margin: 0 auto 1.0em;
}
.support .flexbox li .img_large p {
	width: 90%;
	max-width: 100%;
	margin: 0 auto;
}
.support .box2 {
	align-self: auto;
}
.support .box2::after {
	width: 85%;
	font-size: 400%;
	right: 0;
	top: -1%;
}
.support .box2 .box_l {
	width: 60%;
	margin-bottom: 15%;
}
.support .box2 .box_l::after {
	position: absolute;
	content: "";
	background: url("../images/sup_abs1@2x.png") no-repeat left top;
	width: 50%;
	height: 110%;
	background-size: 100% auto;
	left: 110%;
	top: 20%;
}
.support .box2 .box_r {
	width: 100%;
}
.support .box2 .box_r > div {
	align-self: flex-end;
}

/*BENEFITS*/
.benefits::before,
.benefits::after {
	display: none;
}
#if .benefits .if_inbox {
	padding-bottom: 15%;
}
.benefits .box_s {
	right: 7%;
}
.benefits .com_index1 {
	margin-bottom: 4%;
}
.benefits .index2 {
	margin-bottom: 5%;
}
.benefits .index2 .ft_azo {
	font-size: 14vw;
	line-height: 1.2;
}
.benefits .index2 .ft_azo .indent {
	padding-left: 1.5em;
}
.benefits .index2 .box_img {
	margin-top: -23%;
}
.benefits .index2 .box_txt {
	width: 100%;
	margin-top: 1em;
}

.benefits .point_list .flexbox {
    justify-content: space-between;
	gap: 10vw 0;
}
.benefits .point_list .flexbox li {
	width: 49%;
}
.benefits .point_list .flexbox li.img_582 {
	width: 100%;
}
.benefits .point_list .flexbox li:nth-child(1),
.benefits .point_list .flexbox li:nth-child(2),
.benefits .point_list .flexbox li:nth-child(7),
.benefits .point_list .flexbox li:nth-child(9) {
	margin-left: 0;
	margin-right: 0;
}
.benefits .point_list .flexbox li.abs5::after {
	width: 38%;
	right: -22%;
	bottom: -17%;
}
.benefits .point_list .flexbox .in_txt1,
.benefits .point_list .flexbox .in_txt2 {
	letter-spacing: .05em;
}
.benefits .point_list .flexbox .in_txt1 {
	font-size: 80%;
}
.benefits .point_list .flexbox .in_txt2 {
	font-size: 94%;
}
.benefits .point_list .flexbox .item1 .in_txt1 {
	right: 5%;
	bottom: .5em;
}
.benefits .point_list .flexbox .item2 .in_txt2,
.benefits .point_list .flexbox .item3 .in_txt2 {
	bottom: .6em;
}
}



/*歯科医師教育
---------------------------------------------------------*/
#education .edu_index {
	margin-bottom: 130px;
}
#education .education_bg{
	padding-top: 100px;
}
#education h2 {
	padding-top: 2em;
	margin-bottom: 2em;
	position: relative;
}
#education h2::before {
	position: absolute;
	content: "";
	background-color: #333333;
	width: 15%;
	height: 1px;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
}

/*CAREER PLAN*/
.career {
	background-color: var(--bg-beige);
	position: relative;
}
.career .w1200 {
	padding-top: 160px;
	position: relative;
}
.career .index {
	margin-bottom: 80px;
}
.career .index h3 {
	font-size: 206%;
	color: #FFF;
	font-weight: bold;
	letter-spacing: .4em;
	line-height: 1.7;
	position: relative;
	z-index: 1;
	padding: 0 0.8em 0.6em 0;
}
.career .index h3::before {
	position: absolute;
	content: "";
	background: url("../images/car_bg1.svg") no-repeat right bottom;
	background-size: 100% auto;
	width: 92%;
	height: 266%;
	right: 0;
	bottom: 0;
	z-index: -1;
}
.career .index .com_index_azo {
	position: absolute;
	left: 2%;
	top: -40px;
}
.career .car_inbox > .flt_l {
	width: 64%;
}
.career .car_inbox .flt_l.box_no {
	width: 29%;
	max-width: 220px;
	margin-right: 5%;
}
.career .car_inbox > .flt_l .box_txt {
	width: 63%;
}
.career .car_inbox .box_txt dt {
	font-size: 176%;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 0.5em;
}
.career .car_inbox > .flt_r {
	width: 32.5%
}
.career .car_inbox .checklist {
	padding-left: 12%;
	box-sizing: border-box;
	margin-top: 50px;
	position: relative;
}
.career .car_inbox .checklist::before {
	position: absolute;
	content: "";
	background-image: url("../images/car_abs1@2x.png");
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 100% auto;
	width: 15%;
	height: 130%;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.career .car_inbox:nth-of-type(3) .checklist::before {
	background-image: url("../images/car_abs2@2x.png");
	background-size: 100% auto;
}
.career .car_inbox:nth-of-type(4) .checklist::before {
	background-image: url("../images/car_abs3@2x.png");
	background-size: 100% auto;
}
.career .car_inbox .checklist p {
	margin-bottom: 1em;
}
.career .car_inbox .checklist li {
	font-size: 130%;
	font-weight: bold;
	letter-spacing: .2em;
	padding: 0 1.5em 0 1.8em;
	box-sizing: border-box;
	margin-bottom: 0.5em;
	float: left;
	
	position: relative;
}
.career .car_inbox .checklist li::before {
	position: absolute;
	content: "";
	background: url("../images/icon_check.svg") no-repeat left center;
	background-size: 100% auto;
	width: 27px;
	height: 22px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.career .car_inbox .checklist li span {
	position: relative;
}
.career .car_inbox .checklist li span::after {
	position: absolute;
	content: "";
	background: url("../images/line1.svg") repeat left center;
	background-size: 106px 7px;
	width: 97.5%;
	height: 7px;
	left: 0;
	top: 103%;
}
.career .car_inbox.box4 {
	background-color: #FFF;
	position: relative;
	padding-bottom: 120px;
}
.career .car_inbox.box4 .com_index_azo {
	position: absolute;
	right: -15%;
	top: -40px;
}
.career .car_inbox.box4 .box_no {
	width: 19%;
	margin-right: 5%;
}
.career .car_inbox.box4 .box_txt {
	width: 53%;
	padding-top: 40px;
}

.career .car_inbox > .flt_l.salary {
	margin-top: 50px;
}
.career .sala_style1 {
	display: flex;
    justify-content: space-between;
}
.career .sala_style1 > dt {
	width: 35px;
	min-height: 5.0em;
	background: #17707f;
	color: #fff;
	position: relative;
}
.career .sala_style1 > dd {
	width: calc(100% - 50px);
}
.career .sala_style1 > dt span {
	font-size: 106%;
	font-weight: bold;
	letter-spacing: .1em;
	line-height: 1.0em;
	width: 1.0em;
	writing-mode: vertical-rl;
	text-orientation: upright;
	position: absolute;
	margin: auto;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.career .sala_style2,
.career .sala_bunin {
	font-size: min(113%,1.6vw);
	font-weight: bold;
	letter-spacing: .15em;
	line-height: 1.2em;
}
.career .sala_style2 {
	display: flex;
    align-items: center;
    flex-wrap: wrap;
	gap: .5em .5em;
}
.career .sala_style2 > dt {
	background: #fff;
	color: #17707f;
	padding: .5em 2.0em;
	border-radius: 3.0em;
}
.career .sala_style3 .ft_azo {
	color: #459ea5;
	font-size: 250%;
	letter-spacing: normal;
	line-height: 1.2em;
	display: inline-block;
	vertical-align: middle;
	margin: 0 .1em;
	transform: translateY(-.1em);
	background: url("../images/marker1@2x.png") no-repeat center bottom .15em;
	background-size: 100% .15em;
}
.career .sala_style3 .txt_en {
	font-size: 115%;
	line-height: 1.2em;
	font-weight: normal;
}

.career .car_inbox.box4 .sala_flex {
	width: 90%;
	max-width: 1020px;
	margin: 30px auto 0;
	display: flex;
    justify-content: space-between;
}
.career .car_inbox.box4 .sala_flex > dl {
	width: 50%;
}
.career .car_inbox.box4 .sala_style1 > dd ul {
	font-size: min(113%,1.6vw);
	font-weight: bold;
	letter-spacing: .15em;
	line-height: 1.2em;
}
.career .car_inbox.box4 .sala_style1 > dd ul li {
	padding-left: 1.0em;
	position: relative;
	margin-bottom: 1.0em;
}
.career .car_inbox.box4 .sala_style1 > dd ul li::before {
	content: "";
	position: absolute;
	width: .3em;
	height: .3em;
	border-radius: 50%;
	background: #17707f;
	left: .2em;
	top: .5em;
}
.career .car_inbox.box4 .sala_style2 > dt {
	background: var(--bg-beige);
	padding-left: 1.2em;
	padding-right: 1.2em;
}
.career .car_inbox.box4 .sala_bunin > dt {
	text-align: center;
	background: #17707f;
	color: #fff;
	padding: .5em 1.0em;
	border-radius: 3.0em;
	margin-bottom: 1.2em;
	position: relative;
	z-index: 0;
}
.career .car_inbox.box4 .sala_bunin > dd {
	display: flex;
    justify-content: center;
	column-gap: 3%;
}
.career .car_inbox.box4 .sala_bunin > dd p {
	position: relative;
}
.career .car_inbox.box4 .sala_bunin > dd p .fukidashi {
	display: block;
	position: absolute;
	z-index: 1;
	width: 4.0em;
	top: -1.5em;
}
.career .car_inbox.box4 .sala_bunin > dd p:first-child .fukidashi {
	left: 3.0em;
}
.career .car_inbox.box4 .sala_bunin > dd p:last-child .fukidashi {
	right: 1.0em;
}

/*スライド*/
.career .slide_box li {
	position: relative;
}
.career .slide_box li::before {
	position: absolute;
	content: "";
	background-color: #000;
	width: 1px;
	height: 14%;
	left: 50%;
	top: 0;
	transform: translateY(-50%);
	z-index: 10;
}
.career .bx-viewport {
	overflow: visible !important;
}
.career .slide_box li p {
	font-size: 117%;
	color: #000;
	letter-spacing: .16em;
	position: absolute;
	left: 50%;
	top: -3em;
	transform: translateX(-50%);
	z-index: 10;
}

/* PC調整1
------------------------------------------*/
@media only screen and (min-width: 960px) and (max-width: 1500px) {	
.career .car_inbox.box4 .com_index_azo {
	font-size: 6vw;
	right: -7vw;
}
}

/* PC調整2
------------------------------------------*/
@media only screen and (min-width: 960px) and (max-width: 1200px) {
/*CAREER PLAN*/
.career .w1200 {
	padding-top: 12%;
}
.career .index h3 {
	font-size: 2.9vw;
}
.career .index .com_index_azo {
	font-size: 7.5vw
}
.career .car_inbox .box_txt dt {
	font-size: 2.5vw;
}
.career .car_inbox.box4 .com_index_azo {
	right: -5vw;
}
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
#education .education_bg{
	padding-top: 8%;
}
#education .edu_index {
	margin-bottom: 14%;
}
#education h2 img {
    width: 50%;
}
.career .car_inbox .flt_l.box_no {
	margin-bottom: 5%;
}

/*CAREER PLAN*/
.career .w1200 {
	padding-top: 12%;
}
.career .index {
	margin-bottom: 8%;
}
.career .index h3 {
	font-size: 2.9vw;
}
.career .index .com_index_azo {
	font-size: 7.5vw
}
.career .car_inbox .box_txt dt {
	font-size: 120%;
}
.career .car_inbox > .flt_l.checklist,
.career .car_inbox > .flt_l.salary {
	width: 100%;
	margin-top: 5%;
}
.career .car_inbox > .flt_l .box_txt {
	width: 100%;
	float: none;
}

.career .car_inbox .checklist {
    padding-left: 16%;
    margin-top: 5%;
}
.career .car_inbox .checklist li {
	font-size: 110%;
}
.career .car_inbox:nth-of-type(4) {
	margin-bottom: 10%;
}
.career .car_inbox.box4 {
	padding-bottom: 10%;
}
.career .car_inbox.box4 .com_index_azo {
	left: 33%;
	top: -40px;
}
.career .car_inbox.box4 .box_txt {
	width: 70%;
	padding-top: 8%;
}

.career .sala_style2,
.career .sala_bunin {
	font-size: 100%;
	letter-spacing: .05em;
}
.career .car_inbox.box4 .sala_flex {
	width: 94%;
}
.career .car_inbox.box4 .sala_flex .sala_style1 {
	width: 40%;
}
.career .car_inbox.box4 .sala_flex .sala_bunin {
	width: 60%;
}
.career .car_inbox.box4 .sala_style1 > dd ul {
	font-size: 90%;
	letter-spacing: .05em;
}
/*スライド*/
.career .slide_box li p {
	font-size: 100%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
#education .education_bg{
	padding-top: 10%;
}
#education .edu_index {
	margin-bottom: 14%;
}
#education h2 img {
    width: 80%;
}
#education h2 + p {
    text-align: left;
}
	
/*CAREER PLAN*/
.career .w1200 {
	padding-top: 16%;
}
.career .index {
	margin-bottom: 8%;
}
.career .index h3 {
	font-size: 3.3vw;
	letter-spacing: .3em;
	line-height: 1.5;
	padding-left: 0;
}
.career .index .com_index_azo {
	left: 2%;
	top: -20px;
	line-height: 1;
}
.career .car_inbox .box_txt dt {
	font-size: 120%;
}
.career .car_inbox > .flt_l {
	width: 100%;
}
.career .car_inbox > .flt_l .box_no {
	width: 25%;
	margin-bottom: 2%;
}
.career .car_inbox > .flt_l .box_txt {
	width: 100%;
	float: none;
}
.career .car_inbox > .flt_l.checklist {
	width: 55%;
	margin-top: 4%;
}
.career .car_inbox > .flt_r {
	width: 40%;
	margin-top: 4%;
}
	
.career .car_inbox .checklist {
    padding-left: 18%;
    margin-top: 0;
}
.career .car_inbox .checklist::before {
	width: 30%;
	height: 100%;
	background-size: 100% auto;
	background-position: left bottom;
	left: 0;
	top: auto;
	transform: none;
}
.career .car_inbox .checklist p {
    margin-bottom: .5em;
}
.career .car_inbox .checklist li {
	font-size: 100%;
	letter-spacing: .1em;
	padding-right: 0;
	float: none;
}
.career .car_inbox .checklist li::before {
    width: 20px;
    height: 15px;
}
.career .car_inbox .checklist li span::after {
	background-size: 76px 5px;
	width: 102%;
	height: 5px;
}

.career .car_inbox.box4 {
	margin-top: 15%;
	padding-bottom: 15%;
}
.career .car_inbox.box4 .com_index_azo {
	font-size: 220%;
	right: -3%;
	top: -6%;
}
.career .car_inbox.box4 .box_no {
	width: 25%;
	margin-right: 5%;
	margin-bottom: 3%;
}
.career .car_inbox.box4 .box_txt {
	width: 90%;
	float: none;
	padding-top: 15%;
	margin: 0 5%;
}

.career .car_inbox > .flt_l.salary {
	margin-top: 5%;
}
.career .sala_style1 {
	display: block;
}
.career .sala_style1 > dt {
	width: 100%;
	min-height: 0;
	text-align: center;
	padding: .2em 0;
	margin-bottom: .5em;
}
.career .sala_style1 > dd {
	width: 100%;
}
.career .sala_style1 > dt span {
	font-size: 100%;
	width: 100%;
	writing-mode: horizontal-tb;
	position: static;
	transform: none;
}
.career .sala_style2,
.career .sala_bunin {
	font-size: 85%;
	letter-spacing: normal;
}
.career .sala_style2 > dt {
	padding: .5em 1.0em;
}
.career .sala_style3 .txt_en {
	font-size: 110%;
}

.career .car_inbox.box4 .sala_flex {
	margin-top: 0;
	display: block;
}
.career .car_inbox.box4 .sala_flex > dl {
	width: 100%;
	margin-top: 1.5em;
}
.career .car_inbox.box4 .sala_style1 > dd ul {
	font-size: 90%;
	letter-spacing: .05em;
	margin-top: 1.0em;
}
.career .car_inbox.box4 .sala_style1 > dd ul li {
	margin-bottom: .5em;
}
.career .car_inbox.box4 .sala_bunin > dt {
	font-size: 120%;
	letter-spacing: .1em;
}
		
/*スライド*/
.career .slide_box li p {
	font-size: 90%;
}
}



/*life
---------------------------------------------------------*/
.life {
	padding-top: 90px;
}
.life .index {
	position: relative;
	z-index: 10;
}
.life .index::after {
	position: absolute;
	content: "";
	background: url("../images/car_fuki0@2x.png") no-repeat left top;
	background-size: 100% auto;
	width: 38%;
	width: 31vw;
	height: 0;
	padding-top: 60%;
	max-width: 465px;
	right: 9%;
	top: -72%;
	z-index: -1;
	animation: fuwafuwa 3s infinite ease-in-out .8s alternate;
}
.life .index h3 {
	font-size: 294%;
	font-weight: bold;
	letter-spacing: .4em;
	line-height: 1.7;
	margin-bottom: 1.5em;
	font-feature-settings: "halt";
}
.life .flexbox {
	max-width: 1440px;
	margin: 0 2%;
}
.life .flexbox dl {
	width: 49%;
	padding: 13% 3% 4%;
	box-sizing: border-box;
	margin-bottom: 30px;
	position: relative;
}

.life .flexbox dl:nth-of-type(1) {
	background: url("../images/car_img7_2@2x.png") no-repeat center top;
	background-size: 100% auto;
}
.life .flexbox dl:nth-of-type(2) {
	background: url("../images/car_img8_2@2x.png") no-repeat center top;
	background-size: 100% auto;
}
.life .flexbox dl:nth-of-type(3) {
	background: url("../images/car_img9@2x.png") no-repeat center top;
	background-size: 100% auto;
}
.life .flexbox dl:nth-of-type(4) {
	background: url("../images/car_img10@2x.png") no-repeat center top;
	background-size: 100% auto;
}

.life .flexbox dl::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 72%;
	left: 0;
	top: 28%;
	box-sizing: border-box;
}
.life .flexbox dl.box1::before {
	background: linear-gradient(170deg, transparent 0%, transparent 25%, rgba(58,181,172,0.8) 25%, rgba(58,181,172,0.8) 100%);
}
.life .flexbox dl.box2::before {
	background: linear-gradient(170deg, transparent 0%, transparent 25%, rgba(70,152,212,0.8) 25%, rgba(70,152,212,0.8) 100%);
}
.life .flexbox dl.box3::before {
	background: linear-gradient(170deg, transparent 0%, transparent 25%, rgba(73,109,196,0.8) 25%, rgba(73,109,196,0.8) 100%);
}
.life .flexbox dl.box4::before {
	background: linear-gradient(170deg, transparent 0%, transparent 25%, rgba(185,113,199,0.8) 25%, rgba(185,113,199,0.8) 100%);
}

.life .flexbox dl dt {
	text-align: center;
	white-space: nowrap;
	padding: 1em 0 60px;
	background: url("../images/car_fuki.svg") no-repeat center center;
	background-size: contain;
	
	position: relative;
	z-index: 1;
}
.life .flexbox dl dt .life_style {
	font-size: 470%;
	font-weight: bold;
	color: #005953;
	line-height: 1;
	letter-spacing: .08em;
	margin-bottom: 0.8rem;
}
.life .flexbox dl.box2 dt .life_style {
	color: #0E558A;
}
.life .flexbox dl.box3 dt .life_style {
	color: #152B61;
}
.life .flexbox dl.box4 dt .life_style {
	color: #8D328F;
}
.life .flexbox dl dt .life_style span {
	font-size: 66%;
}

.life .flexbox dl dt .life_style + p {
	font-size: 135%;
	font-weight: bold;
	letter-spacing: .28em;
}

.life .flexbox dl dd {
	color: #FFF;
	position: relative;
	z-index: 1;
}

@keyframes fuwafuwa {
  0%, 100% {
  transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* PC調整
------------------------------------------*/
@media only screen and (min-width: 960px) and (max-width: 1500px) { 
.life .index h3 {
	font-size: 3.3vw;
}
.life .flexbox dl {
	padding-top: 11.3vw;
}
.life .flexbox dl::after {
	top: 9vw;
}
.life .flexbox dl dt {
	padding-bottom: 4vw;
}
.life .flexbox dl dt .life_style {
	font-size: 5.3vw;
}
.life .flexbox dl dt .life_style + p {
	font-size: 1.5vw;
}
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) { 

.life {
	padding-top: 8%;
}
.life .index::after {
	right: 5%;
	top: -60%;
}
.life .index h3 {
	font-size: 230%;
	letter-spacing: .2em;
	margin-bottom: 1em;
}
.life .flexbox dl {
	padding: 8% 2% 3%;
	margin-bottom: 2%;
}
.life .flexbox dl::after {
	width: 35%;
	top: 13%;
}
.life .flexbox dl dt {
	padding-bottom: 6%;
}
.life .flexbox dl dt .life_style {
	font-size: 300%;
	margin-bottom: .5rem;
}
.life .flexbox dl dt .life_style + p {
	font-size: 105%;
	letter-spacing: .15em;
}
.life .flexbox dl dd {
	font-size: 90%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.life {
	padding-top: 8%;
}
.life .index::after {
	width: 50%;
	right: -5%;
	top: -40%;
}
.life .index h3 {
	font-size: 140%;
	letter-spacing: .15em;
	margin-bottom: 1em;
}
.life .flexbox dl {
	width: 100%;
	padding-top: 20%;
	margin-bottom: 3%;
}
.life .flexbox dl::after {
	top: 20%;
}
.life .flexbox dl dt .life_style {
	font-size: 300%;
	margin-bottom: .5rem;
}
.life .flexbox dl dt .life_style + p {
	font-size: 105%;
	letter-spacing: .15em;
}
.life .flexbox dl dd {
	font-size: 90%;
}	
}



/*MESSAGE
---------------------------------------------------------*/
#message .message_bg{
	position: relative;
	padding-top: 100px;
}
#message .message_bg::before {
	position: absolute;
	content: "";
	width: 100vw;
	height: 81%;
	right: 6%;
	top: 18%;
	background: linear-gradient(280deg, transparent 0%, transparent 20%, #FAED00 20%, #FAED00 100%);
	z-index: -1;
}
#message .index .com_index2 {
	padding-top: 0.8em;
	margin-bottom: 0.8em;
	font-feature-settings: "halt";
}
#message .index .com_index_azo {
	margin-bottom: 0.8em;
}
#message .mes_lead {
	font-size: min(294%,3.6vw);
	font-weight: bold;
	letter-spacing: .4em;
	line-height: 1.7;
}
#message .box1 .flt_l {
	width: 39%;
	max-width: 580px;
	margin-bottom: 3%;
}
#message .box1 .flt_r {
	width: 58%;
}
#message .box1 .flt_r .index {
	max-width: 700px;
	margin-right: auto;
}

#message .box2 {
	max-width: 1350px;
	padding-left: 3%;
	margin-left: auto;
}
#message .box2 > p,
#message .box2 .com_greet {
	max-width: 1200px;
	padding-right: 2%;
	margin-right: auto;
}
#message .box2 > div {
	margin-top: 2em;
}
#message .box2 .flt_l {
	width: 53%;
}
#message .box2 .flt_r {
	width: 43%;
	max-width: 580px;
	align-self: flex-end;
}

#message .box2 .com_greet {
	margin-bottom: 1.5em;
}
#message .box2 .com_greet:last-of-type {
	margin-bottom: 0;
}
#message .box2 .txt_laarge {
	white-space: nowrap;
	font-size: min(176%,2.7vw);
	font-weight: bold;
	line-height: 2.0em;
	margin: 1.0em 0;
}
#message .box2 .name {
	margin-top: 1em;
}
#message .box2 .name dt {
	line-height: 1.7;
	letter-spacing: .2em;
	margin-bottom: 1em;
}
#message .box2 .name dd {
	font-size: 176%;
	letter-spacing: .2em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) { 
#message .message_bg{
	padding-top: 8%;
}
#message .message_bge::before {
	height: 86%;
	top: 16.5%;
	background: linear-gradient(280deg, transparent 0%, transparent 25%, #FAED00 25%, #FAED00 100%);
}
#message .index .com_index_azo {
    font-size: 8vw;
	margin-bottom: 5%;
}
#message .mes_lead {
	letter-spacing: .3em;
}
#message .box2 .txt_laarge {
	font-size: 3.2vw;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
#message .message_bg{
	padding-top: 10%;
}
#message .message_bg::before {
	height: 85%;
	top: 9%;
	background: linear-gradient(300deg, transparent 0%, transparent 5%, #FAED00 5%, #FAED00 100%);
}
#message .index .com_index_azo {
    font-size: 240%;
	margin-bottom: 5%;
}

#message .mes_lead {
	width: 95%;
	float: none;
	font-size: 150%;
	letter-spacing: .2em;
	margin-left: 5%;
}
#message .box2 {
	padding-left: 5%;
}
#message .box2 .com_greet > dt {
	padding-right: 5%;
}
#message .box2 > p,
#message .box2 .com_greet > dd {
	padding-right: 10%;
}
#message .box2 > div {
	margin-top: 2em;
}
#message .box2 .txt_laarge {
	font-size: 150%;
	letter-spacing: .1em;
	line-height: 1.6em;
	margin: 1.0em 0;
}
#message .box2 .flt_l {
	width: 95%;
	float: none;
	padding-right: 3%;
}
#message .box2 .flt_r {
	width: 50%;
	margin-top: -6%;
}
}



/*理念
---------------------------------------------------------*/
#concept .bg {
	background:rgba(242,242,242,0.5);
	padding: 50px 40px 70px 40px;
	max-width: 1100px;
	margin: 100px auto 0;
}
#concept h2 {
	background:var(--color-grn);
	border-radius: 13px;
	padding:15px 3%;
	font-size:150%;
	letter-spacing: 0.08em;
	text-align: center;
	color:#ffffff;
	margin-bottom: 48px;
}
#concept .con_inbox {
	max-width:930px;
	margin: 0 auto;
	text-align: center;
}
#concept .con_inbox dl {
	margin-bottom: 1.5em;
}
#concept .con_inbox dl:last-of-type {
	padding-bottom: 1.5em;
	margin-bottom: 1.5em;
	position: relative;
}
#concept .con_inbox dl:last-of-type::before {
	content: "";
	position: absolute;
	width: 30%;
	max-width: 100px;
	height: 1px;
	background: var(--color-grn);
	margin: auto;
	left: 0;
	right: 0;
	bottom: 0;
}
#concept .con_inbox dt {
	font-size: min(176%,2.6vw);
	font-weight: bold;
	letter-spacing: .1em;
	line-height: 1.4em;
	margin-bottom: .4em;
}

#concept .img_list {
	margin-top: 40px;
}
#concept .img_list li{
	float:left;
	width: 32.333%;
}
#concept .img_list li:nth-child(2){
	padding:0 1.5%;
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
#concept .bg {
	padding:35px;
	margin: 8% auto 0;
}
#concept h2 {
	padding:10px 3%;
	font-size:130%;
	margin-bottom: 30px;
}	
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
#concept .bg {
	padding:7% 5% 5% 5%;
	margin: 12% auto 0;
}
#concept h2 {
	font-size:110%;
	margin-bottom:8%;
	padding: 15px 0;
}
#concept .con_inbox {
	text-align: left;
}
#concept .con_inbox dt {
	text-align: center;
	font-size: 130%;
	letter-spacing: .05em;
}
}



/*VOICE
---------------------------------------------------------*/
#voice .voice_bg{
	padding-top: 100px;
}
#voice .index {
	margin-bottom: 60px;
}
#voice .bg {
	width: 96%;
	margin: 0 auto;
}
#voice .voice_inbox {
	max-width: 1440px;
	box-sizing: border-box;
	padding: 100px 70px;
	margin: 0 auto;
}

#voice .namebox {
	padding-bottom: 7.5%;
	margin-bottom: 3.5em;
	position: relative;
	font-size: min(100%,1.5vw);
}
#voice .namebox dl dt {
	font-size: 147%;
	font-weight: bold;
	line-height: 1.7;
	letter-spacing: .4em;
}
#voice .namebox dl dd {
	font-size: 205%;
	font-weight: bold;
	line-height: 1.7;
	letter-spacing: .4em;
}
#voice .namebox .ft_azo {
	color: rgba(26,26,25,0.5);
	font-size: 135%;
	font-weight: 500;
	line-height: 1;
	letter-spacing: .2em;
	position: absolute;
	bottom: 0;
}

#voice .inbox_top .box_img {
	position: relative;
}
#voice .inbox_top .box_img::before {
	content: "";
	position: absolute;
	z-index: 1;
	width: 15%;
	max-width: 50px;
	height: 100%;
	top: 0;
	background-image: url("../images/voice_corner1@2x.png");
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 100% auto;
}
#voice .inbox_top .box_img .abs_job {
	position: absolute;
	z-index: 2;
	width: 30%;
	max-width: 108px;
	right: 5%;
	bottom: 5%;
}

#voice .voice_lead {
	font-size: min(294%,3.5vw);
	font-weight: bold;
	letter-spacing: .2em;
	line-height: 1.5;	
	font-feature-settings: "halt";
}

#voice .inbox_top {
	margin-bottom: 3em;
}
#voice .inbox_top .namebox,
#voice .inbox_top .voice_lead {
	width: 68%;
	max-width: 850px;
}
#voice .inbox_top .box_img {
	width: 28%;
	max-width: 350px;
}

#voice .bg_white {background-color: #fff;}
#voice .bg_beige {background-color: var(--bg-beige);}
#voice .bg_white .inbox_top .namebox {
	text-align: right;
	background: url("../images/corner_y_l.svg") no-repeat left bottom;
	background-size: 24% auto;
}
#voice .bg_beige .inbox_top .namebox {
	text-align: left;
	background: url("../images/corner_y_r.svg") no-repeat right bottom;
	background-size: 24% auto;
}
#voice .bg_white .inbox_top .namebox .ft_azo {left: 26%;}
#voice .bg_beige .inbox_top .namebox .ft_azo {right: 26%;}
#voice .bg_white .inbox_top .box_img::before {
	left: 0;
	background-image: url("../images/voice_corner1@2x.png");
}
#voice .bg_beige .inbox_top .box_img::before {
	right: 0;
	background-image: url("../images/voice_corner2@2x.png");
}

#voice .bg_white .inbox_top .namebox,
#voice .bg_white .inbox_top .voice_lead {
	float: left;
}
#voice .bg_white .inbox_top .box_img {
	float: right;
}
#voice .bg_beige .inbox_top .namebox,
#voice .bg_beige .inbox_top .voice_lead {
	float: right;
}
#voice .bg_beige .inbox_top .box_img {
	float: left;
}

#voice .inbox_below p.fs19,
#voice .inbox_below .com_greet {
	margin-bottom: 1.5em;
}
#voice .inbox_below p.fs19:last-child,
#voice .inbox_below .com_greet:last-child {
	margin-bottom: 0;
}
#voice .inbox_below .flt_box + p.fs19,
#voice .inbox_below .flt_box + .com_greet {
	margin-top: 1.5em;
}
#voice .inbox_below .box_img {
	width: 44%;
	max-width: 570px;
	margin-bottom: 2.0em;
	position: relative;
}
#voice .inbox_below .flt_l.box_img {
	margin-right: 4%;
}
#voice .inbox_below .flt_r.box_img {
	margin-left: 4%;
}
#voice .inbox_below .box_img .abs {
	position: absolute;
	z-index: 1;
}

#voice .kondo .inbox_below .box_img {
	padding-bottom: 16%;
}
#voice .kondo .inbox_below .box_img .abs {
	width: 60%;
	max-width: 340px;
	right: 2%;
	bottom: 0;
}

#voice .harada .inbox_below .box_img {
	padding-bottom: 16%;
}
#voice .harada .inbox_below .box_img .abs {
	width: 100%;
	max-width: 565px;
	margin: auto;
	left: 0;
	right: 0;
	bottom: 0;
}

/* PC調整
------------------------------------------*/
@media only screen and (min-width: 960px) and (max-width: 1500px) {
#voice .voice_inbox {
	padding: 6.6vw 4.6vw;
}	
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) { 
#voice .voice_bg{
	padding-top: 8%;
}
#voice .index {
    margin-bottom: 6%;
}
#voice .voice_inbox {
	padding: 7% 5%;
}
#voice .inbox_top {
	margin-bottom: 4%;
}
#voice .namebox {
	padding-bottom: 2%;
	font-size: min(100%,1.6vw);
}
#voice .namebox dl dt {
	letter-spacing: .2em;
}
#voice .namebox dl dd {
	letter-spacing: .2em;
}
#voice .namebox .ft_azo {
	font-size: 135%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
#voice .voice_bg{
	padding-top: 10%;
}
#voice .index {
    margin-bottom: 6%;
}
#voice .voice_inbox {
	padding: 7% 5%;
}
#voice .box_img {
    margin-bottom: 6%;
}
#voice .namebox {
	padding-bottom: 10%;
	font-size: 100%;
}
#voice .namebox dl dt {
	font-size: 90%;
	letter-spacing: normal;
}
#voice .namebox dl dd {
	font-size: 170%;
	letter-spacing: .2em;
}
#voice .namebox .ft_azo {
	font-size: 80%;
}

#voice .inbox_top .box_img .abs_job {
	width: 40%;
}

#voice .voice_lead {
	font-size: 135%;
	letter-spacing: .1em;
}

#voice .inbox_top {
    margin-bottom: 5%;
}
#voice .inbox_top .namebox {
	width: 48%;
	max-width: 100%;
}
#voice .inbox_top .voice_lead {
	width: 100%;
	max-width: 100%;
}
#voice .inbox_top .box_img {
	width: 46%;
	max-width: 100%;
}

#voice .inbox_below .flt_l.box_img,
#voice .inbox_below .flt_r.box_img {
	width: 80%;
	float: none;
	margin: 0 auto 1em;
}
}



/*医院紹介
---------------------------------------------------------*/
#information .bg {
	background: #f9f8fc;
	position: relative;
	padding-bottom: 120px;
}
#information .bg::before {
	position: absolute;
	content: "";
	background: url("../images/bosyu_img1_2@2x.jpg") no-repeat center top;
	background-size: 100% auto;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border-top: solid 40px #fff;
	left: 0;
	top: -1px;
	z-index: 0;
}
#information .bg > div {
	position: relative;
	z-index: 1;
}
#information .mid_copy .bosyu_copy {
	width: 62%;
	margin-bottom: 2em;
}
#information .mid_copy .bosyu_copy + p {
	font-size: 135%;
	font-weight: bold;
	letter-spacing: .4em;
	line-height: 2.1;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) { 
#information .bg {
	padding-bottom: 10%;
}
#information .mid_copy .bosyu_copy + p {
	font-size: 120%;
	letter-spacing: .2em;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
#information .bg {
	padding-bottom: 12%;
}
#information .mid_copy .bosyu_copy + p {
	font-size: 100%;
	letter-spacing: .2em;
}
}



/*募集要項
---------------------------------------------------------*/
#bosyu .w1260{
	padding-top: 120px;
	padding-bottom: 100px;
}
#bosyu .com_index3 {
	text-align: center;
}
#bosyu .com_index3.rel p {
	display: inline-block;
	position: relative;
}
#bosyu .com_index3.rel p::before {
	position: absolute;
	content: "";
	background: url("../images/bosyu_abs1@2x.png") no-repeat left center;
	background-size: contain;
	width: 17%;
	aspect-ratio: 244 / 460;
	left: 0;
	top: 50%;
	transform: translate(-120%,-50%);
}

#bosyu .lead_txt {
	text-align: center;
	color: var(--color-grn);
	font-weight: bold;
	letter-spacing: .1em;
	line-height: 2.1em;
}
#bosyu .bg {
	background: #fbf9eb;
	padding: 1.5em 3%;
}
#bosyu .tbl_outline {
	width: 100%;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}
#bosyu .tbl_outline th,
#bosyu .tbl_outline td {
	border-bottom: solid 1px rgba(26,26,25,0.5);
	padding: 2.5em 2%;
	vertical-align: top;
}
#bosyu .tbl_outline tr:last-child th,
#bosyu .tbl_outline tr:last-child td {
	border-bottom: none;
}
#bosyu .tbl_outline th {
	width: 20%;
	text-align: right;
	letter-spacing: .4em;
}
#bosyu .tbl_outline td {
	width: 80%;
	text-align: left;
	padding-left: 5%;
}
#bosyu .tbl_outline td p {
	margin-bottom: 1.5em;
}
#bosyu .tbl_outline td p:last-of-type {
	margin-bottom: 0;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
#bosyu .w1260{
	padding-top: 10%;
	padding-bottom: 8%;
}
#bosyu .tbl_outline th,
#bosyu .tbl_outline td {
	padding: 1.5em 2%;
}
#bosyu .tbl_outline th {
	letter-spacing: .2em;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
#bosyu .w1260{
	padding-top: 12%;
	padding-bottom: 10%;
}
#bosyu .com_index3 {
	font-size: 110%;
	letter-spacing: .05em;
}
#bosyu .com_index3 p {
	padding-left: 20%;
}
#bosyu .com_index3.rel p::before {
	transform: translate(0,-50%);
}

#bosyu .lead_txt {
	text-align: left;
	letter-spacing: .05em;
	line-height: 1.8em;
}
#bosyu .bg {
	padding: 1.5em 6%;
}
#bosyu .tbl_outline tr,
#bosyu .tbl_outline th,
#bosyu .tbl_outline td {
	display: block;
	width: 100%;
	box-sizing: border-box;
}
#bosyu .tbl_outline th {
	border-bottom: none;
	text-align: center;
	padding: .5em 0;
	background: #fff;
	letter-spacing: .2em;
}
#bosyu .tbl_outline td {
	padding: 1.0em 0 1.5em;
}
}



/*ENTRY
---------------------------------------------------------*/
#entry .bg {
	color: #FFF;
	text-align: center;
	background-color: var(--color-grn);
	padding: 80px 0;
}
#entry .bg .index .ft_azo {
	font-size: 470%;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: .2em;
}
#entry .bg .index h2 {
	font-size: 112%;
	font-weight: bold;
	line-height: 1.7;
	letter-spacing: .4em;
	margin-bottom: 60px;
}

#entry .ently_list {
	display: flex;
    justify-content: center;
    flex-wrap: wrap;
	gap: 1.0em 20px;
}
#entry .ently_list .c-cta-btn {
	font-size: min(135%,2.3vw);
	display: inline-flex;
	height: 3.8em;
	padding: 0 3.0em;
}
#entry .ently_list .c-cta-btn::before {
	min-width: 1.0em;
	min-height: 1.0em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
#entry .bg {
	padding: 8% 0;
}
#entry .bg .index .ft_azo {
	font-size: 300%;
	letter-spacing: .2em;
}
#entry .bg .index h2 {
	font-size: 105%;
	letter-spacing: .3em;
	margin-bottom: 6%;
}
#entry .ently_list {
	gap: 0 2vw;
}
#entry .ently_list .c-cta-btn {
	font-size: min(135%,2.5vw);
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
#entry .bg {
	padding: 8% 0;
}
#entry .bg .index .ft_azo {
	font-size: 250%;
	letter-spacing: .2em;
}
#entry .bg .index h2 {
	font-size: 105%;
	letter-spacing: .2em;
	margin-bottom: 6%;
}

#entry .ently_list {
	gap: 1.0em 1.0em;
}
#entry .ently_list .c-cta-btn {
	box-sizing: border-box;
	font-size: 100%;
	width: 10em;
	padding: 0;
}
#entry .ently_list .c-cta-btn--form {
	width: 21em;
}
}