/* = Common Layout
-------------------------------------------------------------- */
.content-width {
	position: relative;
	box-sizing: border-box;
	width: 1140px;
	margin: 0 auto;
	padding: 0 20px;
}
#wrapper {
	min-width: 1140px;
	padding-top: 105px;
	overflow: hidden;
}
.section-inner {
	padding: 100px 0;
}
.section-title {
	position: relative;
	margin: 0 0 50px;
	padding-bottom: 40px;
	font-weight: normal;
	line-height: 1;
}
body.home .section-title {
	text-align: center;
}
body.home .section-title::before {
	display: block;
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100px;
	height: 1px;
	margin: 0 auto;
	background-color: #ccc;
}
.section-title .txt-bigger {
	font-size: 2.7rem;
	letter-spacing: 0.1em;
}
.section-title .txt-smaller {
	margin-top: 15px;
	font-size: 1.5rem;
	letter-spacing: 0.15em;
}
.section-desc {
	margin: 0;
	text-align: center;
}
.section-desc span {
	letter-spacing: 0.1em;
}
@media screen and (max-width: 767px){
	#wrapper {
		min-width: 480px;
	}
	.content-width {
		width: 100%;
		min-width: 480px;
	}
	.section-inner {
		padding: 60px 0;
	}
	.left, .right {
		float: none;
	}
}

/* color */
.fc-blue {
	color: #00a7e3;
}
.bgc-blue {
	background-color: #00a7e3;
}
.fc-white {
	color: #fff;
}
.bgc-white {
	background-color: #fff;
}
.bgc-gray {
	background-color: #f4f4f4;
}

/* Component
----------------------------------------------------------------- */
/* btn */
.btn-wrap {
	position: relative;
	box-sizing: border-box;
	margin: auto;
}
.btn-wrap .btn {
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 15px;
	border: none;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1;
	color: inherit;
	text-align: center;
	background-color: inherit;
	transition: all 0.5s;
}
.btn:hover {
	opacity: .7;
	text-decoration: none;
}
.btn-primary {
	width: 162px;
	margin-top: 50px;
}
.btn-primary .btn {
	font-weight: normal;
}
.btn-more-read {
	display: inline-block;
	width: 86px;
	margin-top: 10px;
}
.btn-more-read .btn {
	padding: 10px 5px;
	border: 1px solid #00a7e3;
	font-size: 1.3rem;
	font-weight: normal;
	line-height: 1;
}
.btn-hover-anime {
	overflow: hidden;
}
.btn-hover-anime .btn {
	border: 1px solid #00a7e3;
	color: #fff;
	transition: all 0.3s;
}
.btn-hover-anime .btn:hover {
	opacity: 1;
	color: #00a7e3;
}
.btn-hover-anime .btn::before,
.btn-hover-anime .btn::after {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 50%;
	height: 100%;
	transition: all 0.3s;
	z-index: -1;
	background: #00a7e3;
}
.btn-hover-anime .btn::before {
	left: 0;
}
.btn-hover-anime .btn::after {
	right: 0;
}
.btn-hover-anime .btn:hover::before,
.btn-hover-anime .btn:hover::after {
	width: 0;
}
.btn-hover-anime-02 {
	overflow: hidden;
}
.btn-hover-anime-02 .btn {
	border: 1px solid #00a7e3;
	transition: all 0.3s;
}
.btn-hover-anime-02 .btn:hover {
	opacity: 1;
	color: #fff;
}
.btn-hover-anime-02 .btn::before,
.btn-hover-anime-02 .btn::after {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	transition: all 0.3s;
	z-index: 1;
	background: #00a7e3;
}
.btn-hover-anime-02 span {
	position: relative;
	z-index: 2;
}
.btn-hover-anime-02 .btn::before {
	left: 0;
}
.btn-hover-anime-02 .btn::after {
	right: 0;
}
.btn-hover-anime-02 .btn:hover::before,
.btn-hover-anime-02 .btn:hover::after {
	width: 50%;
}
/* text */
.txt-bigger {
	display: block;
	font-size: 1.4rem;
	letter-spacing: 0.08em;
}
.txt-smaller {
	display: block;
	font-size: 1.2rem;
	letter-spacing: 0.05em;
}
/* lnav */
.lnav .img-area {
	display: block;
	position: relative;
}
.lnav .img-area:hover {
	opacity: 1;
}
.lnav .txt-box {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	box-sizing: border-box;
	padding: 18px 15px;
	background-color: rgba(0, 0, 0, 0.6);
}
.lnav .txt-box,
.lnav .txt-box .icon-arrow::before {
	pointer-events: none;
}
.lnav .txt-box p {
	margin: 0;
	font-size: 1.8rem;
	line-height: 1;
	color: #fff;
}
.lnav .txt-box p span {
	letter-spacing: 0.08em;
}
@media screen and (max-width: 767px){
	.lnav .txt-box p {
		font-size: 1.3rem;
	}
}
/* arrow */
.icon-arrow {
	position: relative;
}
.icon-arrow::before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 12px;
	height: 12px;
	margin: auto;
	box-sizing: border-box;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}
