@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Roboto:wght@300;400&family=Oswald&family=Zen+Maru+Gothic:wght@400;500;700&display=swap');


a:link, a:visited {
	text-decoration: underline;
	color:#EC7289;
}

a:hover, a:active  {
	text-decoration: none;
	color: #EC7289;
}

html{
	overflow-x : hidden;
	overflow-y : auto;
}


/* Body
---------------------------------------------------------- */
body {
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","Osaka","ＭＳ Ｐゴシック", "MS P Gothic",Verdana,Arial, Helvetica, sans-serif;
	font-size:15px;
	line-height: 1.6;
	letter-spacing:0.02em;
	-webkit-font-feature-settings: "palt" 1;
	font-feature-settings: "palt" 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color:#4D4D4D;
}


/* Misc.
---------------------------------------------------------- */
.hidden {
	display: none;
}

.t-bold {
	font-weight:bold;	
}

.t-right {
	text-align:right;	
}

.t-center {
	text-align:center;	
}

.t-pink {
	color: #EC7289;
}

a.img-btn:hover {
	filter: alpha(opacity=70);
	-moz-opacity:0.70;
	opacity:0.70;
}

.show-mobile-inline,
.show-mobile {
  display: none;
}

.hide-mobile {
  display: block;
}

.hide-mobile-inline {
	display: inline-block;
}


@media only screen and (max-width: 767px) {

	.show-mobile {
		display: block;
	}

	.show-mobile-inline {
		display: inline-block;
	}

	.hide-mobile {
		display: none;
	}

	.hide-mobile-inline {
		display: none;
	}
}


/* Base Layout
---------------------------------------------------------- */
#wrapper {
	width:100%;
	background: url(./img/bg_wrapper.png) repeat-x center top;
}


/*========== HEADER ==========*/
#header{
	max-width: 1190px;
	width: calc(100vw - 40px);
	margin: 0 auto;
	padding: 45px 20px 30px 20px;
	background: url(./img/bg_header.png) no-repeat right 20px top;
	display: flex;
	justify-content: space-between;
}
#logo {
	width: 210px;
	height: 52px;
}
#logo img {
	width: 210px;
	height: auto;
}
#gnav {
	display: flex;
  align-items: center;
}
#gnav > ul {
	display: flex;
}
#gnav > ul > li {
	padding: 0 22px;
	border-right: 2px solid #ebe4d5;
	position: relative;
}
#gnav > ul > li > a {
	display: flex;
	flex-direction: column;
	text-align: center;
	text-decoration: none;
	transition: all .2s linear;
}
#gnav > ul > li.has-child {
	width: 106px;
	display: flex;
	flex-direction: column;
	text-align: center;
}
#gnav > ul > li:last-of-type {
	border: none;
	padding-right: 0;
}
#gnav > ul > li > a > img,
#gnav > ul > li > span > img {
	height: 35px;
	width: auto;
}
.gnav-sub {
	display: none;
	position: absolute;
	z-index: 100;
	top: 33px;
	left: 0;
	width: 100%;
	background-color: #fff;
	padding-top: 33px;
}
.gnav-sub li {
	padding: 0 12px;
}
.gnav-sub li a {
	display: block;
	padding: 22px 0;
	border-bottom: 1px dotted #707F89;
	text-align: center;
}
.gnav-sub li:last-of-type a {
	border: none;
}
.gnav-sub li a img {
	height: 31px;
	width: auto;
}

/*========== FOOTER ==========*/
.p-footer {
	width:100%;
	background: #003F73;
	color: #fff;
	font-size: 12px;
}
.p-footer a {
	color: #fff;
	text-decoration: none;
}
.p-footer .inner {
	width: 90%;
	max-width: 990px;
	margin: 0 auto;
	padding: 40px 0;
}
.p-footer-top > h3 {
	width: 96px;
	margin: 0 auto 22px auto;
}
.p-footer-top > h3 img {
	width: 100%;
	height: auto;
}
.p-footer-top .sns-wraper {
	width: 240px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto 40px auto;
	padding: 0;
}
.p-footer-top .sns-wraper > div {
	width: 26%;
	max-width: 50px;
}
.p-footer-top .sns-wraper > div a {
	display: block;
}
.p-footer-top .sns-wraper > div img {
	width: 100%;
	height: auto;
}
.p-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px dotted #fff;
	padding: 32px 0 64px 0;
}
.p-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px dotted #fff;
	padding: 32px 0 64px 0;
}
.p-footer-info {
	width: 50%;
	display: flex;
	align-items: center;
}
.p-footer-info .logo {
	width: 110px;
	margin-right: 60px;
}
.p-footer-info .meta {}
.p-footer-info .meta h3 {
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 10px;
}
.p-footer-info .meta .address {
	font-size: 13px;
	line-height: 1.5;
}
.p-footer-navi {
	width: 40%;
	display: flex;
	justify-content: end;
}
.p-footer-navi ul {
	width: 40%;
	max-width: fit-content;
}
.p-footer-navi ul:first-of-type {
	padding-right: 10%;
	margin-right: 10%;
	border-right: 1px dotted #fff;
}
.p-footer-navi ul li {
	margin-bottom: 8px;
}
.p-copyright {
	text-align: center;
	font-size: 11px;
}


/*========== BODY ==========*/
#body {
}

