@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');

/* CSS Document */


/* BSL Header */
header.bsl {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  margin: 0 auto;
  width: 100%;
  margin-top:20px;
}
header.bsl.bsl_fixed {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,1);
  margin-top: 0;
  z-index: 100;
}
.bsl_header_box{
  position: relative;
  display: flex;
  margin: 0 auto;
  width: 100%;
  max-width: 950px;
}
header.bsl h1 {
  display: block;
  overflow: hidden;
  text-indent: 100%;
  display: block;
  position: relative;
  text-align: center;
}

header.bsl h1.logo a{
  width: 100px;
  height: 65px;
  display: block;
  background: url(../img/logo_top.png) no-repeat 0 0;
  -webkit-background-size: 60px 65px;
  -moz-background-size: 60px 65px;
  -ms-background-size: 60px 65px;
  -o-background-size: 60px 65px;
  background-size: 60px 65px;
}
header.bsl h1.logo a span{display: none;}

header.bsl nav.b {
  margin-left: auto;
  padding-top: 10px;
}

header.bsl nav.b ul {
  display: flex;
}
header.bsl nav.b ul li a {
  margin: 0 20px;
}

header.bsl nav.b li {
  list-style-type: none;
}
header.bsl nav.b a {
  color: #333;
  text-decoration: none;
  font-family: Century Gothic,CenturyGothic,Futura,Questrial,AppleGothic,sans-serif;
  font-size:1.3em;
  font-weight:bold;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
header.bsl nav.b a:hover {
  border-bottom: 3px #000 solid;
  text-decoration:none;
}

header.bsl nav.b a.act {
  border-bottom: 3px #000 solid;
}

.n_link{
   margin-top:-50px;
   padding-top:50px;
}

@media screen and (max-width: 750px){
  .hidden__sp{ display: none; }
  header.bsl h1.logo a span{display: none;}
  .bsl_header_box {
    display: block;
  }
  header.bsl nav.b{
    width: 100%;
  }
  header.bsl nav.b ul{
    display: block;
  }
  header.bsl nav.b ul li{
    width: 100%;
  }
  header.bsl nav.b ul li a{
    display: block;
    width: calc(100% - 40px);
    padding: 15px;
    border-bottom: 3px #fff solid;
  }
}

/* sp メニュー*/

.togglemenu {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px; }
  @media print, screen and (min-width: 768px) {
    .togglemenu {
      display: none; } }

.togglemenu-button {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  width: 100%;
  border: none;
  background: rgba(223, 5, 34, 1);
  padding: 8px; }

.togglemenu-button::before {
  content: "";
  display: block;
  padding-top: 100%; }

.togglemenu-button::after {
  content: "メニュー";
  left: 50%;
  margin-left: -2em;
  bottom: 0;
  color: #FFF;
  position: absolute;
  font-size: 75%; }

.togglemenu-bar {
  display: block;
  position: absolute;
  width: 41.66667%;
  height: 2px;
  background: #FFF;
  left: 50%;
  top: 40%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  transition: .3s all; }

.togglemenu-bar::before,
.togglemenu-bar::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #FFF;
  transition: .3s all; }

.togglemenu-bar::before {
  -moz-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px); }

.togglemenu-bar::after {
  -moz-transform: translateY(8px);
  -ms-transform: translateY(8px);
  -webkit-transform: translateY(8px);
  transform: translateY(8px); }

.togglemenu-button__open .togglemenu-bar {
  background: rgba(255, 255, 255, 0); }
.togglemenu-button__open .togglemenu-bar::before {
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }
.togglemenu-button__open .togglemenu-bar::after {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }


/* FV赤ストライプ */
.red_str{
  width:100%;
  height:304px;
  background-color: rgba(255, 255, 255, 1) ;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 18px, rgba(223, 5, 34, 1) 18px, rgba(223, 5, 34, 1) 36px );
  transform-origin: left top;
  transform: scale(0, 1);
  transition: transform 1s;
}
.red_str.open_effect{
  width:100%;
  height:304px;
  transform-origin: right top;
  transform: scale(1, 1);
  transition: transform 1s;
}