/* border */
.dbl-border {
	position: relative;
}
.dbl-border::before,
.dbl-border::after {
	display: block;
	content: "";
	position: absolute;
	bottom: 0;
	height: 2px;
}
.dbl-border::before {
	left: 0;
	width: 16px;
	background-color: #00a7e3;
	z-index: 2;
}
.dbl-border::after {
	right: 0;
	width: 100%;
	width: -webkit-calc(100% - 18px);
	width: calc(100% - 18px);
	background-color: #ccc;
	z-index: 1;
}
/* num-list */
.num-list {
	counter-reset: li;
}
.num-list li {
	position: relative;
	padding-left: 3.5em;
	font-size: 1.5rem;
	line-height: 1.5;
}
.num-list li:not(:last-child) {
	margin-bottom: 45px;
}
.num-list li::before {
	position: absolute;
	top: -5px;
	left: 0;
	counter-increment: li;
	content: "0" counter(li) ".";
	font-size: 2.7rem;
	font-family: 'Century Gothic', verdana, sans-serif;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #00a7e3;
}
.num-list li span.noto {
	letter-spacing: 0.15em;
}
.step-list li:nth-child(1) {
	margin-left: 2em;
}
.step-list li:nth-child(2) {
	margin-left: 5em;
}
.step-list li:nth-child(3) {
	margin-left: 8em;
}
@media screen and (max-width: 767px) {
	.step-list li:nth-child(1) {
		margin-left: 1em;
	}
	.step-list li:nth-child(2) {
		margin-left: 2em;
	}
	.step-list li:nth-child(3) {
		margin-left: 3em;
	}
	.num-list li:not(:last-child) {
		margin-bottom: 20px;
	}
}
.img-hover {
	overflow: hidden;
}
.img-hover img {
	transform: scale(1);
	transition: all 0.2s ease-in-out;
}
.img-hover img:hover {
	transform: scale(1.05);
}

/* = Header
----------------------------------------------------------------- */
#header.header-fix {
	position: fixed;
	top: 0; left: 0;
	width: 100%;
	z-index: 9999;
}
#header {
	padding: 10px 0 20px;
	background-color: rgba(255, 255, 255, 1);
}
#gnav {
	padding: 10px 10px 0 10px;
	line-height: 1;
}
#gnav li:not(:first-child) a {
	padding-left: 18px;
}
#gnav li:not(:last-child) a {
	padding-right: 18px;
	border-right: 1px dotted #9fa0a0;
}
#gnav li a {
	display: block;
	padding: 10px 0;
	color: #000;
}
#gnav li a:hover {
	opacity: 1;
}
#gnav li a .txt-bigger {
	color: #000;
	transition: all 0.5s;
}
#gnav li a .txt-smaller {
	margin-top: 5px;
	color: #9fa0a0;
	transition: all 0.5s;
}
#gnav li.is-current .txt-bigger,
#gnav li.is-current .txt-smaller,
#gnav li a:hover .txt-bigger,
#gnav li a:hover .txt-smaller {
	color: #00a7e3;
}
#site-title {
	width: 166px;
	margin: 0;
}
#header .contact-box {
	width: 182px;
}
#header .contact-box .tel {
	display: block;
	font-size: 1.4rem;
	line-height: 1;
	letter-spacing: 0.04em;
}
#header .contact-box .tel a {
	display: block;
}
#header .contact-box .tel span {
	vertical-align: bottom;
}
#header .contact-box .tel span.num {
	margin-left: 3px;
	font-size: 2.1rem;
}
#header .contact-box .btn-wrap {
	margin-top: 5px;
	overflow: hidden;
}
#header .contact-box .btn {
	padding: 5px 15px;
	font-weight: normal;
}
#header .contact-box .btn:hover {
	opacity: 1;
}

/* = Anniversary
-------------------------------------------------------------- */
.anniv-box {
	position: relative;
	background: no-repeat center center url('/images/anniv_70_bg.jpg');
	background-size: cover;
}
.anniv-box .section-inner {
	padding: 48px 0;
}
.anniv-box .section-desc {
	margin-top: 16px;
	font-size: 3rem;
	line-height: 1.4;
	text-align: center;
	text-shadow: 0 0 15px #000;
}
.anniv-box .smooth-scroll {
	position: absolute;
	right: 0;
	bottom: 20px;
	left: 0;
	width: 48px;
	margin: 0 auto;
}
.anniv-box .btn-wrap {
	width: 382px;
	margin-top: 16px;
}
.anniv-box .btn {
	padding: 23px 14px;
	border: 1px solid #00a7e3;
	background: no-repeat left center url('/images/btn_anniv_bg.png');
}
.anniv-box .btn-wrap .btn {
	background-color: #00a7e3;
}
.anniv-box .btn-wrap .btn:hover {
	opacity: 1;
	border-color: #000;
	background-color: #000;
}
.anniv-box .icon-arrow::before {
	right: 15px;
}
.anniv-box .btn span {
	font-size: 2rem;
	font-weight: normal;
	letter-spacing: 0.08em;
}
.mainvisual.anniv-box {
	position: fixed;
	top: 105px; left: 0;
	width: 100%;
	min-width: 1140px;
	z-index: 0;
}
.mainvisual.anniv-box .section-inner {
	padding: 66px 0 86px;
}
.mainvisual.anniv-box .section-desc {
	margin-top: 24px;
	line-height: 1.75;
	letter-spacing: 0.1em;
}
body.home #footer {
	position: relative;
	z-index: 99;
}
body.home #main .section {
	position: relative;
	z-index: 4;
}
body.home #main .section:not(.bgc-gray) {
	background-color: #ffffff;
}
body.home #main {
	margin-top: 452px;
	background-color: #fff;
}
#tubular-container {
	min-width: 3600px;
}
#tubular-container {
	top: 0;
	left: 0;
}
#tubular-container iframe {
	top: 0 !important;
	left: 0 !important;
}
@media screen and (max-width: 767px) {
	.mainvisual.anniv-box {
		min-width: 480px;
	}
	body.home #main {
		margin-top: 505px;
	}
	#tubular-container {
	}
}