/* TOP
---------------------------------------------------------- */
#player {
	min-height: 35%;
}
.p-top-visual {
	position: relative;
	width: 100vw;
	overflow: hidden;
	background-color: #023A6B;
}
.p-top-visual::before {
	content: "";
	display: block;
	padding-top: 56.25%;
}
.p-top-visual::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}
#player {
	position: absolute;
	top: 0;
	left: 0;
	min-width: 100vw;
	min-height: 100%;
}
.p-top-visual .copy {
	position: absolute;
	left: 4%;
	bottom: 150px;
	max-width: 547px;
	width: 70vw;
}
.p-top-visual .copy img {
	width: 100%;
	height: auto;
}
.p-top-movie {
	display: flex;
	position: absolute;
	bottom: 56px;
	left: calc(4% + 50px);
}
.p-top-movie .c-allow-button {
	background-color: #023A6B;
	padding: 16px 24px;
	font-weight: 500;
	display: none;
}
.p-top-scroll {
	position: absolute;
	z-index: 1;
	left: 4%;
	bottom: 100px;
	overflow: hidden;
	width: 100px;
	height: auto;
	transition: opacity .4s 0s;
	transform: rotate(90deg);
	transform-origin: left bottom;
	color: #fff;
}
.p-top-scroll::after,
.p-top-scroll::before {
	position: absolute;
	z-index: 1;
	top: 50%;
	right: 0;
	display: block;
	width: 30px;
	height: 1px;
	margin: 0;
	content: '';
	background-color: rgba(255,255,255,.4);
}
.p-top-scroll::after {
	z-index: 2;
	animation-name: pager_scroll;
	animation-duration: 1.6s;
	animation-timing-function: cubic-bezier(.77,0,.175,1);
	animation-delay: 0s;
	animation-iteration-count: infinite;
	background-color: #fff;
	animation-fill-mode: forwards;
}
@keyframes pager_scroll {
	0%,
	20%{
		right: 30px;
		width: 0;
	}
	60%{
		right: 0;
		width: 30px;
	}
	100%{
		right: 0;
		width: 0;
	}
}
/* お知らせ */
#top-topics-list {
	background: #f1f1f1;
	margin: 0 0 40px 0;
}
#top-topics-entry,
#top-topics-list-inner {
	max-width: 980px;
	width: 100%;
	margin: 0 auto;
	padding: 50px 0;
	display: flex;
	align-items: center;
}
#top-topics-list h2 {
	font-weight: 500;
	width: 240px;
	text-align: center;
	font-size: 15px;
}
#top-topics-list h2 img {
	width: 80px;
	height: auto;
}
#top-topics-list-r {
	display: flex;
	justify-content: space-between;
	width: calc(100% - 240px);
}
#top-topics-list-r ul {
	width: calc(100% - 220px);
}
#top-topics-list-r li {
	padding: 6px 0;
	display: flex;
}
.top-topics-list-date {
	width: 80px;
	padding: 0 20px 0 0;
	color: #707F89;
}
#top-topics-list-r li a {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
#top-topics-list-more {
	text-align: right;
	width: 200px;
	display: flex;
	align-items: flex-end;
}
#top-topics-list-more a {
	color: #707F89;
	text-decoration: none;
	font-size: 14px;
}
/* 私たちの想い */
.p-top-concept .p-section-heading {
	margin-top: 60px;
	border-top: none;
}
/* 事業内容 */
.p-section-business {
	margin-bottom: 140px;
}
.p-section-business .p-section-heading {
	margin-top: 60px;
	margin-bottom: 40px;
	border-top: none;
}
.p-section-business__intro {
	text-align: center;
	font-size: 18px;
}
.p-section-business__visual {
	margin-bottom: 60px;
}
.p-section-business__visual figure {
	width: 100%;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
}
.p-section-business__visual figure img {
	width: 100%;
	height: auto;
}
.p-section-business__sports-title {
	text-align: center;
	margin-bottom: -1px;
}
.p-section-business__sports-title img {
	max-width: 964px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.p-section-business__sports-navi {
	width: 100%;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.p-section-business__sports-navi a {
	width: 24%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	line-height: 1;
	transition: all .2s linear;
}
.p-section-business__sports-navi a:not(:last-of-type) {
	margin-right: 1%;
}
.p-section-business__sports-navi a::before {
	content: "";
	display: block;
	padding-top: 100%;
}
.p-section-business__sports-navi a.learn {
	background: url(../img/top/img_navi1.jpg) no-repeat center;
	background-size: cover;
}
.p-section-business__sports-navi a.see {
	background: url(../img/top/img_navi2.jpg) no-repeat center;
	background-size: cover;
}
.p-section-business__sports-navi a.do {
	background: url(../img/top/img_navi3.jpg) no-repeat center;
	background-size: cover;
}
.p-section-business__sports-navi a.support {
	background: url(../img/top/img_navi4.jpg) no-repeat center;
	background-size: cover;
}
.p-section-business__sports-navi a:hover {
	opacity: .75;
}
.p-section-business__sports-navi a img {
	width: 50%;
	min-width: 100px;
	height: auto;
}
.p-section-business__health {
	margin-top: 100px;
}
.p-section-business__health-title {
	text-align: center;
}
.p-section-business__health-title img {
	max-width: 1280px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.p-section-business__health-content {
	margin: 80px auto;
	text-align: center;
}
.p-section-business__health-content p:first-of-type {
font-size: 18px;
color: #023A6B;
margin-bottom: 10px;
}
.p-section-business__health-content p.t-small {
	font-size: 14px;
	color: #4D4D4D;
}
.p-section-business__more {
	display: flex;
	justify-content: center;
}

/* スポーツ栄養とは？
---------------------------------------------------------- */
#sub-image-layer img {
	width: 100%;
	height: auto;
}

#section-sub-copy {
	background: url(./img/bg_sub_copy.png) repeat center top;
	text-align: center;
	font-size: 24px;
	color: #EC7289;
	padding: 35px 0;
}

#pankuzu {
	width:1020px;
	margin:0 auto;
	font-size: 12px;
	padding: 30px 0 20px 0;
	color: #4D4D4D;
}

#pankuzu a {
	color: #333;
	text-decoration: none;
}

#section-sub-contact-faq {
	margin-top: 60px!important;
}

#section-sub-contact-faq,
.section-subbox {
	width:1020px;
	margin:0 auto 40px auto;
	padding: 0 0 20px 0;
}

#section-sub-contact-faq > h2,
.section-subbox h2 {
	padding: 33px 0;
	text-align: center;
	font-weight: normal;
	border-top: 1px solid #a1a1a1;
	border-bottom: 1px dotted #a1a1a1;
	margin: 0 0 20px 0;
}

.section-subbox h2 .t-jp {
	font-size: 26px;
	display: block;
	padding: 0 0 10px 0;
}

