
/* section-message */
.section-message .message{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
}

.section-message .message-texts{
	flex-grow: 0;
	flex-shrink: 0;
	width: calc(65% - 5em);
}

.section-message .message-texts-stdtext{
	margin: 1em 0;
}

.section-message .message-texts-name{
	font-size: 150%;
	font-weight: bold;
	margin: 1em 0;
	text-align: right;
}

.section-message .message-texts-name2{
	font-size: 80%;
	margin: -2em 0;
	text-align: right;
}

.section-message .message-image{
	flex-grow: 0;
	flex-shrink: 0;
	width: 35%;
}

.section-message .message-image-inner{
	width: 100%;
	padding-top: calc(100% / 4 * 3);
	position: relative;
}

.section-message .message-image-inner img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media(max-width: 750px){
	.section-message .message{
		flex-direction: column-reverse;
	}
	
	.section-message .message-texts{
		width: 100%;
		font-size: 0.85em;
	}
	.section-message .message-texts2{
		width: 100%;
		font-size: 0.85em;
	}

	
	.section-message .message-texts-name{
		font-size: 125%;
	}
	
	.section-message .message-image{
		width: 100%;
	}
	
	.section-message .message-image-inner{
		padding-top: calc(100% / 16 * 9);
	}
}

/* section-contents-a */
.section-contents-a .contents{
	margin: 5em 0 0 0;
}

@media(max-width: 750px){
	.section-contents-a .contents{
		margin: 2em 0;
	}
}

.section-contents-a .contents-item{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: nowrap;
}

.section-contents-a .contents-item:not(:last-of-type){
	margin-bottom: 7em;
}

.section-contents-a .contents-item:nth-of-type(2n){
	flex-direction: row-reverse;
}

.section-contents-a .contents-img{
	width: 35%;
	flex-grow: 0;
	flex-shrink: 0;
}

.section-contents-a .contents-img-inner{
	width: 100%;
	padding-top: calc(100% / 4 * 3);
	position: relative;
}

.section-contents-a .contents-img-inner img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-contents-a .contents-main{
	width: calc(65% - 2.5em);
	flex-grow: 0;
	flex-shrink: 0;
}

.section-contents-a .contents-title{
	font-size: 125%;
	line-height: 125%;
	padding: 0 0 0.5em;
	border-bottom: 2px solid #601986;
	margin-bottom: 0.5em;
	color: #601986;
}

.section-contents-a .contents--lifeSupport .contents-title{
	border-bottom: 2px solid #e29f00;
	color: #e29f00;
}

.section-contents-a .contents-texts{
	margin: 1em 0;
}

@media(max-width: 750px){
	.section-contents-a .contents-item{
		flex-direction: column !important;
	}
	
	.section-contents-a .contents-item:not(:last-of-type){
		margin-bottom: 2em;
	}
	
	.section-contents-a .contents-img{
		width: 100%;
	}

	.section-contents-a .contents-img-inner{
		padding-top: calc(100% / 16 * 9);
	}
	
	.section-contents-a .contents-main{
		width: 100%;
	}
	
	.section-contents-a .contents-title{
		margin-top: 0.5em;
		font-size: calc(175% * 0.7);
	}
	
	.section-contents-a .contents-texts{
		font-size: 0.85em;
	}
}

/* section-contents-b */
.section-contents-b .contents{
	margin: 7em 0;
}

@media(max-width: 750px){
	.section-contents-b .contents{
		margin: 2em 0;
	}
}

.section-contents-b .tiles{
	margin: 3em 0 3em;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}

.section-contents-b .tiles-item{
	width: calc(100% / 2 - 1px);
	margin: 0;
}

.section-contents-b .tiles-inner{
	padding: 2em 2em 5em;
	position: relative;
	background-color: #FAFAFA;
	transition: all 0.3s;
}

.section-contents-b .tiles-item:nth-of-type(4n + 2) .tiles-inner,
.section-contents-b .tiles-item:nth-of-type(4n + 3) .tiles-inner{
	background-color: #F0F0F0;
}

.section-contents-b .tiles-img{
	width: 100%;
	padding-top: calc(100% / 16 * 9);
	position: relative;
}

.section-contents-b .tiles-img img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-contents-b .tiles-title{
	text-align: center;
	font-size: 125%;
	margin: 1em 0;
	line-height: 125%;
}

.section-contents-b .tiles-title-item{
	display: block;
}

.section-contents-b .tiles-title .tiles-title-item-sub{
	font-size: 75%;
}

