@CHARSET "utf-8";
/*------------------------------------------------------------------------------
	共通
------------------------------------------------------------------------------*/
html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body, input, textarea {
	font-family: "Roboto", "メイリオ", "Meiryo",Verdana, "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
	font-size: 1.6rem;
}

body * {
	box-sizing: border-box;
}

a {
	color: #333;
}

a:hover {
/*	color: #00A2D9;*/
	cursor: pointer;
}

input[type=text],
input[type=password] {
	height: 3.2rem;
	padding: 0 5px;
	border: 1px solid #ccc;
	font-size: 100%;
}

textarea {
	padding: 5px;
	border: 1px solid #ccc;
	font-size: 100%;
}

select, option {
	height: 3.2rem;
	border: 1px solid #ccc;
	font-size: 100%;
}
.sh-inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.mt_20 {
	margin-top: 20px;
}
.pl_30 {
	padding-left: 30px;
}

@media screen and (max-width: 767px) {
	/*Safari（iOS）で縦画面から横画面で文字サイズが大きくなるのを防ぐ*/
	body {
		-webkit-text-size-adjust: 100%;
	}
	/*スマホ改行無効*/
	.no-br-sp {
		display: none;
	}
	.sh-inner {
		padding: 0 16px;
	}
}

@media screen and (min-width: 768px) {
	/*PC改行無効*/
	.no-br-pc {
		display: none;
	}
}
/*------------------------------------------------------------------------------
	全体
------------------------------------------------------------------------------*/
.sh-wrapper {
	min-height: 100vh;
	color: #333;
	flex-direction: column;
	display: flex;
}

.sh-wrapper > main {
	padding: 50px 0;
}

.sh-wrapper > main h2 {
	font-size: 4rem;
	font-weight: bold;
	text-align: center;
}

.sh-wrapper select {
	background: white;
}

@media screen and (max-width: 767px) {
	.sh-wrapper > main {
		padding: 30px 10px;
	}
}
/*------------------------------------------------------------------------------
	ヘッダー
------------------------------------------------------------------------------*/
.sh-wrapper header {
	top: 0;
	width: 100%;
	padding: 0;
	background: white;
	position: sticky;
	z-index: 100;
}

.sh-header-outer {
	position: static;
}

.sh-header-inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	align-items: center;
	justify-content: space-between;
	display: flex;
	padding: 10px 0;
}

.sh-header-inner h1 {
	width: 247px;
	max-width: 100%;
}

.sh-header-inner img {
	width: 70%;
	vertical-align: middle;
}
.sh-nav ul li a {
	font-size: 1.6rem;
	font-weight: bold;
}

.header-login {
	display: block;
	width: 150px;
	max-width: 100%;
	border-radius: 5px;
	border: 1px solid #1642E3;
	background: #FFF;
	color: #1642E3;
	text-align: center;
	transition: all .3s;
}
.header-login:hover {
	background: #1642E3;
	color: #FFF;
}
.header-contact {
	display: block;
	width: 150px;
	max-width: 100%;
	border: 1px solid #1642E3;
	border-radius: 5px;
	background: #1642E3;
	color: #FFF;
	text-align: center;
	margin-left: 10px;
	transition: all .3s;
}
.header-contact:hover {
	background: #FFF;
	color: #1642E3;
}
.header-document {
	display: block;
	width: 150px;
	max-width: 100%;
	text-align: center;
	border: 1px solid #1642E3;
	background: #FFF;
	color: #1642E3;
	border-radius: 50px;
	margin-left: 10px;
	padding: 5px 0;
	transition: all .3s;
}
.header-document:hover {
	background: #1642E3;
	color: #FFF;
}
.header-member {
	display: block;
	width: 150px;
	max-width: 100%;
	text-align: center;
	border: 1px solid #FEAD03;
	border-radius: 50px;
	background: #FEAD03;
	color: #FFF;
	margin-left: 10px;
	padding: 5px 0;
	transition: all .3s;
}
.header-member:hover {
	color: #FEAD03;
	background: #FFF;
}
.sh-drawer > label {
	width: 40px;
	height: 40px;
	position: relative;
}