.main_copy{
  display: none;
}

.op_hiden{
  display: none;
}

a.btn_scroll {
    width:200px;
	height:40px;
    font-family: Century Gothic,CenturyGothic,Futura,Questrial,AppleGothic,sans-serif;
    font-size:1.2em;
    font-weight:bold;
    text-decoration:none;
    display:block;
    text-align:center;
	line-height:40px;
    color:#707070;
    background-color:#e2e2e2;
    border-radius:20px;
}
a.btn_scroll:after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  margin-left:10px;
  height:50px;
}
a.btn_scroll:hover {
	opacity:0.5;
	transition-duration: .2s;
}
  
.container_a, .container_b {
    width: 100%;
    max-width: 950px;
    margin: auto;
}
.container_a.op_bg{
  min-height: 600px;
}

.center{
	margin:0 auto;
	text-align:center;
}
img.auto{
	width:auto;
}
/* .noto300{
	font-family: 'Noto Sans JP', "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", "Meiryo", sans-serif;
	font-weight:300;
}*/
.noto400{
	font-family: 'Noto Sans JP', "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", "Meiryo", sans-serif;
	font-weight:400;
}
.noto500{
	font-family: 'Noto Sans JP', "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", "Meiryo", sans-serif;
	font-weight:500;
}
.noto700{
	font-family: 'Noto Sans JP', "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", "Meiryo", sans-serif;
	font-weight:700;
}

.container_b .state{
	line-height:2em;
	text-align: center;
}
.container_b .state p {
	font-size:1em;
	display: inline-block;
	text-align: left;
	padding:24px;
	margin-bottom:3rem;
	letter-spacing: 0.075em;
	/*line-height:2.4em;*/
}

.container_b article {
	margin:0 50px;
}
h2.ti_bsl{
	font-size:1.4em;
	font-weight:bold;
    font-family: Century Gothic,CenturyGothic,Futura,Questrial,AppleGothic,sans-serif;
	border-bottom:8px solid #DF0522;
	margin:50px 0 20px 0;
	line-height: 24px;
}
h3.ti_bsl3{
	font-size:1.6em;
	font-weight:500;
	color:#DF0522;
	margin:20px 0;
}
h4.ti_bsl4{
	font-size:1.2em;
	font-weight:700;
	color:#DF0522;
	margin:20px 0 15px 0;
}
.txt_project{
	font-size:0.9em;
}
img.st_logo{
	width:auto;
	padding-right;50px;;
}

/* TOPICS */
.list {
  display: flex;
  padding: 0px;
}
.list li {
  list-style: none;
  width: 250px;
  margin-right: 50px;
  padding: 0px;
}
.list li:last-child {
  margin-right: 0;
}
.list li.card {
  color: #000;
  padding: 0;
}

.list li.card .thum {
  height: 200px;
  background-color: white;
  border:1px solid #DF0522;
  overflow: hidden;
}

.list li.card .ttl {
  text-align:center;
  font-weight: 500;
}

.list li.card a img {
  transition: .3s ease all;
  overflow: hidden;
}

.list li.card a .ttl {
  color: #000 !important;
}
.list li.card a:hover img {
  opacity: .6;
  transform: scale(1.06);
}
.list li.card a:hover .ttl{
  color: #DF0522 !important;
  text-decoration: underline;
}

p.arch {
  margin: -57px 0 10px;
  font-size: 100%;
  text-align: right;
  margin-bottom:57px;
}
p.arch a{
  line-height: 1;
  padding:5px 25px 5px 20px;
  background-color:#DF0522;
  color:#FFF;
  font-weight:bold;
  font-family: Century Gothic,CenturyGothic,Futura,Questrial,AppleGothic,sans-serif;
  position: relative;
}
p.arch a:after{
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 10px;
  right: 0;
  margin: auto;
  box-sizing: border-box;
  border: 5px solid transparent;
  border-left: 8px solid #fff; 
}
p.arch a:hover{
  opacity:0.5;
  transition-duration: .2s;
  text-decoration:none;
}
.l2_mt {
  margin-top: 30px;
}
@media screen and (max-width: 750px){
  .l2_mt {
    margin-top: -40px;
  }
}

