@charset "utf-8";

/* ページ全体に関わるCSSの設定 */
html *,
::before,
::after {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
/* フォント */
html {
	font-size: 14px;
}
@media (min-width: 768px) {
	html {
		font-size: 16px;
	}
}
body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: 400; /* Noto Sans JPのレギュラーウェイトを指定 */
	background: #fff;
}
/* おもな太字タグのフォントウェイト設定 */
h1, h2, h3, h4, h5, h6, th, strong {
	font-weight: 700;
}
/* ベースのリンクカラー */
a {
	color: #333;
	text-decoration: none;
}

/* レスポンシブイメージと画像下スペース防止 */
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}


.page-header {
	display: flex;
	justify-content: space-between;
	height: 80px;
	
	  position: fixed;  
  width: 100%;
	top: -85px; 
  line-height: 60px;
  text-align: center;
  color: #fff;
  background: black;
  box-sizing: border-box;
  transition: .5s;
	z-index: 5;
}
/*#tour .header .page-header {
	display: flex;
    justify-content: space-between;
    height: 60px;
    position: fixed;
    width: 100%;
    top: 0px; 
    line-height: 60px;
    text-align: center;
    color: #fff;
    background: #ffffffb8;
    box-sizing: border-box;
    transition: .5s;
    z-index: 5;
}*/
.page-header.is-show {
  top: 0;
}

.sns-container {
	margin-top: 12px;
	justify-content: center;
	display: none;
}
@media(min-width:768px) {
	.sns-container {
		display: block;
		display: flex;
	}
}
.sns_btn {
	color: #333;
	align-self: center;
	margin: 0 20px;
}
.sns_btn:hover {
	opacity: 0.75;
}

.page-header {
	background: #fff;
}

.header-logo {
	position: absolute;
	top:3px;
	left: 50vw;
	transform: translate(-50%);
	margin: 0;
	font-size: 0;
	line-height: 0;
}
.header-logo img {
	width: 120px;
	height: 80px;
	padding: 0;
}

@media (min-width: 768px) {
	.header-logo {
		padding: 0;
	}
}
/* 
hamburger(ハンバーガーアイコン)
=================================== */
.hamburger {
  position: fixed;
  right: 20px;
  top: 20px;
  width: 50px;
  height: 40px;
  cursor: pointer;
  z-index: 300;
}

.hamburger__line {
  position: absolute;
  width: 34px;
  height: 2.5px;
  right: 0;
  background-color: #000;
  transition: all 0.5s;
}

.hamburger__line--1 {
  top: 7px;
}

.hamburger__line--2 {
  top: 18px;
}

.hamburger__line--3 {
  top: 30px;
}
.hamburger__line--4 {
	opacity: 0;
	font-size: 20px;
}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
  transform: rotate(-45deg);
  top: 11px;
	opacity: 0;
}

.open .hamburger__line--2 {
  opacity: 0;
}

.open .hamburger__line--3 {
  transform: rotate(45deg);
  top: 11px;
	opacity: 0;
}
.open .hamburger__line--4 {
	color: #333;
    opacity: 1;
    width: 35vw;
    text-align: center;
    background-color: #0000;
}
/* 
sp-nav(ナビ)
=================================== */
.sp-nav {
  position: fixed;
  right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
  top: 0;
  width: 100%; /* 出てくるスライドメニューの幅 */
  height: 100vh;
  background-color: #fff;
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}
@media (min-width:768px) {
	.sp-nav {
	width: 40%;
	}
}
.sp-nav ul {
	list-style: none;
	padding: 0;
}
.sp-nav li {
	border-bottom: solid 1px #999;
	padding: 20px;
    margin: 0 20px;
	color: #333;
	line-height: 30px;
	text-align: start;
}
.sp-nav li:first-child {
	height: 85px;
    text-align: center;
    font-size: 16px;
    padding-top: 20px;
}
@media (min-width: 768px) {
	.sp-nav li:first-child {
		font-size: 30px;
	}
	
}
/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
  right: 0;
}


/* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100;
}

/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}
/* ヘッダーナビ */
.header-nav {
	display: flex;
	flex-direction: row-reverse;
	margin-top: 30px;
	padding: 0;
	list-style: none;
	position: fixed;
	top:0;
	right: 0;
	width: 66%;
	height: 100%;
}
.header-nav.collapse {
	display: none;
}
.header-nav li a {
	display: block;
	padding: 20px 30px;
	border-top: 1px solid #d8d8d8;
	background: #efefef;
	color: #003366;
	text-decoration: none;
}
.header-nav li a:hover {
	background: #b8e5ea;
}