.sh-drawer > label > span {
	width: 30px;
	height: 3px;
	background: #777;
	border-radius: 2px;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.sh-drawer > label > span:before,
.sh-drawer > label > span:after {
    content: '';
	width: 30px;
	height: 3px;
	background: #777;
	border-radius: 3px;
	display: block;
	position: absolute;
	top: 0;
}

.sh-drawer > label > span:before {
	margin: -10px 0 0 0;
}

.sh-drawer > label > span:after {
	margin: 10px 0 0 0;
}

.sh-drawer nav > label {
	width: 40px;
	height: 40px;
	margin: 15px 10px 15px auto;
	position: relative;
}

.sh-drawer nav > label > span {
	top: 50%;
	width: 30px;
	height: 5px;
	background: #777;
	border-radius: 3px;
	display: block;
	position: absolute;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}

.sh-drawer nav > label > span:last-child {
	content: '';
	-webkit-transform: translateY(-50%) rotate(135deg);
	transform: translateY(-50%) rotate(135deg);
}

.sh-drawer input[type=checkbox],
.sh-drawer label {
	display: none;
}

.sh-drawer nav > ul {
	align-items: center;
	display: flex;
	position: static;
}
.sh-drawer nav > ul > li > a {
	/* padding: 20px; */
	display: inline-block;
	position: relative;
}

.sh-drawer nav > ul > li > ul {
	left: 0;
	top: 100%;
	width: 100%;
	padding: 20px 40px 40px 40px;
	background: white;
	box-shadow: 5px 5px 3px 3px rgba(0, 0, 0, 0.2);
	display: none;
}

.sh-drawer nav > ul > li:not(:last-child):hover {
	padding-bottom: 0;
	border-bottom: none;
}

.sh-drawer nav > ul > li:hover > ul {
	z-index: 1;
	display: block;
}

.sh-drawer nav > ul > li > ul > li {
	margin: 20px 40px 0 0;
	display: inline-block;
}
@media screen and (min-width: 768px) {
/* 2022.3.4 */
	.sh-drawer nav > ul:first-child {
		justify-content: flex-end;
	}
	.sh-drawer nav > ul:nth-of-type(2) {
		margin-top: 10px;
	}
	.sh-venus-header sh-drawer nav > ul:first-child {
		margin-bottom: 0;
	}
/* 2022.3.4 */
/*2022.7.12*/	
/*	.sh-drawer nav:not(.sh-nav) > ul > li:last-child,*/
	.sh-venus-header .sh-drawer nav > ul > li:nth-of-type(5),
	.sh-venus-header .sh-drawer nav > ul > li:nth-of-type(6) {
		height: 45.6px;
		border-radius: 100vh;
	}
	.sh-venus-header .sh-drawer nav > ul > li:nth-of-type(6) > a {
		color: white;
	}
	.sh-venus-header .sh-drawer nav > ul > li:last-child {
		margin-left: 10px;
	}
/* 2022.3.4 */
	/* .sh-drawer nav > ul > li > a {
		padding: 10px 20px;
	} */
	.sh-venus-header .sh-drawer nav > ul:first-child {
		padding: 20px;
	}
	.sh-venus-header .sh-drawer nav > ul > li > a:hover {
		font-weight: bold;
	}

	.sh-header-nav-child-container {
		visibility: hidden;
		opacity: 0;
		position: absolute;
		left: 0;
		right: 0;
		transition: all 0.2s ease 0s;
	}

	.sh-header-nav-child-container:before {
		content: "";
		z-index: -1;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 100%;
		background: #0669D8;
		opacity: .95;
		mix-blend-mode: multiply;
	}

	.sh-drawer nav > ul > li.sh-drawer-has-children:hover .sh-header-nav-child-container {
		visibility: visible;
		opacity: 1;
	}

	.sh-header-nav-child-block {
		margin: 0 auto;
		padding: 40px 0;
		max-width: 900px;
		display: flex;
		justify-content: space-between;
		color: #FFF;
	}

	.sh-header-nav-child-block a, .sh-drawer nav .sh-header-nav-child-block a:hover {
		color: #FFF;
	}

	.sh-header-nav-child-block > p {
		width: 30%;
		border-right: 1px solid #FFF;
		font-size: 36px;
	}

	.sh-header-nav-child-block > ul {
		padding: 0 0 0 70px;
		width: 70%;
	}

	.sh-header-nav-child-block > ul > li {
		display: inline-block;
		margin: 0 40px 20px 0;
	}

	.sh-header-nav-child-block > ul > li a:hover {
		text-decoration: underline;
		text-underline-offset: 0.2em;
	}
}

@media screen and (max-width: 767px) {
	.sh-header-inner {
		padding: 10px;
	}

	.sh-drawer > label {
		display: block;
	}

	.sh-drawer input[type=checkbox][id=drawer-nav] + label > span,
	.sh-drawer input[type=checkbox][id=drawer-nav] + label > span::before,
	.sh-drawer input[type=checkbox][id=drawer-nav] + label > span::after {
		transition: .5s ease-in-out;
	}

	.sh-drawer input[type=checkbox][id=drawer-nav]:checked + label > span {
		height: 3;
		background: transparent;
	}

	.sh-drawer input[type=checkbox][id=drawer-nav]:checked + label > span::before {
		margin: 0;
		transform: rotate(45deg);
	}

	.sh-drawer input[type=checkbox][id=drawer-nav]:checked + label > span::after {
		margin: 0;
		transform: rotate(-45deg);
	}

	.sh-drawer nav {
		left: 100%;
		top: auto;
		width: 0;
		height: 100%;
		min-height: calc(100vh - 61px);
		background: rgba(255, 255, 255, 0.95);
		position: absolute;
    	transition: .5s ease-in-out;
		font-size: 1.6rem;
		overflow-x: hidden;
		overflow-y: auto;
		margin: 10px 0 0 0;
		padding: 0 0 80px 0;
/*2022.3.4 */
		display: flex;
		flex-direction: column;
    }

	.sh-drawer nav > label {
		display: block;
	}

	.sh-drawer nav > ul {
		align-items: start;
		flex-direction: column;
		width: 100vw;
	}
/* 2022.4.3 */
	.sh-drawer nav > ul:first-child {
		order: 2;
	}
/* 2022.4.3 */
	.sh-drawer nav > ul:last-child {
		order: 1;
	}

	.sh-drawer nav > ul > li,
	.sh-drawer nav > ul > li li {
		width: 100%;
		margin: 0;
		padding: 0;
		border: 0;
		border-top: 1px solid #ccc;
		position: relative;
	}

	.sh-drawer nav > ul > li li {
		border-top: 1px solid #EEE;
	}

	.sh-drawer nav > ul > li:not(:last-child):hover {
		padding-bottom: 0;
		border-bottom: none;
	}

	.sh-drawer nav > ul > li > ul > li:last-child {
		padding-bottom: 0;
	}

	.sh-drawer nav ul li > a {
		width: 100%;
/*		height: 100%;*/
		padding: 15px;
		display: inline-block;
		margin: 0;
		position: relative;
		line-height: 22px;
	}

	.sh-drawer nav ul li.sh-drawer-has-children > a {
		width: calc(100% - 34px);
	}

	.sh-drawer nav ul li.sh-drawer-has-children li a {
		width: calc(100% - 34px);
		padding-left: 30px;
		line-height: 22px;
	}

	.sh-header-nav-child-container {
		display: none;
	}

	.sh-drawer-has-children label {
		display: inline-block;
		position: absolute;
		top: 0;
		right: 10px;
		width: 24px;
		height: 52px;
	}

	.sh-drawer-has-children label span {
		display: inline-block;
		position: absolute;
		width: 24px;
		height: 24px;
		margin: auto 0 auto auto;
		background-color: transaprent;
		top: 0;
		bottom: 0;
		border: solid 2px #777;
		border-radius: 50%;
		cursor: pointer;
	}

	.sh-drawer-has-children label span::before {
		content: '';
		width: 12px;
		height: 2px;
		background: #777;
		border-radius: 2px;
		display: block;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
	}

	.sh-drawer-has-children label span::after {
		content: '';
		width: 2px;
		height: 12px;
		background: #777;
		border-radius: 2px;
		display: block;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
	}

	.sh-drawer-has-children input[type=checkbox]:checked  + label > span::after {
		display: none;
	}


	.sh-header-nav-child-block > p {
		display: none;

	}

	.sh-drawer-has-children input[type=checkbox]:checked  ~ .sh-header-nav-child-container {
		display: block;
	}

	.sh-drawer nav ul > li > ul > li > a {
		padding-left: 30px;
	}

	.sh-drawer nav > ul > li > ul {
		padding: 0;
/*		background: white;*/
		border: none;
		box-shadow: none;
		position: static;
		display: block;
	}

	.sh-drawer input[type=checkbox]:checked ~ nav {
		width: 100%;
		left: 0;
	}
	
	.sp-border-no {
		border: none !important;
		margin-top: 18px !important;
	}
	.sp-line{
		border-bottom: 1px solid  #CCC !important;
	}
	.sh-header-inner h1 {
		width: 140px;
	}
}

/*------------------------------------------------------------------------------
	top
------------------------------------------------------------------------------*/
.sh-top-content-wrap {
	position: absolute;
	top: 50%;
	left: 15%;
	width: 620px;
	transform: translateY(-50%);
}
.sh-top-content p {
	width: fit-content;
  	text-align: center;
  	color: #FFF;
  	margin: 0 auto;
  	font-size: 2rem;
}
.sh-top-content h2 {
	font-size: 2.5rem; 
	font-weight:bold;
	color: #FFF;
}
.sh-top-content h2 strong {
	font-size: 4.2rem;
	color: #FEAD03;
}
.sh-top-content span {
	font-size: 3rem;
}
.sh-top-btn-wrap {
	display: flex;
	align-items: center;
	margin-top: 10px;
}
.sh-top-document {
	display: inline-block;
	width: 259px;
	max-width: 100%;
	text-align: center;
	padding: 15px 0;
	color: #FFF;
	font-size: 2rem;
	font-weight: bold;
	border: 2px solid #FFF;
	border-radius: 50px;
	transition: all .3s;
}
.sh-top-document:hover {
	background: #FFF;
	color: #1642E3;
}
.sh-top-member {
	display: inline-block;
	width: 259px;
	max-width: 100%;
	text-align: center;
	padding: 15px 0;
	border: 2px solid #FFF;
	background: #FEAD03;
	color: #FFF;
	font-weight: bold;
	font-size: 2rem;
	border-radius: 50px;
	transition: all .3s;
	margin-left: 10px;
}
.sh-top-member:hover {
	background: #FFF;
	color: #FEAD03;
}
@media screen and (max-width: 767px) {
	.sh-top-content-wrap {
		position: absolute;
		top: 8px;
		width: 375px;
		left: 50%;
		transform: translateX(-50%);
	}
	.sh-top-btn-wrap {
		display: block;
		text-align: center;
		margin-top: 0;
	}
	.sh-top-btn-wrap a {
		padding: 8px 0;
		font-size: 1.8rem;
	}
	.sh-top-member {
		margin-left: 0;
		margin-top: 10px;
	}
	.sh-top-content h2 {
		margin-bottom: 20px;
		text-align: center;
		font-size: 2rem;
	}
	.sh-top-content h2 strong {
		font-size: 2.5rem;
	}
	.sh-top-content span {
		font-size: 2.2rem;
	}
	.sh-top-content p {
		font-size: 1.6rem;
		margin-bottom: 20px;
	}
}
/*------------------------------------------------------------------------------
	定期配送のtop
------------------------------------------------------------------------------*/
.sh-delivery-subtitle {
	font-size: 2.5rem;
	color: #FFF;
	font-weight: bold;
	text-align: center;
	margin-bottom: 15px;
}
.sh-delivery-subtitle strong {
	font-size: 4.2rem;
	color: #FEAD03;
}
.sh-delivery-text{
	font-size: 1.8rem;
	text-align: center;
	color: #FFF;
}
.sh-delivery-top-title {
	font-weight: bold;
	font-size: 4.2rem;
	text-align: center;
	color: #FFF;
}
.sh-delivery-top-btn-wrap {
	display: flex;
	align-items: center;
	margin-top: 10px;
	justify-content: center;
}
.sh-delivery-top-btn {
	display: inline-block;
	width: 310px;
	max-width: 100%;
	text-align: center;
	padding: 15px 0;
	border: 2px solid #FFF;
	background: #35C68C;
	color: #FFF;
	font-weight: bold;
	font-size: 2rem;
	border-radius: 50px;
	transition: all .3s;
}
.sh-delivery-top-btn:hover {
	background: #FFF;
	color: #35C68C;
	border: 2px solid #35C68C;
}
@media screen and (max-width: 767px) {
	.sh-delivery-top-title {
		font-size: 3.5rem;
	}
	.sh-delivery-subtitle {
		font-size: 2.5rem;
	}
	.sh-delivery-subtitle strong {
		font-size: 4rem;
	}
	.sh-delivery-text {
		font-size: 1.8rem;
	}
	.sh-delivery-top-btn {
		font-size: 1.8rem;
	}
}
/*------------------------------------------------------------------------------
	物流dxのtop
------------------------------------------------------------------------------*/
.sh-dx-top-title {
	font-size: 2.5rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 10px;
	color: #FFF;
}
.sh-dx-top-title strong {
	color: #FEAD03;
}
.sh-dx-top-title span {
	font-size: 4.2rem;
}
.sh-dx-text {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 30px;
	color: #FFF;
}
.sh-delivery-top-btn-wrap {
	text-align: center;
}
.sh-dx-top-btn {
	display: inline-block;
	width: 310px;
	max-width: 100%;
	text-align: center;
	padding: 15px 0;
	border: 2px solid #FFF;
	background: #FB0E0E;
	color: #FFF;
	font-weight: bold;
	font-size: 2rem;
	border-radius: 50px;
	transition: all .3s;
}
.sh-dx-top-btn:hover {
	background: #FFF;
	color: #FB0E0E;
	border-color: #FB0E0E;
}
@media screen and (max-width: 767px) {
	.sh-dx-top-title span {
		font-size: 4rem;
	}
	.sh-dx-top-title {
		font-size: 2.5rem;
	}
	.sh-dx-text {
		font-size: 1.6rem;
	}
	.sh-dx-top-btn {
		padding: 8px 0;
		font-size: 1.6rem;
	}
}
/*------------------------------------------------------------------------------
	質問
------------------------------------------------------------------------------*/
.sh-faq {
  padding: 80px 0;
  background: #F6F6F6;
}

.sh-faq h2 {
  font-weight: bold;
  font-size: 4rem;
  text-align: center;
  margin-bottom: 60px;
}
.sh-faq h2 span {
	color: #1642E3;
}

.sh-faq-wrap {
  margin-bottom: 60px;
}

.sh-faq-content+sh-faq-content {
	margin-top: 15px;
}

.sh-faq-content-header {
  padding: 27px 20px;
  background: #FFF;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}

.sh-faq-content-header p {
  font-weight: bold;
  font-size: 1.8rem;
  padding-left: 70px;
  position: relative;
}

.sh-faq-content-footer {
  padding: 27px 20px;
  font-size: 1.8rem;
  background: #D6ECFA;
  border-radius: 0 0 10px 10px;
  padding-left: 90px;
  position: relative;
  display: none;
}

.sh-faq-btn {
  text-align: center;
margin: 0 auto;
display: flex;
justify-content: center;
}

.sh-faq-btn a {
  background: #1642E3;
  color: #FFF;
  font-weight: bold;
  font-size: 1.8rem;
  border-radius: 50px;
  display: block;
width: 350px;
padding: 12px;
max-width: 100%;
  transition: all 0.3s;
}

.sh-faq-btn a:hover {
  border: 2px solid #1642E3;
  background: #FFF;
  color: #1642E3;
}

.sh-faq-content-header::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  border: 2px solid #1642E3;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}

.sh-faq-content-header::after {
  position: absolute;
  content: "Q";
  font-size: 3rem;
  font-weight: bold;
  top: 50%;
  transform: translateY(-50%);
  left: 36px;
  color: #1642E3;
}

.sh-faq-content-footer::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  background: #FEAD03;
  border-radius: 50%;
  top: 15px;
  left: 20px;
}

.sh-faq-content-footer::after {
  position: absolute;
  content: "A";
  font-size: 3rem;
  font-weight: bold;
  top: 15px;
  left: 35px;
  color: #FFF;
}

.sh-faq-content-header p::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 5px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #1642E3;
}