@media(max-width: 860px){
	.section-contents-b .tiles-item{
		width: 100%;
	}
	
	.section-contents-b .tiles-inner{
		padding: 0 0 2em;
	}
	
	.section-contents-b .tiles-item:nth-of-type(2n) .tiles-inner{
		background-color: #F0F0F0;
	}
	
	.section-contents-b .tiles-item:nth-of-type(2n + 1) .tiles-inner{
		background-color: #FAFAFA;
	}
	
	.section-contents-b .tiles-title{
		font-size: calc(150% * 0.9);
		margin: 1em 0;
	}
	
	.section-contents-b .tiles-text{
		font-size: 0.85em;
	}
}
/* section-profile */
.section-profile table th{
	width: 25%;
	text-align: center;
}

.section-profile table th,
.section-profile table td{
	border-collapse: collapwse;
	border: 1px solid #666;
	padding: 0.5em 5em;
}

@media(max-width: 1050px){
	.section-profile table th,
	.section-profile table td{
		padding: 0.5em;
	}
}

@media(max-width: 750px){
	.section-profile .profile-table{
		font-size: 0.9em;
	}
	.section-profile .profile-table th,
	.section-profile .profile-table td{
		padding: 1em 0.5em;
	}
	
	.section-profile .profile-table th{
		width: 6.5em;
	}
}

/* section-history */
.section-history .history-table th{
	width: 25%;
}

@media(max-width: 750px){
	.section-history .history-table{
		font-size: 0.9em;
	}
	.section-history .history-table th,
	.section-history .history-table td{
		padding: 1em 0.5em;
	}
	
	.section-history .history-table th{
		width: 4.5em;
	}
}

/* table2 */
table2{
	table-layout: fixed;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif; 
	width: 100%;
	margin: 2em auto;
}

table2 th,
table2 td{
	border-bottom: 10px solid #666;
	padding: 0.5em 1em;
}

/* table3 */
table.table3{
	margin-top:5px; margin-bottom:5px;
	margin-left: auto; 
	margin-right: auto;
	border-style:none;
}

table.table3 td{
	padding: 5px;
	border-style:none;
	text-align:center; 
}

.size2{
	margin: 1em auto;
	width:100%; ;
}

@media screen and (max-width: 750px) {
  .table3 {
    width: 100%;
  }
  .table3 th,
  .table3 td {
  	border-bottom: none;
    display: block;
    width: 100%;
    padding: 1em 0.5em;
  }
}


/* section-access */
.section-access .access-map{
	width: 100%;
	padding-top: 500px;
	position: relative;
}

.section-access .access-map > iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* section-timetable */
.section-timetable table th{
	width: 25%;
}

.section-timetable table th,
.section-timetable table td{
	border-collapse: collapwse;
	border: 1px solid #666;
	padding: 0.5em 2em;
}

.message-ceo {
	width: 11em;
	display: block;
	margin: 0 0 0 auto;
}

.operatingCompanyContent {
	display: flex;
    margin-right: auto;
    justify-content: center;
	align-items: center;
}

@media(max-width: 1050px){
	.operatingCompanyContent{
		display: block;
	}
}

.message-texts-stdtext-operatingCompanyContent {
	margin-left: 5em;
}

@media(max-width: 1050px){
	.message-texts-stdtext-operatingCompanyContent{
		margin-left: 0;
		margin-top: 2em;
		width: 80%;
	    margin-left: auto;
	    margin-right: auto;
	}
}

@media(max-width: 1050px){
	.message-image-operatingCompany{
		text-align: center;
	}
}

.message-texts-stdtext-operatingCompanyContent span {
	font-weight: bold;
	font-size: 1.2em;
}

.operatingCompanyLink {
	text-decoration: underline;
}

.operatingCompanyLink:hover {
	text-decoration: none;
}
/* section-access */
.section-access .access-map{
	width: 100%;
	padding-top: 500px;
	position: relative;
}

.section-access .access-map > iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.section-access .access-text{
	text-align: center;
	font-size: 110%;
	margin: 1em 0;
	line-height: 125%;
}
/*Accessのボタン*/