.hero {
	margin-bottom: 100px;
	position: relative;
    width: 100%;
	height: 100vh;
    min-height: 500px;
}
.s-hero {
	width: 100%;
	height: 40vh;
	position: relative;
	margin-bottom: 50px;
}
.hero-container {
	margin: 0 auto;
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #252b33;
    z-index: 0;
}
#home .hero .hero-container .hero-image {
	background-image: url("../images/inyou/sp.png");
		position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 0;
}
#tour .s-hero .hero-container .hero-image {
	background-image: url("../images/inyou/065sayaka425.jpg");
		position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 0;
}
#info .s-hero .hero-container .hero-image {
	background-image: url("../images/inyou/005KAI319.jpg");
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 0;
}
#price .s-hero .hero-container .hero-image {
	background-image: url("../images/inyou/Maldives-8270033-Edit.jpg");
		position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 0;
}
#accomo .s-hero .hero-container .hero-image {
	background-image: url("../images/inyou/HOTEL86_kaihouwashitu20150124133447.png");
		position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 0;
}
#shop .s-hero .hero-container .hero-image {
	background-image: url("../images/inyou/SAYAKA1017020.jpg");
		position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 0;
}
#question .s-hero .hero-container .hero-image {
	background-image: url("../images/inyou/tokunoshimaP9260039.jpg");
		position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 0;
}
.m-title {
    color: #fff;
    text-align: center;
	z-index: 1;
	position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.m-title h2 {
	font-family: 'Barlow';
    font-weight: 800;
    font-size: 30px;
    line-height: 1.4;
    text-shadow: 0 0 8px rgba(0,0,0,.2);
}
.m-title span {
	display: block;
	font-size: 13px;
}
@media (min-width: 768px) {
	#home .hero .hero-container .hero-image {
	background-image: url("../images/inyou/tokunoshimaP9260039.png");
}
	.m-title h2 {
		font-size: 56px;
	}
	.m-title span {
		font-size: 20px;
	}
}


@media (min-width: 768px) {
.hero-container {
		margin: 0 auto;
		padding: 0 auto;
		
	}
	.hero-image {
		height: 100vh;
	}
}

.concept {
	margin-bottom: 100px;
}
.left-box {
	width: 100px;
	height: 100px;
	margin: 0 auto;
}
.concept-container {
	text-align: center;
		color: #666;
		line-height: 3;
	padding: 0 3%;
	max-width: 1160px;
	margin: 0 auto;
}
.concept-container h2 {
	color: #003466;
	font-size: 24px;
}

.diving-plan {
	margin-bottom: 100px;
	background-color: #cdf0f8;
	padding-top: 50px;
	padding-bottom: 50px;
}
.inner {
	margin: 0 auto;
    padding: 0 10px;
    max-width: 1160px;
	text-align: center;
}
.inner h3 {
	margin-bottom: 30px;
}
.inner span {
	display: block;
}
.block {
	box-sizing: border-box;
    padding: 0 15px 0 10px;
}
.title {
	color: #333;
	margin-top: 30px;
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 800;
    font-family: 'Barlow';
    line-height: 1.3;
	}
@media (min-width:768px) {
	.title {
		font-size: 36px;
	}
}
.title span {
	font-size: 16px;
	display: block;
	color: #05b2dc;
}
.box-wrap {
	display:block;
	width: 100%;
	justify-content: space-between;
	margin-bottom: 50px;
}
.box:hover {
	opacity: 0.8;
}
.box {
	text-align: center;
	list-style: none;
	width: 100%;
	margin-bottom: 50px;
}
.box img {
	height: 250px;
	width: 100%;
}
@media (min-width:768px) {
	.diving-plan {	
	}
	.box-wrap {
		display: flex;
	}
	.box {
		width: 33%;
		margin-bottom: 0px;
	}
	.inner {
		padding: 0 3%;
	}
}
.plantext {
	padding: 0 0 40px;
	background-color: #fff;
	box-shadow: 0 2px 5px #ccc;
}
.p-title {
	font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #333;
    padding-top: 25px;
    padding-bottom: 10px;
}
.p-text {
	font-size: 14px;
    line-height: 1.6;
    color: #777777;
    padding: 20px;
}
.line-btn {
	display: block;
    color: #05b2dc;
    text-decoration: none;
    border: 1px solid #05b2dc;
    height: 38px;
    line-height: 38px;
    font-size: 12px;
    text-align: center;
    position: relative;
    background-color: #fff;
	max-width: 90%;
    margin: 0 auto;
}
@media (min-width: 768px) {
.line-btn {
    height: 55px;
    line-height: 55px;
    font-size: 13px;
}
}
.line-btn:hover {
	color: #fff;
	background-color: #23B3D5;
}
.line-btn span {
	display: block;
	position: relative;
}

