@charset "UTF-8";

/**
 * SP表示
**/
.sp_disp { display: none !important; }
@media only screen and (max-width: 900px) {
  .pc_disp { display: none !important; }
  .sp_disp { display: block !important; }
}



/**
 * fade in
**/
.fadein {
	opacity : 0;
	transform : translate(0, 50px);
	transition: all 0.5s;
}
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}



/**
 * wrapper
**/
#wrapper {
  overflow: hidden;
}


/**
 * header
**/
#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10002;
  width: 100%;
}
#header h1 {
  width: 208px;
  position: absolute;
  top: 18px;
  left: 84px;
  z-index: 1;
}
#header.scroll h1 {
  background: url("../images/logo-scroll.png") no-repeat center center;
  background-size: 100% auto;
}
#header.scroll h1 img {
  opacity: 0;
}
#header .openbtn {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  width: 72px;
  height: 72px;
  transition: all .4s;
  box-sizing: border-box;
  border-radius: 0;
  z-index: 100;
}
#header .openbtn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 21px;
  height: 1px;
  border-radius: 0px;
  background: #fff;
  width: 30px;
}
#header .openbtn:hover{
  background: #231815;
}
#header .openbtn:hover span{
  background: #ffffff;
}
#header.scroll .openbtn{
  background: #231815;
}
#header.scroll .openbtn span{
  background: #ffffff;
}
#header .openbtn span:nth-of-type(1) {
  top: 22px;
}
#header .openbtn span:nth-of-type(2) {
  top: 34px;
}
#header .openbtn span:nth-of-type(3) {
  top: 46px;
}
#header .openbtn.active span:nth-of-type(1) {
  top: 29px;
  transform: translateY(6px) rotate(-45deg);
}
#header .openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
#header .openbtn.active span:nth-of-type(3){
  top: 41px;
  transform: translateY(-6px) rotate(45deg);
}
@media only screen and (max-width: 900px) {
  #header h1 {
    width: 150px;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 1;
  }
  
  
  .sub_menu {
    width: 100%;
    background: #ffffff;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
  .sub_menu ul {
    margin: 0 0 0 50px;
    width: calc(  100% - 50px );
    height: 50px;
    display: table;
  }
  .sub_menu ul li {
    margin: 0 0 0 0;
    height: 50px;
    display: table-cell;
  }
  .sub_menu ul li a {
    padding: 10px 0 0 0;
    height: 50px;
    line-height: 1.4em;
    font-size: 13px;
    color: #231815;
    box-sizing: border-box;
    display: block;
  }
  .sub_menu ul li a:after {
    margin: 6px auto 0;
    width: 10px;
    height: 5px;
    line-height: 5px;
    content: "";
    background: url("../images/arrow_01.png") no-repeat center center;
    background-size: cover;
    display: block;
  }
  #header .openbtn {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background: #fff;
    transition: all .4s;
    box-sizing: border-box;
    border-radius: 0;
    z-index: 100;
  }
  #header .openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 15px;
    height: 1px;
    border-radius: 0px;
    background: #000;
    width: 20px;
  }
  #header .openbtn:hover {
    background: #fff;
  }
  #header .openbtn:hover span{
    background: #000;
  }
  #header.scroll .openbtn {
    background: #fff;
  }
  #header.scroll .openbtn span{
    background: #000;
  }
  
  #header .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  #header .openbtn span:nth-of-type(2) {
    top: 25px;
  }
  #header .openbtn span:nth-of-type(3) {
    top: 35px;
  }
  #header .openbtn.active {
    background: #000000;
  }
  #header .openbtn.active span:nth-of-type(1) {
    top: 19px;
    background: #fff;
    transform: translateY(6px) rotate(-45deg);
  }
  #header .openbtn.active span:nth-of-type(2) {
    opacity: 0;
    background: #fff;
  }
  #header .openbtn.active span:nth-of-type(3){
    top: 31px;
    background: #fff;
    transform: translateY(-6px) rotate(45deg);
  }

  
}

