@charset "UTF-8";

@import url("./setting.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap");


html{
  font-size: 21px;
}
body {
  font-family:var(--font-family-gothic);
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  color: var(--color-primary);
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  font-size: 1rem;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  /*vertical-align: bottom;*/
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 1024px) {
  img {
    border: 0;
    max-width: 100%;
    height: auto;
  }
}

a {
  color: var(--color-primary);
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
a:hover {
  
}
a img {
  border: none;
}

i {
  padding: 0 5px;
}

ul {
  letter-spacing: -1em;
}
ul li {
  letter-spacing: 0;
  list-style: none;
}

.pc {
  display: block;
}
@media only screen and (max-width: 1024px) {
  .pc {
    display: none;
  }
}

.tablet {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .tablet {
    display: block;
  }
}
@media only screen and (max-width: 600px) {
  .tablet {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .sp {
    display: block;
  }
}

.ssp {
  display: none;
}
@media only screen and (max-width: 600px) {
  .ssp {
    display: block;
  }
}

/*PC改行加える*/
.br-pc {
  display: inherit;
}
@media only screen and (max-width: 1024px) {
  .br-pc {
    display: none;
  }
}

/*PC改行無効*/
.br_sp {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .br_sp {
    display: block;
  }
}

.br_ssp {
  display: none;
}
@media only screen and (max-width: 600px) {
  .br_ssp {
    display: block;
  }
}
/************************************

animation

************************************/
/*ズームイン表示*/
.zoomin {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  transform: scale(0, 0);
  -webkit-transform: scale(0, 0);
}

.mv01 {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
}

/*フェードイン表示*/
.fadein {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  opacity: 0;
}

.fadein:not(:target) {
  opacity: 1\9 ;
  /*IE9対策*/
}

.mv02 {
  opacity: 1;
}

/*移動＋フェードイン表示*/
.fadeup {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  opacity: 0;
  transform: translate(0, 60px);
  -webkit-transform: translate(0, 60px);
}

.fadeup:not(:target) {
  opacity: 1\9 ;
  /*IE9対策*/
}

.mv07 {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

@media print {
  .zoomin, .fadein, .fadeup {
    opacity: 1;
  }
}



/************************************

wrapper

************************************/
.wrapper {
  max-width: var(--max-width-l);
  width: 90%;
  margin: 0 auto;
}
.wrapper::after {
  content: "";
  display: block;
  clear: both;
}


/************************************

header

************************************/
header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height:88px;
  z-index: 100;
  background-color: rgb(255 255 255 / 0.9);
  padding: 10px 0;
  text-align: center;
  display: flex;
  align-items: center;
  @media (max-width: 1024px) {
    height: 60px;
  }
  .wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
  }
  h1{
    width: 188px;
    display: flex;
    align-items: center;
    @media (max-width: 1024px) {
      width: 150px;
    }
    a{
      display: block;
    }
    img{
      display: block;
    }
  }
  nav{
    width: calc(100% - 188px);
    @media (max-width: 1024px) {
      display: none;
    }
    ul{
      display: flex;
      justify-content: flex-end;
      align-items: center;
      li{
        font-weight: 600;
        margin: 0 1.5rem;
      }
    }
  }
}

@media print {
  header {
    position: relative;
  }
}/*header END*/

/************************************

main

************************************/
main {
  display: block;
}
/************************************

main_inner 共通

************************************/
.main_inner{
  background-image: url(../images/back.jpg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding-bottom: 100px;
  
  
}
section{
  margin-bottom: 80px;

}
.midashi{
  font-size: 1.3rem;
  margin:0 auto 2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  background-color: var(--color-secondary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  max-width: 480px;
  text-align: center;
  @media (max-width: 1024px) {
    font-size: 1.1rem;
    max-width: 400px;
  }
  @media (max-width: 600px) {
    font-size: 1rem;
    max-width: 100%;
    margin:0 auto 1rem;
  }
}
.bt{
  text-align: center;
  margin:2rem auto;
  max-width: 300px;
  a{
    display: block;
    background-color: var(--color-accent);
    color: #fff;
    padding: 13px ;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
    @media (max-width: 1024px) {
      padding: 10px;
      font-size: .9rem;
    }
    &:hover{
      transform: scale(1.1);
    }
  }
}
/************************************

#kv 

************************************/
#kv {
  position: relative;
  background-image: url(../images/kv_back.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  margin-bottom: 0px;
}

@media only screen and (orientation: portrait) and (max-width: 767px) {
  #kv {
    height: 115vw;
  }
}

@media only screen and (orientation: portrait) and (min-width: 768px) {
  #kv {
    height: 55vh;
  }
}

@media only screen and (orientation: landscape) {
  #kv {
    height: 100vh;
  }
}/*#kv END*/

