@charset "utf-8";
/* header土台 */
.header {
	width: 100%;
	margin: 0;
	padding: 0;
	overflow:visible;
    top: 0;
	z-index:555;
	font-size: 1.0em;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	background-color: #fff;
	box-sizing: border-box;
}
/* headerタイトル */
.header h1{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.0em;
	width: 30%;
	max-width: 360px;
	margin: 55px 0 0 0;
	padding:0;
	box-sizing: border-box;
	color: #333;
	line-height: normal;
}
.header h1 a{
	padding: 0;
	color: #333;
	text-decoration: none;
}
.header h1 img{
	width: 100%;
	height: auto;
	max-width: 283px;
}
/* header電話番号 */
.hd_tel{
	width: 100%;
	text-align: right;
	font-weight: bold;
	font-size: 2.0em;
	margin: 0;
	padding: 13px 10px 0 10px;
	box-sizing: border-box;
}
/* headerお問合せ */
.hd_contact{
	border: 2px solid #00958b;
	text-align: center;
}
.hd_contact a{
	display: block;
	background-color: #00958b;
	width: 255px;
	line-height: 80px;
	color: #fff;
	box-sizing: border-box;
	text-decoration: none;
	padding: 0;
	transition: 0.5s;
}
.hd_contact a:hover{
	background-color: #fff;
	color: #00958b;
	transition: 0.5s;
}
/* PCヘッダーメニュー */
.hdmenu{
	flex: 1;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	flex-wrap: wrap;
	font-size: 1.2em;
	margin-bottom: 20px;
}
.hdmenu ul{
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	margin: 0 20px 0 0;
	padding:2px;
	column-gap: 2px;
	box-sizing: border-box;
}
.hdmenu ul li{
	width: 135px;
	height: 80px;
  display:flex;
	justify-content: center;
  position:relative;
  text-decoration:none;
  text-align:center;
  z-index:0;
		align-items: center;
}
.hdmenu ul li:before{
  content:"";
  width:100%;
  height:100%;
  position:absolute;
  z-index:-1;
  left:0;
  transition:0.5s;
  background: #fff;
}
.hdmenu ul li:after{
  content:"";
  width:100%;
  height:100%;
  position:absolute;
  z-index:-2;
  left:0;
  background: linear-gradient(0.25turn, #f5e0e3, #f8ecdc, #e0e0e8);
}
.hdmenu ul li:hover:before{
  opacity:0;
}
.hdmenu ul li a{
	text-decoration: none;
	color: #333;
	padding:0;
	box-sizing: border-box;
}
/* モバイルメニューボタン */
.hamburger-menu{
	display: none;
}

/** 一部調整1 **/
@media screen and (max-width: 1366px) {
/* header土台 */
.header {
}
/* headerタイトル */
.header h1{
	max-width: 270px;
}
.header h1 img{
	width: 100%;
	height: auto;
	max-width: 250px;
}
}
/* headerお問合せ */
.hd_contact a{
	width: auto;
	padding: 0 25px;
}
/* PCヘッダーメニュー */
.hdmenu{
	font-size: 1.1em;
}
.hdmenu ul{
	margin: 0 10px 0 0;
}
.hdmenu ul li{
	width: 125px;
}
}

/** 一部調整2 **/
@media screen and (max-width: 1080px) {	
/* headerタイトル */
header h1{
	width: 100%;
	margin: 0 0 0 0;
	max-width: 200px;
}
.header h1 img{
	max-width: 200px;
}
/* headerお問合せ */
.hd_contact a{
	width: auto;
	padding: 0 15px;
}
/* PCヘッダーメニュー */
.hdmenu{
	font-size: 0.9em;
}
.hdmenu ul{
	margin: 0 5px 0 0;
}
.hdmenu ul li{
	width: auto;
	margin: 0 3px 0 0;
}
}

/** モバイル **/
@media screen and (max-width: 768px) {
/* header土台 */
.header {
	height: 120px;
	display: flex;
	position: fixed;
}
/* headerタイトル */
.header h1{
	align-items: center;
	margin: 0;
}	
/* header電話番号 */
.hd_tel{
	display: flex;
	align-items: center;
	width: auto;
	font-size: 1.0em;
	padding: 0px 10px;
}
/* PCヘッダーメニュー */
.hdmenu{
	display: none;
}
/* モバイルメニューボタン */
.hamburger-menu{
	display: block;
}
.menu-btn {
    position: fixed;
    top: 0px;
    right: 0px;
    display: flex;
    height: 120px;
    width: 120px;
    justify-content: center;
    align-items: center;
    z-index: 200;
	background:#00958b;
	box-sizing: border-box;
	padding-top: 15px;
}		
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 5px;
    width: 45px;
    border-radius: 5px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 15px;
}
.menu-btn span:after {
    top: 15px;
}
/* メニューオープン時の.menu-btnの背景色を変更 */
#menu-btn-check:checked + .menu-btn {
    background: none;
}	
#menu-btn-check:checked + .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked + .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
	 background-color: #000000;
}
#menu-btn-check:checked + .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
	 background-color: #000000;
}
.menu-btn::before {
    content: "MENU";
    position: absolute;
    top: 20px;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
    transition: all 0.3s ease;
}
/* チェック時に「CLOSE」に変更 */
#menu-btn-check:checked + .menu-btn::before {
    content: "CLOSE";
    color: #000;
}
#menu-btn-check {
    display: none;
}
/* モバイルメニュー展開 */
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 150;
    background:rgba(255,255,255,1.0);
    transition: all 0.5s;/*アニメーション設定*/
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}
.menu-content ul{
	width: 80%;
	margin: 120px auto 0 auto;
	padding: 0;
	box-sizing: border-box;
}
.menu-content ul li{
	list-style: none;
	width: 100%;
	margin: 0;
	border-bottom: 1px solid #c6c6c6;
}
.menu-content ul li a{
	width: 100%;
	color: #1a1a1a;
	font-weight: bold;
	text-decoration: none;
	display: block;
	padding: 15px;
	box-sizing: border-box;
	transition: 0.5s;
	background-image: url("images/menu_linkb.png");
	background-position: right 15px center;
	background-repeat: no-repeat;
}
.menu-content ul li a:hover{
	opacity: 0.3;
	transition: 0.5s;
}
/* モバイルメニューお問合せボタン */	
.spmenu_ct{
	border: 2px solid #00958b;
	text-align: center;
	width: 80%;
	margin: 50px auto 0 auto;
	box-sizing: border-box;
	border-radius: 5px;
}
.spmenu_ct a{
	display: block;
	background-color: #00958b;
	color: #fff;
	box-sizing: border-box;
	text-decoration: none;
	padding: 15px;
	transition: 0.5s;
}
.spmenu_ct a:hover{
	background-color: #fff;
	color: #00958b;
	transition: 0.5s;
	border-radius: 5px;
}
}

/** モバイル_小 **/
@media screen and (max-width: 500px) {
/* header土台 */
.header {
	height: 80px;
	display: flex;
	position: fixed;
}
/* headerタイトル */
.header h1{
	align-items: center;
	padding: 0 5px;
}	
/* header電話番号 */
.hd_tel{
	display: flex;
	align-items: center;
	width: auto;
	font-size: 0.75em;
	padding: 0px 5px;
}
/* メニューボタン */
.menu-btn {
    height: 80px;
    width: 80px;
}		
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    height: 5px;
    width: 35px;
    border-radius: 5px;
}
.menu-btn span:before {
    bottom: 10px;
}
.menu-btn span:after {
    top: 10px;
}	
.menu-btn::before {
    top: 20px;
    font-size: 10px;
}
}