/**
 * navi
**/
#navi_overlay {
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
#navi {
  width: 310px;
  background: rgba(255,255,255,0.9);
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  z-index: 100;
}
#navi ul {
  margin: 0 auto;
  width: 288px;
}
#navi ul li {
  border-top: 1px solid rgba(0,0,0,0.75);
}
#navi ul li:nth-of-type(1) {
  border-top: none;
}
#navi ul li a {
  padding: 20px 0;
  display: block;
  text-decoration: none;
  line-height: 1.2em;
  font-size: 16px;
  color: #231815;
	transition: all 0.5s;
}
@media only screen and (max-width: 900px) {
  #navi {
    width: 260px;
    background: rgba(255,255,255,0.9);
    display: none;
    position: fixed;
    top: auto;
    bottom: 50px;
    left: 0;
    z-index: 100;
  }
  #navi ul {
    margin: 0 auto;
    width: 242px;
  }
  #navi ul li {
    border-top: 1px solid rgba(0,0,0,0.75);
  }
  #navi ul li:nth-of-type(1) {
    border-top: none;
  }
  #navi ul li a {
    padding: 15px 0;
    display: block;
    text-decoration: none;
    line-height: 1.2em;
    font-size: 15px;
    color: #231815;
  }

}


/**
 * page_head
**/
.page_head {
  margin: 0 0 73px 0;
  width: 100%;
  height: 386px;
  color: #ffffff;
  position: relative;
}
.page_head h2 {
  margin: 0 0 15px 0;
  line-height: 1.2em;
  font-size: 21px;
  font-weight: normal;
  letter-spacing: 5px;
}
.page_head .intro {
  margin: 0 0 0 0;
  line-height: 2.1em;
  font-size: 14px;
}
@media only screen and (max-width: 900px) {
  .page_head {
    margin: 0 0 30px 0;
    width: 100%;
    height: 100vh;
    color: #ffffff;
    position: relative;
  }
  .page_head h2 {
    margin: 0 0 15px 0;
    line-height: 1.2em;
    font-size: 15px;
    font-weight: normal;
    letter-spacing: 5px;
  }
  .page_head .intro {
    margin: 0 0 0 0;
    line-height: 2.1em;
    font-size: 11px;
  }

}


/**
 * breadcrumb
**/
#breadcrumb {
  margin: 0 50px 20px 50px;
  line-height: 1.4em;
  font-size: 12px;
  text-align: left;
}
#breadcrumb ol {

}
#breadcrumb ol li {
  display: inline-block;
}
#breadcrumb ol li:before {
  padding: 0 0.5em;
  content: ">";
  display: inline-block;
}
#breadcrumb ol li:nth-of-type(1):before {
  padding: 0 0 0 0;
  content: "";
}
#breadcrumb ol li a {
  color: #000000;
}
@media only screen and (max-width: 900px) {
  #breadcrumb {
    display: none;
  }
}


/**
 * footer
**/
#footer {
  margin: 0 0 0 0;
  padding: 65px 0 10px 0;
  line-height: 1.4em;
  font-size: 12px;
  text-align: center;
  color: #ffffff;
  background: #666666;
  overflow: hidden;
}
#footer .logo {
  margin: 0 auto 20px;
  width: 200px;
}
#footer .info {
  margin: 0 0 0 0;
  padding: 0 0 50px 0;
  line-height: 1.4em;
  font-size: 13px;
}
#footer .info .company {
  margin: 0 0 0 0;
  padding: 0 1em 0 0;
}
#footer .info .address {
  margin: 0 0 0 0;
  padding: 0 1em 0 0;
}
#footer .info a {
  color: #ffffff;
  text-decoration: none;
  cursor: default;
}
#footer .copyright {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  line-height: 1.4em;
  font-size: 11px;
}
@media only screen and (max-width: 900px) {
  #footer {
    padding: 20px 0 150px 0;
  }
  #footer .logo {
    margin: 0 auto 15px;
    width: 200px;
  }
  #footer .info {
    margin: 0 0 0 0;
    padding: 0 0 20px 0;
    line-height: 1.4em;
    font-size: 13px;
  }
  #footer .info .company {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    display: block;
  }
  #footer .info .address {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    display: block;
  }
  #footer .info .tel {
    display: block;
  }
}


