/* ===========================================
mv
=========================================== */
/* basic style */
.mv {
  z-index: 2;
  position: relative;
  width: 100%;
  background-image: url(../images/mv.jpg);
  background-repeat: no-repeat;
}

.mv_ttl {
  background-repeat: no-repeat;
}

/* pc */
html:not(.sp) .mv {
  box-sizing: content-box;
  width: 100%;
  height: 540px;
  background-position: left bottom;
  background-size: cover;
}

html:not(.sp) .mv_ttl {
  -webkit-transform: translateY(400px);
  position: relative;
  width: 1100px;
  height: 0;
  margin: 0 auto;
  padding-top: 240px;
  overflow: hidden;
          transform: translateY(400px);
  background-image: url(../images/mv_ttl.png);
  text-align: center;
}

/* sp */
html.sp .mv {
  position: relative;
  width: 100%;
  height: 0;
  padding: 100% 16px 0 16px;
  background-position: center;
  background-size: cover;
}

html.sp .mv_ttl {
  -webkit-transform: translateY(-40%);
  position: relative;
  width: 100%;
  height: 0;
  margin: 0 auto;
  padding-top: 65%;
  overflow: hidden;
          transform: translateY(-40%);
  background-image: url(../images/mv_ttl_sp.png);
  background-size: contain;
  text-align: center;
}

/* ===========================================
photobox
=========================================== */
/**************************************************
css-animate
**************************************************/
.css-animate {
  -webkit-animation-duration: 0.75s;
  -webkit-animation-fill-mode: both;
          animation-duration: 0.75s;
          animation-fill-mode: both;
  opacity: 0;
}