.kv_illust{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*max-width: 1400px;*/
  margin:auto;
  background-image: url(../images/kv_ill.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.kv_title{
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right:0;
  margin:auto;
  width:48%;
  img{
    display: block;
    width: 100%;
    height: auto;
  }
}
@media only screen and (orientation: portrait) and (max-width: 767px) {
  .kv_title{
width:70%;
top:60px;
  }
}
.kv_copy{
  position: absolute;
  z-index: 2;
  top: 110px;
  right:10%;
width:3.2%;
transition-delay: .3s;
}
@media only screen and (orientation: portrait) and (max-width: 767px) {
  .kv_copy{
width:5%;
right:7%;
top:70px;
  }

}
.kv_copy2{
  position: absolute;
  z-index: 3;
  top: 57%;
  left:10%;
width:20%;
transition-delay: .6s;
}
@media only screen and (orientation: portrait) and (max-width: 767px) {
  .kv_copy2{
    top: 75vw;
    left: 4%;
    width: 35%;
  }
}

/************************************

lead

************************************/
#lead{
  min-height:280px;
  position: relative;
  @media (max-width: 600px) {
    min-height: 90vw;
  }
  .wrapper{
    position: absolute;
    z-index: 2;
    top: 80px;
    left: 0;
    right: 0;
    margin:auto;
    text-align: center;
  }
  .lead_title{
    font-size: 1.5rem;
    margin-bottom: 1rem;
@media (max-width: 1024px) {
  font-size: 1.2rem;
}
@media (max-width: 600px) {
  font-size: 6vw;
}
  }
  .lead_text{
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 500;
    @media (max-width: 1024px) {
      font-size: 2vw;
    }
    @media (max-width: 600px) {
      font-size: 4vw;
    }
  }
  .lead_ill{
    position: absolute;
    z-index: -1;
  }
  .lead_ill1{
    width:12%;
    top:-40px;
    left:5%;
    @media (max-width: 600px) {
      width: 20%;

    }
  }
  .lead_ill2{
    width:15%;
    top:-10px;
    right:3%;
    transition-delay: .3s;
    @media (max-width: 600px) {
      width: 20%;
    }
  }
  .lead_ill3{
    width:5%;
    bottom:-20px;
    right:-3%;
  }
}
/************************************

gaiyo

************************************/
#gaiyo{

  .wrapper{
    background-color: #fff;
    position: relative;
    padding:50px 5%;
    @media (max-width: 1024px) {
      padding:30px 5%;
    }
  }
  .gaiyo_container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  dl{
    width:60%;
    line-height: 1.8;
    @media (max-width: 1024px) {
      font-size: .9rem;
    }
    @media (max-width: 600px) {
      width:100%;
    }
    dt{
      font-weight: 600;
      color:var(--color-secondary);
    }
    dd{
      margin-bottom: .3rem;
    }
  }
  .gaiyo_logo{
    width:35%;
    @media (max-width: 600px) {
      width:70%;
      margin:20px  auto 0;
    }
  }
  .gaiyo_ill{
    position: absolute;
    z-index: 1;
  }
  .gaiyo_ill1{
    width:8%;
    top:-20%;
    left:0;
    @media (max-width: 600px) {
      width:12%;
      top:-10%;
    }
  }
  .gaiyo_ill2{
    width:12%;
    top:5%;
    right:7%;
    transition-delay: .3s;
    @media (max-width: 1024px) {
      top:-5%;
    }
    @media (max-width: 600px) {
      width:18%;
top:-3%;
    }
  }
  .gaiyo_ill3{
    width:10%;
    top:15%;
    right:-5%;
    @media (max-width: 600px) {
      width:15%;
      
    }
  }
  .gaiyo_ill4{
    width:10%;
    bottom:15%;
    left:-5%;
    @media (max-width: 600px) {
      width:15%;

    }
  }
  .gaiyo_ill5{
    width:12%;
    top:95%;
    left:20%;
    @media (max-width: 600px) {
      width:18%;
    }
  }
  .gaiyo_ill6{
    width:3%;
    top:15%;
    left:-5%;
  }
  .gaiyo_ill7{
    width:5%;
    top:45%;
    right:-5%;
  }
  .gaiyo_ill8{
    width:3%;
    bottom:-15%;
    right:-5%;
  }
}/*#gaiyo END*/
/************************************

shop

************************************/
#shop{
  .wrapper{
   position: relative;
   z-index: 1;
  }
  .shop_ill{
    position: absolute;
    z-index: -1;
  }
  .shop_ill1{
    width:15%;
    top:-3%;
    left:13%;
    @media (max-width: 600px) {
      width:18%;
      top:-15%;
      left:0%;
    }
  }
  .shop_ill2{
    width:5%;
    top:-3%;
    left:5%;
  }
  .shop_ill3{
    width:15%;
    top:-3%;
    right:12%;
    transition-delay: .3s;
    @media (max-width: 600px) {
      width:18%;
      top:-12%;
      right:20%;
    }
  }
  .shop_ill4{
    width:10%;
    top:0%;
    right:-4%;
    transition-delay: .5s;
    @media (max-width: 600px) {
      width:18%;
      top:-12%;
    }
  }
  .shop_ill5{
    width:10%;
    top:40%;
    left:-5%;
    @media (max-width: 600px) {
      width:13%;
      top:75%;
      left:20%;
    }
  }
  .shop_ill6{
    width:10%;
    top:70%;
    left:-5%;
  }
  .shop_ill7{
    width:10%;
    bottom:-3%;
    left:-5%;
  }
  .shop_ill8{
    width:7%;
    top:33%;
    right:-5%;
    @media (max-width: 600px) {
      top:78%;
      width:12%;
      right:15%;
    }
  }
  .shop_ill9{
    width:10%;
    top:55%;
    right:-5%;
  }
  .shop_ill10{
    width:3%;
    top:75%;
    right:-5%;
  }
  .shop_ill11{
    width:7%;
    bottom:0%;
    right:-5%;
  }
}
/************************************

map

************************************/
#map{
  .wrapper{
    position: relative;
    z-index: 1;
  }
  .map_ill{
    position: absolute;
    z-index: -1;
  }
  .map_ill1{
    width:18%;
    top:-2%;
    left:7%;
    @media (max-width: 600px) {
      width:25%;
      top:-10%;
      left:0%;
    }
  }
  .map_ill2{
    width:7%;
    top:0%;
    left:-5%;
  }
  .map_ill3{
    width:10%;
    top:-4%;
    right:17%;
    transition-delay: .3s;
    @media (max-width: 600px) {
      width:15%;
      top:-10%;
      right:25%;
    }
  }
  .map_ill4{
    width:10%;
    top:-3%;
    right:3%;
  }
  .map_ill5{
    width:10%;
    top:-5%;
    right:-5%;
  }
  .map_ill6{
    width:10%;
    top:20%;
    left:-5%;
  }
  .map_ill7{
    width:10%;
    top:45%;
    left:-5%;
    @media (max-width: 600px) {
      width:15%;
      top:83%;
      left:-3%;
    }
  }
  .map_ill8{
    width:3%;
    top:60%;
    left:-5%;
  }
  .map_ill9{
    width:4%;
    top:75%;
    left:-3%;
  }
  .map_ill10{
    width:10%;
    bottom:3%;
    left:-3%;
  }
  .map_ill11{
    width:4%;
    bottom:3%;
    left:13%;
  }
  .map_ill12{
    width:3%;
    top:10%;
    right:-5%;
  }
  .map_ill13{
    width:10%;
    top:23%;
    right:-5%;
  }
  .map_ill14{
    width:3%;
    top:35%;
    right:-5%;
  }
  .map_ill15{
    width:7%;
    top:50%;
    right:-5%;
    @media (max-width: 600px) {
      width:10%;
      top:85%;
      right:-3%;
    }
  }
  .map_ill16{
    width:10%;
    top:65%;
    right:-5%;
  }
  .map_ill17{
    width:5%;
    top:75%;
    right:-5%;
  }
  .map_ill18{
    width:3%;
    bottom:0%;
    right:13%;
  }
}
/************************************

sns

************************************/
#sns{
  .wrapper{
    position: relative;
    z-index: 1;
  } 
  .sns_title{
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #fff;
    strong{
      font-size: 1.8rem;
    }
    @media (max-width: 600px) {
      font-size: 1.1rem;
      strong{
        font-size: 1.4rem;
      }
    }
  }
  .sns_bt{
    text-align: center;
    margin:2rem auto;
    max-width: 400px;
    a{
      display: block;
      background-color: #FF4A8E;
      color: #fff;
      padding: 13px ;
      border-radius: 10px;
      font-weight: 600;
      background-image: url(../images/icon_insta_w.svg);
      background-size: 28px;
      background-position:  20px;
      background-repeat: no-repeat;
      padding-left: 30px;
      transition: 0.3s;
      &:hover{
        transform: scale(1.1);
      }
    }
  }
  .sns_ill{
    position: absolute;
    z-index: -1;
  }
  .sns_ill1{
    width:10%;
    top:-70px;
    left:8%;
    @media (max-width: 600px) {
      width:15%;
    }
  }
  .sns_ill2{
    width:10%;
    top:-30px;
    left:0%;
    transition-delay: .3s;
    @media (max-width: 600px) {
      width:15%;
    }
  }
  .sns_ill3{
    width:7%;
    top:-70px;
    left:25%;
    @media (max-width: 600px) {
      width:15%;
    }
  }
  .sns_ill4{
    width:10%;
    bottom:-30px;
    left:10%;
    @media (max-width: 600px) {
      width:15%;
    }
  }
  .sns_ill5{
    width:2%;
    top:-70px;
    right:30%;
  }
  .sns_ill6{
    width:10%;
    top:-70px;
    right:8%;
  }
  .sns_ill7{
    width:7%;
    top:-70px;
    right:-3%;
    transition-delay: .2s;
    @media (max-width: 600px) {
      width:15%;
      top:-10%;
      right:-5%;
    }
  }
  .sns_ill8{
    width:10%;
    bottom:-50px;
    right:20%;
    transition-delay: .5s;
    @media (max-width: 600px) {
      width:15%;
      bottom:-90px;
      right:40%;
    }
  }
  .sns_ill9{
    width:10%;
    bottom:-30px;
    right:7%;
    transition-delay: .8s;
    @media (max-width: 600px) {
      width:20%;
      bottom:-80px;
      right:0%;
    }
  }
}
/************************************

kyosan

************************************/
#kyosan{
  margin-top: 80px;
  .wrapper{
    text-align: center;
  }
  .kyosan_boshu{
    background-color: var(--color-accent);
    color: #fff;
    padding: 20px 20px;
    border-radius: 2em;
    max-width: 520px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin:0 auto 2rem;
    @media (max-width: 1024px) {
      font-size: 1rem;
      padding: 12px 12px;
      max-width: 400px;
    }
  }
  p{
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    @media (max-width: 1024px) {
      font-size: .9rem;
    }
  }
  .kyosan_waku{
    max-width:400px;
    margin:0 auto;
    text-align: left;
    @media (max-width: 1024px) {
      font-size: .9rem;
    }

  }
  h4{
    margin-bottom: .5rem;
    @media (max-width: 600px) {
      text-align: center;
    }
  }
  dl{
    display: flex;
    flex-wrap: wrap;
  }
  dt{
    width:50px;
  }
  dd{
    width: calc(100% - 50px);
    a{
      color:#0033FF;
    }
  }
}
/************************************

kyosan2

************************************/
#kyosan2{
  .wrapper{
    text-align: center;
  }
  ul{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
    &.kyosan2_list1{
      justify-content: center;
    }
    li{
      width: 16%;
      margin: 10px 2%;
      @media (max-width: 1024px) {
        width: 21%;
      }
      @media (max-width: 600px) {
        width: 28.3%;
      }
    }
  }
  .chui{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 20px;
    padding:0 20px;
    @media (max-width: 600px) {
      justify-content: center;
    }
    .logo{
      width: 100px;
      margin-right: 20px;
      @media (max-width: 600px) {
        width: 70px;
      }
    }
    .text{
      
      text-align: left;
      font-size: .75rem;
      @media (max-width: 1024px) {
        font-size: .6rem;
      }
      @media (max-width: 600px) {
        width:100%;
      }
    }
  }
}
/************************************

kyoryoku

************************************/
#kyoryoku{
  .kyoryoku_list{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
    li{
      margin: 10px 20px;
    }
  }
}