.line-btn span::before {
    content: '';
    background-color: #26c0ef;
    display: block;
    width: 1px;
    height: 100%;
    position: absolute;
    bottom: -5px;
    right: -6px;
}
.line-btn span::after {
	content: '';
    background-color: #26c0ef;
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    right: -5px;
    bottom: -5px;
}
@media(min-width:768px) {
	.p-btn {
		height: 55px;
    line-height: 55px;
    font-size: 13px;
	}
}

.info {
	margin: 0 auto 100px;
}
.info-container {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	margin: 0 auto 30px;
}
.info-item {
	border: solid 1px #05b2dc;
		border-left: none;
	border-right: none;
	border-bottom: none;
		display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	padding: 10px 0;
}
.info-item:hover {
	opacity: .75;
}
.info-text {
	text-align: start;
    background-color: #fff;
    box-shadow: 0 2px 5px #ccc;
}
.info-text dt {
	color: #05b2dc;
	padding: 25px 20px 0;
}
.info-text dd {
	font-size: 18px;
    margin: 0;
    padding: 20px 20px 35px;
	color: #333;
}
.info-gt {
	width: calc(35/375*100%);
	margin: auto 0;
	font-size: 40px;
	color: #05b2dc;
	
}
.i-btn {
	margin: 0 auto;
}

@media(min-width: 768px){
.info-container {
	display:flex;
	flex-wrap: nowrap;
	flex-direction: row;
	border:none;
	justify-content: space-between;
	}
	.info-item {
		padding:0;
		display: block;
		border-top: solid 1px #05b2dc;
		border-right: solid 1px #05b2dc;
		border-left: solid 1px #05b2dc;
		border-bottom: solid 1px #05b2dc;
		margin: 0 5px;
	}
	.info-photo {
		flex-shrink: 0;
		align-self: center;
		padding: 0;
		width: 100%;
		
	}
	.info-text {
		width: auto;
	}
	.info-text dt {
		font-size: 14px;
	}
	.info-text dd {
		font-size: 18px;
		margin: 0;
	}
	.info-gt {
		display: none;
	}
	.border-top {
		border-top: none;
	}
	.i-btn {
		width: 400px;
	}
}

.photo {
	padding-top: 50px;
	padding-bottom: 50px;
	background-color: #cdf0f8;
}

.pt-container {
	display: flex;
	justify-content: center;
	margin: 0 auto;
	width: 100%;
}
.pt-container li {
	width: 33.3%;
	list-style: none;
	padding: 5px;
	height: 170px;
}
.i-none {
	display: none;
}
@media (min-width:768px) {
	.i-none {
		display: block;
	}
	.pt-container li {
		width: 16.6%;
	}
}
.pt-container img {
	display: block;
	margin: 0 auto;
	width: 100%;
	height: 100%;
}
.pt-container img:hover {
	opacity: .75;
}
.is-btn {
	width: 90vw;
    margin: 0 auto;
    margin-top: 50px;
}

@media(min-width:768px) {
	.is-btn {
		width: 400px;
	}
}
.other {
	padding-top: 55px;
	padding-bottom: 5px;
	background-color: #cdf0f8;
}
.box-2nd {
	width: 100%;
	height: 220px;
	margin: 20px 5px;
	position: relative;
}
.box-2nd:hover {
	opacity: .75;
}
.box-2nd h3 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #fff;
	text-align: center;
	font-family: 'Barlow';
    font-weight: 800;
    font-size: 30px;
    line-height: 1.3;
}
.box-2nd span {
	display: block;
	font-size: 14px;
}
.box-2nd img {
	width: 100%;
	height: 100%;
}
.reserve {
	text-align: center;
	padding: 50px 0 10px;
}
.reserve .inner .sns-container {
	display: block;
}
.follow {
	font-size: 40px;
	border-bottom: solid 2px #000;
	margin-bottom: 20px;
	padding-bottom: 20px;
}
.reserved {
	border: 4px solid #e8eff9;
    width: 90%;
    margin: 50px auto;
    padding-bottom: 30px;
	background-color: #fff;
	text-align: center;
}
@media (min-width:768px) {
	.reserved {
		width: 90%;
		max-width: 860px;
	}
}
.reserve-title {
	color: #333;
	margin-top: 30px;
    margin-bottom: 25px;
    font-size: 25px;
    font-weight: 800;
    font-family: 'Barlow';
    line-height: 1.3;
	}