/**
 * floating_bnr
**/
#floating_bnr {
  width: 295px;
  text-align: center;
  background: rgba(0,0,0,0.75);
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2;
}
#floating_bnr img {
  width: 100%;
  display: block;
}
#floating_bnr .bnr_open_btn {
  width: 14px;
  position: absolute;
  top: 6px;
  right: 8px;
  display: block;
}
#floating_bnr .bnr_open_btn img.off {
  display: block;
}
#floating_bnr .bnr_open_btn img.on {
  display: none;
}
#floating_bnr .bnr_open_btn.active img.off {
  display: none;
}
#floating_bnr .bnr_open_btn.active img.on {
  display: block;
}
#floating_bnr .title {
  margin: 0 0 0 0;
  padding: 12px 0 0 75px;
  min-height: 86px;
  line-height: 1.4em;
  font-size: 19px;
  font-family: 'Noto Serif JP', serif;
  color: #ffffff;
  box-sizing: border-box;
}
#floating_bnr .series {
  width: 60px;
  position: absolute;
  top: 10px;
  left: 19px;
  overflow: hidden;
}
#floating_bnr .series:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  
  background: #ED2314;
  background: linear-gradient(
    -45deg,
    rgba(235,35,20,0.1) 50%,
    rgba(255,255,255,0.6) 60%,
    rgba(235,35,20,0.1) 70%
  );
  background-size: 100% 100%;
  animation: shine 2s infinite;
  animation-delay: 3s;
  animation-timing-function: linear;
  top: 150%;
  left: 150%;
  opacity: 0.2;
}

@keyframes shine {
  0% {
    top: 150%;
    left: 150%;
    opacity: 0.2;
  }
  50% {
    top: 0%;
    left: 0%;
    opacity: 1.0;
  }
  100% {
    top: -150%;
    left: -150%;
    opacity: 0.2;
  }
}

#floating_bnr .bnr {

}
#floating_bnr .bnr .list {
  margin: 0 auto 0;
  padding: 0 0 10px 0;
  width: 257px;
}
#floating_bnr .bnr .list li {
  margin: 0 0 10px;
}
#floating_bnr .bnr .list li a {
  display: block;
  position: relative;
}
#floating_bnr .bnr .list li a:hover {
  opacity: 1;
}
#floating_bnr .bnr .list li a img.off {
  opacity: 1;
}
#floating_bnr .bnr .list li a img.on {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
#floating_bnr .bnr .list li a:hover img.off {
  opacity: 0;
}
#floating_bnr .bnr .list li a:hover img.on {
  opacity: 1;
}


#floating_bnr .bnr .item {
  display: none;
}
@media only screen and (max-width: 900px) {
  #floating_bnr {
    width: 100%;
    text-align: center;
    background: rgba(255,255,255,0.75);
    position: fixed;
    bottom: 52px;
    right: 0;
    z-index: 2;
  }
  #floating_bnr img {
    width: 100%;
    display: block;
  }
  #floating_bnr .bnr_open_btn {
    width: 100%;
    height: 50px;
    background: url("../images/arrow_02.png") no-repeat center 6px;
    background-size: 19px auto;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }
  #floating_bnr .bnr_open_btn img {
    opacity: 0;
  }
  #floating_bnr .title {
    margin: 0 0 0 0;
    padding: 20px 0 0 85px;
    min-height: 50px;
    line-height: 1.4em;
    font-size: 13px;
    font-family: 'Noto Sans JP';
    color: #000000;
    box-sizing: border-box;
  }
