@charset "UTF-8";
/* 共通設定 ------------------------*/
html{
    font-size: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body{
    font-family: "Yu Gothic Medium", "游ゴシック Medium", "YuGothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
    line-height: 1.7;
    background-color: #e0e0e0;
}
header, footer{
    width: 100%;
    background-color: #445597;
}
header a, footer a, footer p{
    color: #eee9d4;
}
main{
    margin: 0 auto;
}
h1, h2, h3, h4, h5, p, a, li{
    color: #333;
}
h2{
    font-family: 'Racing Sans One', cursive;
    font-size: 2.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 6px 6px 16px #afafaf, inset -6px -6px 16px #ffffff;
}
h2:before{
    border-bottom: 8px solid #ffde00;
    content: "";
    flex-grow: 1;
    margin-right: 1rem;
}
h2::after{
    content: "";
    flex-grow: 1;
}
a{
    text-decoration: none;
}
li{
    list-style: none;
}
.annotation{
    font-size: 0.7rem;
    text-align: center;
    padding: 1rem 0 2rem;
}
.fadeIn{
    animation-name: fadeInAnime;
    animation-duration: 3s;
    animation-fill-mode: forwards;
}
@keyframes fadeInAnime{
    from {
        opacity: 0;
    }    
    to {
        opacity: 1;
    }
}
.shadowfadeIn{
    animation-name: shadowfadeInAnime;
    animation-duration: 4s;
    animation-fill-mode: forwards;

}
@keyframes shadowfadeInAnime{
    from{}
    to{
        background-color: #e4e4e4;
        box-shadow:  5px 5px 10px #cacaca, -5px -5px 10px #f6f6f6;
    }
}
/*背景色が伸びて出現 共通*/
.bgextend-headline{
    animation-name:bgextendAnimeBase;
    animation-duration:1s;
    animation-fill-mode:forwards;
    overflow: hidden;/*　はみ出た色要素を隠す　*/
    opacity:0;
    position: -webkit-sticky;
    position: sticky;
    top: 60px;
    background-color: #ddd;
    z-index: 10;
  }
  .bgextend{
    animation-name:bgextendAnimeBase;
    animation-duration:1s;
    animation-fill-mode:forwards;
    position: relative;
    overflow: hidden;/*　はみ出た色要素を隠す　*/
    opacity:0;
  }
  
  @keyframes bgextendAnimeBase{
    from {
      opacity:0;
    }
  
    to {
      opacity:1;  
  }
  }
  
  /*中の要素*/
  .bgappear{
    display: block;
    animation-name:bgextendAnimeSecond;
    animation-duration:1s;
    animation-delay: 0.6s;
    animation-fill-mode:forwards;
    opacity: 0;
  }
  
  @keyframes bgextendAnimeSecond{
    0% {
    opacity: 0;
    }
    100% {
    opacity: 1;
  }
  }

  /*--------- 左からフェードイン --------*/
  .bgLRextend::before{
    animation-name:bgLRextendAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: #aaa;/*伸びる背景色の設定*/
  }
  @keyframes bgLRextendAnime{
    0% {
      transform-origin:left;
      transform:scaleX(0);
    }
    50% {
      transform-origin:left;
      transform:scaleX(1);
    }
    50.001% {
      transform-origin:right;
    }
    100% {
      transform-origin:right;
      transform:scaleX(0);
    }
  }
/*--------- 右からフェードイン --------*/
  .bgRLextendRb::before{
    animation-name:bgRLextendAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: #445597;/*伸びる背景色の設定*/
  }
  .bgRLextendYl::before{
    animation-name:bgRLextendAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: #ffde00;/*伸びる背景色の設定*/
  }
  .bgRLextendGr::before{
    animation-name:bgRLextendAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: #00803d;/*伸びる背景色の設定*/
  }
  @keyframes bgRLextendAnime{
    0% {
      transform-origin:right;
      transform:scaleX(0);
    }
    50% {
      transform-origin:right;
      transform:scaleX(1);
    }
    50.001% {
      transform-origin:left;
    }
    100% {
      transform-origin:left;
      transform:scaleX(0);
    }
  }
/* ヘッダー --------------------------*/
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    border-bottom: 2px solid #bb9861;
}
header, header img, header li{
    z-index: 100;
    height: 60px;
}
header ul{
    display: flex;
    justify-content: space-evenly;
}
header li{
    padding: 10px 1rem;
    font-size: 25px;
    font-family: 'Racing Sans One', cursive;
}
header a{
    color: #fff;
}
/* トップ -----------------------------*/
#top{
    padding: 0;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    background-color: #ccc;

}
#top h1{
    padding-top: 150px;
    text-align: center;
    display: block;
}
#top img{
    max-width: 65%;
    animation-name: fadeInAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
    vertical-align: bottom;
}
#top img:nth-of-type(1){
    max-width: 13%;
}
#top img:nth-of-type(2){
    min-width: 350px;
}
/* キャッチ・リード ---------------------*/
#lead{
    display: flex;
    justify-content: flex-start;
    padding: 100px 0;
    position: relative;
}
#lead div{
    max-width: 65%;
    padding: 2rem;
    border-radius: 5px;
    animation-name: shadowfadeInAnime;
    animation-duration: 3s;
    animation-fill-mode: forwards;
}
#lead h3{
    display: block;
    width: 15rem;
    font-size: 1.5rem;
    margin: 0 auto;
    color: #555;
    text-align: center;
    border-bottom: 1px solid #bb9861;
}
#lead p{
    color: #555;
    padding-top: 1rem;
}
.top-btn{
    position: fixed;
    bottom: 0;
    right: 20px;
    z-index: 90;
    font-family: 'Racing Sans One', cursive;
    text-align: center;
}
.rotate {
    width: 100px;
    height: 100px;
    animation: rotation 10s infinite linear;
}
  
