@charset "UTF-8";

@media screen and (max-width: 1023px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .pc_only {
    display: block;
  }
  .sp_only {
    display: none;
  }
}


.fade-in {
    opacity: 0;
    -webkit-transition: opacity 0.4s ease, -webkit-filter 0.4s ease 0.2s, -webkit-transform 0.4s ease 0.2s;
    transition: opacity 0.4s ease, -webkit-filter 0.4s ease 0.2s, -webkit-transform 0.4s ease 0.2s;
    transition: opacity 0.4s ease, filter 0.4s ease 0.2s, transform 0.4s ease 0.2s;
    transition: opacity 0.4s ease, filter 0.4s ease 0.2s, transform 0.4s ease 0.2s, -webkit-filter 0.4s ease 0.2s, -webkit-transform 0.4s ease 0.2s;
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
    will-change: filter;
}
.fade-in.active {
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}


/* html body*/
html, body {
    overflow-x: hidden;
}
html {
     scroll-padding-top: 140px;
}
body {
	color: #021237;
	letter-spacing: 0.02em;
	line-height: 1.4;
	font-size: 16px;
	font-family: "zen-kaku-gothic-new", sans-serif;
	font-weight: 700;
	font-style: normal;
}
body input,
body button {
	font-family: inherit;
}
body a {
	color: inherit;
}
body a:hover {
	cursor: pointer;
	opacity: 0.5;
}
body p {
	line-height: 1.8;
}
body strong {
  font-weight: 700;
}
body .underline {
  text-decoration: underline;
}
body iframe {
  max-width: 100%;
}
@media screen and (max-width: 1023px) {
  body {
    font-size: 14px;
  }
}


