/*
Theme Name: Proto
*/
@charset "utf-8";

/* A Modern CSS Reset */
 
*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul[role="list"],ol[role="list"]{list-style:none}html:focus-within{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}


/*common*/
.only-mobile{
  display: none;
}
.space-between{
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .only-pc{
    display: none!important;
  }
  .only-mobile{
    display: inline-block!important;
  }
}

/*header*/
.header-content{
  display: flex;
  justify-content: space-between;
  align-items: center;
    height: 80px;
    /*max-width: 1200px;
    margin: 0 auto;*/
  padding: 0 36px;
    background-color: #ff8300;
    color: #fff;
}
.header-content a{
    color: #fff;
    text-decoration: none;
}

.global-menu ul{
    list-style-type: none;
}
.global-menu li{
    display: inline-block;
}
.global-menu a{
    display: inline-block;
    line-height: 80px;
    padding: 0 24px;
    font-size: 14px;
}
.global-menu a:hover{
    background-color: #ffca7c;
}

/*mobile header*/
#menu-btn-check {
    display: none;
}
.menu-btn {
    display: block;
    position: relative;
    height: 40px;
    width: 40px;
    z-index: 90;
    cursor: pointer;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.3s;/*アニメーション設定*/
}
.menu-btn span:before {
    bottom: 16px;
}
.menu-btn span:after {
    top: 16px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
    transition: all 0.1s;
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check:checked ~ .menu-content {
    opacity: 1;
}


.menu-content {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    color: #fff;
    background-color: #ff8300;
}
.menu-content h2 {
    padding: 120px 15px;
    text-align: center;
}
.menu-content ul {
    padding: 0px 20px;
    font-size: 0;
}
.menu-content ul li {
    list-style: none;
    width: 50%;
    display: inline-block;
    margin-bottom: 30px;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#fff;
    text-decoration: none;
    padding: 16px;
    position: relative;
    border-left: solid 3px #fff;
}


@media screen and (max-width: 768px) {
    .header-content{
        padding: 0 18px;
    }
}

/*animation menu*/

.fadein {
    animation: fadein 0.5s;
}
 
.fadeout {
    animation: fadeout 0.5s;
}
 
@keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
 
@keyframes fadeout {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/*scroll anime*/
.scrollin {
    opacity: 0;
} 
.fadeon {
    animation-name: fadeon;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}
@keyframes fadeon {
    0% {
        opacity: 0;
    }
    100% {
    opacity: 1;
    transform: translate(0);
    }
}
 
/*2.上下の動きを指定*/
.updown {transform: translateY(-20px);}
.downup {transform: translateY(20px);}

/*3.左右の動きを指定*/
.sect02{
    overflow: hidden;
}
/*横スクロールバーを隠す*/
.slide-right {transform: translateX(200px);}
.slide-left {transform: translateX(-200px);}

/*video*/
#video-area{
    line-height: 0;
}
#video {
    width: 100%;
}


/*container*/
.container{

}
.top-contents-wrap{
    margin: 80px 0;
}
.manifest-title-wrap{
    background-image: url("https://proto.elect-light.com/wp-content/themes/template//images/photo1.jpeg");
    height: 200px;
    display: flex;
    align-items: center;
}
.manifest-title-wrap::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0, 0.4);
}
.title-image-wrap h3{
    padding: 0 24px;
    color: #fff;
    z-index: 10;
}


/*info*/
.info-head{
    text-align: center;
    background-color: #ff8300;
}
.info-head h3{
    padding: 42px 24px;
    color: #fff;
}
.info-content{
    padding: 24px 24px;
    max-width: 800px;
    margin: 0 auto;
}
.info-content-block{
    border-bottom: 1px solid #eee;
}
.info-content-block a{
    display: block;
    padding: 24px 0;
    color: #333;
    text-decoration: none;
}
.info-category{
    background-color: #d4efb4;
    border-radius: 10px;
    padding: 3px 12px;
    font-size: 13px;
    margin-right: 12px;
}
.info-date{
    font-size: 13px;
    color: #9e9e9e;
}
.info-content-block-btm{
    margin-top: 16px;
}

/*pagetop*/
#back-pagetop {
  position: fixed;
  padding: 14px 20px;
  border-radius: 8px;
  background: #ffc107;
  color: #fff;
  bottom: 50px;
  right: 50px;
  cursor: pointer;
}

/*footer*/
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
 
footer {
  margin-top: auto;
  background: #ff8300;
}
.footer-content{
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
    padding: 0 18px;
    text-align: center;
}
.footer-content a{
    color: #fff;
    text-decoration: none;
}
.footer-logo{
    padding: 60px;
}
.footer-top h2{
    padding-bottom: 24px;
}
.footer-top i{
    padding-right: 16px;
}

.footer-btm{
    padding: 48px 0;
}
.footer-btm a{
    padding: 0 16px;
}
.footer-copy-right{
    padding-bottom: 12px;
}
/*slider*/

.swiper {
    width: 100%;
    margin: 40px 0;
    padding: 100px 0;
}

.swiper-slide {
    opacity: 0.4;
    overflow: hidden;
    transition: .7s;
}

.swiper-slide img {
    width: 100%;
    margin: 0 auto;
    border-radius: 5px;
}
.swiper-slide{
    margin-left: 0!important;
}
.swiper-slide-active {
    opacity: 1;
    z-index: 1;
    transform: scale(1.1); 
}