@-webkit-keyframes fadeInUp {
  0% {
    -webkit-transform: translateY(64px);
            transform: translateY(64px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    -webkit-transform: translateY(64px);
            transform: translateY(64px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

.css-animate--fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

@-webkit-keyframes scaleIn {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes scaleIn {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

.css-animate--scaleIn {
  -webkit-animation-name: scaleIn;
          animation-name: scaleIn;
}

.photobox_block {
  position: relative;
  width: 100%;
  background-color: #f5f5f5;
}

html:not(.sp) .photobox_block {
  padding-bottom: 100px;
  border-top: solid 490px #00205b;
}

html.sp .photobox_block {
  padding-bottom: 50px;
  border-top: solid 245px #00205b;
}
@media screen and (orientation: landscape) {
  /* 横向きの場合のスタイル */
  html.sp .photobox_block {
    border-top: solid 320px #00205b;
  }
}

.photobox_block_inner {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
  width: 1116px;
  margin-right: auto;
  margin-left: auto;
}

html:not(.sp) .photobox_block_inner {
  margin-top: -290px;
}

html.sp .photobox_block_inner {
  margin-top: -126px;
}


.photobox_block_inner.is-hide {
  display: none;
}

.photobox_block_inner.is-show {
  display: flex;
}

.photobox_block_inner:last-of-type {
  padding: 0 0 90px 0;
}

.photobox_block_inner .photobox {
  position: relative;
  background-color: #fff;
}

/* pc */
html:not(.sp):not(.tablet) .photobox_block_inner .photobox {
  margin: 0 8px 30px 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease-in-out;
}

html:not(.sp):not(.tablet) .photobox_block_inner .photobox:hover {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.125);
}

/* tablet */
.tablet .photobox_block_inner .photobox {
  display: flex;
  flex-direction: column;
  margin: 0 0 30px 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}

.photobox_block_inner .photobox a {
  color: #1a1a1a;
  text-decoration: none;
}

.photobox_block_inner .photobox .photo img {
  width: 100%;
  font-size: 0;
  line-height: 1;
}

.photobox_block_inner .photobox .info {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 20px 25px;
}

html.sp .photobox_block_inner .photobox .info {
  padding: 13px 17px;
}

.photobox_block_inner .photobox .info .ttl {
  font-size: 20px;
  font-weight: bold;
}

.photobox_block_inner .photobox .info .text {
  color: #666666;
  font-size: 14px;
}

.photobox_block_inner .photobox.photobox-col1 {
	flex-basis: 1100px;
	margin: 0 8px;
}

.photobox_block_inner .photobox.photobox-col2 {
  flex-basis: 50%;
  max-width: 541px;
}

.photobox_block_inner .photobox.photobox-col3 {
  flex-basis: calc((1116px -  48px) / 3);
  max-width: 355px;
}

html:not(.sp):not(.tablet) .photobox_block_inner .photobox.photobox-col1 .photo {
  width: 1100px;
  height: 420px;
  overflow: hidden;
}

html:not(.sp):not(.tablet) .photobox_block_inner .photobox.photobox-col2 .photo {
  width: 541px;
  height: 329px;
  overflow: hidden;
}

html:not(.sp):not(.tablet) .photobox_block_inner .photobox.photobox-col3 .photo {
  width: 100%;
  overflow: hidden;
}

html:not(.sp):not(.tablet) .photobox_block_inner .photobox.photobox-col1 .photo img,
html:not(.sp):not(.tablet) .photobox_block_inner .photobox.photobox-col2 .photo img,
html:not(.sp):not(.tablet) .photobox_block_inner .photobox.photobox-col3 .photo img {
  transition: 0.5s;
}

html:not(.sp):not(.tablet) .photobox_block_inner .photobox.photobox-col1 .photo img:hover,
html:not(.sp):not(.tablet) .photobox_block_inner .photobox.photobox-col2 .photo img:hover,
html:not(.sp):not(.tablet) .photobox_block_inner .photobox.photobox-col3 .photo img:hover {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}

.photobox_block .photoBoxmoreBtn {
  margin-top: 0;
  padding: 60px 0 90px;
  color: #027fea;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

html:not(.sp):not(.tablet) .photobox_block .photoBoxmoreBtn {
  display: table;
  margin: 0 auto;
}

html:not(.sp):not(.tablet) .photobox_block .photoBoxmoreBtn:hover span {
  border-bottom: solid 1px #027fea;
}

html.sp .photobox_block_inner .photobox {
  display: flex;
  flex-direction: column;
  margin: 0 0 1.5rem 0;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.125);
}

html.sp .photobox_block_inner {
  width: 100%;
}

html.sp .photobox_block_inner:last-of-type {
  padding: 0 0 35px 0;
}

html.sp .photobox_block_inner .photobox.photobox-col1,
html.sp .photobox_block_inner .photobox.photobox-col2,
html.sp .photobox_block_inner .photobox.photobox-col3 {
  width: 100%;
  max-width: 100%;
  margin-right: 1.5rem;
  margin-left: 1.5rem;
}

html.sp .photobox_block .photoBoxmoreBtn {
  margin-top: 0;
  padding: 30px 0 50px;
}

.tablet .photobox_block_inner .photobox.photobox-col1.cont,
.tablet .photobox_block_inner .photobox.photobox-col2,
.tablet .photobox_block_inner .photobox.photobox-col3 {
  width: 49%;
  max-width: 49%;
}

/* ===========================================
news
=========================================== */
/* news wrap style
---------------------------- */
.block.block_news {
  width: 1100px;
  margin: 0 auto;
}

.block_news_inner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1100px;
}

/* pc only style */
html:not(.sp) .block.block_news {
  padding-bottom: 0;
}

/* sp only style */
html.sp .block.block_news {
  width: 100%;
}

/* news_block
---------------------------- */
.news_block {
  background: #fff;
}

.news_block_inner {
  margin-right: auto;
  margin-left: auto;
}

html:not(.sp) .news_block_inner {
  width: 1100px;
  padding: 100px 90px;
}

.news_block .news_block_title {
  margin-bottom: 70px;
  font-size: 2.8rem;
  line-height: 1;
  text-align: center;
}

.news_block .news_block_list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  margin-bottom: 32px;
}

.news_block .news_block_list_category {
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 84px;
  margin-top: 3.5px;
  background-color: #e6e6e6;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
  white-space: nowrap;
}

.news_block .news_block_list_data {
  flex: 0 0 auto;
  margin-top: 3.5px;
  padding: 0 30px 0 0;
  color: #808080;
  font-size: 1.4rem;
  line-height: 18px;
}

.news_block .news_block_list_text a {
  color: inherit;
  text-decoration: none;
}

.news_block_list_more {
  margin-top: 80px;
  text-align: center;
}

html.sp .news_block_list_more {
  margin-top: 40px;
}

html:not(.sp) .news_block .news_block_list_text a:hover {
  text-decoration: underline;
}

/* sp only style */
html.sp .news_block {
  width: 100%;
  margin-bottom: 40px;
  padding: 40px 16px;
}

html.sp .news_block .news_block_list {
  flex-wrap: wrap;
  margin-bottom: 16px;
}

html.sp .news_block .news_block_title {
  margin-bottom: 40px;
  font-size: 2.3rem;
  text-align: center;
}

html.sp .news_block .news_block_list_category {
  width: 80px;
  margin-top: 0;
  font-size: 10px;
}

html.sp .news_block .news_block_list_data {
  margin-top: 0;
  padding: 0 10px 0 0;
  font-size: 1.2rem;
}

html.sp .news_block .news_block_list_text {
  width: 100%;
  padding: 11px 0;
}

/* seastar_alliance */
.seastar_alliance {
  width: 1100px;
  margin: 50px auto 0;
  padding: 28px 36px;
  border: solid 1px #e6e6e6;
  background-color: #ffffff;
  color: #666666;
  font-size: 14px;
}

.seastar_alliance .notation {
  margin-top: 12px;
  font-size: 12px;
}

.seastar_alliance a {
  color: #1a1a1a;
  text-decoration: none;
}

html:not(.sp) .seastar_alliance .logo {
  display: table-cell;
  width: 101px;
}

html:not(.sp) .seastar_alliance .logo img {
  margin-right: 30px;
}

html:not(.sp) .seastar_alliance .textbox {
  display: table-cell;
  padding-left: 32px;
  vertical-align: top;
}

html.sp .seastar_alliance {
  width: calc(100% - 30px);
  padding: 14px 18px;
}

html.sp .seastar_alliance .logo {
  display: block;
  margin: 14px auto;
  text-align: center;
}

html.sp .seastar_alliance .textbox {
  display: block;
}