@keyframes rotation {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(-359deg);
    }
}
.rotate:hover{
    animation-duration: 0.1s;
}
/* サービス ----------------------------*/
.content{
    height: 850px;
    padding: 50px 0;
}
.content06{
    height: 1000px;
}
.content07{
    height: 900px;
}
.content-area{
    display: flex;
    align-items: flex-end;
}
.area-right{
    justify-content: flex-end;
}
.area-left{
    justify-content: flex-start;
}
.content-title{
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.content-title::before{
    content: "";
    width: 5rem;
    margin-right: 1rem;
}
.content-title::after{
    content: "";
    width: 5rem;
    margin-left: 1rem;
}
.rb::before, .rb::after{
    border-bottom: 4px solid #445597;
}
.yl::before, .yl::after{
    border-bottom: 4px solid #ffde00;
}
.gr::before, .gr::after{
    border-bottom: 4px solid #00a73b;
}
.img-place{
    position: relative;
    width: 750px;
}
.ih-01{
    height: 550px;
}
.ih-02{
    height: 610px;
}
.ih-03{
    height: 780px;
}
.img-place img{
    width: 700px;
    border: 3px solid #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 21px;
    z-index: 2;
}
.img-shadow01, .img-shadow02{
    position: absolute;
    top: 8px;
    left: 29px;
    width: 700px;
    height: 469px;
    background-color: #445597;
    border-radius: 3px;
    border: 3px solid #fff;
    box-shadow:  5px 5px 10px #cacaca, -5px -5px 10px #f6f6f6;
}
.img-shadow03{
    position: absolute;
    top: 8px;
    left: 29px;
    width: 700px;
    height: 530px;
    background-color: #445597;
    border-radius: 3px;
    border: 3px solid #fff;
    box-shadow:  5px 5px 10px #cacaca, -5px -5px 10px #f6f6f6;
}
.img-shadow04, .img-shadow05{
    position: absolute;
    top: 8px;
    left: 28px;
    width: 700px;
    height: 526px;
    background-color: #ffde00;
    border-radius: 3px;
    border: 3px solid #fff;
    box-shadow:  5px 5px 10px #cacaca, -5px -5px 10px #f6f6f6;
}
.img-shadow06{
    position: absolute;
    top: 8px;
    left: 28px;
    width: 700px;
    height: 700px;
    background-color: #00803d;
    border-radius: 3px;
    border: 3px solid #fff;
    box-shadow:  5px 5px 10px #cacaca, -5px -5px 10px #f6f6f6;
}
.img-shadow07{
    position: absolute;
    top: 8px;
    left: 28px;
    width: 700px;
    height: 526px;
    background-color: #00803d;
    border-radius: 3px;
    border: 3px solid #fff;
    box-shadow:  5px 5px 10px #cacaca, -5px -5px 10px #f6f6f6;
}

.text-place{
    width: calc(100vw - 800px);
    height: 350px;
    border-radius: 3px;
    font-size: 1.2rem;
    padding: 2rem;
    background-image: url("../img/metal-bg.png");
    background-size: cover;
    position: relative;
    box-shadow:  5px 5px 10px #cacaca, -5px -5px 10px #f6f6f6;
}
.text-right{
    margin-left: 10px;
}
.text-left{
    margin-right: 10px;
}
.btn-place{
    /*margin-top: 100px;*/
    padding: 50px 0;
}
.text-btn{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}
.btn{
    display: block;
    min-width: 300px;
    max-width: 700px;
    width: 90%;
    border-radius: 10px;
    margin: 1rem auto;
    text-align: center;
    font-size: 1.5rem;
    transition: 0.3s;
    box-shadow:  5px 5px 10px #cacaca, -5px -5px 10px #f6f6f6;
}
.btn:hover{
    background-color: #f0f0f0;
    color: #333;
}
.royal-blue{
    background-color: #445597;
    border: 2px solid #bb9861;
    color: #fff;
}
.royal-blue:hover{
    color: #445597;
}
.yellow{
    background-color: #f8b516;
    border: 2px solid #fff;
    color: #fff;
}
.yellow:hover{
    color: #f8b516;
    border: 2px solid #f8b516;
}
.green{
    background-color: #00803d;
    border: 2px solid #fff;
    color: #fff;
}
.green:hover{
    color: #00803d;
    border: 2px solid #00803d;
}
.line-place{
    position: absolute;
    bottom: 0;
    width: 100%;
    margin: 1rem auto;
}
.line_add_frieds{
    display: flex;
    justify-content: space-evenly;
}
.line_add_frieds a{
    padding: 10px;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(50% - 2rem);
    transition: 0.3s;
}
.line_add_frieds a:hover{
    background-color: #f0f0f0;
}
.line_add_frieds i{
    color: #00e000;
}
/* カンパニー ---------------------------*/
.tab{
	display: flex;
	justify-content: space-evenly;
    margin-top: 10vw;
}
.tab li a{
	display: block;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 1rem;
    transition: 0.3s;
    border-radius: 3px;
}
.tab li a:hover{
    background-color: #f0f0f0;
}
.tab li.active a{
    background-color: #445597;
}
.company {
	display: none;
	opacity: 0;
	background-color: #fff;
    padding: 3rem 0;
}
.company.is-active {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    animation-name: displayAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.store-info{
    padding: 1rem;
}
.store-info h3{
    padding: 2rem;
    text-align: center;
    font-size: 1.5rem;
}
.store-info p, .store-info a{
    padding: 10px;
    transition: 0.3s;
    border-radius: 3px;
    display: block;
}
.store-info a:hover{
    background-color: #e0e0e0;
}
/* オリジナルグッズ -----------------------*/
.goods{
    max-width: 1000px;
    margin: 50px auto 0;
    padding: 2rem;
}
.goods h3{
    text-align: center;
    font-size: 2rem;
    padding-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.goods h3::before{
    content: "";
    width: 5rem;
    margin-right: 1rem;
    border-bottom: 5px solid #ccc;
}
.goods h3::after{
    content: "";
    width: 5rem;
    margin-left: 1rem;
    border-bottom: 5px solid #ccc;

}
.goods-container{
    display: flex;
    justify-content: space-evenly;
}
.goods-container p{
    padding: 2rem;
}
.goods-photo img{
    max-width: 300px;
    border: 3px solid #fff;
    border-radius: 10px;
}
/* コンタクト ----------------------------*/
.contacts-area{
    display: flex;
    justify-content: space-evenly;
    padding: 100px 0;
}
.contact{
    padding: 2rem;
    border-radius: 10px;
}
.contact h3{
    text-align: center;
}
.contact a{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin: 1rem 1rem 0;
    padding: 10px;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow:  5px 5px 10px #cacaca, -5px -5px 10px #f6f6f6;
}
.contact a:hover{
    background-color: #fff;
}

/* フッター　-----------------------------*/
footer{
    width: 100%;
    text-align: center;
    padding: 10px;
    border-top: 2px solid #bb9861;
}
@media(max-width: 1400px){
    /* 共通設定 ------------------------*/
    /* ヘッダー --------------------------*/
    /* トップ -----------------------------*/
    /* キャッチ・リード ---------------------*/
    /* サービス ----------------------------*/
    .content{
        height: 600px;
    }
    .content06{
        height: 700px;
    }
    .content07{
        height: 650px;
    }
    .img-place{
        width: 450px;
    }
    .ih-01{
        height: 350px;
    }
    .ih-02{
        height: 382px;
    }
    .ih-03{
        height: 480px;
    }
    .img-place img{
        width: 400px;
    }
    .img-shadow01, .img-shadow02{
        width: 400px;
        height: 269px;
    }
    .img-shadow03{
        width: 400px;
        height: 303px;
    }
    .img-shadow04, .img-shadow05{
        width: 400px;
        height: 301px;
    }
    .img-shadow06{
        width: 400px;
        height: 400px;
    }
    .img-shadow07{
        width: 400px;
        height: 302px;
    }
    .text-place{
        width: calc(100vw - 500px);
        height: 250px;
    }
    /* カンパニー ---------------------------*/
    /* オリジナルグッズ -----------------------*/
    /* フッター　-----------------------------*/
}
@media(max-width: 1200px){
    /* 共通設定 ------------------------*/
    /* ヘッダー --------------------------*/
    header{
        justify-content: space-between;
        padding: 0 1rem;
    }
    header ul{
        flex-direction: column;
    }
    #g-nav{
        position:fixed;
        z-index: 999;
        top:0;
        right: -120%;
        width: 100%;
        height: 100vh;
        background:#e0e0e0;
        transition: all 0.6s;
    }
    #g-nav.panelactive{
        right: 0;
    }
    #g-nav ul {
        position: absolute;
        z-index: 999;
        top:50%;
        left:50%;
        transform: translate(-50%,-50%);
    }
    #g-nav li{
        list-style: none;
        text-align: center;
    }
    #g-nav li a{
        color: #332627;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
        font-size: 1.2rem;
        min-width: 350px;
    }
    .openbtn{
        position: relative;
        cursor: pointer;
        width: 60px;
        height: 60px;
        z-index: 999;
    }
    .openbtn .openbtn-area{
        transition: all .6s;
        width:60px;
        height:60px;
    }
    .openbtn span{
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background: #fff;
          width: 45%;
      }
    
    .openbtn span:nth-of-type(1) {
        top:18px;	
    }
    .openbtn span:nth-of-type(2) {
        top:26px;
    }
    .openbtn span:nth-of-type(3) {
        top:34px;
    }
    .openbtn.active .openbtn-area{
        transform: rotate(360deg);
    }
    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }
    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }
    .openbtn.active span:nth-of-type(3){
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }
    /* トップ -----------------------------*/
    #top h1{
        padding-top: 250px;
    }
    #top img{
        max-width: 75%;
    }
    #top img:nth-of-type(1){
        max-width: 25%;
    }
    /* キャッチ・リード ---------------------*/
    /* サービス ----------------------------*/
    .content{
        height: auto;
    }
    .content-area{
        align-items: normal;
        justify-content: center;
    }
    .area-right{
        flex-direction: column;
    }
    .area-left{
        flex-direction: column-reverse;
    }
    .img-place{
        margin: 0 auto;
        width: 750px;
    }
    .ih-01{
        height: 550px;
    }
    .ih-02{
        height: 610px;
    }
    .ih-03{
        height: 780px;
    }
    .img-place img{
        width: 700px;
        top: 0;
        left: 21px;
    }
    .img-shadow01, .img-shadow02{
        top: 8px;
        left: 29px;
        width: 700px;
        height: 469px;
    }
    .img-shadow03{
        top: 8px;
        left: 29px;
        width: 700px;
        height: 530px;
    }
    .img-shadow04, .img-shadow05{
        top: 8px;
        left: 28px;
        width: 700px;
        height: 526px;
    }
    .img-shadow06{
        top: 8px;
        left: 28px;
        width: 700px;
        height: 700px;
    }
    .img-shadow07{
        top: 8px;
        left: 28px;
        width: 700px;
        height: 526px;
    }
    
    .text-place{
        width: 700px;
        height: auto;
        margin: 0 auto;
    }

    .text-btn{
        position: static;
        bottom: 0;
        left: 0;
        transform: translate(0, 0);
    }
    .line-place{
        position: static;
    }
    .line_add_frieds{
        flex-direction: column;
        justify-content: normal;
    }
    .line_add_frieds a{
        width: 100%;
    }
    /* カンパニー ---------------------------*/
    .company.is-active {
        flex-direction: column;
    }
    /* オリジナルグッズ -----------------------*/
    .goods-container{
        flex-direction: column;
    }
    .goods-photo img{
        display:block;
        margin: 0 auto;
    }
    .goods-container p{
        text-align: center;
    }
    /* フッター　-----------------------------*/
}
@media(max-width: 900px){
    /* 共通設定 ------------------------*/
    h2{
        font-size: 2rem;
    }
    /* ヘッダー --------------------------*/
    /* トップ -----------------------------*/
    /* キャッチ・リード ---------------------*/
    #lead div{
        max-width: 85%;
    }
    /* サービス ----------------------------*/
    .content h3{
        font-size: 1.5rem;
    }

    .img-place{
        width: 550px;
    }
    .ih-01{
        height: 385px;
    }
    .ih-02{
        height: 430px;
    }
    .ih-03{
        height: 550px;
    }
    .img-place img{
        width: 500px;
    }
    .img-shadow01, .img-shadow02{
        width: 500px;
        height: 335px;
    }
    .img-shadow03{
        width: 500px;
        height: 379px;
    }
    .img-shadow04, .img-shadow05, .img-shadow07{
        width: 500px;
        height: 377px;
    }
    .img-shadow06{
        width: 500px;
        height: 500px;
    }    
    .text-place{
        width: 500px;
    }

    /* カンパニー ---------------------------*/
    /* オリジナルグッズ -----------------------*/
    /* コンタクト　-----------------------------*/
    .contacts-area{
        flex-direction: column;
        justify-content: normal;
    }
    .contact{
        margin: 2rem 1rem;
    }
}
@media(max-width: 600px){
    /* 共通設定 ------------------------*/
    h2{
        font-size: 1.5rem;
    }
    h3{
        font-size: 1.2rem;
    }
    /* ヘッダー --------------------------*/
    /* トップ -----------------------------*/
    /* キャッチ・リード ---------------------*/
    .top-btn{
        right: 11px;
    }
    .rotate {
        width: 50px;
        height: 50px;
    }
    /* サービス ----------------------------*/
    .img-place{
        width: 350px;
    }
    .ih-01{
        height: 230px;
    }
    .ih-02{
        height: 250px;
    }
    .ih-03{
        height: 330px;
    }
    .img-place img{
        width: 300px;
    }
    .img-shadow01, .img-shadow02{
        width: 300px;
        height: 202px;
    }
    .img-shadow03{
        width: 300px;
        height: 228px;
    }
    .img-shadow04, .img-shadow05{
        width: 300px;
        height: 227px;
    }
    .img-shadow06{
        width: 300px;
        height: 300px;
    }
    .img-shadow07{
        width: 300px;
        height: 227px;
    }
    .text-place{
        width: 90%;
    }
    .content h3::before, .content h3::after{
        width: 0;
    }
    .btn-place{
        margin-top: 0;
    }
    .content-title::before{
        width: 0;
        margin-right: 0;
    }
    .content-title::after{
        width: 0;
        margin-left: 0;
    }
    /* カンパニー ---------------------------*/
    .store-info h3{
        padding: 1rem;
        font-size: 1.2rem;
    }
    .location-map{
        position: relative;
        width: 100%;
        height: 0;
        padding-top: 56.25%;/*比率をお好みで*/
    }
    .location-map iframe{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .tab li a{
        font-size: 1rem;
    }
    /* オリジナルグッズ -----------------------*/
    .goods h3{
        font-size: 1.2rem;
    }
    .goods h3::before, .goods h3::after{
        width: 0;
    }
    /* コンタクト　-----------------------------*/
    .contact{
        padding: 1rem;
    }
}