.reserve-title span {
	font-size: 16px;
	display: block;
	color: #05b2dc;
}
.tel-mail {
	font-size: 18px;
	font-family: 'Barlow';
	font-weight: 600;
	margin-bottom: 20px;
	color: #333;
}
.tel-mail i {
	margin-right: 10px;
}
@media(min-width:768px) {
	.tel-mail {
		font-size: 30px;
	}
}
.tel-mail span {
	margin-left: 5px;
	display: contents;
}
#pry {
	padding: 50px 2% 0;
	margin-bottom: 50px;
}
#pry .inner .block {
	box-sizing: border-box;
    padding: 15px 20px;
    border: 4px solid #e8eff9;
    font-size: 14px;
    line-height: 1.5;
}
#plan .inner .block {
	box-sizing: border-box;
    padding: 15px 20px;
    border: 4px solid #e8eff9;
    font-size: 14px;
    line-height: 1.5;
}
.block dl {
	border-bottom: 1px solid #e8eff9;
}
.block dl:last-child {
	border-bottom: none;
}
.block dt {
	box-sizing: border-box;
    display: block;
    padding: 20px 2%;
    font-size: 16px;
    font-weight: bold;
	text-align: start;
}
.block dd {
	box-sizing: border-box;
    display: block;
    padding: 20px 2%;
	text-align: start;
}
#pry .inner .block h4 {
	margin-left: 2rem;
	font-size: 13px;
	font-weight: 400;
}
#pry .inner .block p {
	margin-left: 4rem;
	font-size: 12px;
}
#infomation {
	margin-bottom: 50px;
}
#course .inner .block {
	display: block;
	margin-bottom: 20px;
}
#course .inner .block .text .p-btn .line-btn {
	max-width: 100%;
	height: 40px;
	line-height: 40px;
	margin-bottom: 20px;
}
@media(min-width:768px) {
	#course .inner .block {
		display: flex;
	}
}
.img {
	width: 100%;
}
.text {
	margin-left: 0;
	text-align: start;
	padding: 20px;
}
.text h4 {
	font-size: 22px;
	margin-top: 10px;
}
.text .p-btn {
	margin-top: 20%;
}
@media(min-width:768px) {
	.img {
		width: 45%;
	}
	.text {
		margin-left: 50px;
		padding: 0;
		width: 50%;
	}
}
.price {
	font-size: 28px;
	color: orangered;
}
.time {
	line-height: 2;
    margin-bottom: 1rem;
}
.s-text {
	line-height: 2;
    margin-bottom: 1rem;
}
.news-list{
  list-style: none outside;
  margin: 0;
  padding: 0;
}
.news-list .item a{
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #CCC;
  padding: 40px 20px;
}
.news-list .item:first-child a{
  border-top: 1px solid #CCC;
}
.news-list .item .date{
  margin: 0;
  min-width: 140px;
  font-size: 16px;
  color: #999;
  padding: 0 20px 0 0;
}
.news-list .item .category{
  margin: 0;
  min-width: 140px;
  padding: 0 20px 0 0;
}
.news-list .item .category span{
  background: #999;
  color: #FFF;
  text-align: center;
  display: inline-block;
  padding: 5px 20px;
  font-size: 12px;
  line-height: 1;
}
.news-list .item .title{
  margin: 0;
  width: 100%;
  font-size: 14px;
text-align: start;
}
.news-list .item a:hover .title{
  color: #00F;
}

