/* CSS Document */
.opa{
  width: 0;
  height: 0;
  opacity: 0;
  display: block;
  overflow: hidden;
}
/*コンテンツ*/
div.marine_wrap{
  box-sizing: border-box;
}
body[wc-view-type="sp"] div.marine_wrap{
  padding: var(--headerHeight) 1.5rem !important;
}
body[wc-view-type="tb"] div.marine_wrap{
  padding: var(--headerHeight) 0;
}
body[wc-view-type="tb-l"] div.marine_wrap{
  padding: var(--headerHeight) 2rem !important;
}
body[wc-view-type="pc"] div.marine_wrap{
  padding: var(--headerHeight) calc((100vw - 1100px) / 2);
}
div.marine_wrap > article{
  display: flex;
  margin-bottom: var(--headerHeight);
}
body[wc-view-type="sp"] div.marine_wrap > article{
  flex-direction: column;
}
body:not([wc-view-type="sp"]) div.marine_wrap > article:nth-of-type(even){
  flex-direction: row-reverse;
}
div.marine_wrap > article div.marine_text{
  box-sizing: border-box;
}
body:not([wc-view-type="sp"]) div.marine_wrap > article div.marine_text{
  width: 50%;
}
body:not([wc-view-type="sp"]) div.marine_wrap > article:nth-of-type(odd) div.marine_text{
  padding: 1.5rem 2rem 1.5rem 0;
}
body:not([wc-view-type="sp"]) div.marine_wrap > article:nth-of-type(even) div.marine_text{
  padding: 1.5rem 0 1.5rem 2rem;
}
div.marine_wrap > article div.marine_text > h1,
div.marine_wrap > article div.marine_text > h1 span.title_hosoku{
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--defaultcolor);
}
body[wc-view-type="sp"] div.marine_wrap > article div.marine_text > h1{
  margin-bottom: 0.75rem;
}
body[wc-view-type="tb"] div.marine_wrap > article div.marine_text > h1 span.title_hosoku,
body[wc-view-type="sp"] div.marine_wrap > article div.marine_text > h1 span.title_hosoku{
  display: block;
}
div.marine_wrap > article figure{
}
body:not([wc-view-type="sp"]) div.marine_wrap > article figure{
  width: 50%;
}
div.marine_wrap > article figure picture{
  width: 100%;
  height: 100%;
  display: block;
}
div.marine_wrap > article figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
dl.marine_reserve{
  background-color: #fff;
  box-sizing: border-box;
}
body:not([wc-view-type="sp"]) dl.marine_reserve{
  margin: 0 auto;
}
body[wc-view-type="tb"] dl.marine_reserve,
body[wc-view-type="tb-l"] dl.marine_reserve{
  max-width: 680px;
}
body[wc-view-type="pc"] dl.marine_reserve{
  width: 750px;
  padding: 1.5rem;
}
dl.marine_reserve > dt{
  position: relative;
  z-index: 1;
  padding: 0 0 1rem 0;
  text-align: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--defaultcolor);
}
body:not([wc-view-type="pc"]) dl.marine_reserve > dt{
  padding-top: 1rem;
}
dl.marine_reserve > dt::after{
  content: "";
  background: rgb(255,255,255);
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(51,153,255,1) 50%, rgba(255,255,255,1) 100%); 
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  z-index: 2;
  display: block;
}
dl.marine_reserve > dd{
  padding: 1rem;
  box-sizing: border-box;
}
dl.marine_reserve > dd > p{
  margin-bottom: 1rem;
  box-sizing: border-box;
}
body:not([wc-view-type="sp"]) dl.marine_reserve > dd > p{
  text-align: center;
}
body[wc-view-type="pc"] dl.marine_reserve > dd > p{
  padding: 0 1rem;
}
body[wc-view-type="pc"] dl.marine_reserve > dd > p{
}
dl.marine_reserve > dd div.line_btn{
  display: table;
  margin: 0 auto;
}
dl.marine_reserve > dd div.line_btn a{
  padding: 0 calc(var(--headerBtnSize) + 1rem );
  color: #fff;
  background-color: #06c755;
  height: calc(var(--headerBtnSize) * 1.2);
  display: flex;
  position: relative;
  z-index: 1;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 7.5px;
}
dl.marine_reserve > dd div.line_btn a::before,
dl.marine_reserve > dd div.line_btn a::after{
  content: "";
  position: absolute;
  z-index: 1;
  background-color: #fff;
  display: block;
}
dl.marine_reserve > dd div.line_btn a::before{
  -webkit-mask-image: url("/img/line.svg");
  mask-image: url("/img/line.svg");
  left: 8px;
  width: var(--headerBtnSize);
  height: var(--headerBtnSize);
}
dl.marine_reserve > dd div.line_btn a::after{
  right: 8px;
  -webkit-mask-image: var(--wciconsrc);
  mask-image: var(--wciconsrc);
  width: calc(var(--headerBtnSize) - 6px);
  height: calc(var(--headerBtnSize) - 6px);
}