.section-subbox h2 .t-alpha {
	display: block;
	color: #EC7289;
	font-size: 16px;
	letter-spacing: 0.05em;
	font-family: 'Roboto', sans-serif;
}

.section-subbox p {
	font-size:17px;
	padding: 0 10px 1.5em 10px;
	line-height: 1.6;
}

.section-subbox li {
	font-size:17px;
	padding: 0 10px 1.5em 10px;
}

.section-subbox li strong {
	color: #EC7289;
	font-weight: normal;
}

.section-subbox p.syutten {
	font-size: 14px;
}


/* 事業内容
---------------------------------------------------------- */
.p-business-visual {
	position: relative;
	width: 100vw;
	overflow: hidden;
	background-color: #023A6B;
}
.p-business-visual::before {
	content: "";
	display: block;
	padding-top: 56.25%;
}
.p-business-visual::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}
.p-business-movie {
	display: flex;
	position: absolute;
	bottom: 56px;
	left: calc(4%);
	z-index: 2;
	cursor: pointer;
}
.p-business-movie .c-allow-button {
	background-color: #023A6B;
	padding: 16px 24px;
	font-weight: 500;
}
.p-business-sports {
	background-color: #023A6B;
	padding: 120px 0;
}
.p-business-sports .inner {
	width: 90%;
	max-width: 1060px;
	margin: 0 auto;
}
.p-business-sports .item {
	position: relative;
	padding: 50px;
	background-color: #fff;
	border-radius: 0 6px 6px 6px;
	margin: 0 0 0 70px;
}
.p-business-sports .item:not(:last-of-type) {
	margin-bottom: 80px;
}
.p-business-sports .item .tag {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 44px 0;
	position: absolute;
	top: 0;
	left: -70px;
	width: 74px;
	background-color: #fff;
	border-radius: 6px 0 0 6px;
}
.p-business-sports .item .tag img {
	width: 56px;
	height: auto;
}
.p-business-sports .item .visual {
	margin-bottom: 12px;
}
.p-business-sports .item .visual img {
	width: 100%;
	height: auto;
}
.p-business-sports .item .heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #023A6B;
	max-width: 700px;
	margin: 0 auto;
	padding: 40px 0;
}
.p-business-sports .item .heading h3 {
	width: 30%;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: .06em;
	padding-left: 8px;
}
.p-business-sports .item .heading p {
	width: 60%;
	line-height: 1.75;
}
/* セミナー情報、実績 */
.p-seminor-result,
.p-seminor-info {
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 80px;
}
.p-seminor-result h3,
.p-seminor-info h3 {
	position: relative;
	border-top: 1px dotted #707F89;
	padding: 16px 0 36px 16px;
	font-size: 16px;
	font-weight: normal;
}
.p-seminor-result h3::before,
.p-seminor-info h3::before {
	content: '';
	display: block;
	height: 4px;
	width: 130px;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #CDD6DD;
}
.p-seminor-result ul,
.p-seminor-info ul {
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}
.p-seminor-info ul li {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
	font-size: 16px;
}
.p-seminor-info ul li .date {
	margin-right: 16px;
	color: #707F89;
}
.p-seminor-info ul li a {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	font-size: 18px;
}
.p-seminor-result__more,
.p-seminor-info__more {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}
.p-seminor-result ul {
	margin-bottom: 48px;
	margin-top: 16px;
}
.p-seminor-result__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.p-seminor-result__list li {
	width: 28%;
	display: flex;
	flex-direction: column;
	text-align: center;
}
.p-seminor-result__list li .label {
	font-size: 18px;
	font-weight: 500;
	color: #023A6B;
	margin-bottom: 12px;
}
.p-seminor-result__list li .number {
	font-size: 97px;
	font-family: 'Oswald', sans-serif;
	line-height: 1;
	letter-spacing: 0;
	color: #E35A76;
}

/* アサスポバナー */
.p-banner-asaspo {
	text-align: center;
	padding-bottom: 40px;
}
.p-banner-asaspo img {
	width: 100%;
	max-width: 300px;
}
/* 記事リンク */
.p-business-navi {
	color: #023A6B;
	display: flex;
	justify-content: space-between;
	border-top: 1px dotted #707F89;
	max-width: 700px;
	margin: 0 auto;
	padding: 40px 0;
}
.p-business-navi li {
	width: 28%;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.p-business-navi li h4 {
	font-weight: 500;
	font-size: 18px;
	line-height: 1.3;
	margin-bottom: 16px;
	height: 36px;
	display: flex;
	align-items: center;
}
.p-business-navi li h4 img {
	width: 46px;
	margin-right: 6px;
}
.p-business-navi li h4 span {
	display: block;
}
.p-business-navi li h4 span.t-small {
	font-size: 12px;
}
.p-business-navi li .c-allow-button {
	font-size: 12px;
	max-width: fit-content;
	font-weight: 500;
	max-width: fit-content;
}
.p-business-subjunction {
	color: #023A6B;
	border-top: 1px dotted #707F89;
	padding: 24px 0;
	text-align: center;
	font-size: 14px;
	max-width: 700px;
	margin: 0 auto;
}
.p-support-result__more {
	display: flex;
	align-items: center;
	justify-content: center;
	border-top: 1px dotted #707F89;
	max-width: 700px;
	margin: 0 auto;
	padding: 40px 0;
}
.p-business-sports .item.support .p-business-navi li h4 {
	flex-direction: column;
}

/* お問合せ
---------------------------------------------------------- */
#section-contact-1 {
	text-align: center;
	padding: 90px 0 40px 0;
	color:#1a1a1a;
}

#section-contact-1 h2 {
	text-align: center;
}

#section-contact-1-body {
	padding: 50px 0 0 0;
}

#contact-1-tel {
	padding: 0 0 30px 0;
	font-size: 39px;
	color: #ec7289;
	vertical-align: middle;
	line-height: 1;
}

#section-contact-map {
	text-align: center;
	padding: 50px 0 20px 0;
}

#section-contact-map-body {
	padding: 15px 0 40px 0;
}

#section-contact-map-body p {
	padding: 0 0 15px 0;
}

