@charset "utf-8";

main section:nth-child(odd) {
  background-color: #fff;
}

#post.content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 15px;
}

/* header */
header {
  position: static;
  width: 100%;
  height: auto;
  background-color: #fff;
}

/*breadcrumb*/
#breadcrumb .content {
  padding: 20px 15px;
}
#breadcrumb ul {
  display: flex;
}
#breadcrumb ul li {
  margin-right: 15px;
  font-size: 13px;
}
#breadcrumb ul li:last-child {
  margin-right: 0;
}
#breadcrumb ul li a {
  color: #00abeb;
  text-decoration: underline;
}
#breadcrumb li:not(:first-child):before {
  content: '>';
  margin-right: 15px;
}

@media screen and (max-width: 810px) {
  #breadcrumb ul {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 580px) {
  #breadcrumb ul li {
    line-height: 1.8;
  }
}

#news-content {
  background-color: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 1110px) {
  #news-content.content {
    margin: 0 15px;
  }
}

#content-inner {
  max-width: 900px;
  margin: 0 auto;
}

/*news-list*/
#news_cat-list {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
}
#news_cat-list li {
  margin-right: 10px;
}
#news_cat-list li a {
  padding: 6px 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  background-color: #eeefef;
  border-radius: 5px;
}
#news_cat-list li a.current {
  color: #fff;
  background-color: #00abeb;
}

.news_post {
  padding: 20px 0;
  border-bottom: 1px solid #E7EAED;
}
.news_post a {
  display: flex;
  align-items: center;
  color: #000;
  transition: all 0.3s;
}
.news_post a:hover {
  opacity: 0.5;
}
.news_info {
  display: flex;
  align-items: center;
  width: 210px;
}
.news_date {
  margin-right: 12px;
  font-size: 1.5rem;
  font-weight: 500;
}
.news_cat {
  margin-right: 12px;
}
.news_cat span {
  display: inline-block;
  padding: 5px 10px;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  background-color: #00abeb;
  border-radius: 4px;
}
.news_important span {
  background-color: #f00;
}
@media screen and (max-width: 767px) {
  .news_post a {
    display: block;
  }
  .news_title {
    margin-top: 5px;
  }
}

#sub-top .news-header {
  display: flex;
	justify-content: center;
	align-items: center;
  font-size: 3.4rem;
}
#sub-top .news-header::before,
#sub-top .news-header::after {
	content: '';
	width: 70px;
	height: 5px;
	background-color: #00abeb;
}
#sub-top .news-header::before {
	margin-right: 20px;
}
#sub-top .news-header::after {
	margin-left: 20px;
}
@media screen and (max-width: 480px) {
  #sub-top .news-header {
    font-size: 2.6rem;
  }
  #sub-top .news-header::before,
  #sub-top .news-header::after {
	  width: 50px;
	  height: 4px;
  }
}

/*post*/
#post-title {
  margin-top: 20px;
}
#post-title h1 {
  margin-top: 10px;
  padding-left: 10px;
  font-size: 2.8rem;
  font-weight: 600;
  background: transparent;
  border-left: solid 5px #47c3f6;
  line-height: 1.4;
}
#post-content {
  margin-top: 20px;
  padding: 30px 20px;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
#post-content .description {
  margin: 20px 0;
}
.description ol li p:first-child {
  font-size: 18px;
}

.link-btn {
  margin-top: 0;
  text-align: center;
}

@media screen and (max-width: 480px) {
  #post h1 {
    font-size: 2.4rem;
  }
  #post-content {
    padding: 30px 0;
  }
}

/*list*/
#post ul li {
  padding-left: 1em;
  text-indent: -1em;
  padding-top: 0.8rem;
}
#post ul li::before {
  content: '';
  width: 0.5em;
  height: 0.5em;
  display: inline-block;
  background: #fff;
  border: 1.5px solid #47c3f6;
  border-radius: 50%;
  margin: 0.1em 0.4em 0.1em 0.1em;
}

#post ol {
  counter-reset: num;
}
#post ol li {
  position: relative;
  padding-left: 2em;
  text-indent: 0;
  margin-top: 1rem;
}
#post ol li::before {
  position: absolute;
  counter-increment: num;
  content: counter(num);
  display:inline-block;
  background: #47c3f6;
  color: #fff;
  font-weight: 600;
  border-radius: 50%;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
}

/* ハワイアンゲストショー */
.guest {
  display: flex;
  justify-content: space-between;
}
.guest img {
  margin-left: 40px;
  width: 30%;
}
@media screen and (max-width: 810px) {
  .guest {
    display: block;
  }
  .guest img {
    margin-top: 20px;
    margin-left: 0;
    width: auto;
  }
}