/* = Anniversary
-------------------------------------------------------------- */
#section-anniversary iframe {
	display: block;
	width: 560px;
	height: 315px;
	margin: 20px auto 0;
	border: none;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
}
#section-anniversary .video-box p {
	margin: 0;
	text-align: center;
}
body#anniversary #section-anniversary .video-box {
	margin-top: 40px;
}
body#anniversary #section-anniversary table {
	margin-top: 50px;
}
body#anniversary #section-anniversary table caption {
	margin-bottom: 10px;
	font-weight: bold;
	text-align: left;
}
#section-gallery .gallery-wrap li {
	width: 32%;
	margin: 2% 2% 0 0;
}
#section-gallery .gallery-wrap li:nth-child(-n+3) {
	margin-top: 0;
}
#section-gallery .gallery-wrap li:nth-child(3n) {
	margin-right: 0;
}
#section-gallery .gallery-wrap li img {
	/* width: 352px;
	height: 560px; */
}
body#anniversary .lity-image img {
	max-width: 560px;
}
@media screen and (max-width: 767px) {
	body#anniversary .lity-image img {
		max-width: 440px;
	}
}

/* = About
-------------------------------------------------------------- */
#section-about ul {
	margin-top: 50px;
}
#section-about ul li {
	width: 348px;
	margin: 28px 28px 0 0;
}
#section-about ul li:nth-child(3) .img-box {
	border: 1px solid #ddd;
	box-sizing: border-box;
}
#section-about .bnr-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 50px;
}
#section-about .bnr-item.sdgs {
	border: solid 2px #0599D9;
}
#section-about .bnr-item.company {
	border: solid 2px #01A7A9;
}
@media screen and (min-width: 768px) {
	#section-about ul li:nth-child(3n) {
		margin-right: 0;
	}
	#section-about ul li:nth-child(-n+3) {
		margin-top: 0;
	}
}
@media screen and (max-width: 767px) {
	#section-about ul li {
		width: 49%;
		margin: 2% 2% 0 0;
	}
	#section-about ul li:nth-child(2n) {
		margin-right: 0;
	}
	#section-about ul li:nth-child(-n+2) {
		margin-top: 0;
	}
	#section-about .bnr-item.company {
		margin-top: 30px;
	}
}

/* = Business
-------------------------------------------------------------- */
#section-business ul {
	margin-top: 50px;
}
#section-business ul li {
	width: 532px;
	margin: 36px 36px 0 0;
}
@media screen and (min-width: 768px) {
	#section-business ul li:nth-child(2n) {
		margin-right: 0;
	}
	#section-business ul li:nth-child(-n+2) {
		margin-top: 0;
	}
}
@media screen and (max-width: 767px) {
	#section-business ul li {
		width: 49%;
		margin: 2% 2% 0 0;
	}
	#section-business ul li:nth-child(2n) {
		margin-right: 0;
	}
	#section-business ul li:nth-child(-n+2) {
		margin-top: 0;
	}
}

/* = Member
-------------------------------------------------------------- */
.member-list li {
	width: 251px;
	margin: 32px 32px 0 0;
}
.member-list li .txt-box {
	padding-top: 15px;
}
.member-list li .department {
	margin: 0;
	font-size: 1.4rem;
	line-height: 1;
}
.member-list li .name-wrap {
	margin: 15px 0 10px;
	line-height: 1;
}
.member-list li .name-wrap p {
	vertical-align: baseline;
	margin: 0;
	letter-spacing: 0.1em;
}
.member-list li .name-ja {
	font-size: 2rem;
}
.member-list li .name-en {
	font-size: 1.2rem;
	color: #999;
}
.member-list li .department span,
.member-list li .name-ja,
.member-list li .name-en,
.member-list li .entry-content span {
	letter-spacing: 0.15em;
}
.member-list li .entry-content {
	margin: 0;
	font-size: 1.3rem;
}
.member-list li .btn-area {
	text-align: right;
}
@media screen and (min-width: 768px) {
	.member-list li:nth-child(4n) {
		margin-right: 0;
	}
	.member-list li:nth-child(-n+4) {
		margin-top: 0;
	}
}
@media screen and (max-width: 767px) {
	.member-list li {
		width: 48%;
		margin: 4% 4% 0 0;
	}
	.member-list li:nth-child(2n) {
		margin-right: 0;
	}
	.member-list li:nth-child(-n+2) {
		margin-top: 0;
	}
	.member-list li .name-wrap .name-ja {
		display: block;
		margin-bottom: 5px;
	}
}