#section-contact-form {
	background: url(./img/bg_form.png) repeat center top;
	padding: 40px 0;
}

#form-layer {
	margin:20px 0 0 0;
	background: #fff;
	width: 1020px;
	margin: 0 auto;
    border-radius: 5px;
    -webkit-border-radius: 5px;  
    -moz-border-radius: 5px;
    padding: 40px 0;
}

.form-intro {
	text-align: center;
}

.form-intro h2 {
	display: inline-block;
	padding: 3px 0 3px 35px;
	background: url(./img/icon_mail_b.png) no-repeat left center;
	font-size: 16px;
}

.form-intro p {
	padding: 30px 0 10px 0;
}

.form-box {
	width:760px;
	margin: 0 auto;
	padding:15px 0;
	border-top: 1px dotted #666;
}

span.wpcf7-list-item {
	display: block;
}

.form-box-l,
.form-box-r {
	display: table-cell;
	vertical-align: middle;
	padding:0px 5px;
}

.form-box-l {
	width:100px;
	padding-left: 80px;
}

.form-box-r {
	width:440px;
}

.hissu {
	color:#ff0000;
	font-size:15px;
	padding-left:8px;
}

.input-text {
	width:440px;
	padding:10px 5px;
	border: 1px solid #A9A9A9;
	font-size: 15px;
    border-radius: 3px;
    -webkit-border-radius: 3px;  
    -moz-border-radius: 3px;
}

.input-textarea {
	width:440px;
	padding:10px 5px;
	border: 1px solid #A9A9A9;
	font-size: 15px;
    border-radius: 3px;
    -webkit-border-radius: 3px;  
    -moz-border-radius: 3px;
}

form select {
	width:450px;
	border: 1px solid #A9A9A9;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    vertical-align: middle;
}

#button-layer {
	text-align:center;
	padding:10px 0 20px 0;
}

#button-layer input:hover {
	filter: alpha(opacity=80);
	-moz-opacity:0.80;
	opacity:0.80;
}

#form-attention {
	padding: 0 0 10px 0;
}

div.wpcf7-response-output {
    width: 750px;
    margin: 20px auto;
}

.wpcf7-not-valid-tip-no-ajax {
	color: #ff0000;
}

div.wpcf7-validation-errors {
	border: 2px solid #ff0000;
	color: #ff0000;
	padding: 10px 15px;
}

.wpcf7-mail-sent-ok {
	border: 2px solid blue;
	color: blue;
	padding: 10px 15px;
}


#section-top-entry-form.contact-entry-form {
	margin: 0 auto 40px auto;
}