@media screen and (max-width: 767px){
.news-list .item a{
  flex-wrap: wrap;
}
.news-list .item .date{
  min-width: 100px;
}
.news-list .item .title{
  margin-top: 10px;
}
}
.Pagination {
  display: flex;
  align-items: center;
  list-style: none;
  justify-content: center;
}
.Pagination-Item-Link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 45px;
  height: 45px;
  background: #fff;
  font-size: 20px;
  color: #4169e1;
  font-weight: bold;
  transition: all 0.15s linear;
}
.Pagination-Item-Link-Icon {
  width: 20px;
}
.Pagination-Item-Link.isActive {
  pointer-events: none;
  color: #111;
}
.Pagination-Item-Link:not(.isActive):hover {
  opacity: 0.5;
}
.price-container {
	margin: 0 auto 50px;
}
.price-container .inner .block h2 {
	font-size: 24px;
    text-align: start;
    line-height: 2;
    margin-bottom: 10px;
    border-bottom:  1px dotted #d8d8d8;
	text-indent: 60px;
	font-weight: 700;
}
.price-container .inner .block table {
	margin: 0 auto;
    width: 100%;
    max-width: 1048px;
	margin-bottom: 20px;
	border-spacing: 4px;
}
.price-container .inner .block table th {
	background: #e8eff9;;
    color: #333;
    font-size: 1.8rem;
    font-size: 18px;
    line-height: 1.5;
	padding: 10px;
	min-width: 100px;
	width: 33%;
}
.price-container .inner .block table td {
	font-size: 16px;
	background-color: #e8eff9; 
	padding: 10px;
}
@media(min-width:768px) {
	.price-container .inner .block table th {
		min-width: 190px;
}
}
.pr-text {
	text-align: start;
	margin-bottom: 20px;
}
.pr-text h3 {
	margin-bottom: 10px;
	border-bottom: 1px dotted #e0e0e0;
	font-size: 16px;
	color: #0B6BA0;
	font-weight: 400;
}
.pr-text p {
	font-size: 14px;
}
.shop {
}
.shop .inner {
	text-align: start;
}
.shop .inner h2 {
	padding: 0 0 20px;
    font-family: 'Barlow';
    font-weight: 800;
    font-size: 34px;
    line-height: 1.3;
	text-indent: 0;
	text-align: center
}
.shop .inner span {
	font-size: 16px;
	color: #05b2dc;
}
.shop .inner .block {
	display: block;
	box-sizing: border-box;
    padding: 15px 20px;
    border: 4px solid #e8eff9;
    font-size: 14px;
    line-height: 1.5;
}
@media(min-width:768px) {
	.shop .inner h2 {
		text-align: start;
		text-indent: 50px;
	}
	.shop .inner .block {
		display: flex;
	}
}
.txt {
	width: 50%;	
	margin-right: 10px;
	padding: 10px;
}
.txt p {
	margin-bottom: 10px;
	font-size: 16px;
}
.map {
	width: 100%;	
}
@media(min-width:768px) {
	.map {
		width: 65vw;
}
}
.accomo {
	padding-top: 50px;
	padding-bottom: 10px;
}
	.q-container .inner .block {
		box-sizing: border-box;
    padding: 15px 20px;
    border: 4px solid #e8eff9;
    font-size: 14px;
    line-height: 1.5;
	}
.acm {
	margin: 0 20px;
}
@media(min-width:768px) {
	.acm {
		margin: 0 4%;
	}
}
.main-container {
	box-sizing: border-box;
	border: solid 4px #e8eff9;
	 padding: 50px 0;
    font-size: 14px;
    line-height: 1.5;
	margin-bottom: 20px;
	max-width: 1048px;
	margin: 0 auto 20px;
}
	.acc .inner .block {
		box-sizing: border-box;
    padding: 15px 5px;
    font-size: 14px;
    line-height: 1.5;
	margin-bottom: 20px;
	}
@media (min-width:768px) {
	.acc .inner .black {
	padding: 15px 20px;
	}
}
	.head {
		background: #e8eff9;
    font-size: 13px;
    font-weight: bold;
	}
.acc .inner .block dl{
	display: flex;
	justify-content: space-between;
	font-size: 14px;
}
@media (min-width:768px) {
	.acc .inner .block dl{
		font-size: 16px;
	}
}
.acc .inner .block dt {
	width: 70%;
	text-indent: 20px;
}
.acc .inner .block dd {
	width: 30%;
	text-align: center;
}
.slide-items {
  width: 100%;
  display: flex;
  max-width: 80%;
  margin: auto;
}

.slide-items li {
  height: auto;
  margin-right: 10px;
  margin-left: 10px;
}

.slide-items img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slick-prev:before,
.slick-next:before {
  color: black;
}

.slick-dots {
  left: 50%;
  transform: translateX(-50%);
}
.news-text h2 {
	margin: 50px 0;
	text-align: center;
}
.footer-container {
	background:#003366;
	text-align: center;
	color: #fff;
}
.footer-logo {
	width:100px;
	margin: 0 auto;
	padding-top: 50px
}
.footer-nav {
	display: flex;
	justify-content: center;
	line-height: 2;
	margin-top: 50px;
	list-style: none;
	font-size: 14px;
}
.footer-nav a {
	color:#fff;
	text-decoration: none;
	font-size: 12px;
}
.footer-nav a:hover {
	opacity: .75;
}
.footer-nav li {
	margin: 0 10px;
}
.copyright {
	margin-top: 30px;
	padding-bottom: 50px;
	margin-bottom: 0;
}
@media(min-width:768px) {
	.footer-nav {
		display: flex;
		justify-content: center;
	}
	.footer-nav a {
		margin: 0 10px;
		font-size: 18px;
	}
}