/* = Voice
-------------------------------------------------------------- */
.voice-list li {
	width: 100%;
	padding: 25px;
	box-sizing: border-box;
	background-color: #fff;
}
.voice-list li:not(:last-child) {
	margin-bottom: 30px;
}
.voice-list li .thumb {
	width: 250px;
	vertical-align: top;
}
.voice-list li .txt-box {
	padding-left: 20px;
	vertical-align: top;
}
.voice-list li .entry-title {
	margin: 0;
	padding: 15px 0 20px;
	font-size: 1.8rem;
	font-weight: normal;
	line-height: 1.4;
}
.voice-list li .entry-content {
	margin: 30px 0;
	font-size: 1.4rem;
	line-height: 1.75;
}
.voice-list li .entry-title span,
.voice-list li .entry-content span,
.voice-list li .name-wrap span {
	letter-spacing: 0.15em;
}
.voice-list li .btn-wrap {
	margin-top: 0;
}
.voice-list li .name-wrap {
	margin: 0;
	text-align: right;
	font-size: 1.4rem;
	line-height: 1.5;
}
@media screen and (max-width: 767px) {
	.voice-list li {
		padding: 20px;
	}
	.voice-list li .table {
		display: block;
	}
	.voice-list li .thumb,
	.voice-list li .txt-box {
		display: block;
		width: 100%;
		padding: 0;
	}
	.voice-list li .entry-title {
		margin-top: 50px;
		padding-top: 0;
	}
	.voice-list li .entry-content,
	.voice-list li .meta-area {
		float: none;
		width: 100%;
	}
	.voice-list li .btn-wrap {
		float: left;
	}
	.voice-list li .name-wrap {
		float: right;
	}
}

/* = Footer
-------------------------------------------------------------- */
#to-top {
	z-index: 2;
	border-top: 2px solid #00a7e3;
	border-bottom: 1px solid #00a7e3;
}
#to-top a {
	display: block;
	width: 148px;
	margin: 0 auto;
	padding: 20px 0;
	border-right: 1px solid #00a7e3;
	border-left: 1px solid #00a7e3;
	box-sizing: border-box;
	font-size: 1.3rem;
	line-height: 1;
	text-align: center;
	transition: all 0.5s;
}
#to-top a:hover {
	opacity: 1;
	color: #fff;
	background: #00a7e3;
}
#to-top .fa {
	position: relative;
	top: 4px;
	font-size: 2rem;
	transition: 0.35s;
}
#to-top a:hover .fa {
	top: 0;
}
#to-top span {
	display: block;
	
	letter-spacing: 0.08em;
}

#footer {
	width: 100%;
	box-sizing: border-box;
	background: #fff;
}
#footer-content {
	padding: 30px 0 48px;
}
#footer-content .f-logo {
	padding-top: 15px;
}
#footer-content .f-nav {
	width: 832px;
}
#footer-content .f-nav .anniv-logo {
	padding-left: 290px;
	text-align: left;
}
#footer-content .f-nav ul {
	margin-top: 20px;
	padding: 20px 0 0 50px;
	border-top: 1px solid #ccc;
}
#footer-content .f-nav li {
	margin-top: 10px;
	line-height: 1;
}
#footer-content .f-nav li:nth-child(3n+1),
#footer-content .f-nav li:nth-child(3n+2) {
	width: 290px;
}
#footer-content .f-nav li:nth-child(3n) {
	width: 180px;
}
#footer-content .f-nav li:nth-child(-n+3) {
	margin-top: 0;
}
#footer-content .f-nav .icon-arrow {
	padding-left: 15px;
}
#footer-content .f-nav .icon-arrow::before {
	right: auto;
	left: 0;
	width: 5px;
	height: 5px;
	border-top: 1px solid #00a7e3;
	border-right: 1px solid #00a7e3;
}
#copyright {
	box-sizing: border-box;
	width: 100%;
	padding: 18px 0;
	background: #eee;
}
#copyright p {
	margin: 0;
	font-size: 1.3rem;
	line-height: 1;
	text-align: center;
}
#copyright p small {
	font-size: inherit;
}
@media screen and (max-width: 767px) {
	#footer-content .f-nav {
		width: 100%;
	}
	#footer-content .f-nav .anniv-logo {
		padding-left: 0;
		text-align: center;
	}
}

