/*****************************************
dgreen common css
header & footer only!
*****************************************/
/*=======================================*/
/* reset */
/*=======================================*/
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	word-break: break-all;
}
::before , ::after {
	box-sizing: inherit;
}
button {
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	vertical-align: middle;
	text-align: inherit;
	font: inherit;
	-webkit-appearance: none;
	appearance: none;
}
img{
	vertical-align: bottom;
}
/*=======================================*/
/* common */
/*=======================================*/
body{
  background: #F0EFE6;
  font-family: 'Noto Sans JP', sans-serif;
}
.mincho{
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','游明朝体+36ポかな','YuMincho +36p Kana','ＭＳ Ｐ明朝','MS PMincho','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
}

.contents-wrap{
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.contents-wrap02{
	max-width: 860px;
	margin: 0 auto 50px;
	padding: 58px 20px 58px;
}

.flex-wrap{
  display: flex;
  flex-wrap: wrap;
  height: auto;
	align-items: flex-start;
	height: auto;
}

/*btn01
_______________________________________*/
.btn01{
  text-align: center;
  margin: 0;
}
.btn01 a{
  background: #001E4D;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  padding: 15px 79px 16px;
  display: inline-block;
  border-radius: 30px;
  position: relative;
}
.btn01 a::before{
  position: absolute;
  content: "";
  width: 19px;
  height: 3px;
  background-image: url(https://miemarine.com/asset/img/btn_dot.png);
  background-image: image-set(url(https://miemarine.com/asset/img/btn_dot.png) 1x, url(https://miemarine.com/asset/img/btn_dot@2x.png) 2x);
  background-image: -webkit-image-set(url(https://miemarine.com/asset/img/btn_dot.png) 1x, url(https://miemarine.com/asset/img/btn_dot@2x.png) 2x);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  right: 21px;
  top: 27px;
}
/*pc*/
@media all and (min-width:701px) {}
/*sp*/
@media all and (max-width:700px) {}

/*btn02
_______________________________________*/
.btn02{
  text-align: center;
  margin: 0;
}
.btn02 a{
  background: #001E4D;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  padding: 15px 79px 16px;
  display: inline-block;
  border-radius: 30px;
  position: relative;
}
.btn02 a::before{
  position: absolute;
  content: "";
  width: 19px;
  height: 3px;
  background-image: url(https://miemarine.com/asset/img/btn_dot.png);
  background-image: image-set(url(https://miemarine.com/asset/img/btn_dot.png) 1x, url(https://miemarine.com/asset/img/btn_dot@2x.png) 2x);
  background-image: -webkit-image-set(url(https://miemarine.com/asset/img/btn_dot.png) 1x, url(https://miemarine.com/asset/img/btn_dot@2x.png) 2x);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  left: 21px;
  top: 27px;
}
/*pc*/
@media all and (min-width:701px) {}
/*sp*/
@media all and (max-width:700px) {}
/*btn01
_______________________________________*/
.btn03{
  text-align: center;
  margin: 0;
}
.btn03 a{
  background: #C47519;
  text-decoration: none;
  padding: 15px 79px 16px;
  display: inline-block;
  border-radius: 30px;
  position: relative;
}
/*pc*/
@media all and (min-width:701px) {}
/*sp*/
@media all and (max-width:700px) {}

/*=======================================*/
/* header */
/*=======================================*/
/*header
_______________________________________*/
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
::before , ::after {
	box-sizing: inherit;
}
button {
	margin: 0;
	padding: 0;
	outline: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	vertical-align: middle;
	text-align: inherit;
	font: inherit;
	-webkit-appearance: none;
	appearance: none;
}
header .main{
  max-width: 1240px;
  margin: 0 auto;
}

/**************** 以下、ハンバーガーボタンのスタイリング ****************/
.btn {
	/* ボタンの配置位置  */
	position: fixed;
	bottom: -12px;
	right: -10px;
	/* 最前面に */
	z-index: 10;
	/* ボタンの大きさ  */
	width: 76px;
	height: 76px;
	background: #fff;
}
/***** 真ん中のバーガー線 *****/
.btn-line {
	display: block;
	/* バーガー線の位置基準として設定 */
	position: relative;
	/* 線の長さと高さ */
	width: 100%;
	height: 3px;
	/* バーガー線の色 */
	transition: .2s;
	top: -19px;
	left: 3px;
}
/***** 上下のバーガー線 *****/
.btn-line::before, .btn-line::after {
	content: "";
	/* 基準線と同じ大きさと色 */
	position: absolute;
	width: 24px;
	height: 100%;
	background-color: #011d4d;
	transition: .5s;
}
.btn-line::before {
	/* 上の線の位置 */
	transform: translate(21px, 8px);
}
.btn-line::after {
	/* 下の線の位置 */
	transform: translate(21px, 18px);
}
/***** メニューオープン時 *****/
.btn-line.open {
	/* 真ん中の線を透明に */
	background-color: transparent;
}
.btn-line.open::before , .btn-line.open::after {
	content: "";
	background-color: #333;
	transition: .2s;
}
.btn-line.open::before {
	/* 上の線を傾ける */
	transform: translate(21px, 13px) rotate(45deg);
}
.btn-line.open::after {
	/* 上の線を傾ける */
	transform: translate(21px, 13px) rotate(-45deg);
}
.btn p{
	position: absolute;
	margin: 0;
	font-size: 11px;
	font-weight: bold;
	left: 20px;
	bottom: 17px;
}
/**************** ここまで、ハンバーガーボタンのスタイリング ****************/
/**************** 以下、メニューのスタイリング ****************/
.menu {
	/* メニューを縦に */
	display: flex;
	flex-direction: column;
	position: fixed;
	/* メニューの位置マイナス指定で画面外に */
	height: 100vh;
  margin: 0;
}
.menu-list {
	/* メニューテキスト位置をリスト内中心に */
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-list a{
  font-size: 18px;
  color: #191919;
  text-decoration: none;
}
.menu-list:hover {
	background-color: rgba(255, 255, 255, .5);
	color: #333;
	cursor: pointer;
	transition: .3s;
}
/***** メニューオープン時位置0にして画面内に *****/
.menu.open {
	top: 0px;
}
/* 701px以上はハンバーガーボタン非表示、ヘッダー固定 */
@media screen and (min-width: 701px) {
	.menu {
		transition: .3s;
	}
	.btn {
		display: none;
	}
	.menu {
		/* メニューを横に */
    display: flex;
    flex-direction: row;
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    height: 80px;
    justify-content: space-between;
	}
  header nav{
    width: 70%;
    right: 0;
    float: right;
    max-width: 660px;
  }
	header {
	  position: fixed;
	  z-index: 10000;
	  width: 100%;
	  top: 0;
	  display: none;
	  background: #fff;
	  border-top: 3px solid #011d4d;
	  box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
		padding: 0 20px;
	}
	header .logo{
	  float: left;
	  margin: 6px 0 0;
	  max-width: 169px;
	}

  .sp{display: none !important;}
}
/*sp*/
@media all and (max-width:700px) {
  .pc{display: none !important;}
	.btn{
		left: 83vw !important;
    border-radius: 50%;
    box-shadow: -1px 0 6px 0 rgb(0 0 0 / 16%);
	}
	.menu {
		top: -100vh;
    width: 100%;
    background: #F0EEE6;
    min-height: 100vh;
    z-index: -2;
    background-image: url(https://miemarine.com/asset/img/line_bottom_sp2.png);
    background-image: image-set(url(https://miemarine.com/asset/img/line_bottom_sp2.png) 1x, url(https://miemarine.com/asset/img/line_bottom_sp2@2x.png) 2x);
    background-image: -webkit-image-set(url(https://miemarine.com/asset/img/line_bottom_sp2.png) 1x, url(https://miemarine.com/asset/img/line_bottom_sp2@2x.png) 2x);
    background-size: 100% auto;
    background-position: bottom center;
    background-repeat: no-repeat;
		height: -webkit-fill-available;
	}
	.menu{
		animation-name:fadeInAnime2;
		animation-duration:0.3s;
		animation-fill-mode:forwards;
		opacity:0;
		}

		@keyframes fadeInAnime2{
		  from {
		    opacity: 1;
		  }

		  to {
		    opacity: 0;
		  }
		}

	.menu.open{
		z-index: 2;
	}
	.menu.open{
		animation-name:fadeInAnime;
		animation-duration:0.3s;
		animation-fill-mode:forwards;
		opacity:0;
		}

		@keyframes fadeInAnime{
		  from {
		    opacity: 0;
		  }

		  to {
		    opacity: 1;
		  }
		}
	header .logo{
		margin: 50px auto 40px;
		max-width: 48%;
		padding: 0;
	}
	.menu-list {
		font-size: 16px;
		font-weight: bold;
		padding: 16px 0;
	}
	.menu-list a{
		color: #001E4D;
	}
}
/*=======================================*/
/* footer */
/*=======================================*/
/*footer-recruit
_______________________________________*/
#footer-recruit{
  background-size: 100% auto;
  background-position: bottom center;
  background-repeat: no-repeat;
  padding: 0 0 120px;
	margin-bottom: -2px;
}
#footer-recruit .wrap{
  background: #fff;
  border: 1px solid #061E4D;
  padding: 33px 20px 35px;
}
#footer-recruit .wrap .contents{
  max-width: 872px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: auto;
  justify-content: space-between;
}

#footer-recruit .wrap .contents .text-wrap h2{
  color: #061E4D;
  font-size: 22px;
}
#footer-recruit .wrap .contents .text-wrap h2 span.jp{
  background: linear-gradient(transparent 50%, #FFDE71 50%);
  padding: 0 10px 8px;
  line-height: 2.2;
  margin-right: 18px;
  font-size: 23px;
}
#footer-recruit .wrap .contents .text-wrap p{
  margin: 10px 0 10px;
  font-size: 14px;
}
#footer-recruit .wrap .contents .btn01{

}
/*pc*/
@media all and (min-width:701px) {
	#footer-recruit .wrap .contents .text-wrap{
	  max-width: 487px;
	  margin-right: 20px;
	}
	#footer-recruit{
	  background-image: url(https://miemarine.com/asset/img/line_bottom_pc.png);
	  background-image: image-set(url(https://miemarine.com/asset/img/line_bottom_pc.png) 1x, url(https://miemarine.com/asset/img/line_bottom_pc@2x.png) 2x);
	  background-image: -webkit-image-set(url(https://miemarine.com/asset/img/line_bottom_pc.png) 1x, url(https://miemarine.com/asset/img/line_bottom_pc@2x.png) 2x);
	}
}
/*sp*/
@media all and (max-width:700px) {
	#footer-recruit .wrap .contents{
		display: block;
	}
	#footer-recruit .wrap .contents .text-wrap h2{
		text-align: center;
	}
	#footer-recruit .wrap .contents .text-wrap h2 span.jp{}
	#footer-recruit .wrap .contents .text-wrap h2 span.sub{
		display: block;
	}
	#footer-recruit{
	  background-image: url(https://miemarine.com/asset/img/line_bottom_sp.png);
	  background-image: image-set(url(https://miemarine.com/asset/img/line_bottom_sp.png) 1x, url(https://miemarine.com/asset/img/line_bottom_sp@2x.png) 2x);
	  background-image: -webkit-image-set(url(https://miemarine.com/asset/img/line_bottom_sp.png) 1x, url(https://miemarine.com/asset/img/line_bottom_sp@2x.png) 2x);
	}
}

/*=======================================*/
/* footer */
/*=======================================*/
/*footer
_______________________________________*/
#footer{
  background: #001E4D;
  color: #fff;
}
#footer a{
  color: #fff;
  text-decoration: none;
}
#footer .flex-wrap{
  justify-content: space-between;
  padding: 50px 0 60px;
}
.addr{
  font-size: 12px;
  line-height: 1.8;
}
.addr .logo{}
.addr .logo img{
  width: 182px;
}
.addr p{}
.addr p.company-name{
  margin: 25px 0 12px;
}
.addr p.copyright{
  font-size: 10px;
  margin: 0;
}
.footer-nav{
  display: flex;
  justify-content: space-between;
}
.footer-nav ul{
  margin: 0 56px 0 0;
  list-style: none;
}
.footer-nav ul li{
  padding: 0 0 25px 20px;
}
.footer-nav ul li a{
  padding: 25px 0 25px 36px;
  position: relative;
}
.footer-nav ul li a::before{
  position: absolute;
  content: "";
  width: 17px;
  height: 17px;
  background-image: url(https://miemarine.com/asset/img/arrow01.png);
  background-image: image-set(url(https://miemarine.com/asset/img/arrow01.png) 1x, url(https://miemarine.com/asset/img/arrow01@2x.png) 2x);
  background-image: -webkit-image-set(url(https://miemarine.com/asset/img/arrow01.png) 1x, url(https://miemarine.com/asset/img/arrow01@2x.png) 2x);
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
/*pc*/
@media all and (min-width:701px) {}
/*sp*/
@media all and (max-width:700px) {
	.footer-nav{
		display: none;
	}
}
/*=======================================*/
/* totop */
/*=======================================*/
/*header
_______________________________________*/
/* トップへ戻るボタン */
#totop {
  position: fixed;
	bottom: 30px;
	right: 35px;
  transition: 0.3s;
}

/* マウスオーバー時 */
#totop:hover {
  opacity: 0.5;
}
/*pc*/
@media all and (min-width:701px) {}
/*sp*/
@media all and (max-width:700px) {}
/*=======================================*/
/* page 共通 */
/*=======================================*/
#page-title{
	background: #011d4d;
	color: #fff;
	font-size: 29px;
	text-align: center;
	padding: 50px 0 30px;
}
#page-title span{
	font-size: 18px;
	display: block;
	text-align: center;
	margin: 6px 0 0;
	letter-spacing: 0.1em;
}
#page-contents{
	background-image: url(https://miemarine.com/asset/img/line_top_pc.png);
  background-image: image-set(url(https://miemarine.com/asset/img/line_top_pc.png) 1x, url(https://miemarine.com/asset/img/line_top_pc@2x.png) 2x);
  background-image: -webkit-image-set(url(https://miemarine.com/asset/img/line_top_pc.png) 1x, url(https://miemarine.com/asset/img/line_top_pc@2x.png) 2x);
	background-position: top center;
	background-size: 100% auto;
	background-repeat: no-repeat;
	padding: 6% 0 0;
}
.bg-w{
	background-color: #fff;
}
#breadcrumbs{
	font-size: 12px;
	max-width: 1080px;
	margin: 0 auto 2%;
	padding: 0 20px;
}
#pagenation{
	text-align: center;
	margin: 0 auto;
	display: table;
	padding-bottom: 80px;
}
#pagenation-list{
	margin: 0;
}
/*pc*/
@media all and (min-width:701px) {}
/*sp*/
@media all and (max-width:700px) {
	#breadcrumbs{
		margin: 0 auto 20px;
	}
	#pagenation{
		padding-bottom: 60px;
	}
	#page-title{
		font-size: 22px;
		padding: 20px 0 15px;
	}
	#page-title span{
		font-size: 15px;
	}
}

/*=======================================*/
/* title */
/*=======================================*/
.contents-title{
	text-align: center;
}
.contents-title span{
	background: linear-gradient(transparent 50%, #FFDE71 50%);
	padding: 0 10px 8px;
	line-height: 2.2;
	margin-right: 18px;
	font-size: 23px;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','游明朝体+36ポかな','YuMincho +36p Kana','ＭＳ Ｐ明朝','MS PMincho','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
	font-weight: bold;
}

.contents-title02{
	background: #001E4D;
	text-align: center;
	color: #fff;
	font-size: 20px;
	font-weight: normal;
	padding: 12px 20px 14px;
}

/*pc*/
@media all and (min-width:701px) {}
/*sp*/
@media all and (max-width:700px) {}

/*=======================================*/
/* header */
/*=======================================*/
/*header
_______________________________________*/
/*pc*/
@media all and (min-width:701px) {}
/*sp*/
@media all and (max-width:700px) {}