.sh-faq-content-header p::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 20px;
  background: #1642E3;
  top: 50%;
  transform: translateY(-50%);
  right: 7px;
}

.sh-faq-active {
  display: block;
}

.sh-radius{
	border-radius: 10px 10px 0 0;
}
.sh-faq-icon::after {
	display: none;
}
.sh-faq-content + .sh-faq-content {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
	.sh-faq-content-header {
		padding: 8px 16px;
	}
	.sh-faq-content-header::before {
		left: 8px;
		width: 30px;
		height: 30px;
	}
	
	.sh-faq-content-header p {
		padding-left: 30px;
		font-size: 1.6rem;
	}
	.sh-faq-content-header p::before {
		right: -9px;
	}
	.sh-faq-content-header p::after {
		right: -2px;
	}
	.sh-faq-content-header::after {
		font-size: 2rem;
		left: 18px;
	}
	.sh-faq-content-footer::before {
		left: 8px;
		width: 30px;
		height: 30px;
	}
	.sh-faq-content-footer::after {
		top: 14px;
		left: 17px;
		font-size: 2rem;
	}
	.sh-faq-content-footer {
		padding: 8px 16px;
		padding-left: 50px;
	}
}
/*------------------------------------------------------------------------------
  よくある質問一覧
------------------------------------------------------------------------------*/
.sh-faq-detail-wrap + .sh-faq-detail-wrap {
  margin-top: 120px;
}
.sh-faq-detail-title {
  margin-bottom: 16px !important;
  text-align: left !important;
  font-size: 3rem !important;
  padding-left: 15px;
  border-left: 5px solid #1642E3;
}
@media screen and (max-width: 767px) {
  .sh-faq-detail-wrap + .sh-faq-detail-wrap {
    margin-top: 60px;
  }
}
/*------------------------------------------------------------------------------
	TOPページのセミナー
------------------------------------------------------------------------------*/
.sh-seminar {
  padding: 120px 0;
}
.sh-seminar h2 {
  font-weight: bold;
  font-size: 4rem;
  text-align: center;
}
.sh-seminar > p {
  font-size: 1.8rem;
  line-height: 2;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 60px;
}