/* KEIYO BAYSIDE LINE PROJECT */
.pj {
  display: flex;
  padding: 0px;
}
.pj .red_str2{
  background-size: auto auto;
  background-color: rgba(255, 255, 255, 1);
  background-image: repeating-linear-gradient(0deg, transparent, transparent 18px, rgba(223, 5, 34, 1) 18px, rgba(223, 5, 34, 1) 36px );
  width:110px;
  height:486px;
}
.pj .pot {
  display: flex;
  width:650px;
  margin-left:60px;
  justify-content: space-around;
  flex-wrap:wrap;
}
.pj .pot figure{
  display: block;
  margin-bottom:20px;
}
.pj .pot figure a:hover{
  opacity:0.5;
  transition: .3s ease all;
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}
.pj_box{
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
}
.hide_box{
  display: none;
}

.pj_box_bg{
  background: rgba(0, 0, 0, 0.5);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.pj_area{
  background: #fff;
  border: 1px solid rgba(223, 5, 34, 1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 60%;
  height: 80%;
  min-width: 680px;
  max-width: 680px;
  max-height: 740px;
}

@media screen and (max-width: 750px){
  .pj_area{
    width: 90%;
    height: 80%;
    min-width: 100px;
    left: 50%;
    padding-right: 10px;
  }
}
.pj_area iframe{
  width: 100%;
  height: 90%;
}
.pj_box .pj_close {
  cursor: pointer;
  position: fixed;
  width: 58px;
  height: 58px;
  border: none;
  background: rgba(0, 0, 0, 0.25);
  padding: 8px;
  border: 1px solid #fff;
  border-radius: 50%;
  right: 10%;
  top: 10%;
}
@media screen and (max-width: 750px){
  .pj_box .pj_close {
    right: 10px;
    top: 10px;
  }
}
.pj_box .mordal_clos::before {
    content: "";
    display: block;
    padding-top: 100%;
}
.pj_box .pj_close i{
  display: block;
  position: absolute;
  width: 41.66667%;
  height: 2px;
  left: 50%;
  top: 45%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.pj_box .pj_close i::before,
.pj_box .pj_close i::after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #FFF;
    transition: .3s all;
}
.pj_box .pj_close i::before {
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.pj_box .pj_close i::after {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}


/* LINKS */
.topSnsArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.topSnsBnr {
     width: 50%; 
}

.topSnsBnr-item {
    width:48%;
     margin-bottom: 1rem; 
}
.topSnsBnr-item a:hover{
  opacity:0.5;
  transition: .3s ease all;
}


.bsl_red {
color:#DA3B3D;
}


@media (max-width: 750px) {

.topSnsBnr {
     width:100%;
}
.topSnsBnr-item {
    width:100%;
}
}

/* Modal Window */

.container_m {
width: 100%;
max-width: 620px;
margin: 0;
}
.pjp {
  display: flex;
  padding: 0px;
}
.pjp .logoimg {
  width:140px;
  display: block;
}
.pjp .logoimg img {
  margin:35px;
}

.pjp .red_str2{
  background-size: auto auto;
  background-color: rgba(255, 255, 255, 1);
  background-image: repeating-linear-gradient(0deg, transparent, transparent 18px, rgba(223, 5, 34, 1) 18px, rgba(223, 5, 34, 1) 36px );
  width:110px;
  height:486px;
}
.pjp .pot {
  display: flex;
  margin-left:60px;
  margin-top:35px;
  flex-wrap:wrap;
}
.pjp .pot p{
  font-size:1.14em;
}
.pjp .pot p.note{
  font-size:0.8em;
}
.pjp .pot h4 {
  font-size:1.3em;
  border-bottom:1px solid #DF0522;
  font-family: Century Gothic,CenturyGothic,Futura,Questrial,AppleGothic,sans-serif;
  margin:30px 0 5px 0;
  line-height: 1em;
  color:#DA3B3D;
}
.pjp .pot li {
    margin: 0.2em 0;
    position: relative;
	padding-left:1em;
	text-indent:-1em;
}
.pjp .pot figure{
  display: block;
  margin-bottom:20px;
}
.pjp .pot figure a:hover{
  opacity:0.5;
}
.pjp sup {
  font-size: 70%;
  vertical-align: top;
  position: relative;
  top: -0.1em;
}

@media (max-width: 750px) {

.red_str{
  height:264px;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 16px, rgba(223, 5, 34, 1) 16px, rgba(223, 5, 34, 1) 32px );
}
.red_str.open_effect{
  height:264px;
}
.container_b {
    width: 92% !important;
	margin:0 auto;
}
img.auto{
	width:auto;
}

img.st_logo{
	padding-right;0;
	width:250px;
}
.container_b .state{
	line-height:1.8em;
}
.container_b .state p {
	font-size:0.92em;
	padding:20px;
	letter-spacing: 0em;
}
h2.ti_bsl{
	font-size:1.4em;
	border-bottom:5px solid #DF0522;
	margin:40px 0 20px 0;
	line-height: 24px;
}
h3.ti_bsl3{
	font-size:1.4em;
}
h4.ti_bsl4{
	font-size:1.1em;
}

.list {
  flex-direction:column;
}
.list li {
  margin-right: 0;
}
.list li.card {
  margin:0 auto;
  margin-bottom: 30px;
}
.list li.card .ttl {
	font-size:0.9em;
}
.list li.card2 {
  margin-bottom: -30px;
}

p.arch {
  margin: -52px 0 10px;
  font-size: 92%;
  margin-bottom:52px;
}
p.arch a{
  line-height: 1;
  padding:5px 20px 5px 10px;
}

.container_b article {
	margin:0 20px;
}
.pj {
}
.pj .red_str2{
  background-image: repeating-linear-gradient(0deg, transparent, transparent 18px, rgba(223, 5, 34, 1) 16px, rgba(223, 5, 34, 1) 32px );
  width:80px;
  height:896px;
  margin-top:5px;
}
.pj .pot {
  margin-left:30px;
  width:100%;
}
.pj .pot figure{
  display: block;
  margin-bottom:20px;
}
.pj .pot figure a:hover{
  opacity:0.5;
}
}

@media (max-width: 640px) {
.pjp .logoimg img{
  margin:20px 5px;
}
.pjp .logoimg .p_ico{
	width:65px;
}
.pjp .red_str2{
  width:40px;
}
.pjp .pot {
  margin:20px 15px 0 10px;  
}
.pjp .pot p {
    font-size: 1.1em;
}
}

/* TOPICS ARCHIVES */

.tps {
  display: flex;
  padding: 0px;
}
.tps .red_str2{
  background-size: auto auto;
  background-color: rgba(255, 255, 255, 1);
  background-image: repeating-linear-gradient(180deg, rgba(223, 5, 34, 1), rgba(223, 5, 34, 1) 18px,transparent  18px, transparent 36px );
  width:100px;
}
.tps .topics {
  display: flex;
  width:830px;
  margin-left:40px;
  flex-wrap:wrap;
}
.tps .topics .list {
  display: flex;
  flex-wrap:wrap;
}
.tps .topics .list li {
  margin-bottom:20px;
  margin-right: 20px !important;
}

.btn_bsl {
  font-size: 100%;
  text-align: center;
  background-color:#DF0522;
  margin:50px 0;
  width:400px;
  height:50px;
  display: block;
}
.btn_bsl a{
  line-height: 50px;
  color:#FFF;
  position: relative;
}
.btn_bsl a:after{
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 10px;
  right: -20px;
  margin: auto;
  box-sizing: border-box;
  border: 5px solid transparent;
  border-left: 8px solid #fff; 
}
.btn_bsl a:hover{
  text-decoration:none;
}
.btn_bsl:hover{
  opacity:0.5;
  transition-duration: .2s;
}

@media (max-width: 640px) {
.btn_bsl {
  width:250px;
}
.tps .red_str2{
  background-image: repeating-linear-gradient(180deg, rgba(223, 5, 34, 1), rgba(223, 5, 34, 1) 18px,transparent  18px, transparent 36px );
}
.btn_bsl {
  margin:0 0 50px 0;
}
}