/* 会社概要
---------------------------------------------------------- */
.p-company-visual {
	position: relative;
}
.p-company-visual::before {
	content: "";
	display: block;
	padding-top: 66.6%;
}
.p-company-visual .copy {
	width: 100%;
	position: absolute;
	z-index: 1;
	text-align: center;
	top: 16%;
	left: 50%;
	transform: translate(-50%, 0);
	/* font-size: 18px;
	letter-spacing: 2px;
	line-height: 1.8;
	font-weight: 500;
	color: #fff; */
}
.p-company-visual .copy img {
	width: 37%;
	height: auto;
}
.p-company-visual figure {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	overflow: hidden;
}
.p-company-visual figure img {
	width: auto;
	height: 100%;
}
/* 固定バナー */
.p-fix-contact {
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 10;
	width: 260px;
}
.p-fix-contact a {
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 32px 0;
	color: #fff;
	background-color: #EC7289;
	text-decoration: none;
	transition: all .2s linear;
}
.p-fix-contact a:hover {
	opacity: .85;
}
.p-fix-contact a figure {
	height: 20px;
	margin-right: 12px;
	margin-top: 5px;
}
.p-fix-contact a figure img {
	width: 100%;
	height: auto;
}
.p-fix-contact a .header-sp-contact-link {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.p-fix-contact a .header-sp-contact-link .jp {
	font-size: 18px;
	font-weight: 500;
}
.p-fix-contact a .header-sp-contact-link .en {
	font-family: 'Roboto', sans-serif;
	font-size: 10px;
}
/* セクションヘッダー */
.p-section-heading {
	max-width: 900px;
	padding: 40px 0 42px 0;
	margin: 0 auto 80px auto;
	border-top: 1px solid #A1A1A1;
	border-bottom: 1px dotted #A1A1A1;
}
.p-section-heading h2 {
	display: flex;
	flex-direction: column;
	text-align: center;
	font-weight: normal;
}
.p-section-heading .jp {
	font-size: 28px;
	letter-spacing: 1px;
	margin-bottom: 12px;
}
.p-section-heading .jp img {
	height: 26px;
	width: auto;
}
.p-section-heading .en {
	font-family: 'Roboto', sans-serif;
  font-size: 14px;
	letter-spacing: .05em;
	color: #EC7289;
}
/* コンセプト */
.p-company-concept {
	width: 90%;
	max-width: 900px;
	margin: 0 auto 140px auto;
}
.p-company-concept .p-section-heading {
	border-top: none;
	margin-top: 100px;
}
.p-company-concept__visual {
	width: 100%;
	max-width: 800px;
	margin: 0 auto 100px auto;
}
.p-company-concept__visual figure {
	
}
.p-company-concept__visual figure img {
	width: 100%;
	height: auto;
}
.p-company-concept__message {
	margin: 0 auto 80px auto;
}
.p-company-concept__message h2 {
	font-weight: 300;
	font-size: 20px;
	margin-bottom: 16px;
}
.p-company-concept__message h2 img {
	height: 18px;
	width: auto;
}
.p-company-concept__message-text {
	font-size: 16px;
}
.p-company-concept__message-text p {
	line-height: 2;
}
.p-company-concept__message-text p:not(:last-of-type) {
	margin-bottom: 20px;
}
/* スタッフ紹介 */
.p-company-staff {
	margin-bottom: 140px;
}
.p-company-staff .p-section-heading {
	width: 90%;
	max-width: 900px;
}
.p-company-staff__content {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
}
.p-staff-profile {
	width: 23%;
	color: #EC7289;
	border: 2px solid #EC7289;
	border-radius: 6px;
	padding-bottom: 52px;
	position: relative;
}
.p-staff-profile.is_open {
	background-color: #EC7289;
	color: #fff;
}
.p-staff-profile figure {
	padding: 16px;
}
.p-staff-profile figure img {
	width: 100%;
	height: auto;
}
.p-staff-profile .p-staff-profile__heading {
	padding: 0 0 16px 0;
}
.p-staff-profile .p-staff-profile__heading .name {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 16px 14px 16px;
	margin-bottom: 12px;
	background: url(../img/company/line_dot.svg) no-repeat center bottom;
}
.p-staff-profile.is_open .p-staff-profile__heading .name {
	background: url(../img/company/line_dot_w.svg) no-repeat center bottom;
}
.p-staff-profile .p-staff-profile__heading .name .jp {
	font-size: 18px;
}
.p-staff-profile .p-staff-profile__heading .name .en {
	font-family: 'Roboto', sans-serif;
	font-size: 10px;
	letter-spacing: 1px;
}
.p-staff-profile .p-staff-profile__heading .position {
	font-size: 11px;
	padding: 10px 14px;
	text-align: center;
}
.p-staff-profile .p-staff-profile__content {
	padding: 24px 14px;
}
.p-staff-profile.is_open .p-staff-profile__content {
	display: block;
	line-height: 1.6;
	border-top: 1px solid #fff;
}
.p-staff-profile__button {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 14px 0;
	text-align: center;
	border-top: 1px solid #EC7289;
}
.is_open .p-staff-profile__button {
	border-top: 1px solid #fff;
}
.p-staff-profile__button span {
	position: relative;
	font-size: 13px;
	font-weight: bold;
}
.p-staff-profile__button span::after {
	content: '';
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0 0 3px 10px;
	border-top: 2px solid #EC7289;
	border-left: 2px solid #EC7289;
	transform: rotate(225deg);
	transform-origin: center;
}
.is_open .p-staff-profile__button span::after {
	margin: 0 0 -5px 14px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	transform: rotate(45deg);
}
/* 会社概要 */
.p-company-outline {
	width: 90%;
	max-width: 900px;
	margin: 0 auto 140px auto;
}
.p-company-outline__content {
	margin-bottom: 40px;
}
.p-company-outline__content dl {
	display: flex;
	flex-wrap: wrap;
	border-top: 2px solid #98A6B5;
}
.p-company-outline__content dl dt {
		width: 30%;
		padding: 20px 0;
		border-bottom: 1px solid #CDD6DD;
}
.p-company-outline__content dl dd {
	width: 70%;
	padding: 20px 0;
	border-bottom: 1px solid #CDD6DD;
}
.p-company-media__more,
.p-company-outline__more {
	display: flex;
	justify-content: center;
}
.c-allow-button {
	background-color: #EC7289;
	color: #fff !important;
	text-decoration: none !important;
	padding: 18px 30px 20px 30px;
	line-height: 1;
	border-radius: 100px;
	display: flex;
  align-items: center;
	font-weight: bold;
	transition: opacity .2s linear;
}
.c-allow-button::after {
	content: '';
	display: block;
	width: 15px;
	height: 12px;
	background: url(../img/company/icon_button_allow.svg) no-repeat center;
	background-size: 100% auto;
	margin-left: 6px;
}
.c-allow-button:hover {
	opacity: .75;
}
/* メディア掲載実績 */
.p-company-media {
	width: 90%;
	max-width: 900px;
	margin: 0 auto 140px auto;
}
.p-company-media__content {

}
.p-company-media__content ul {
	display: flex;
	justify-content: space-between;
	margin-bottom: 80px;
}
.p-company-media__content ul li {
	width: 29%;
}
.p-company-media__content ul li figure {
	width: 100%;
	overflow: hidden;
  position: relative;
	margin-bottom: 12px;
}
.p-company-media__content ul li figure::before {
	display: block;
	padding-top: 65.25%;
	content: '';
}
.p-company-media__content ul li figure img {
	width: 100%;
	height: auto;
	position: absolute;
	top: 50%;
	right: 0;
	bottom: 0;
	left: 50%;
	display: block;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.p-company-media__content ul li .meta {
	display: flex;
	flex-direction: column;
}
.p-company-media__content ul li .meta .date {
	color: #707F89;
	margin-bottom: 8px;
}
.p-company-media__content ul li .meta a {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	font-size: 18px;
}
/* ヘルスケア */
.p-section-business__health-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}
.p-section-business__health-list li {
	width: 26%;
	text-align: center;
	margin-bottom: 48px;
}
.p-section-business__health-list li figure {
	margin-bottom: 24px;
}
.p-section-business__health-list li figure img {
	width: 100%;
	max-width: 150px;
}
.p-section-business__health-list li h4 {
	font-size: 17px;
	font-weight: 500;
	line-height: 1.4;
	color: #023A6B;
	margin-bottom: 18px;
}
.p-healthcare-result {
	border-top: 1px dotted #707F89;
	max-width: 700px;
	margin: 0 auto;
	padding-top: 48px;
	margin-top: 16px;
}
.p-healthcare-result h3 {
	font-size: 17px;
	line-height: 1.6;
	font-weight: 500;
	text-align: center;
	color: #023A6B;
	margin-bottom: 24px;
}
.p-healthcare-result p {
	text-align: center;
	margin-bottom: 32px;
}
.p-healthcare-result__more {
	display: flex;
	justify-content: center;
}

.more-btn-layer {
	padding: 12px 0 0 0;
}

.more-btn-layer img:hover {
	filter: alpha(opacity=80);
	-moz-opacity:0.80;
	opacity:0.80;
}


/* 活動報告
---------------------------------------------------------- */
#blog-image-layer {
	background: #EC7289;
	color: #fff;
	height: 250px;
	overflow: hidden;
}

#blog-image-inner {
	width: 1020px;
	margin: 0 auto;
}

#blog-image-text {
	height: 250px;
	width: 290px;
	margin-right: 20px;
	float: left;
	display: flex;
  align-items: center;
	font-size: 28px;
	font-family: 'Zen Maru Gothic', sans-serif;
}