.sh-seminar-contents {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.sh-seminar-content-wrap {
  width: 30.8333333333%;
  display: flex;
  flex-direction: column;
}

.sh-seminar-content-wrap+.sh-seminar-content-wrap {
	margin-left: 4.6666%;
}


.sh-seminar-img {
  width: 100%;
}
.sh-seminar-img img {
  width: 100%;
  vertical-align: top;
}

.sh-seminar-content {
  padding: 20px;
  background: #F6F6F6;
  flex-grow: 1;
}
.sh-seminar-content h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.sh-seminar-date-box {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.sh-seminar-date-box .sh-seminar-date {
  font-size: 1.2rem;
  padding: 1px 8px;
  background: #1642E3;
  border-radius: 3px;
  margin-right: 12px;
  color: #FFF;
}
.sh-seminar-date-box .sh-seminar-date-detail {
  font-weight: bold;
  font-size: 1.4rem;
}

.sh-seminar-place-box {
  display: flex;
  align-items: center;
}
.sh-seminar-place-box .sh-seminar-place {
  font-size: 1.2rem;
  padding: 1px 8px;
  background: #1642E3;
  border-radius: 3px;
  margin-right: 12px;
  color: #FFF;
}
.sh-seminar-place-box .sh-seminar-place-detail {
  font-size: 1.4rem;
}

.sh-seminar-text {
  font-size: 1.4rem;
  line-height: 2.2857142857;
  margin-top: 10px;
}

.sh-seminar-btn {
  text-align: center;
  display: flex;
justify-content: center;
}
.sh-seminar-btn a {
  display: block;
  padding: 12px 0;
  width: 350px;
  max-width: 100%;
  color: #FFF;
  background: #1642E3;
  border: 2px solid #1642E3;
  font-weight: bold;
  font-size: 1.8rem;
  border-radius: 50px;
  transition: all 0.3s;
}
.sh-seminar-btn a:hover {
  background: #FFF;
  color: #1642E3;
}
@media screen and (max-width: 767px) {
	.sh-seminar {
		padding: 80px 16px;
	}
	.sh-seminar h2 {
		font-size: 3rem;
	}
	.sh-seminar > p {
		margin-top: 20px;
	}
	.sh-seminar-contents {
		display: block;
	}
	.sh-seminar-content-wrap {
		width: 100%;
	}
	.sh-seminar-content-wrap+.sh-seminar-content-wrap {
		margin-top: 60px;
	}
	.sh-seminar-content-wrap + .sh-seminar-content-wrap {
		margin-left: 0;
	}
}
/*------------------------------------------------------------------------------
	お知らせ
------------------------------------------------------------------------------*/
.sh-news {
  padding: 80px 0;
  background: #F6F6F6;
 
}

.sh-news-contents-box {
  padding: 30px 30px 13px 0;
  background: #FFF;
   border-radius: 10px;
}

.sh-news-contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sh-news-left {
  margin: 0 auto;
  text-align: center;
  width: 30%;
}
.sh-news-left h2 {
  font-weight: bold;
  font-size: 4rem;
}
.sh-news-left p {
  font-size: 2rem;
  font-weight: bold;
  color: #1642E3;
}

.sh-news-right {
  padding-left: 30px;
  border-left: 1px solid #CCCCCC;
  width: 70%;
}

.sh-news-content {
  display: flex;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #CCCCCC;
}
.sh-news-content-left {
	display: flex;
	align-items: center;
}

.sh-news-date {
  font-size: 1.6rem;
}

.sh-news-tag {
  font-size: 1.2rem;
  width: 100px;
  max-width: 100%;
  padding: 3px 0;
  background: #52C4DA;
  border-radius: 3px;
  text-align: center;
  color: #FFF;
  margin-left: 20px;
}

.sh-news-text {
  font-size: 1.6rem;
  margin-left: 20px;
}
.sh-news-btn {
	text-align: right;
	margin-top: 12px;
	padding-right: 26px;
	position: relative;
}
.sh-news-btn a {
	transition: all .3s;
}
.sh-news-btn a:hover {
	opacity: 0.7;
}
.sh-news-btn::before {
	position: absolute;
	content: "";
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #1642E3;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}
.sh-news-btn::after {
	position: absolute;
	content: "";
	width: 6px;
	height: 6px;
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
	transform: rotate(45deg);
	top: 9px;
	right: 5px;
}
@media screen and (max-width: 767px) {
	.sh-news-contents {
		display: block;
	}
	.sh-news-left h2 {
		font-size: 3rem;
	}
	.sh-news-contents-box {
		padding: 30px 8px 13px;
	}
	.sh-news-left {
		width: 100%;
	}
	.sh-news-right {
		width: 100%;
		padding-left: 0;
		border: none;
	}
	.sh-news-tag {
		margin-left: 10px;
	}
	.sh-news-text {
		margin-left: 0;
		margin-top: 10px;
	}
	.sh-news-content {
		padding-bottom: 8px;
		display: block;
	}
	
}
/*------------------------------------------------------------------------------
  セミナー一覧  
------------------------------------------------------------------------------*/
.sh-seminar {
	padding: 80px 0 120px;
}
.sh-seminar-tab-wrap{
	display: flex;
	justify-content: space-around;
	border-bottom: 3px solid #1642E3;
	margin-bottom: 60px;
}
.sh-seminar-tab {
	width: 48.75%;
	padding: 25px 0;
	text-align: center;
	color: #CCCCCC;
	font-weight: bold;
	font-size: 2rem;
	border-radius: 10px 10px 0 0;
	background-color: #F6F6F6;
}
.sh-tab-active {
	background-color: #1642E3;
	color: #FFF;
}
.sh-seminar-contents-wrap {
	display: none;
}
.sh-seminar-contents-box {
	display: grid;
	grid-template-columns: 30.8333% 30.8333% 30.8333%;
	gap: 40px 45px;
}
.sh-seminar-content-box{
	display: flex;
flex-direction: column;
}
.sh-seminar-img {
	width: 100%;
}
.sh-seminar-img img {
	width: 100%;
}
.sh-seminar-content-bottom {
	padding: 20px;
	background: #F6F6F6;
	flex-grow: 1;
}
.sh-seminar-app{
	width: 80px;
	padding: 1px 0;
	border: 1px solid #1642E3;
	border-radius: 3px;
	color: #1642E3;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 15px;
	font-size: 1.2rem;
}
.sh-seminar-closed{
  width: 80px;
  padding: 1px 0;
  border-radius: 3px;
  background: #99A1AD;
  color: #FFF;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 1.2rem;
}
.sh-seminar-title {
	color: #1642E3;
	line-height: 2;
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 20px;
}
.sh-seminar-date {
	display: flex;
	align-items: center;
}
.sh-seminar-date p:first-child {
	width: 53px;
	padding: 1px 0;
	color: #FFF;
	background: #3E3A39;
	border-radius: 3px;
	text-align: center;
	font-size: 1.2rem;
}
.sh-seminar-date p:nth-child(2) {
	font-weight: bold;
	font-size: 1.4rem;
	margin-left: 12px;
}
.sh-seminar-place {
	display: flex;
	align-items: center;
	margin-top: 10px;
	margin-bottom: 10px;
}
.sh-seminar-place p:first-child {
	width: 53px;
  padding: 1px 0;
  color: #FFF;
  background: #3E3A39;
  border-radius: 3px;
  text-align: center;
  font-size: 1.2rem;
}
.sh-seminar-place p:nth-child(2) {
  font-weight: bold;
  font-size: 1.4rem;
  margin-left: 12px;
}
.sh-seminar-show {
	display: block;
}
@media screen and (max-width: 767px) {
  .sh-seminar-contents-box {
	  display: block;
  }
  .sh-seminar-content-box+.sh-seminar-content-box {
	  margin-top: 40px;
  }
  .sh-seminar-tab {
	  padding: 16px 0;
  }
  .sh-seminar {
	  padding: 40px 0 80px;
  }
}
/*------------------------------------------------------------------------------
  デモ
------------------------------------------------------------------------------*/
.sh-demo {
  padding: 80px 0;
background: url(https://allhaiso.com/media/segel_hp/home/haiso_inquiry_bg02.png);
background-repeat: no-repeat;
background-position: right bottom;
background-color: #1642E3;
}

.sh-demo-wrap {
  display: flex;
  justify-content: space-between;
margin-bottom: 80px; 
}

.sh-demo-left {
  width: 46.6666666667%;
  max-width: 100%;
}
.sh-demo-left img {
  width: 100%;
}

.sh-demo-right {
  width: 43.3333333333%;
}
.sh-demo-right h2 {
  font-weight: bold;
  font-size: 4rem;
  margin-bottom: 45px;
color: #FFF;
}

.sh-demo-btn-white {
  text-align: center;
}
.sh-demo-btn-white p {
  font-size: 1.6rem;
  margin-bottom: 15px;
color: #FFF;
}
.sh-demo-btn-white a {
  display: inline-block;
  width: 380px;
  max-width: 100%;
  padding: 25px 0;
  border: 2px solid #FFF;
  color: #1642E3;
  background: #FFF;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  border-radius: 50px;
  transition: all 0.3s;
}
.sh-demo-btn-white a:hover {
  background: #1642E3;
  color: #FFF;
  border-color: #1642E3;
border-color: #FFF;
}

.sh-demo-btn {
  text-align: center;
}
.sh-demo-btn p {
  font-size: 1.6rem;
  margin-bottom: 15px;
color: #FFF;
}
.sh-demo-btn a {
  display: inline-block;
  width: 380px;
  max-width: 100%;
  padding: 25px 0;
  border: 2px solid #FFF;
  color: #FFF;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  border-radius: 50px;
  transition: all 0.3s;
}
.sh-demo-btn a:hover {
  background: #FFF;
  color: #1642E3;
  border-color: #1642E3;
}

.sh-demo-btn-wrap {
  display: flex;
  justify-content: space-around;
}

.sh-demo-line {
  border-left: 1px solid #FFF;
}

@media screen and (max-width: 767px) {
.sh-demo-wrap {
display: block;
margin-bottom: 60px;
}
.sh-demo-left {
width: 100%;
}
.sh-demo-right {
width: 100%;
}
.sh-demo-right h2 {
font-size: 3rem;
margin-top: 20px;
}
.sh-demo-btn-wrap {
display: block;
}
.sh-demo-line {
display: none;
}
.sh-demo-btn {
  margin-top: 60px;
}
  
}
/*------------------------------------------------------------------------------
  セミナー詳細
------------------------------------------------------------------------------*/
.sh-seminar-detail {
	padding: 70px 0 120px;
}
.sh-seminar-detail-app{
  width: 80px;
  padding: 1px 0;
  border: 1px solid #1642E3;
  border-radius: 3px;
  color: #1642E3;
  text-align: center;
  font-size: 1.6rem;
}
.sh-seminar-detail-closed{
  width: 80px;
  padding: 1px 0;
  border-radius: 3px;
  background: #99A1AD;
  color: #FFF;
  text-align: center;
  font-size: 1.6rem;
}
.sh-seminar-detail h2 {
	font-size: 3rem;
	font-weight: bold;
}
.sh-seminar-detail-date {
  display: flex;
  align-items: center;
}
.sh-seminar-detail-date p:first-child {
  width: 70px;
  padding: 1px 0;
  color: #FFF;
  background: #3E3A39;
  border-radius: 3px;
  text-align: center;
  font-size: 1.6rem;
}
.sh-seminar-detail-date p:nth-child(2) {
  font-weight: bold;
  font-size: 1.6rem;
  margin-left: 15px;
}
.sh-seminar-detail-place {
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
}
.sh-seminar-detail-place p:first-child {
  width: 70px;
  padding: 1px 0;
  color: #FFF;
  background: #3E3A39;
  border-radius: 3px;
  text-align: center;
  font-size: 1.6rem;
}
.sh-seminar-detail-place p:nth-child(2) {
  font-weight: bold;
  font-size: 1.6rem;
  margin-left: 15px;
}
.sh-seminar-detail-img {
	width: 100%;
	margin-top: 60px;
	height: 36.667vw;
}
.sh-seminar-detail-img img {
	width: 100%;
	height: 100%;
}
.sh-seminar-detail-content {
	margin-top: 60px;
}
.sh-seminar-detail-content h3 {
	padding-left: 19px;
	border-left: 5px solid #1642E3;
	font-weight: bold;
	font-size: 3rem;
	margin-bottom: 40px;
}
.sh-seminar-detail-text {
	width: 92%;
	font-size: 1.6rem;
	line-height: 2;
	padding-left: 24px;
}
.sh-seminar-detail table {
	margin-top: 60px;
	border-collapse: separate;
  border-spacing: 0 5px;
  width: 100%;
}
.sh-seminar-detail table td:first-child {
	width: 25%;
	text-align: center;
	padding: 38px 0;
	background: #99A1AD;
	font-size: 1.6rem;
	font-weight: bold;
	color: #FFF;
}
.sh-seminar-detail table td:nth-child(2) {
	width: 75%;
  padding: 38px 0;
  font-size: 1.6rem;
  padding-left:20px;
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
}
.sh-seminar-detail-btn {
    margin-top: 100px;
}
.sh-seminar-detail-btn a {
  display: block;
  width: 380px;
  max-width: 100%;
  background: #FEAD03;
  border: 2px solid #FEAD03;
  color: #FFF;
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  border-radius: 50px;
  padding: 25px 0;
  margin: 0 auto;
  transition: all .3s;
}
.sh-seminar-detail-btn a:hover {
  background: #FFF;
  color: #FEAD03;
}
.sh-seminar-detail-btn p:last-child {
  width: 380px;
  max-width: 100%;
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  border-radius: 50px;
padding: 16px 0;
  margin: 0 auto;
  color: #FFF;
  background: #99A1AD;
}
.sh-seminar-detail-btn p:first-child {
  color: red;
  text-align: center;
  font-size: 1.8rem;
}
.sh-seminar-detail-end {
  color: #FFF !important;
}

@media screen and (max-width: 767px) {
  .sh-seminar-detail-img {
    height: 50.667vw;
  }
  .sh-seminar-detail-content h3 {
    font-size: 2.5rem;
  }
  .sh-seminar-detail table td:first-child {
    display: block;
    width: 100%;
    font-size: 1.8rem;
    padding: 19px 0;
  }
  .sh-seminar-detail table td:nth-child(2) {
    display: block;
    width: 100%;
    border-top: none;
    padding-left: 0;
    text-align: center;
    font-size: 1.8rem;
  }
  .sh-seminar-detail h2 {
    font-size: 2.5rem;
  }
  
}
/*------------------------------------------------------------------------------
  お知らせ一覧
------------------------------------------------------------------------------*/
.sh-news-list {
  padding: 80px 0 120px;
  border-top: 1px solid #CCCCCC;
}
.sh-news-tab-wrap {
  border-bottom: 5px solid #1642E3;
  display: flex;
}
.sh-news-tab {
  width: 20.8333%;
  padding: 27px 0;
  font-weight: bold;
  text-align: center;
  font-size: 1.8rem;
  color: #CCCCCC;
  background: #F6F6F6;
  border-radius: 10px 10px 0 0;
}
.sh-news-tab {
  margin-left: 10px;
}
.sh-news-tab-active {
  color: #FFF;
  background: #1642E3;
}
.sh-news-list-contents {
  display: flex;
  justify-content: space-between;
}
.sh-news-list-left {
  width: 70%;
}
.sh-news-list-right {
  width: 25%;
}
.sh-news-list-left {
  display: none;
}
.sh-news-list-show {
  display: block;
}
.sh-news-list-contents {
  margin-top: 64px;
}
.sh-news-year {
  padding: 34px 0 34px 21px;
  font-weight: bold;
  font-size: 2.4rem;
  margin-bottom: 60px;
  background: #F6F6F6;
  border-radius: 10px;
}
.sh-news-list-left-content {
  display: flex;
}
.sh-news-list-left-content + .sh-news-list-left-content {
  margin-top: 60px;
}
.sh-news-list-left-content-left {
  width: 9.8809%;
  padding: 30px 0;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
}
.sh-news-list-left-content-right {
  width: 90.1190%;
  padding: 30px 0;
  border-left: 1px solid #CCC;
}
.sh-news-list-detail {
  display: flex;
  padding-left: 30px;
}
.sh-news-list-detail + .sh-news-list-detail {
  margin-top: 30px;
}
.sh-news-list-detail>p {
  font-size: 1.6rem;
  padding-top: 3px;
}
.sh-news-list-detail-right {
  margin-left:60px;
}
.sh-news-list-detail-right-top {
  display: flex;
  margin-bottom: 10px;
}
.sh-news-list-detail-right-top p {
  width: 100px;
  padding: 3px 0;
  font-size: 1.2rem;
  text-align: center;
  color: #FFF;
  border-radius: 3px;
}
.sh-news-list-detail-right-top p:first-child {
  background: #52C4DA;
}
.sh-news-list-category {
  background: #99A1AD;
  margin-left: 5px;
}
.sh-news-list-detail-right-text {
  font-size: 1.6rem;
}
.sh-news-list-right-content {
  padding-left: 30px;
}
.sh-news-list-right-content + .sh-news-list-right-content {
  margin-top: 44px;
}

.sh-news-list-right-content p {
  padding: 13px 0;
  background: #3E3A39;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  color:#FFF;
  margin-bottom: 13px;
}
.sh-news-list-right-content a {
  display: block;
  font-size: 1.6rem;
  padding-left: 30px;
}
.sh-news-list-right-content a + a {
  margin-top: 26px;
}
.sh-press-release {
  background: #FEAD03 !important;
}
.is-bold {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .sh-news-tab {
    width: 33.833%;
    padding: 8px 0;
    font-size: 1.4rem;
    margin-left: 0;
  }
  .sh-news-tab + .sh-news-tab {
    margin-left: 8px;
  }
  .sh-news-list-contents {
    display: block;
  }
  .sh-news-list-left {
    width: 100%;
  }
  .sh-news-list-right {
    width: 100%;
  }
  .sh-news-list-left-content {
    display: block;
  }
  .sh-news-list-left-content-right {
    border-left: none;
    border-top: 1px solid #CCC;
    width: 100%;
    padding: 18px 0;
  }
  .sh-news-list-detail {
    display: block;
    padding-left: 0;
  }
  .sh-news-list-detail-right {
    margin-left: 0;
  }
  .sh-news-list-detail > p {
    padding-top: 0;
    margin-bottom: 10px;
  }
  .sh-news-list-left-content + .sh-news-list-left-content {
    margin-top: 40px;
  }
  .sh-news-list-right-content {
    padding: 0;
    margin-top: 60px;
  }
  .sh-news-year {
    margin-bottom: 0;
    padding: 18px 0 18px 21px;
  }
  .sh-news-list-left-content-left {
    width: 100%;
    text-align: left;
    padding-bottom: 8px;
  }
}
/*------------------------------------------------------------------------------
  お知らせ詳細
------------------------------------------------------------------------------*/
.sh-news-detail {
  padding-top: 50px;
  border-top: 1px solid #CCC;
  padding-bottom: 80px;
}
.sh-news-detail-content h2 {
  font-size: 2.4rem;
  font-weight: bold;
}
.sh-news-detail-date {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 20px;
}
.sh-news-detail-body {
  margin-top: 20px;
}
.sh-news-detail-pagination {
padding-top: 20px;
border-top: 1px solid #ccc;
display: flex;
  width: 50%;
  margin: 0 auto;
  margin-top: 80px;
}
.sh-news-detail-pagination li {
  width: 100%;
}
.sh-news-detail-pagination li:first-child {
  padding-right: 10px;
}
.sh-news-detail-pagination li:last-child {
  padding-left: 10px;
border-left: 1px solid #ccc;
text-align: right;
}
.sh-news-detail-pagination li a {
  position: relative;
}

.sh-news-detail-prev {
  color: #1642E3;
  font-family: FontAwesome;
  margin-right: 5px;
}
.sh-news-detail-next {
  color: #1642E3;
  font-family: FontAwesome;
  margin-left: 5px;
}
@media screen and (max-width: 767px) {
  .sh-news-detail-pagination {
    width: 100%;
  }
  .sh-news-detail-pagination li:first-child {
    padding-right: 0;
  }
  .sh-news-detail-pagination li:last-child {
    padding-left: 0;
  }
  .sh-news-detail-prev {
    display: block;
  }
  .sh-news-detail-next {
    display: block;
  }
  .sh-news-detail-pagination li {
    display: flex;
  }
}
/*------------------------------------------------------------------------------
	フッター
------------------------------------------------------------------------------*/
footer {
	margin-top: auto;
	background: #F6F6F6;
}
.footer-inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 80px;
	padding-bottom: 10px;
}
.footer-main {
	justify-content: space-between;
	display: flex;
}
.footer-left {
	width: 30%;
}
.footer-img {
	margin-bottom: 40px;
	width: 180px;
	max-width: 100%;
}
.footer-img img {
	width: 100%;
}
.footer-left p {
	font-size: 1.6rem;
}
.footer-left strong {
	font-size: 2rem;
}
.footer-right {
	width: 52.5%;
	display: flex;
	justify-content: space-between;
}
.footer-right-content+.footer-right-content {
	margin-left: 8.3333%;
}
.footer-right-content a {
	display: block;
	margin-top: 10px;
	font-size: 1.6rem;
	margin-left: 10px;
}
.footer-right-content p {
	font-size: 1.8rem;
}
.footer-sns {
	margin-top: 87px;
	display: flex;
}
.footer-sns a {
	width: 28px;
	margin-top: 0;
	margin-left: 30px;
}
.footer-sns a img {
	width: 100%;
}

@media screen and (max-width: 767px) {
	.footer-inner {
		padding: 40px 16px 10px;
	}
	.footer-main {
		display: block;
	}
	.footer-left {
		width: 100%;
		text-align: center;
	}
	.footer-img {
		margin: 0 auto;
		margin-bottom: 40px;
	}
	.footer-right {
		flex-wrap: wrap;
		width: 100%;
		text-align: left;
		margin-top: 40px;
	}
	.footer-right-content a {
		margin-left: 0;
	}
	.footer-right-content + .footer-right-content {
		margin-left: 0;
	}
	/* .footer-right-content p strong {
		margin-top: 20px;
		display: block;
	} */
	.footer-sns {
		margin-top: 40px;
		justify-content: space-around;
		margin-bottom: 20px;
	}
	small {
		display: flex;
		justify-content: center;
	}
}
/*------------------------------------------------------------------------------
  準備中
------------------------------------------------------------------------------*/
.sh-ready {
  margin: 120px auto;
  text-align: center;
  padding-top: 160px;
  background: #F6F6F6;
  
}
.sh-ready-img {
  margin-bottom: 80px;
}
.sh-ready h2 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 16px;
}
.sh-ready p {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 170px;
}
.sh-ready-bottom-img img {
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .sh-ready h2 {
    font-size: 3rem;
  }
  .sh-ready p {
    font-size: 1.6rem;
  }
}
/*------------------------------------------------------------------------------
	パンくずリスト
------------------------------------------------------------------------------*/
.sh-breadcrumb {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px 0;
}

.sh-breadcrumb li	{
	margin: 0 0.45em 0 0;
	padding: 0 0.9em 0 0;
	font-size: 0.9em;
	line-height: 0.9em;
	position: relative;
	display: inline-block;
}

.sh-breadcrumb li::after	{
	content: '\f105';
	font-family: FontAwesome;
	left: auto;
	right: 0;
	top: 0;
	bottom: 0;
	width: 0.9em;
	height: 0.9em;
	margin: auto 0;
	text-align: right;
	position: absolute;
	display: inline-block;
}

.sh-breadcrumb li:last-child {
	margin: 0;
	padding: 0;
}

.sh-breadcrumb li:last-child::after {
	display: none;
}

@media screen and (max-width: 767px) {
	.sh-breadcrumb {
		padding: 10px;
		overflow-x: scroll;
		overflow-scrolling: touch;
		-webkit-overflow-scrolling: touch;
		word-break: keep-all;
		white-space: nowrap;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	.sh-breadcrumb::-webkit-scrollbar {
		display: none;
	}
}
/*------------------------------------------------------------------------------
	関連コンテンツ
------------------------------------------------------------------------------*/
.sh-recommend {
	margin-top: 30px;
}

.sh-recommend  > ul {
	flex-wrap: wrap;
	justify-content: space-between;
	display: flex;
}

.sh-recommend li {
	width: 32%;
	margin-top: 20px;
	padding: 20px;
	border: 1px solid #ccc;
	text-align: center;
}

.sh-recommend li:not(.empty):hover {
	background: #f0f0f0;
}

.sh-recommend li.empty {
	border: none;
}

.sh-recommend li a:hover {
	color: #333;
}

.sh-recommend li p {
	margin-top: 20px;
	font-weight: bold;
}

.sh-recommend li p:last-child {
	font-size: 1.6rem;
	font-weight: normal;
	text-align: left;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.sh-recommend img {
	width: 100%;
	height: auto;
}

@media screen and (max-width: 767px) {
	.sh-recommend li {
		width: 49%;
	}

	.sh-recommend li.empty {
		display: none;
	}
}
/*------------------------------------------------------------------------------
	アイコン
------------------------------------------------------------------------------*/
.sh-icon {
	margin: 10px 10px 0 0;
	padding: 5px 10px;
	background: white;
	color: #0669D8;
	border: 1px solid #0669D8;
	border-radius: 3px;
	font-size: 1.2rem;
	display: inline-block;
}

.sh-icon.new,
.sh-icon.closed,
.sh-icon.event,
.sh-icon.seminar {
	margin: 0 10px 0 0;
	background: red;
	color: white;
	border: none;
}

.sh-icon.event {
	background: #0669D8;
}

.sh-icon.seminar {
	background: #ff7b22;
}
/*------------------------------------------------------------------------------
	画像
------------------------------------------------------------------------------*/
.sh-img43 {
	width: 100%;
	height: 0;
	padding-top: calc(100% * 0.75);
	overflow: hidden;
	position: relative;
}

.sh-img43 img {
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	object-fit: cover;
	position: absolute;
}
/*------------------------------------------------------------------------------
	ページャー
------------------------------------------------------------------------------*/
.sh-pager {
	color: #0b1e47;
	align-items: center;
	flex-wrap: wrap;
	display: flex;
}

.sh-pager .page-info {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.sh-pager .page-link {
	display: flex;
	justify-content: flex-end;
	flex-grow: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.sh-pager .page-link span {
	color: #fff;
	min-width: 25px;
	text-align: center;
	padding: 1px 5px;
	background: #56A764;
	border: 1px solid #56A764;
	border-radius: 3px;
	margin: 0 3px;
}

.sh-pager .page-link a {
	color: #56A764;
	min-width: 25px;
	text-align: center;
	padding: 1px 5px;
	background: #fff;
	border: 1px solid #56A764;
	border-radius: 3px;
	margin: 0 3px;
}

.sh-pager .page-link .prev, .sh-pager .page-link .next {
	color: #fff;
	padding: 1px 5px;
	background: #56A764;
	border: 1px solid #56A764;
	border-radius: 3px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.sh-pager .page-link .prev {
	margin: 0 3px 0 0;
}

.sh-pager .page-link .prev i {
	margin: 0 3px 0 0;
}

.sh-pager .page-link .next {
	margin: 0 0 0 3px;
}

.sh-pager .page-link .next i {
	margin: 0 0 0 3px;
}

@media screen and (max-width: 767px) {
	.sh-pager .page-info {
		width: 100%;
	}

	.sh-pager .page-link {
		justify-content: center;
		margin: 10px 0 0;
	}
}
/*------------------------------------------------------------------------------
	ボタン
------------------------------------------------------------------------------*/
.sh-button {
	padding: 5px 20px;
	background: #0669D8;
	border: 1px solid #0074bf;
	color: white;
	font-weight: bold;
	cursor: pointer;
}
/*------------------------------------------------------------------------------
	SNS
------------------------------------------------------------------------------*/
.sh-share > ul {
	display: flex;
}

.sh-share > ul > li:not(:first-of-type) {
	margin-left: 20px;
}

.sh-share a {
	width: 36px;
	height: 36px;	
	line-height: 36px;
	color: white;
	border-radius: 50%;
	font-size: 2rem;
	text-align: center;
	display: block;
}

.sh-share .twitter a {
	background-color: #55ACEE;
}

.sh-share .facebook a {
	background-color: #35629A;
}

.sh-share .instagram a {
	background: radial-gradient(circle at 20% 120%, #fdf497 0%, #fdf497 10%, #fd5949 50%, #d6249f 70%, #285AEB 100%);
}
/*------------------------------------------------------------------------------
	行数制限
------------------------------------------------------------------------------*/
.sh-line-clamp-2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
/*------------------------------------------------------------------------------
	MCEコンテンツ
------------------------------------------------------------------------------*/
.sh-mce {
	width: 100%;
}

.sh-mce img {
	max-width: 100%;
	height: auto;
}
/*------------------------------------------------------------------------------
	ウインドウスクロール停止
------------------------------------------------------------------------------*/
.sh-body-fixed {
	width: 100%;
	height: 100%;
/*	position: fixed;*/
	overflow: hidden;
}
/*------------------------------------------------------------------------------
	その他
------------------------------------------------------------------------------*/
.sh-page-title {
	width: 100%;
	height: 150px;
	background-image: url('../media/segel_hp/共通/haiso_common02.png');
	background-size: cover;
	background-repeat: no-repeat;
}

.sh-page-title > p {
	line-height: 150px;
	color: white;
	font-size: 4rem;
	font-weight: bold;
	text-align: center;
}

.sh-section-title {
	color: #333;
	line-height: 3rem;
	font-size: 3rem;
	font-weight: bold;
	text-align: center;
}

.sh-contents-subject {
	line-height: 2.4rem;
	font-size: 2.4rem;
	font-weight: bold;
}

.sh-page-top {
	position: fixed;
	right: 10%;
	bottom: 10%;
	color: #0669D8;
	border-bottom: 5px solid #0669D8;
	cursor: pointer;
	z-index: 1;
}

.sh-page-top:hover {
	color: #0669D8;
}

.sh-no-data {
	margin-top: 50px;
	padding: 20px;
	background: #f5f5f5;
	font-size: 1.6rem;
	font-weight: bold;
}

.sh-no-data::before {
	content: '検索条件と一致する結果が見つかりませんでした。';
}

.btn_or {
	font-size: 12px;
	padding: 5px 8px;
	color: #fff;
	/*background-color:#ffa035;*/
	background-color:#555;
	border-style: none;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
 	cursor: pointer;
 	position: relative;
 }

.btn_or:hover, .btn_or.btn_selected {
	opacity: 0.8;
}

.btn_or:disabled	{
	background-color: #C0C0C0 !important;
	cursor: auto;
}

@media screen and (max-width: 767px) {
	.sh-page-title {
		height: 100px;	
	}

	.sh-page-title > p {
		line-height: 100px;
		font-size: 2.4rem;
	}

	.sh-section-title {
		line-height: 2.4rem;
		font-size: 2.4rem;
	}

	.sh-contents-subject {
		line-height: 2rem;
		font-size: 2rem;
	}
}
/*------------------------------------------------------------------------------
	スライダー
------------------------------------------------------------------------------*/
.slider {
	margin-top: 40px;
	display: flex;
  width: 100vw;
  height: 200px;
  overflow: hidden;
}

@keyframes loop {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

.slider-img {
	width: auto;
  height: 100%;
}

.slider img:first-child {
	animation: loop 60s -30s linear infinite;
}

.slider img:last-child {
	animation: loop2 60s linear infinite;
}



