@charset "UTF-8";

.text-left{
  text-align: left !important;
}
.text-right{
  text-align: right !important;
}
.text-center{
  text-align: center !important;
}

.hover{
  transition: opacity .2s;
}
.hover:hover{
  opacity: 0.7;
}

body{
  background: #000 url("../img/bg-body.jpg") center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  font-size: 1.6rem;
  line-height: 2;
}
@media (max-width: 767px){
  body{
    font-size: 1.2rem;
  }
  header,
  .visual,
  section .inner,
  nav .inner{
    padding-right: 6.66vw;
    padding-left: 6.66vw;
  }
}
@media (min-width: 768px){
  header,
  .visual,
  section .inner,
  nav .inner{
    padding-right: 50px;
    padding-left: 50px;
  }
}

.wrapper{
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(12px);
}
@media (min-width: 768px){
  .wrapper{
    margin-right: auto;
    margin-left: auto;
    max-width: 750px;
  }
}

/* header */
header{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo{
  width: 30.7692%;
}
header .link{
  width: 23.2308%;
}
@media (max-width: 767px){
  header{
    margin-bottom: 5.3333vw;
    padding-top: 5.3333vw;
  }
}
@media (min-width: 768px){
  header{
    margin-bottom: 40px;
    padding-top: 40px;
  }
}

/* main */

/* footer */
footer{
  margin-top: 100px;
}
footer .logo{
  margin: 0 auto 40px auto;
  width: 48.15%;
}
footer .sns{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}
footer .sns li{
  margin-right: 15px;
  margin-left: 15px;
}
footer .copyright{
  text-align: center;
}
footer .sns img{
  width: 68px;
}
@media (max-width: 767px){
  footer .sns img{
    width: 40px;
  }
  footer .copyright img{
    width: 60vw;
  }
}
@media (min-width: 768px){
  footer .copyright{
    padding-bottom: 50px;
  }
  footer .copyright img{
    width: 306px;
  }
}

/* section */
section{
  margin-bottom: 50px;
}
section h2{
  background: rgba(0,0,0,.5);
  font-feature-settings: "palt";
  line-height: 1.3;
  text-align: center;
}
.section-lead,
section h3{
  margin-bottom: 1em;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.8;
}
.section-lead{
  text-align: center;
}
@media (max-width: 767px){
  .section-lead{
    font-size: 1.4rem;
  }
  section h3{
    font-size: 1.6rem;
  }
  section h2{
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 15px;
    font-size: 2rem;
  }
}
@media (min-width: 768px){
  section .inner{
    padding-right: 50px;
    padding-left: 50px;
  }
  section h2{
    margin-top: 100px;
    margin-bottom: 25px;
    padding: 25px 20px;
    font-size: 4rem;
  }
}

.visual{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: url("../img/bg-main.jpg") center center no-repeat;
  background-size: cover;
}
.visual h1{
  margin-bottom: 20px;
}
.visual h1 img,
.visual .text01 img{
  max-width: 100%;
}
.visual .text02{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex: 1 1 auto;
  text-align: center;
}
.visual .text02 img{
  max-width: 73.8%;
}
@media (max-width: 767px){
  .visual{
    padding-top: 8vw;
    padding-bottom: 8vw;
    height: 82.6667vw;
  }
}
@media (min-width: 768px){
  .visual{
    padding-top: 60px;
    padding-bottom: 60px;
    height: 620px;
  }
}

/* Menu */
.menu{
  margin-top: 50px;
  margin-bottom: 50px;
}
.menu ul{
  margin-bottom: 50px;
}
.menu ul li a{
  display: block;
  padding-top: 12px;
  padding-bottom: 12px;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
}
.menu ul li a::before{
  content: "";
  display: inline-block;
  margin-right: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 7.5px 0 7.5px;
  border-color: #fff transparent transparent transparent;
}
@media (max-width: 767px){
  .menu ul li a{
    font-size: 1.6rem;
  }
}
@media (min-width: 768px){
}

/* Button */
.btn a{
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
  border: 3px solid #fff;
  background: url("../img/icon-arrow.png") right 20px center no-repeat;
  background-size: 13px 23px;
  line-height: 1.4;
  color: #fff !important;
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
  transition: opacity .2s;
}
.btn a:hover{
  opacity: 0.7;
}
@media (max-width: 767px){
  .btn a{
    background-position: right 12px center;
    padding: 15px 45px 15px 15px;
    font-size: 1.6rem;
  }
}
@media (min-width: 768px){
  .btn a{
    padding: 18px 80px 18px 50px;
  }
}

@media (max-width: 767px){
  .pagetop{
    text-align: right;
  }
  .pagetop a{
    display: block;
    padding: 20px;
  }
  .pagetop img{
    width: 60px;
  }
}
@media (min-width: 768px){
  .pagetop{
    position: fixed;
    bottom: 40px;
    right: 40px;
  }
  .pagetop img{
    width: 115px;
  }
}

.image{
  margin-top: 2em;
  margin-bottom: 2em;
}