#blog-image-text img {
	margin: 0 0 0 40px;
	height: 47px;
}

#blog-image-ph {
	height: 250px;
	width: 300px;
	float: left;
}

.blog-layer {
	width: 1020px;
	margin: 0 auto;
	padding: 0 0 50px 0;
}

.content-layer {
	width: 680px;
	float: left;
	margin: 0 30px 0 0;
}

.menu-layer {
	width: 280px;
	float: left;
	background: url(./img/bg_form.png) repeat center top;
	padding: 15px;
}

.section-entrybox {
	padding: 0 0 20px 0;
}

.entry-body img {
	max-width: 100%;
	height: auto;
	margin-top: 1.0em;
	margin-bottom: 1.0em;
}

.entry-body {
	font-size: 14px;
	line-height: 1.7;
}

.entry-body p {
	line-height: 1.7;
}

.entry-header {
	background: url(./img/bg_entry_header.png) no-repeat center top;
	border-bottom: 1px dotted #a1a1a1;
	padding: 15px 0 12px 0;
	margin: 0 0 12px 0;
}

.entry-date {
	width: 95px;
	display: table-cell;
	vertical-align: middle;
	font-size: 13px;
	color: #878787;
	font-family: 'Roboto', sans-serif;
	padding: 3px 0 1px 23px;
	background: url(./img/icon_clock.png) no-repeat left 3px center;
}

.entry-title {
	width: 565px;
	display: table-cell;
	vertical-align: middle;
	font-size: 19px;
}

.blog-list-pager {
	padding: 15px 0;
	margin: 20px 0 10px 0;
	font-size: 15px;
	text-align: center;
	color:#A1A1A1;
	border-top: 1px solid #a1a1a1;
}

.blog-list-pager span,
.blog-list-pager a {
	display: block;
	margin: 0 4px 12px 4px;
	text-decoration: none;
	text-decoration: none;
	color:#A1A1A1;
}

.blog-list-pager span {
	color:#EC7289;
}

.wp-pagenavi {
	display: flex;
	flex-wrap: wrap;
}

.p-entrybox-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.p-entrybox {
	width: 46%;
	margin-bottom: 6%;
}
.p-entrybox > figure {
	margin-bottom: 8px;
	overflow: hidden;
	position: relative;
}
.p-entrybox > figure:before {
	display: block;
	padding-top: 65.25%;
	content: '';
}
.p-entrybox > figure img {
	width: 100%;
	height: auto;
	position: absolute;
	top: 50%;
	right: 0;
	bottom: 0;
	left: 50%;
	display: block;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.p-entrybox__content {

}
.p-entrybox__content .meta {
	display: flex;
	align-items: baseline;
	margin-bottom: 3px;
}
.p-entrybox__content .meta .date {
	font-size: 12px;
	margin-right: 8px;
}
.p-entrybox__content .meta .tag span {
	font-size: 11px;
	padding: 1px 6px 3px 6px;
	background-color: gray;
	color: #fff;
	letter-spacing: 0;
	margin-bottom: 6px;
	display: inline-block;
}
.p-entrybox__content .meta .tag span:not(:first-of-type) {
	margin-left: 5px;
}
.p-entrybox__content .title {
	margin-top: 6px;
}
.p-entrybox__content .title a {
	color: #023A6B;
	font-size: 16px;
	text-decoration: none;
}
.menu-box {
	background: #fff;
	padding: 12px;
	margin: 0 0 15px 0;
}

.menu-box.end {
	margin: 0;
}

.menu-box h3 {
	border-bottom: 1px solid #878787;
	padding: 2px 0 15px 12px;
	font-size: 13px;
	font-weight: normal;
}

.menu-box li {
	padding: 9px 5px;
	border-bottom: 1px dotted #878787;
	font-size: 14px;
	display: flex;
}
.menu-box li > figure {
	display: block;
	width: 85px;
	height: 0;
	padding-top: 85px;
	position: relative;
	overflow: hidden;
	margin: 0 1rem 0 0;
}
.menu-box li > figure img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
}
.menu-box li > div {
	flex: 1;
}

#menu-box-cat li a {
	position: relative;
	padding: 0 0 0 18px;
}

#menu-box-cat li a:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	margin-top :-6px;
	height: 11px;
	width: 11px;
	border-radius: 50%;
}
/* #menu-box-cat li#menu-cat-1 a:before {
	background: #D9AC19;
}

#menu-box-cat li#menu-cat-2 a:before {
	background: #0C7DA8;
}

#menu-box-cat li#menu-cat-3 a:before {
	background: #12873C;
}

#menu-box-cat li#menu-cat-4 a:before {
	background: #EC7289;
} */
.menu-box li .entry-date {
	font-size: 11px;
	padding: 1px 0 0 17px;
	background-size: 11px auto;
}

.menu-box li a {
	text-decoration: none;
	color: #000;
}

.blog-detail-pager {
	padding: 15px 0;
	margin: 20px 0 10px 0;
	font-size: 13px;
	color:#A1A1A1;
	border-top: 1px solid #a1a1a1;
}

.blog-detail-pager-inner {
	width: 300px;
	margin: 0 auto;
}

.blog-detail-pager-inner a {
	text-decoration: none;
}
.blog-detail-pager-l {
	width: 100px;
	float: left;
}

.blog-detail-pager-c {
	width: 100px;
	float: left;
	text-align: center;
}

.blog-detail-pager-r {
	width: 100px;
	float: right;
	text-align: right;
}


/* よくあるご質問
---------------------------------------------------------- */
#pankuzu.faq-pankuzu {
	border-bottom: 1px solid #a1a1a1;
	margin-bottom: 40px;
}

.faq-list-layer {
	width: 1020px;
	margin: 0 auto;
	padding: 20px 0;
}

.faq-list-l {
	width: 465px;
	float: left;
	margin: 0 70px 0 0;
}

.faq-list-r {
	width: 485px;
	float: left;
}

.faq-list-r h2,
.faq-list-l h2 {
	padding: 0 0 15px 20px;
	border-bottom: 1px dotted #333;
	margin: 0 0 12px 0;
	font-size: 1.2rem;
}