a.btn_30 {
	display: flex;
	vertical-align: middle;
	text-decoration: none;
	margin: auto;
	width: 20em;
	height: 4em;
	color: #ccc;
	cursor: pointer;
	transition: all 0.85s cubic-bezier(.17,.67,.14,.93);
	transform-style: preserve-3d;
	transform-origin: 100% 50%;
}
a.btn_30:hover {
	transform: rotateX(-90deg);
}
a.btn_30 .side {
	box-sizing: border-box;
	position: absolute;
	display: inline-block;
	width: 20em;
	text-align: center;
	padding: 1.2rem 4rem;
	font-weight: bold;
	letter-spacing: 2px;
}
a.btn_30 .top {
	background: #b4e12b;
	color: #fff;
	transform: rotateX(90deg) translate3d(0, 0, 2em);
}
a.btn_30 .front {
	background: #27acd9;
	color: #fff;
	transform: translate3d(0, 0, 2em);
}
/*Accessのボタンend*/
/*リーフレットと同じ見出しのデザイン*/
.heading-cam {
  position: relative;
	font-family:Arial, Helvetica, "sans-serif";
  font-size: 40px;
  color: #a79dcb;/*うすい色*/
}
.heading-cam span {
  position: relative;
  z-index: 2;
}
.heading-cam::before {
  content: '';
  position: absolute;
  bottom: 19px;
  left: 0;
  width: 100%;
  height: 5px;
  background-image: repeating-linear-gradient(-45deg, #a79dcb 0px, #a79dcb 2px, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%);
  background-size: 2px 2px;
  z-index: 1;
}
/*右端のカタカナ部分*/
.heading-cam::after {
  content: attr(data-en);
  position: absolute;
  /*コレ left: 0;*/
  right: 0; /*コレ*/
  /* top: 0;コレ*/
  bottom: 0; /*コレ*/
  margin: auto; /*コレ*/
  padding-bottom: 19px;
  font-size: 25px;
	color: #601986;
  z-index: 2;
}
.heading-cam span {
  color: #601986;
}
.big {
  font-size: 55px;
 
}
.big-2 {
  font-size: 55px;
  
}
/*.small {
  font-size: 50px;
  color: #c9dc63;
}*/
/*リーフレットと同じ見出しのデザインend*/
/*リーフレットと同じ見出しのデザイン-LifeSupportの見出し*/
.heading-life {
  position: relative;
	font-family:Arial, Helvetica, "sans-serif";
  font-size: 40px;
  color: #ebc154;/*うすい色*/
}
.heading-life span {
  position: relative;
  z-index: 2;
}
.heading-life::before {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 100%;
  height: 5px;
  background-image: repeating-linear-gradient(-45deg, #ebc154 0px, #ebc154 2px, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%);
  background-size: 2px 2px;
  z-index: 1;
}
/*右端のカタカナ部分*/
.heading-life::after {
  content: attr(data-en);
  position: absolute;
  /*コレ left: 0;*/
  right: 0; /*コレ*/
  /* top: 0;コレ*/
  bottom: 0; /*コレ*/
  margin: auto; /*コレ*/
  padding-bottom: 14px;
  font-size: 20px;
	color: #e29f00;/*濃い色*/
  z-index: 2;
}
.heading-life span {
  color: #e29f00;/*濃い色*/
}
.big-life {
  font-size: 50px;
 
}
.big-2-life {
  font-size: 50px;
  
}
.small-life {
  font-size: 50px;
  color: #ebc154;
}
/*リーフレットと同じ見出しのデザインend*/

/*リボンのデザイン*/

.cp_card {
	width: 100%;
	height: 340px;
	position: relative;
	top:10px;
	left:10px;
	background: #ffffff;
	overflow: visible;
	margin: 2em auto;
	padding: 0.5em;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.cp_ribbon02 {
	width: auto;
	height: 108px;
	overflow: hidden;
	position: absolute;
	top: -6px;
	left: -6px;
}
.cp_ribbon02 .cp_ribbon {
	font-size: 1em;
	line-height: 1.2em;
	position: relative;
	top: 26px;
	left: -33px;
	width: 150px;
	padding: 7px 0;
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
	text-align: center;
	letter-spacing: 0.5px;
	color: #ffffff;
	background-color: #FF9800;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cp_ribbon02 .cp_ribbon::before,.cp_ribbon02 .cp_ribbon::after {
	position: absolute;
	bottom: -4px;
	content: '';
	border-width: 4px 4px 0 4px;
	border-style: solid;
	border-color: #EF6C00 transparent transparent transparent;
}
.cp_ribbon02 .cp_ribbon:before {
	left: 0;
}
.cp_ribbon02 .cp_ribbon:after {
	right: 0;
}
.midashi-ss-a{
	text-align: center; margin-bottom: 50px;color:#601986; font-weight: bold; font-size:140%;
}
.midashi-ss-b{
	text-align: center; margin-bottom: 50px;color:#e29f00; font-weight: bold; font-size:140%;
}