/* フォント */
.Montserrat-Regular {
	font-family: "montserrat", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.Montserrat-SemiBold {
	font-family: "montserrat", sans-serif;
	font-weight: 600;
	font-style: normal;
}
.Montserrat-SemiBold-Italic {
	font-family: "montserrat", sans-serif;
	font-weight: 600;
	font-style: italic;
}


/* テキスト関連 */
.txt-center {
    text-align: center;
}
h2 {
    font-size: 29px;
}
h3 {
    font-size: 30px;
    margin-top: 10px;
}
h4 {
    font-size: 25px;
    margin: 10px 0;
}
/*黄色の文字*/
span.color {
	color: #FFD347;
}
@media screen and (max-width: 1023px) {
    h2 {
        font-size: 23px;
    }
    h3 {
        font-size: 20px;
    }
	h4 {
		font-size: 18px;
	}
    .txt-center {
        text-align: justify;
    }
}


/* FLEX */
.flex {
    display: flex;
    justify-content: space-between;
    gap: 0 2em;
}
.flex-reverse {
	flex-direction: row-reverse;
}
@media screen and (max-width: 1023px) {
	.flex {
		flex-direction: column;
	}
}

/* WRAP */
.wrap1000 {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}
@media screen and (max-width: 1023px) {
	.wrap1000 {
		width: 90%;
	}
}
.wrap900 {
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
}
@media screen and (max-width: 1023px) {
	.wrap900 {
		width: 90%;
	}
}
.wrap640 {
	max-width: 640px;
	width: 100%;
	margin: 0 auto;
}
@media screen and (max-width: 1023px) {
	.wrap640 {
		width: 90%;
	}
}

/* 背景色 */
.bg-color {
    background: #F8F8FE;
}


/* リバース */
@media screen and (min-width: 1024px) {
	.pc_reverse {
		flex-direction: row-reverse;
	}
}
@media screen and (max-width: 1023px) {
	.sp_reverse {
		flex-direction: column-reverse;
	}
}


/* img */
img {
	width: 100%;
	height: 100%;
}


/* ヘッダー */
.header {
    padding: 0;
    width: 100%;
    top: 0;
    left: 0;
    -webkit-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
    position: fixed;
    z-index: 10;
}
.header.scrolled {
    background-color: #ffffff;
}
.header__wrap {
    box-sizing: border-box;
    width: 94%;
	margin-left: auto;
	margin-right: 2%;
	margin-top: 15px;
	margin-bottom: 15px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
.header__logo {
    width: fit-content;
    max-width: 180px;
}
.header__logo a {
    display: flex;
}
.header__logo a .clinic-name {
    font-size: 30px;
    color: #00367F;
    padding-left: 10px;
}
.header__logo img {
    object-fit: unset;
    border-radius: 0;
}
.header__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.header__nav nav ul {
	display: flex;
	-webkit-box-pack: end;
	justify-content: flex-end;
	gap: 2.5em;
}
.header__nav nav ul li a.contact {
	background-color: #FFD347;
	padding: 10px 22px;
    border-radius: 20px;
}
.header__nav nav ul li a {
    margin-left: -5px;
}
.header__nav .tel-num {
    font-size: 35px;
    color: #52c5a6;
    margin-bottom: 7px;
}
.header__nav .tel-num span {
    font-size: 20px;
}
@media screen and (min-width: 1024px) {
   .header__hamburger {
     display: none;
   }
   .sp-navi {
    display: none;
   }
}
@media screen and (max-width: 1023px) {
	.header.scrolled {
		background-color: unset;
	}
	.header__logo__sp {
		position: absolute;
        left: 20px;
        top: 14px;
        z-index: 12;
	}
	.header__logo__sp a {
		display: flex;
	}
	.header__logo__sp a figure {
		width: 200px;
		height: auto;
	}
	.header__logo__sp a figure img {
		width: 100%;
		height: 100%;
        object-fit: unset;
        border-radius: 0;
	}
	.header__logo__sp a .clinic-name {
		font-size: 25px;
		padding-left: 5px;
	}
	.header__hamburger {
		display: block;
	}
	.header__hamburger {
		position: fixed;
		right: 20px;
		top: 9px;
		z-index: 12;
	}
	.sp-navi {
		display: block;
		width: 100%;
		height: fit-content;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 11;
		background: #dfdfea;
		box-sizing: border-box;
		opacity: 0;
		pointer-events: none;
		overflow-y: auto;
		opacity: 0;
		visibility: hidden;
		transition: opacity 1s ease, visibility 1s ease;
	}
	.sp-navi.active {
		-webkit-transform: translateY(0%);
		transform: translateY(0%);
		opacity: 1;
		pointer-events: auto;
		opacity: 1;
		visibility: visible;
	}
	.menu-trigger {
		background: url('../images/common/header_hamburger_open26.svg');
		width: 45px;
		height: 45px;
		background-size: cover;
	}
	.menu-trigger.active {
		background: url('../images/common/header_hamburger_close26.svg');
		width: 45px;
		height: 45px;
		background-size: cover;
	}
	.sp-navi__wrap {
		padding: 90px 20px 30px 20px;
		margin-bottom: 30px;
	}
	.sp-navi__link {
		display: block;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		background: #fff;
		border-radius: 40px;
		padding: 20px;
	}
	.sp-navi__link a {
		display: flex;
		-webkit-box-pack: justify;
		justify-content: flex-start;
		font-size: 18px;
		padding-top: 10px;
		padding-bottom: 10px;
		padding-left: 15px;
		border-bottom: 1px dashed #000;
	}
	.sp-navi__link a::after {
		content: url("../images/common/arrow-icon.svg");
		display: block;
		position: absolute;
		right: 50px;
		padding-top: 5px;
	}
	.sp-navi__link a:nth-child(8) {
		border-bottom: unset;
	}
	.sp-navi__links {
		margin-top: 20px;
	}
	.sp-navi__block {
		margin-top: 20px;
		background: #fff;
		border-radius: 40px;
		padding: 20px 0;
	}
	.sp-navi__item {
		display: flex;
		-webkit-box-pack: justify;
		flex-direction: column;
		align-items: center;
	}
	.sp-navi__item-heading {
		font-size: 18px;
	}
	.sp-navi__item-address {
		font-size: 11px;
		margin-top: 16px;
	}
	.sp-navi__item-address .big {
		font-size: 18px;
	}
	.sp-navi__item-address .big.tel {
        padding-top: 5px;
        display: inline-block;
	}
}
/*ipad・横 用*/
@media (orientation: landscape) and (max-width: 1366px){
    .header__wrap {
        max-width: 1150px;
		width: 95%;
    }
    .header__nav nav ul {
        gap: 2em;
        font-size: 16px;
		font-weight: 800;
    }
}
@media screen and (max-width: 1023px) {
    .header__wrap {
        display: none;
    }
}


/* フッター */
footer {
	background-color: #16306B;
}
footer .footer__wrap {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
footer .footer__wrap .title {
	font-size: 47px;
	color: #fff;
	padding-top: 80px;
}
footer .footer__wrap .flex {
	width: 750px;
	margin: 60px auto;
}
footer .footer__wrap .row1 {
    background: url("../images/common/footer-bg-img.svg");
	background-size: 100%;
	background-position: center;
	width: 328px;
	height: 225px;
	display: flex;
	flex-direction: column;
    align-items: center;
}
footer .footer__wrap .row1 figure.tel {
	width: 44px;
    margin-top: 30px;
}
footer .footer__wrap .row1 p.tel-num {
	font-size: 31px;
	padding-top: 15px;
}
footer .footer__wrap .row1 p.time {
	font-size: 15px;
}
footer .footer__wrap .row1 figure.pc {
	width: 84px;
    margin-top: 30px;
}
footer .footer__wrap .row1 p.contactform {
	margin-top: 45px;
}
footer .footer__wrap .row1 p.contactform a {
	font-size: 17px;
	background-color: #FFD347;
    padding: 10px 22px;
    border-radius: 20px;
}
footer .footer__wrap .inc-info figure {
	width: 186px;
	margin: 0 auto;
}
footer .footer__wrap .inc-info p.address {
	font-size: 14px;
	color: #fff;
	margin: 10px 0;
}
footer .footer__wrap .inc-info p.copyright {
	font-size: 10px;
	color: #fff;
	padding-bottom: 20px;
}
@media screen and (max-width: 1023px) {
	footer .footer__wrap .flex {
		width: 100%;
		align-items: center;
		gap: 2em 0;
	}
	footer .footer__wrap .title {
		font-size: 37px;
		padding-top: 60px;
	}
	footer .footer__wrap .row1 {
		width: 262px;
		height: 180px;
	}
	footer .footer__wrap .row1 figure.tel {
		margin-top: 24px;
	}
	footer .footer__wrap .row1 p.tel-num {
		font-size: 25px;
		padding-top: 12px;
	}
	footer .footer__wrap .row1 p.time {
		font-size: 12px;
	}
	footer .footer__wrap .row1 figure.pc {
		margin-top: 24px;
	}
	footer .footer__wrap .row1 p.contactform {
		margin-top: 36px;
	}
	footer .footer__wrap .row1 p.contactform a {
		font-size: 14px;
		padding: 10px 22px;
	}
}


/* トップページ 
------------------------*/
main {
    margin-top: 4.5em;
}
.mv {
    width: 100%;
    height: 700px;
    background: url(../images/index/mv.webp);
    background-size: cover;
    background-repeat: no-repeat;
	background-position-y: bottom;
}
.mv h1 {
	width: fit-content;
	padding-top: 2.8em;
    padding-left: 2.5em;
}
.mv h1 p.title {
	font-size: 79px;
	color: #fff;
    line-height: 1.1;
}
.mv h1 p.sub-title {
	font-size: 29px;
	color: #fff;
    text-align: right;
}
@media screen and (max-width: 1023px) {
	main {
		margin-top: 5.0em;
	}
	.mv {
		background-position-x: 51%;
	}
	.mv h1 {
		padding-left: 4%;
	}
	.mv h1 p.title {
		font-size: 63px;
	}
	.mv h1 p.sub-title {
		font-size: 23px;
		text-align: left;
	}
}

/*お知らせ*/
section.news {
	margin-top: 80px;
}
section.news .top-news-list {
    width: 890px;
    background: #F8F8FE;
    border-radius: 30px;
    position: relative;
}
section.news .top-news-list .item {
    display: flex;
    position: relative;
    width: 770px;
    gap: 2em;
    padding: 30px 0;
    border-bottom: 1px solid #FFD347;
    align-items: center;
    margin: 0 auto;
}
section.news .top-news-list .item:nth-last-child(1){
	border: unset;
}
section.news .top-news-list .item .date {
    font-size: 14px;
    font-weight: 600;
    align-self: flex-start;
    padding-top: 4px;
}
section.news .top-news-list .item figure {
    width: 20px;
	height: auto;
	flex-shrink: 0;
}
section.news .top-news-list .item a {
	width: 624px;
	text-align: justify;
}
section.news .top-news-list .item a span.small,
section.news .top-news-list .item .no-link span.small {
	font-size: 12px;
}
section.news .jp {
	font-size: 14px;
	text-align: right;
}
section.news .top-news-list .item .no-link {
	width: 624px;
    text-align: justify;
}
@media screen and (max-width: 1023px) {
	section.news {
		margin-top: 64px;
	}
	section.news .top-news-list {
		width: 100%;
	}
	section.news .top-news-list .item {
		width: 85%;
	}
	section.news .top-news-list .item a,
	section.news .top-news-list .item .no-link {
		width: auto;
	}
	section.news h2,
	section.news .jp {
		text-align: center;
	}
	section.news .jp {
		margin-bottom: 20px;
	}
}

/*信頼と技術で、・・・*/
section.about-us {
	margin-top: 80px;
}
section.about-us .title {
	font-size: 22px;
	text-align: center;
	margin-bottom: 54px;
}
section.about-us p {
	font-size: 16px;
	text-align: center;
	margin-bottom: 20px;
}
section.about-us .inc-info a {
    display: flex;
    justify-content: space-between;
    width: 200px;
    margin: 10px auto 0;
    border-bottom: 1px solid #FFD347;
	padding-bottom: 5px;
}
section.about-us .inc-info a::after {
	content: url("../images/common/arrow-icon.svg");
	display: block;
}
section.about-us .inc-info a:hover {
	opacity: 0.5;
}
@media screen and (max-width: 1023px) {
	section.about-us {
		margin-top: 64px;
	}
	section.about-us .title {
		font-size: 17px;
		margin-bottom: 43px;
	}
	section.about-us p {
		text-align: justify;
		font-size: 13px;
		margin-bottom: 16px;
	}
}

/*COMPANY INFO*/
section.company-info {
	margin-top: 100px;
}
section.company-info h2 {
	text-align: center;
	padding-bottom: 50px;
}
section.company-info .row1 a {
	display: flex;
	flex-direction: column;
    align-items: center;
	justify-content: center;
	width: 300px;
	height: 200px;
	box-shadow: 0 0 10px #e0e0e0;
    border-radius: 20px;
}
section.company-info figure.company-info01 {
	height: 51.5px;
}
section.company-info figure.company-info02 {
	height: 51.5px;
}
section.company-info figure.company-info03 {
	height: 60px;
}
section.company-info figure.icon {
    width: 20px;
	height: auto;
	margin: 0 auto;
}
section.company-info p {
	padding: 25px 0 15px;
	font-size: 18px;
}
section.company-info p.csr {
	padding: 17px 0 15px;
}
@media screen and (max-width: 1023px) {
	section.company-info {
		margin-top: 80px;
	}
	section.company-info h2 {
		padding-bottom: 40px;
	}
	section.company-info .flex {
		align-items: center;
		gap: 2em 0;
	}
	section.company-info p {
		font-size: 14px;
	}
}

/*スタッフ募集*/
section.recruit {
	margin-top: 80px;
}
section.recruit .title {
	font-size: 22px;
	text-align: justify;
    white-space: nowrap;
}
section.recruit p {
	font-size: 17px;
	margin-bottom: 20px;
	text-align: justify;
}
section.recruit p span.big {
	font-size: 20px;
}
section.recruit .flex {
	padding-top: 65px;
}
section.recruit .recruit-info {
	padding-bottom: 65px;
}
section.recruit .recruit-info a {
    display: flex;
    justify-content: space-between;
    width: 200px;
    border-bottom: 1px solid #FFD347;
    padding-bottom: 5px;
	margin-top: 30px;
	margin-left: auto;
    margin-right: 0;
}
section.recruit .recruit-info a::after {
    content: url(../images/common/arrow-icon.svg);
    display: block;
}
@media screen and (max-width: 1023px) {
	section.recruit {
		margin-top: 64px;
	}
	section.recruit .flex {
		padding-top: 52px;
	}
	section.recruit .title {
		font-size: 22px;
		text-align: center;
		margin-bottom: 20px;
	}
	section.recruit p {
		font-size: 15px;
		margin-bottom: 16px;
		text-align: justify;
	}
	section.recruit .recruit-info {
		padding-bottom: 52px;
	}
	section.recruit .recruit-info a {
		margin-top: 20px;
	}
	section.recruit p span.big {
		font-size: 16px;
	}
}



/* OUTLINEページ
------------------------*/
.outline .mv {
    width: 100%;
    height: 280px;
    background: url("../images/outline/mv.webp");
    background-size: cover;
    background-repeat: no-repeat;
	background-position-y: bottom;
}
.outline .mv h1 {
    width: fit-content;
    margin: 0 auto;
	padding-top: 2.8em;
    padding-left: 0;
}
.outline .mv h1 p.title {
	font-size: 60px;
	color: #fff;
    line-height: 1.1;
}
.outline .mv h1 p.sub-title {
	font-size: 16px;
	color: #fff;
    text-align: center;
}
@media screen and (max-width: 1023px) {
	.outline .mv {
	    height: 224px;
		background-position-x: 51%;
	}
	.outline .mv h1 {
		padding-top: 2.6em;
	}
	.outline .mv h1 p.title {
		font-size: 48px;
	}
	.outline .mv h1 p.sub-title {
		font-size: 14px;
	}
}

/*ナビゲーション*/
.outline section.company-info .flex {
	justify-content: center;
}
.outline section.company-info .row1 {
    width: unset;
    height: unset;
}
.outline section.company-info .row1 a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 100px;
}

.outline section.company-info p {
    padding: 10px 0 10px;
    font-size: 18px;
}
.outline section.company-info .row1 a.on {
	background: #021237;
	box-shadow: 0 0 20px #e0e0e0;
	border-radius: 20px;
}
.outline section.company-info .row1 a.on p {
	color: #fff;
}
/* パソコンのときだけホバーを動かす */
@media (hover: hover) {
	.outline section.company-info .row1 a:hover {
		background: #021237;
		opacity: 1;
		border-radius: 20px;
	}
	.outline section.company-info .row1 a:hover p {
		color: #fff;
	}
}
@media screen and (max-width: 1023px) {
	.outline section.company-info {
        margin-top: 64px;
    }
	.outline section.company-info .flex {
        flex-direction: unset;
		flex-wrap: wrap;
		justify-content: space-between;
        gap: 1.5em 0;
    }
	.outline section.company-info .row1 {
		width: 47%;
		height: auto;
	}
	.outline section.company-info p {
		font-size: 14px;
	}
	.outline section.company-info .row1 a {
		width: 100%;
	}
	.outline section.company-info .row1 a:hover {
		width: 100%;
	}
}

/*会社概要*/
.outline section.outline {
	margin-top: 100px;
}
.outline section.outline h2 {
	text-align: center;
}
.outline section.outline .jp {
	text-align: center;
	font-size: 14px;
}
.outline section.outline .bg {
	background: #F8F8FE;
	border-radius: 30px;
	margin-top: 50px;
}
.outline section.outline dl {
	width: 875px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 0;
}
.outline section.outline dl dt {
	width: 120px;
	padding: 15px 0;
	border-bottom: 1px solid #FFD347;
}
.outline section.outline dl dd {
	width: 750px;
	padding: 15px 0;
	border-bottom: 1px solid #FFD347;
}
.outline section.outline dl dt p,
.outline section.outline dl dd p {
	padding-left: 8px;
    letter-spacing: 0;
}
.outline section.outline dl dd p.address {
	padding-top: 8px;
}
.outline section.outline dl dd p .small {
	font-size: 14px;
}
.outline section.outline dl dd .spe-moji {
	margin-left: -10px;
}
.outline section.outline dl dd .column-alignment {
	padding-left: 5.5em;
}
.outline section.outline dl dd .googlemap {
    background: #FFD347;
    padding: 5px 10px;
    border-radius: 20px;
	font-size: 17px;
    margin: 10px 0;
    display: block;
    width: fit-content;
}
@media screen and (max-width: 1023px) {
	.outline section.outline {
		margin-top: 80px;
	}
	.outline section.outline .bg {
		margin-top: 40px;
	}
	.outline section.outline dl {
		width: 100%;
		flex-direction: column;
        padding: 20px 0;
	}
	.outline section.outline dl dt,
	.outline section.outline dl dd {
		width: 90%;
		margin: 0 auto;
        padding: 10px 0 15px;
	}
	.outline section.outline dl dt {
		border-bottom: unset;
		padding: 15px 0 0;
	}
	.outline section.outline dl dt p,
	.outline section.outline dl dd p {
		font-size: 13.9px;
        text-align: justify;
	}
	.outline section.outline dl dd p.address {
		padding-top: 5px;
	}
	.outline section.outline dl dd figure.map {
		margin-top: 15px;
	}
	.outline section.outline dl dd span.sp_only {
		display: inline-block;
	}
	.outline section.outline dl dd .googlemap {
		padding: 3px 8px;
		font-size: 15px;
	}
}

/* 沿革 */
.outline section.history dl {
	width: 525px;
}
.outline section.history dl dt {
	width: 120px;
	text-align: right;
}
.outline section.history dl dd {
	width: 400px;
}
.outline section.history dl dt p {
	padding-right: 14px;
}
@media screen and (max-width: 1023px) {
	.outline section.history dl {
		width: 100%;
	}
	.outline section.history dl dt,
	.outline section.history dl dd {
		width: 90%;
	}
}

/*ナビゲーション・下*/
.outline section.bottom {
	margin-bottom: 160px;
}
.outline section.bottom .flex {
	justify-content: center;
}
@media screen and (max-width: 1023px) {
	.outline section.bottom .flex {
		gap: 1.5em;
	}
	.outline section.bottom {
		margin-bottom: 80px;
	}
}



/* BUSINESSページ
------------------------*/
.business section.outline .flex {
	margin-top: 50px;
	margin-bottom: 100px;
}
.business section.outline .flex .title {
	font-size: 22px;
}
.business section.outline .flex p {
    margin-top: 20px;
    margin-right: 0;
    margin-left: auto;
    width: 510px;
    text-align: justify;
}
.business section.outline .flex figure {
	width: 450px;
}
.business section.outline .title.business {
	font-size: 22px;
    text-align: justify;
    margin: 54px auto;
}
@media screen and (max-width: 1023px) {
	.business section.outline .flex {
		gap: 2em;
		margin-bottom: 60px;
	}
	.business section.outline .flex .title {
		font-size: 18px;
		text-align: center;
	}
	.business section.outline .flex figure {
		width: 100%;
	}
	.business section.outline .flex p {
		width: 100%;
		margin-top: 16px;
	}
	.business section.outline .title.business {
        font-size: 17px;
        margin-bottom: 43px;
    }
}



/* AWARDページ
------------------------*/
.award .wrap900 {
	padding: 45px 0 32px;
}
.award .wrap900 .title {
	display: inline-block;
	font-size: 20px;
	padding-left: 20px;
	padding-bottom: 20px;
}
.award .wrap900 .sub-title {
	display: inline-block;
	padding-left: 10px;
	padding-bottom: 20px;
}
.award .wrap900 p {
	padding-left: 20px;
	padding-top: 20px;
}
.award hr {
    background: #FFD347;
    height: 1px;
    border: none;
}
.outline section.outline .award-bg01 {
	margin-top: 50px;
	margin-bottom: 30px;
}
.outline section.outline .award-bg02 {
	margin-top: 0;
	margin-bottom: 30px;
}
.award section.outline dl {
	width: 600px;
	padding-left: 20px;
    padding-bottom: 0;
    padding-top: 0;
    margin: unset;
}
.award section.outline dl dt,
.award section.outline dl dd {
	border-bottom: unset;
    padding: 10px 0;
}
.award section.outline dl dt {
	width: 158px;
}
.award section.outline dl dd {
	width: 442px;
}
.award .wrap900 .flex {
	gap: 0;
	flex-direction: column;
}
.award .wrap900 .flex .right {
	margin-top: 18px;
    display: flex;
    padding-left: 20px;
}
.award .wrap900 .flex figure {
	width: 203px;
	padding-right: 20px;
	padding-bottom: 10px;
}
.award .wrap900 .flex .award-bg03 {
    width: 609px;
	margin-top: 20px;
    margin-left: 20px;
	background: #fff;
}
.award .wrap900 .flex .award-bg03 .title {
	font-size: 16px;
    padding-top: 25px;
    padding-left: 15px;
    padding-bottom: 10px;
}
.award .wrap900 .flex .award-bg03 .title span.small {
	font-size: 14px;
}
.award .wrap900 .flex .award-bg03 ul {
	font-size: 12px;
    margin-left: 35px;
    width: 93%;
    padding-bottom: 10px;
}
.award .wrap900 .flex .award-bg03 ul li {
	padding: 1px 10px 1px 0;
}
.award .wrap900 .flex .award-bg03 ul li::before {
    content: "⚫︎";
    font-size: 16px;
    color: inherit;
    position: relative;
    left: -20px;
}
.award .wrap900 .flex .award-bg03 ul li span {
    vertical-align: 2px;
    margin-left: -15px;
}
@media screen and (max-width: 1023px) {
	.award .wrap900 {
		padding: 36px 0 26px;
	}
	.award .wrap900 .title {
		font-size: 17px;
		padding-left: 10px;
		padding-bottom: 17px;
	}
	.award .wrap900 p {
		padding-left: 10px;
		padding-right: 10px;
		padding-top: 17px;
	}
	.outline section.outline .award-bg01 {
		margin-top: 40px;
		margin-bottom: 24px;
	}
	.outline section.outline .award-bg02 {
		margin-bottom: 24px;
	}
	.award section.outline dl {
		width: auto;
		padding-left: 10px;
        padding-right: 10px;
	}
	.award section.outline dl dt,
	.award section.outline dl dd {
		margin: unset;
		width: 100%;
	}
	.award section.outline dl dt {
		padding: 15px 0 0;
	}
	.award .wrap900 .flex .award-bg03 {
	    width: 100%;
	}
	.award .wrap900 .flex .award-bg03 {
        width: 100%;
        margin: 20px auto;
    }
	.award .wrap900 .flex .award-bg03 ul {
        font-size: 12px;
        margin-left: 35px;
        width: 85%;
        padding-bottom: 20px;
        text-align: justify;
	}
	.award .wrap900 .flex .award-bg03 .title {
		font-size: 15px;
	}
	.award .wrap900 .flex .award-bg03 .title span.small {
		font-size: 13px;
	}
	.award .wrap900 .flex figure {
		width: 100%;
		padding-right: 0;
		padding-bottom: 20px;
	}
	.award .wrap900 .flex .right {
		padding-left: 10px;
		padding-right: 10px;
    	flex-direction: column;
	}
}



/* CSRページ
------------------------*/
.outline section.outline .csr-title {
	font-size: 22px;
	text-align: center;
	padding: 50px 0;
}
.outline section.outline .csr-text {
	text-align: center;
	margin-bottom: 100px;
}
.business section.outline .flex.csr p {
	font-size: 18px;
	margin: 15px 0 0;
}
.business section.outline .flex.csr ul {
    font-size: 12px;
    margin-left: 18px;
    width: 94%;
}
.business section.outline .flex.csr ul li {
    padding: 0;
    margin-top: -7px;
}
.business section.outline .flex.csr ul li::before {
    content: "⚫︎";
    font-size: 16px;
    color: inherit;
    position: relative;
    left: -20px;
    top: 24px;
}
.business section.outline .flex.csr .li-title {
    font-size: 16px;
    display: block;
    padding-bottom: 5px;
}
.business section.outline .flex.csr .text {
	font-size: 14px;
	display: block;
    text-align: justify;
}
.business section.outline .flex .title span.small {
    font-size: 18px;
}
.business section.outline .flex.csr.flex-reverse ul {
    display: block;
    margin-right: 0;
    margin-left: auto;
}
.business section.outline .flex.csr.flex-reverse P {
	margin: 15px 0 0 20px;
}
.business section.outline .flex.csr.flex-reverse .title {
	margin: 0 0 0 20px;
}
@media screen and (max-width: 1023px) {
	.outline section.outline .csr-title {
		font-size: 18px;
		padding: 40px 0;
	}
	.outline section.outline .csr-text {
		text-align: justify;
		margin-bottom: 80px;
	}
	.business section.outline .flex.csr p {
		font-size: 14px;
		margin: 12px 0 0;
	}
	.business section.outline .flex.csr .li-title {
		font-size: 14px;
	}
	.business section.outline .flex.csr .text {
		font-size: 13px;
	}
	.business section.outline .flex.csr ul li::before {
		top: 20px;
	}
	.business section.outline .flex.csr.flex-reverse .title {
		margin: 0;
	}
	.business section.outline .flex.csr.flex-reverse P {
		margin: 15px 0 0 0;
	}
	.business section.outline .flex .title span.small {
		font-size: 14px;
	}
}



/* RECRUITページ
------------------------*/
.outline.recruit .mv {
    width: 100%;
    height: 280px;
    background: url("../images/recruit/mv.webp");
    background-size: cover;
    background-repeat: no-repeat;
	background-position-y: bottom;
}
.outline section.outline .csr-title.recruit-title {
    font-size: 22px;
    text-align: center;
    padding: 0 0 50px;
}
.outline.recruit .please {
	padding: 50px 0 100px;
	font-size: 22px;
	text-align: center;
}
@media screen and (max-width: 1023px) {
	.outline section.outline .csr-title.recruit-title {
		font-size: 18px;
		text-align: center;
		padding: 0 0 40px;
	}
	.outline.recruit .please {
		padding: 40px 0 80px;
		font-size: 18px;
		text-align: justify;
	}
}