/***************************************************************
 * Under
***************************************************************/
body.under .mainvisual {
	background: no-repeat center center;
	background-image: url('/images/under_mv_bg.jpg');
	background-size: cover;
}
body.under .mainvisual .section-inner {
	padding: 82px 0;
}
body.under .breadcrumbs {
	padding: 17px 0px;
	background: #f1f1f1;
}
body.under .breadcrumbs li {
	font-size: 1.2rem;
	line-height: 1;
}
body.under .breadcrumbs li:not(:last-child) {
	position: relative;
	margin-right: 10px;
	padding-right: 15px;
}
body.under .breadcrumbs li:not(:last-child)::before {
	display: block;
	content: ">";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
}
body.under .breadcrumbs li a {
	color: #1a9cd2;
}
.page-title {
	display: block;
	margin: 0;
	font-size: 0;
	line-height: 1;
	color: #fff;
}
.page-title .txt-bigger,
.page-title .txt-smaller {
	display: inline;
	vertical-align: middle;
	font-weight: normal;
}
.page-title .txt-bigger {
	margin-right: 20px;
	font-size: 1.8rem;
}
.page-title .txt-smaller {
	font-size: 1.4rem;
}
body.under .section-title {
	margin-bottom: 30px;
	padding-bottom: 20px;
	font-size: 1.8rem;
}
body.under .section-title span {
	letter-spacing: 0.15em;
}
body.under #main .section .text span {
	letter-spacing: 0.1em;
}

/***************************************************************
 * About
***************************************************************/
body#about #section-greeting .img-box {
	width: 460px;
}
body#about #section-greeting .txt-box {
	width: 586px;
}
body#about #section-greeting .text {
	margin: 0 0 20px;
}
body#about #section-greeting .name-wrap {
	font-size: 0;
}
body#about #section-greeting .name-wrap span {
	letter-spacing: 0.2em;
	vertical-align: baseline;
}
body#about #section-greeting .name-wrap span:nth-child(1) {
	margin-right: 10px;
	font-size: 1.4rem;
}
body#about #section-greeting .name-wrap span:nth-child(2) {
	font-size: 2rem;
}
body#about #section-quality .section-inner {
	background: no-repeat left center url('/about/images/about_bg_01.png');
}
body#about #section-quality .txt-box {
	padding-left: 220px;
}
body#about #section-quality .img-box {
	position: absolute;
	right: 0;
	z-index: 2;
}
body#about #section-quality .img-box-01 {
	top: -30px;
	right: 90px;
}
body#about #section-quality .img-box-02 {
	bottom: -30px;
}
body#about #section-logo .txt-box {
	width: 586px;
}
body#about #section-logo .txt-box p:last-child {
	margin: 0;
}
body#about #section-logo .img-box {
	position: absolute;
	top: 100px;
	right: 120px;
}
body#about #section-logo .img-area {
	margin-top: 90px;
	text-align: center;
}
@media screen and (max-width: 767px) {
	body#about #section-logo .img-area {
		margin-top: 40px;
	} 
}

body#about #section-testimonial li p {
	margin: 15px 0 0;
	font-size: 1.4rem;
	line-height: 1.25;
    text-align: center;
}
body#about #section-slogan {
	background: no-repeat center center url('/about/images/about_bg_02.png');
}
body#about #section-slogan .section-title {
	margin-bottom: 40px;
}
body#about #section-slogan .section-inner {
	width: 500px;
}
body#about #section-slogan .num-list li {
	font-size: 1.8rem;
}
body#about #section-slogan .num-list li::before {
	top: 0;
}
body#about #section-company .section-title {
	margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
	body#about #section-testimonial li {
		width: 254px;
		margin: 28px 28px 0 0;
	}
	body#about #section-testimonial li:nth-child(4n) {
		margin-right: 0;
	}
	body#about #section-testimonial li:nth-child(-n+4) {
		margin-top: 0;
	}
	body#about .table-history th {
		width: 290px;
	}
}
@media screen and (max-width: 767px) {
	body#about #section-greeting .img-box,
	body#about #section-greeting .txt-box {
		width: 100%;
	}
	body#about #section-greeting .img-box {
		margin-bottom: 40px;
	}
	body#about #section-quality .section-inner {
		background-size: 40%;
		background-position: 40px 235px;
	}
	body#about #section-quality .txt-box {
		padding-left: 0;
	}
	body#about #section-quality .img-box {
		display: inline-block;
		vertical-align: top;
		position: static;
		width: 49%;
	}
	body#about #section-logo .txt-box {
		width: 100%;
	}
	body#about #section-logo .img-box {
		position: static;
		margin: 40px 0;
	}
	body#about #section-testimonial li {
		width: 48%;
    margin: 5% 4% 0 0;
	}
	body#about #section-testimonial li:nth-child(2n) {
		margin-right: 0;
	}
	body#about #section-testimonial li:nth-child(-n+2) {
		margin-top: 0;
	}
	body#about #section-slogan .section-inner {
		width: 100%;
	}
	body#about #section-testimonial li p {
		font-size: 1.2rem;
	}
}