.faq-list-r li,
.faq-list-l li {
	padding: 5px 0 5px 20px;
	font-size: 17px;
	color: #4D4D4D;
}


.faq-list-r li span,
.faq-list-l li span {
	display: block;
	padding: 0 0 0 25px;
	background: url(../img/faq/faq_allow_b.png) no-repeat left center;
	cursor: pointer;
}

.faq-list-r li span.selected,
.faq-list-l li span.selected {
	padding: 0 0 0 25px;
	background: url(../img/faq/faq_allow_p.png) no-repeat left center;
}

.faq-popup-box {
	width: 1020px;
	margin: 0 auto 20px auto;
}

.faq-popup {
	background: url(./img/bg_form.png) repeat center top;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	padding: 20px;
	display: none ;
}

.faq-popup-a,
.faq-popup-q {
	background: #fff;
	padding: 20px;
	font-size: 14px;
}

.faq-popup-q {
	margin-bottom: 10px;
	font-weight: bold;
	font-size: 21px;
	position: relative;
}

.faq-popup-q p {
	padding: 5px 50px 5px 15px;
	border-left: 5px solid #EC7289;
}

.faq-popup-q span.faq-close-btn {
	cursor: pointer;
	display: block;
	background: url(../img/faq/btn_close.png) repeat center;
	width: 30px;
	height: 30px;
	position: absolute;
	right: 26px;
	top:26px;
}

.faq-popup-q span.faq-close-btn:hover {
	filter: alpha(opacity=70);
	-moz-opacity:0.70;
	opacity:0.70;
}


#faq-contact-layer {
	width: 1020px;
	margin: 0 auto;
	padding: 20px 0 80px 0;
	text-align: center;
}

#faq-contact-btn {
	display: inline-block;
    text-decoration: none;
    margin-bottom: 12px;
}

#faq-contact-btn:hover {
	filter: alpha(opacity=80);
	-moz-opacity:0.80;
	opacity:0.80;
}

#faq-contact-attention {
	color:#808080;
	font-size: 16px;
}


/* サービス案内
---------------------------------------------------------- */
#section-sub-sv-1 {
	width: 1020px;
	border-top: 1px solid #a1a1a1;
	padding-top: 15px;
}

.tab {
	overflow:hidden;
	margin: 0 0 0 10px;
}

.tab li {
	background:#fff;
	padding:0;
	float:left;
	position: relative;
	z-index: 1;
}

.tab li.select {
	position: relative;
	z-index: 6;
}

.content li {
	position: relative;
	z-index: 5;
	padding:20px 0;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	box-shadow:0px 0px 3px 2px #e6e6e6;
	-moz-box-shadow:0px 0px 3px 2px #e6e6e6;
	-webkit-box-shadow:0px 0px 3px 2px #e6e6e6;
	margin-bottom: 30px;
}

.hide {
	display:none;
}

.section-sub-sv h2 {
    padding: 13px 0 33px 0;
    border-top: none;
    margin: 0 20px;
}

#sv-content-4 h2 {
	border-bottom: none;
}

.sv-content-box {
    border-bottom: 1px dotted #a1a1a1;
    padding: 25px 0 25px 20px;
    margin: 0 20px;
}

.section-subbox .sv-content-box p {
    padding: 0;
}

.sv-content-l {
	width: 430px;
	padding-right:80px; 
	min-height: 50px;
	float: left;
	background: url(../img/service/sv_allow.png) no-repeat right 40px center;
}

.sv-content-r {
	width: 450px;
	float: left;
}

.sv-content-r h3 {
	color: #EC7289;
	font-size: 17px;
	padding-bottom: 5px;
}

.section-subbox .sv-content-box .sv-content-r p {
	padding-left: 17px;
}

.sv-content-box.end {
    border-bottom: none;
    padding: 25px 10px 10px 20px;
}

.sv-content-box.end .sv-content-l {
	width: 610px;
	padding-left:0; 
	background: none;
	float: left;
}

.sv-content-box.end .sv-content-l p {
	font-size: 16px;
}

.sv-content-box.end .sv-content-r {
	width: 250px;
	float: right;
	padding-top: 10px;
}

.sv-content-box.end .sv-content-r a {
	font-size: 15px;
	width: 230px;
	padding: 12px 0;
	text-align: center;
}

.sv-content-news-l {
	padding-left: 10px;
	width: 130px;
	float: left;
	font-size: 15px;
}

.sv-content-news-r {
	width: 800px;
	float: left;
	font-size: 15px;
}

#sv-content-4-attention p {
	margin-bottom: 12px;
}

.section-subbox .sv-content-box p.sv-content-4-title {
	padding: 0 0 20px 0;
}

.sv-content-box .t-bold {
	font-weight: bold;
}

.sv-content-box .t-pink {
	color: #EC7289;
}

.sv-content-box .t-center {
	text-align: center;
}

.go-sv-tab4 a {
	text-decoration: underline;
	cursor: pointer;
	color: #4D4D4D;
}

/* 追加
---------------------------------------------------------- */
/*mokuzi*/
.mokuzi{
	border:10px solid #ec7289;
	padding:10px;
	margin-bottom:10px;
	font-size:18px;
	font-weight:bold;
}

/*right-nav*/
ul li.b1 a {
    background: #4064ad;
    bottom: 140px;
}

ul li.b2 a {
    background: #e4573a;
    bottom: 105px;
}

ul li.b3 a {
    background: #00b300;
    bottom: 70px;
}

ul li.b4 a {
    background: #1da1f2;
    bottom: 35px;
}

ul li.b5 a {
    background: #ec7289;
    bottom: 35px;
}

ul#nav2 {
	position: fixed;
    right: 0;
    bottom: 20px;
    z-index: 200;
}

ul#nav2 li {
    line-height: 1.6;
}

ul#nav2 li a {
	font-size: 23px;
    display: block;
    margin-right: 0;
    width: 35px;
    height: 35px;
    padding: 0 0 0 5px;
    color: #fff;
    text-align: center;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

ul#nav2 li a:hover {
    margin-right: 0px;
}