#floating_bnr .series {
    width: 115px;
    position: absolute;
    top: -86px;
    left: 10px;
}
  #floating_bnr .bnr {
    display: none;
  }
  #floating_bnr .bnr .list {
    margin: 0 7px 0;
    padding: 0 0 10px 0;
    width: auto;
    display: flex;
  }
  #floating_bnr .bnr .list li {
    margin: 0 0 0 0;
    width: 33.33%;
    box-sizing: border-box;
    position: relative;
  }
  #floating_bnr .bnr .list li:before {
    margin: 0 0 0 0;
    width: 1px;
    height: calc( 100% - 10px );
    content: "";
    border-left: 1px dotted #969797;
    display: block;
    position: absolute;
    top: 5px;
    left: 0;
  }
  #floating_bnr .bnr .list li:nth-of-type(1):before {
    display: none;
  }
  #floating_bnr .bnr .list li a {
    margin: 0 10px;
    display: block;
  }
  #floating_bnr .bnr .item {
    margin: 15px 7px 0;
    position: relative;
    
    display: none;
    
  }
  #floating_bnr .bnr .item:before {
    margin: 0 0 0 -7px;
    width: 15px;
    height: 13px;
    line-height: 13px;
    content: "";
    background: url("../images/arrow_03.png") no-repeat center center;
    background-size: cover;
    display: block;
    position: absolute;
    top: -13px;
    left: 0;
  }
  #floating_bnr .bnr .item.awazu:before {
    left: 16.66%;
  }
  #floating_bnr .bnr .item.motomachi:before {
    left: 50%;
  }
  #floating_bnr .bnr .item.kuriyama:before {
    left: 83.32%;
  }
  #floating_bnr .bnr .item .bg {
    margin: 0 0 0 0;
    background: #ffffff;
    border-top: 1px solid #000000;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
  }
  #floating_bnr .bnr .item .bg .catch {
    margin: 0 0 0 0;
    padding: 15px 10px 5px 10px;
    width: 100%;
    text-align: left;
    font-size: 16px;
    line-height: 1.5em;
    box-sizing: border-box;
  }
  #floating_bnr .bnr .item .bg .image {
    margin: 0 5px 0 0;
    width: 140px;
    position: relative;
  }
  #floating_bnr .bnr .item .bg .image img {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  #floating_bnr .bnr .item .bg .info {
    margin: 0 15px 0 0;
    width: calc( 100% - 160px );
    text-align: left;
  }
  #floating_bnr .bnr .item .bg .info ul {

  }
  #floating_bnr .bnr .item .bg .info ul li {
    padding: 10px 5px;
    line-height: 1.5em;
    font-size: 13px;
    border-top: 1px solid #000000;
  }
  #floating_bnr .bnr .item .bg .info ul li:nth-of-type(1) {
    border-top: none;
  }
  #floating_bnr .bnr .item .bg .info .entry_link {
    margin: 8px 0 10px 0;
    width: 100%;
    height: 27px;
    display: table;
  }
  #floating_bnr .bnr .item .bg .info .entry_link a {
    padding: 0 0 0 15px;
    line-height: 1.4em;
    font-size: 16px;
    text-align: left;
    color: #ffffff;
    background: #DD0011;
    display: table-cell;
    vertical-align: middle;
    position: relative;
    transition: all 0.5s;
  }
  #floating_bnr .bnr .item .bg .info .entry_link a:hover {
    background: rgba(0,0,0,0.75);
    opacity: 1;
  }
  #floating_bnr .bnr .item .bg .info .entry_link a:after {
    margin: -5px 0 0 0;
    width: 6px;
    height: 10px;
    line-height: 10px;
    content: "";
    background: url("../images/arrow_04.png") no-repeat center center;
    background-size: cover;
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
  }

  
  
  #floating_bnr .bnr .item .photo_library_link {
    margin: 8px 0 0 0;
    width: 100%;
    height: 40px;
    display: table;
  }
  #floating_bnr .bnr .item .photo_library_link a {
    padding: 0 0 0 28px;
    line-height: 1.4em;
    font-size: 16px;
    text-align: left;
    color: #ffffff;
    background: #12295C;
    display: table-cell;
    vertical-align: middle;
    position: relative;
    transition: all 0.5s;
  }
  #floating_bnr .bnr .item .photo_library_link a:hover {
    background: rgba(0,0,0,0.75);
    opacity: 1;
  }
  #floating_bnr .bnr .item .photo_library_link a:after {
    margin: -5px 0 0 0;
    width: 6px;
    height: 10px;
    line-height: 10px;
    content: "";
    background: url("../images/arrow_04.png") no-repeat center center;
    background-size: cover;
    display: block;
    position: absolute;
    top: 50%;
    right: 30px;
  }




}




/**
 * クリア関連
**/

.clear {
	clear: both;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix { min-height: 1px !important; }
* html .clearfix { height: 1px !important; }


/*トップページ*/
header#top_header h1 img {
    width: 120px;
    position: absolute;
    left: 0;
}

.fp-is-overflow .fp-overflow.fp-auto-height-responsive, .fp-is-overflow .fp-overflow.fp-auto-height, .fp-is-overflow > .fp-overflow {
    /* overflow-y: auto; */
}
.toptext {
    width: 90%;
    margin: 0 auto;
}
.topse h2 {
    color: white;
    font-size: 90px;
    line-height: 0.8;
    text-align: left;
    font-family: "Jost", sans-serif;
    font-style: italic;
    font-weight: 800;
}
.topse h2 span {
    font-size: 40px;
}
.toptext p {
    text-align: justify;
    color: white;
    width: 500px;
    margin: 15px 0;
}
.kasolink {
text-align: left;
}
.kasolink a {
    color: white;
    padding: 1px 20px;
    border: 1px solid white;
    width: 80px;
}
.kasolink a:hover {
    background: #392f2f;
}

@media only screen and (max-width: 900px) {
.topse h2 {
    color: white;
    font-size: 14vw;
}
.topse h2 span {
    font-size: 6vw;
}
.toptext p {
    text-align: justify;
    color: white;
    width: 100%;
    margin: 15px 0;
	font-size: 4vw;
    line-height: 1.5;
}
}
/*トップページここまで*/