/***************************************************************
 * History
***************************************************************/
body#history #section-greeting .txt-box {
	width: 586px;
}
body#history #section-greeting .txt-box p:last-child {
	margin-bottom: 0;
}
.table-history {
	margin: 0;
}
.table-history.col-1 {
	width: 100%;
}
.col-2 .table-history {
	float: left;
	width: 740px;
}
.col-2 .img-wrap {
	float: right;
	width: 340px;
}
body#business .chapter-content.col-2 .img-wrap .img-box {
	width: 100%;
}
body#business .chapter-content.col-2 .img-wrap .img-box:not(:last-child) {
	margin-bottom: 10px;
}
.table-history table {
	margin: 0;
}
.table-history th,
.table-history td {
	padding: 15px;
	vertical-align: middle;
}
.table-history th {
	width: 220px;
	box-sizing: border-box;
}
.table-history td {
	background: #fafafa;
}
.table-history span.noto {
	letter-spacing: 0.08em;
}
body#history #section-founder .title {
	margin-bottom: 20px;
	font-size: 0;
}
body#history #section-founder .title span {
	vertical-align: baseline;
	line-height: 1;
	letter-spacing: 0.08em;
}
body#history #section-founder .title span:nth-child(1) {
	font-size: 1.7rem;
}
body#history #section-founder .title span:nth-child(2) {
	font-size: 1.2rem;
	color: #8e8e8e;
}
body#history #section-history .table-history {
	width: 732px;
}
body#history #section-history .img-wrap {
	text-align: right;
}
body#history #section-greeting .btn-wrap {
	width: 210px;
}
body#history #section-greeting .btn-wrap .btn {
	line-height: 1.25;
}
body#history #section-history iframe {
	display: block;
	width: 560px;
	height: 315px;
	margin: 30px auto 0;
	border: none;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 768px) {
	body#history #section-history .img-box {
		display: inline-block;
		width: 334px;
	}
	body#history #section-history .img-box:not(:last-child) {
		margin-bottom: 34px;
	}
	body#history #section-history .img-box img {
		vertical-align: middle;
	}
}
@media screen and (max-width: 767px) {
	body#history #section-greeting .img-box {
		margin-bottom: 30px;
	}
	body#history #section-greeting .txt-box {
		width: 100%;
	}
	.col-2 .table-history,
	.col-2 .table-history tr,
	.col-2 .table-history th,
	.col-2 .table-history td,
	.col-2 .img-wrap {
		float: none;
		width: 100%;
	}
	.col-2 .img-wrap {
		margin-top: 20px;
	}
	.col-2 .img-wrap .img-box {
		display: inline-block;
		width: 48%;
		margin: 2% 2% 0 0;
	}
	.col-2 .img-wrap .img-box:nth-child(-n+2) {
		margin-top: 0;
	}
	.col-2 .img-wrap .img-box:nth-child(2n) {
		margin-right: 0;
	}
	.table-history th,
	.table-history td {
		display: block;
		width: auto;
		padding: 15px 10px;
	}
	body#history #section-history .img-wrap {
		width: 100%;
		font-size: 0;
		letter-spacing: 0;
	}
	body#history #section-history .table-history {
		width: 100%;
	}
}

/***************************************************************
 * Business
***************************************************************/
body#business #section-ce .section-desc {
	margin: 0 0 100px;
	font-size: 1.7rem;
	line-height: 1;
	text-align: center;
}
body#business #section-ce .section-desc span {
	letter-spacing: 0.2em;
}
body#business #main .section .img-box.right,
body#business #main .section .img-box.left {
	width: 460px;
}
body#business #main .section .txt-box {
	width: 586px;
}
body#business #section-ce .chapter-wrap {
	margin-top: 50px;
}
body#business #section-ce .chapter-ttl {
	margin: 0 0 20px;
	padding-bottom: 10px;
	border-bottom: 2px dotted #ccc;
	font-size: 1.8rem;
	font-weight: normal;
	line-height: 1;
}
body#business #section-ce .chapter-ttl span {
	letter-spacing: 0.15em;
}
body#business #section-ce .chapter-content p {
	margin: 0;
}
body#business #section-ce .chapter:not(:last-child) {
	margin-bottom: 76px;
}
body#business #section-aggregate .btn-area {
	margin-top: 100px;
}
body#business #section-aggregate .btn-wrap {
	width: 524px;
	font-size: 2rem;
}
body#business #section-aggregate .btn-wrap .btn {
	padding: 30px 15px;
}
body#business #section-aggregate .img-wrap {
	margin-top: 40px;
}
@media screen and (max-width: 767px) {
	body#business #section-ce .section-desc {
		margin-bottom: 40px;
		text-align: left;
		line-height: 1.25;
	}
	body#business #main .section .img-box.right,
	body#business #main .section .img-box.left {
		width: 100%;
		margin-bottom: 20px;
	}
	body#business #main .section .txt-box {
		width: 100%;
	}
	body#business .section .chapter:not(:last-child) {
		margin-bottom: 40px;
	}
	body#business #section-aggregate .btn-wrap {
		width: 100%;
	}
	body#business #section-aggregate .btn-area {
		margin-top: 40px;
	}
	body#business #section-aggregate .btn-wrap:not(:last-child) {
		margin-bottom: 20px;
	}
}