ul#nav2 li.b4 a {font-size:20px;}

/*menu2*/
.top-content-box2 {
    width: 49%;
    float: left;
    box-shadow: 0px 0px 9px 2px #d4d4d4;
    -moz-box-shadow: 0px 0px 9px 2px #d4d4d4;
    -webkit-box-shadow: 0px 0px 9px 2px #d4d4d4;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    margin: 0 2% 0 0;
}
.top-content-box3 {
    width: 49%;
    float: left;
    box-shadow: 0px 0px 9px 2px #d4d4d4;
    -moz-box-shadow: 0px 0px 9px 2px #d4d4d4;
    -webkit-box-shadow: 0px 0px 9px 2px #d4d4d4;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    margin: 0;
}
.entry-cart-title{
	font-weight:bold;
	color:#ec7289;
	font-size:1.1rem;
}
.top-content-text2 {
    padding: 12px 14px 0 14px;
    line-height: 1.4;
    text-align: justify;
	height:auto;
}

/* 行政関係者の方へ */
.p-administration-archive #blog-image-text img {
	height: 78px;
	margin: 88px 0 0 31px;
}
.administration-list {
	width: 100%;
	margin: 20px 0 0 0;
}
.administration-list td {
	padding: 14px 20px 14px 0;
	vertical-align: top;
}
.administration-list td:last-of-type {
	padding: 14px 0 14px 0;
}
.administration-list td a {
	text-decoration: none;
}
.administration-list .administration-box {
	border-bottom: 1px dotted #878787;
}
.administration-list .administration-box:last-of-type {
	border-bottom: none;
}
.administration-title {
	font-size: 1rem;
	margin-right: 20px;
	line-height: 1.4;
}
/* ヘルスケア事業実績 */
.p-healthcare-archive #blog-image-text img {
	height: 46px;
	margin: 104px 0 0 0;
}

.icon_pink {
	color: #EC7289;
	margin-right: 6px;
}

.peatix-btn-layer {
    text-align: center;
    margin: 20px 0;

}
.peatix-btn-layer a {
	background: #EC7289;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
}
.peatix-btn-layer a:hover {
	opacity: .75;
}

.media-list {
	max-width: 1020px;
    margin: 10px auto 60px auto;
}
.media-box {
	display: flex;
	justify-items: center;
    padding: 18px 0;
    border-bottom: 1px dotted #a1a1a1;
}
.media-image {
	width: 200px;
	margin-right: 30px;
	text-align: center;
}
.media-image img {
	max-width: 100%;
	max-height: 60px;
	height: auto;
}
.media-info {
	flex: 1;
}
.MediaDate {
	font-size: 12px;
    margin-bottom: 4px;
}

/* SP
====================================================*/
@media screen and (max-width: 767px) {	
	/* 追加
	---------------------------------------------------------- */
	/*right-nav*/
	ul#nav2 li a {
    	font-size: 23px;
    	margin-right: 0px;
  	    width: 24px;
	}
	ul#nav2 li a:hover {
 	 opacity: 0.5 ;
	}
	/*menu2*/
	.top-content-box2, .top-content-box3{
    	width: auto;
		margin:0 20px 20px;
	}
	.sp-f14{
		font-size:16px;
	}

}


/* 栄養士コラム（タイル表示）
---------------------------------------------------------- */
.blog-flex-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.blog-flex-wrap > article {
	width: calc(50% - 37px);
	border: 1px solid #878787;
	padding: 14px;
	margin-bottom: 14px;
}
.blog-flex-wrap > article figure {
	margin-bottom: 12px;
}
.blog-flex-wrap > article figure img {
	width: 100%;
	height: auto;
}
.blog-flex-wrap > article .title {
	font-size: 18px;
	font-weight: normal;
	line-height: 1.3;
	margin-bottom: 12px;
}
.blog-flex-wrap > article .summary {
	font-size: 13px;
	margin-bottom: 12px;
}
.blog-flex-wrap > article .more-btn {
	text-align: right;
}
/* お問い合わせセクション
---------------------------------------------------------- */
.common-contact-section {
	background-color: #F4F4F4;
	border-top: 1px solid #707070;
	padding: 80px 0 40px 0;
	text-align: center;
}
.common-contact-section p {
	margin-bottom: 20px;
}
.common-contact-section a {
	display: inline-block;
	font-size: 22px;
	color: #333;
	line-height: 1;
	text-decoration: none;
	border: 1px solid #707070;
	border-radius: 10px;
	background-color: #fff;
	padding: 22px 0;
	width: 80%;
	max-width: 360px;
	transition: .3s;
}
.common-contact-section a:hover {
	background-color: #EC7289;
	border: 1px solid #EC7289;
	color: #fff;;;
}
/* セミナータブ
---------------------------------------------------------- */
.seminor-tab {
	border-bottom: 14px solid #EC7289;
	display: flex;
	margin-top: 10px;
	margin-bottom: 20px;
}
.seminor-tab span,
.seminor-tab a {
	display: block;
	text-align: center;
	border-radius: 6px 6px 0 0;
	border-top: 2px solid #EC7289;
	border-left: 2px solid #EC7289;
	border-right: 2px solid #EC7289;
	padding: 20px 0 12px 0;
	width: 40%;
	max-width: 200px;
	text-decoration: none;
	color: #4D4D4D;
	margin-right: 10px;
	transition: .3s;
}
.seminor-tab a:hover,
.seminor-tab span {
	background-color: #EC7289;
	color: #fff;
}
/* 投稿のタグ表示
---------------------------------------------------------- */
.post-tags {
	margin: 14px 0 6px 0;
	font-size: 14px;
}
.post-tags ul {
	display: flex;
	flex-wrap: wrap;
}
.post-tags li {
	margin: 0 10px 12px 0;
	line-height: 1;
}
/* その他の記事
---------------------------------------------------------- */
.other_post {
	margin-top: 20px;
}
.other_post h1 {
	font-size: 19px;
	border-bottom: 1px dotted #a1a1a1;
	padding: 20px 0 16px 0;
	margin: 40px 0 20px 0;
}