/************************************

footer

************************************/
footer{
  background-image: url(../images/footer_back.jpg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding:80px 0;
  @media (max-width: 1024px) {
    padding:50px 0;
  }
  .wrapper{
    max-width: 780px;
  }
.foot_stop{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  .foot_stop_icon{
    width: 65px;
    @media (max-width: 1024px) {
      width: 40px;
    }
  }
  .foot_stop_text{
    width: calc(100% - 65px);
    font-size: .9rem;
    line-height: 1.6;
    text-align: left;
    padding-left: 20px;
    @media (max-width: 1024px) {
      width: calc(100% - 40px);
      font-size: .8rem;
    }
  }
}
.footer_chui{
  margin-bottom: 20px;
  padding-left: 1.2rem;
  li{
    font-size: .9rem;
    position: relative;
    @media (max-width: 1024px) {
      font-size: .8rem;
    }
    &::before{
      position: absolute;
      left: -1rem;
      top: 0;
      content: "※";
    }
  }
}
.copyright{
  text-align: center;
  font-size: .75rem;
  @media (max-width: 1024px) {
    font-size: .6rem;
  }
}
}

/************************************

PageUP

************************************/
#pageup {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 5px;
  right: 5px;
  z-index: 10;
  font-size: 8px;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#pageup.none {
  display: none;
}
#pageup a {
  width: 50px;
  padding: 36px 0 4px 0;
  position: relative;
  display: block;
  text-decoration: none;
  line-height: 100%;
  color: #555;
}
#pageup a::before {
  position: absolute;
  top: 26px;
  left: 0px;
  right: 0;
  margin: auto;
  border-top: 1px solid #555;
  border-left: 1px solid #555;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  content: "";
}