/***************************************************************
 * Member
***************************************************************/
body#member #main {
	padding-bottom: 100px;
}
body#member .section .section-inner {
	padding-bottom: 0;
}
body#member .section-title {
	margin-bottom: 30px;
}
body#member #section-officer .member-wrap > li:not(:last-child) {
	margin-bottom: 100px;
}
body#member #section-officer .img-box {
	width: 320px;
}
body#member #section-officer .txt-box {
	width: 726px;
}
body#member #section-officer .department {
	margin: 0 0 10px;
	line-height: 1;
}
body#member #section-officer .department span.noto {
	letter-spacing: 0.15em;
}
body#member .section-general .department {
	margin: 0 0 10px;
	line-height: 1;
}
body#member .section-general .department span.noto {
	letter-spacing: 0.15em;
}
body#member #main .license {
	padding: 15px;
	background: #fafafa;
}
body#member #main .license .title {
	margin-bottom: 10px;
	padding-bottom: 5px;
	border-bottom: 1px dotted #ddd;
	font-size: 1.5rem;
	line-height: 1;
}
body#member #main .license li {
	position: relative;
	padding-left: 15px;
}
body#member #main .license li::before {
	display: inline-block;
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	margin: auto;
	background-color: #00a7e3;
}
body#member #main .txt-box .noto {
	letter-spacing: 0.08em;
}
body#member .name-wrap {
	margin: 0 0 20px;
	line-height: 1;
	font-size: 0;
}
body#member .name-wrap p {
	vertical-align: baseline;
	margin: 0;
	line-height: 1;
	letter-spacing: 0.15em;
}
body#member .name-wrap .name-ja {
	font-size: 2rem;
}
body#member .name-wrap .name-en {
	font-size: 1.2rem;
	color: #999;
}
body#member #section-officer .message {
	margin: 20px 0 0;
}
body#member .section-general .message {
	margin: 20px 0 0;
}
body#member .section-general .member-wrap {
	overflow: visible;
}
body#member .section-general .member-wrap > li {
	width: 534px;
	margin: 32px 32px 0 0;
}
body#member .section-general .member-wrap > li:nth-child(2n) {
	margin-right: 0;
}
body#member .section-general .member-wrap > li:nth-child(-n+2) {
	margin-top: 0;
}
body#member .section-general .member-wrap > li .img-box.no-img {
	box-sizing: border-box;
	padding: 20px;
	box-shadow: 0 0 1px #ccc;
}
@media screen and (min-width: 768px) {
	body#member .section-general .member-wrap > li .img-box {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 250px;
		height: 250px;
	}
	body#member .section-general .member-wrap > li .txt-box {
		width: 260px;
	}
}
@media screen and (max-width: 767px) {
	body#member #section-officer .member-wrap > li:not(:last-child) {
		margin-bottom: 60px;
	}
	body#member #section-officer .img-box,
	body#member #section-officer .txt-box {
		width: 100%;
	}
	body#member #section-officer .img-box {
		margin-bottom: 5%;
	}
	body#member #section-officer .message {
		margin-top: 30px;
	}
	body#member .section-general .member-wrap > li {
		width: 48%;
		margin: 4% 4% 0 0;
	}
	body#member .section-general .img-box,
	body#member .section-general .name-wrap {
		margin-bottom: 20px;
	}
	body#member .section-general .member-wrap > li .img-box.no-img {
		position: relative;
		padding: 50% 0;
		width: 100%;
		height: 0;
	}
	body#member .section-general .member-wrap > li .img-box.no-img img {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		width: 90%;
		margin: auto;
	}
}

/* = Voice
-------------------------------------------------------------- */
body#voice .voice-list li.voice-item {
	margin: 0;
	padding: 0;
	margin-top: -100px;
	padding-top: 100px;
	background: none;
}
body#voice .voice-list li.voice-item .txt-box {
	padding-left: 30px;
}
body#voice .voice-list li.voice-item:not(:last-child) {
	margin-bottom: 100px;
	padding-bottom: 100px;
	border-bottom: 1px solid #9fa0a0;
}
body#voice .voice-list li.voice-item .detail-text {
	margin-top: 50px;
}
body#voice .voice-list li.voice-item .detail-text span.noto {
	letter-spacing: 0.15em;
}
body#voice .voice-list li.voice-item .detail-text p {
	margin: 0;
	font-size: 1.4rem;
	line-height: 1.75;
}
body#voice .voice-list li.voice-item .detail-text p:not(:last-of-type) {
	margin-bottom: 30px;
}
body#voice .voice-list li.voice-item .detail-text strong {
	background: linear-gradient(transparent 60%, rgba(0, 167, 227, 0.4) 60%);
	font-weight: bold;
	padding: 3px 0 4px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body#voice .voice-list li.voice-item .detail-text .floatbox:not(:last-of-type) {
	margin-bottom: 50px;
}
body#voice .voice-list li.voice-item .detail-text .img-box {
	width: 460px;
}
body#voice .voice-list li.voice-item .detail-text .img-box.right {
	margin-left: 30px;
}
body#voice .voice-list li.voice-item .detail-text .img-box.left {
	margin-right: 30px;
}
body#voice .voice-list li.voice-item .detail-text .txt-area {
	width: 610px;
}
body#voice .voice-list li.voice-item .meta-area {
	float: none;
	width: 100%;
	margin: 40px 0 80px;
}
body#voice .voice-list li.voice-item .title {
	margin: 0 0 20px;
	padding-bottom: 10px;
	border-bottom: 2px dotted #ccc;
	font-size: 1.8rem;
	font-weight: normal;
	line-height: 1;
}
body#voice .voice-list li.voice-item .title span.noto {
	letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
	body#voice .voice-list li.voice-item .txt-box {
		padding-left: 0;
	}
	body#voice .voice-list li.voice-item .entry-content {
		margin-bottom: 0;
	}
	body#voice .voice-list li.voice-item .detail-text .img-box,
	body#voice .voice-list li.voice-item .detail-text .txt-area {
		width: 100%;
	}
	body#voice #main .voice-list li .detail-text .img-box {
		margin: 0 auto 40px;
	}
}

/* = Contact
-------------------------------------------------------------- */
body#contact #main .text {
	margin: 0 0 30px;
}
body#contact #main .privacy .dbl-border {
	margin-top: 30px;
	padding-bottom: 20px;
	line-height: 1.4;
}
.form-container {
	border-top: 1px solid #cbcbcb;
}
.form-wrap input[type="text"],
.form-wrap input[type="tel"],
.form-wrap input[type="email"],
.form-wrap input[type="number"],
.form-wrap input[type="url"],
.form-wrap input[type="password"],
.form-wrap textarea,
.form-wrap select {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	padding: 6px 4px;
	font-size: 1.6rem;
	line-height: 1.4;
	background: #fafafa;
	vertical-align: middle;
}
.form-box input[type="text"],
.form-box input[type="tel"],
.form-box input[type="email"],
.form-box textarea {
	max-width: 100%;
	width: 100%;
}
.form-box input[type="text"],
.form-box input[type="tel"],
.form-box input[type="email"],
.form-box input[type="number"],
.form-box input[type="url"],
.form-box input[type="password"],
.form-box textarea,
.form-box select {
	padding: 5px;
	border: 0;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	vertical-align: middle;
	background: transparent;
	box-sizing: border-box;
}
.form-box select::-ms-expand {
	display: none;
}
.form-box select {
	position: relative;
	padding: 8px 5px;
	border: 1px solid #cbcbcb;
}
.form-box input[type="checkbox"],
.form-box input[type="checkbox"] + span,
.form-box input[type="radio"],
.form-box input[type="radio"] + span {
	vertical-align: middle;
}
.form-wrap {
	/*max-width: 1000px;*/
	width: 100%;
}
.form-box {
	display: table;
	width: 100%;
	/*margin: 0 auto 30px;*/
	border: 0;
	border-collapse: collapse;
	table-layout: fixed;
}
.form-head,
.form-body {
	display: table-cell;
	box-sizing: border-box;
	vertical-align: middle;
	padding: 20px;
	font-size: 1.6rem;
	line-height: 1.8;
	text-align: left;
}
.form-box:last-child {
	margin-bottom: 0;
}
.form-head {
	max-width: 260px;
	width: 26%;
	font-weight: normal;
	background-color: #ddd;
}
.form-box.required .form-head span {
	position: relative;
}
.form-box.required .form-head span::after {
	display: block;
	content: "※必須";
	font-size: 1.3rem;
	color: #c93756;
}
.form-body {
	max-width: 630px;
	width: 74%;
	border: 1px solid #cbcbcb;
	border-top: none;
	background-color: #ffffff;
}
.btn-submit {
	width: 250px;
	margin-top: 50px;
}
.btn-submit .btn {
	padding: 20px;
}
@media screen and (max-width: 767px) {
	.form-head,
	.form-body {
		display: block;
		width: 100%;
		max-width: 100%;
	}
	.form-head,
	.form-body {
		padding: 15px;
	}
}

/* = Thanks
-------------------------------------------------------------- */
body#thanks #section-thanks p {
	margin: 0;
	text-align: center;
}
body#thanks #section-thanks .btn-wrap {
	margin: 40px auto 0;
}

/* = アニメーション
-------------------------------------------------------------- */
.myFadeInUp {
	-webkit-animation-name: myFadeInUp;
	animation-name: myFadeInUp;
}
.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
}
@keyframes myFadeInUp {
	0% {
		opacity: 0;
    -webkit-transform: translate3d(0, 200px, 0);
    transform: translate3d(0, 200px, 0);
	}
	100% {
		opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
	}
}

/* = 健康経営セクション
-------------------------------------------------------------- */
#section-health .img-box {
	width: 320px;
}
#section-health .img-box img {
	width: 220px;
}
#section-health .txt-box {
	width: 390px;
}
@media screen and (max-width: 767px) {
	#section-health .img-box,
	#section-health .txt-box {
		display: block;
		width: 100%;
	}
	#section-health .img-box img {
		width: 70%;
		padding-top: 30px;
	}
}