:root{
    --main-cr: #8BFF00;
}
@font-face {
    font-family: "genju";
    src: url(https://kabukoubou.com/home/font/GenJyuuGothicX-Bold.ttf) format("truetype");
  }
/* 共通 */
body{
    position: relative;
    font-family: "Roboto";
    z-index:1;
}
body:before{
    content: '';
    position: fixed;
    z-index: -1;
    background: url(img/bg.png);
    background-size: 100% cover;
    background-position: center;
    width: 100vw;
    height: 100vh;
    top:0;
    left: 0;
}
@media screen and (max-width:541px){
    body:before{
        background: url(img/bg-sp.png);
        background-size: cover;
    }
}
a{text-decoration: none;}
li{list-style: none;}
section{width: 1080px;margin: auto;padding: 40px 80px;}
.title{
    text-align: center;font-weight:bold;color: #fff;
    font-family: "genju";
}
h2.title{font-size:32px;}
@media screen and (max-width:1200px){
    section{
        width: 90%;
        padding: 40px 0px;
    }
}
@media screen and (min-width:541px){
    .sp{display: none;}
}
@media screen and (max-width:540px){
    .pc{display: none;}
    h2.title{font-size:24px;}
    body p{
        font-size: 14px;
    }
    section{
        width: 95%;
        padding: 24px 0px;
    }
}

/* ナビ */
nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
}
nav ul li {
    color: #b3b3b3;
    padding: 0px 8px;
    margin: 0 8px;
}
nav ul li a{
    color: #fff;
}

/* キービジュアル */
.key img{
    width: 1000px;
    margin: auto;
    display: block;
}
.key-text{
    background: url(img/concept-bg.png)no-repeat;
    background-size:contain;
    background-position: center;
    max-width: 720px;
    padding:72px 90px 50px;
    margin: -150px auto 0;
    color:#fff;
    z-index: 1;
    position: relative;
}
.key-text .title{
    font-size: 22px;
}
@media screen and (max-width: 1240px){
    .key img{
        width: 90%;
    }
    .key-text{
        width: 90%;
    }
}
@media screen and (max-width: 540px){
    .key-text .title{
        font-size: 18px;
        margin-bottom: 16px;
    }
    .key img{
        width: 100%;
    }
    .key-text{
        width: 100%;
        background: url(img/concept-bg-sp.png)no-repeat;
        background-size:contain;
        background-position: center;
        padding:148px 0px 120px;
        margin: -90px auto -32px;
    }
    .key-text p{
        width: 67%;
        margin: auto;
    }
}

/* お知らせ */
.news ul{
    max-width: 500px;
    margin: auto;
}
.news ul li{
     color: #fff;
     text-align: center;
     border-bottom: 1px dashed #fff;
     padding: 16px 0px;
     list-style: none;
     background: rgba(0,0,0,0.3);
}
.news ul li:first-child{
    border-top:1px dashed #fff;
}
@media screen and (max-width: 540px){
    .news ul{
        width: 95%;
        padding-left: 10px;
        padding-right: 10px;
    }
    .news ul li{
        font-size: 14px;
    }
}
/* 制作事例 */
/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: rgba(255,255,255,0.85);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 700px;
  margin: 0 auto;}
  @media screen and (max-width: 768px){
    .tabs {
        width: 95%;
    }
  }
/*タブのスタイル*/
.tab_item {
  width: calc(100%/3);
  height: 50px;
  /* border-bottom: 3px solid #5ab4bd; */
  border-bottom: 3px solid var(--main-cr);
  /* background-color: #d9d9d9; */
  background-color: rgba(0,0,0,0.6);
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #fff;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
  position: relative;
}
.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 20px 40px 0;
  clear: both;
  overflow: hidden;
}

/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#design:checked ~ #design_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  /* background-color: #5ab4bd; */
  color: #000;
  background-color: var(--main-cr);
}

.tab_item:before{
    position: absolute;
    content: '';
    bottom: -3px;
}
.normal:before{
    background: url(img/btn-icon-1.png)no-repeat;
    background-size: contain;
    width: 70px;
    height: 70px;
    left: -15px;
}
.mega:before{
    background: url(img/btn-icon-2.png)no-repeat;
    background-size: contain;
    width: 74px;
    height: 74px;
    left: 10px;
}
.special:before{
    background: url(img/btn-icon-3.png)no-repeat;
    background-size: contain;
    width: 80px;
    height: 65px;
    left: -10px;
}
@media screen and (max-width: 540px){
    .tab_item:before{
        position: static;
    }
    .tab_item span{
        display: none;
    }
}

/* 着ぐるみ説明 */
.works-detail-title{
    text-align: center;
}
.works ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.works ul li{
    width: 45%;
}
.works ul li img{
    width: 100%;
    /* height: 200px; */
    margin:  auto;
    text-align: center;
}
.works ul li p span{
    display: none;
}
@media screen and (max-width:540px){
    .works ul {
        justify-content: center;
        padding-left: 0;
    }
    .works ul li{
        width: 100%;
    }
    
}
/* 料金 */
.price-type{
    display: flex;
    justify-content: space-between;
}
.price-type-item{
    width: 40%;
    border: 2px solid #000;
    background: rgba(255,255,255,0.75);
    position: relative;
    padding: 40px;
}
.price-type-item img.title{
    position: absolute;
    width: 240px;
    top: -30px;
    left:-30px;
}
.price h3{
    background: #542F0B;
    color: #fff;
    text-align: center;
    padding: 8px;
}
p.price-text{
    font-size: 40px;
    font-weight:bold;
    text-align: center;
    line-height: 1;
    margin: 20px;
    font-family: "genju";
}
p.price-text span{
    font-size: 28px;
    padding-left: 4px;
}
p.op-text{
    font-size: 20px;
    font-family: "genju";
    font-weight:bold;
}
.price-type-item img{
    width: 100%;
}
.price-under{
    color: #fff;
    padding: 16px;
}

@media screen and (max-width:768px){
    .price-type{
        flex-wrap: wrap;
        justify-content: center;
    }
    .price-type-item{
        width: 75%;
    }
}
@media screen and (max-width:540px){
    .price-type-item{
        padding: 30px;
        margin-top: 30px;
    }
    .price-type-item img.title{
        width: 180px;
        top: -20px;
        left:-30px;
    }
    p.op-text{
        font-size: 18px;
        font-family: "genju";
        font-weight:bold;
    }

    /* 英語調整 */
    .eng p.price-text{
        font-size: 24px;
    }
    .eng p.op-text{
        font-size: 15px;
    }
}

/* ボタン */
.btn a{
    display: block;
    background: var(--main-cr);
    width: 300px;
    margin: auto;
    text-align: center;
    padding: 16px;
    border-radius: 40px;
    color: #000;
    font-weight: bold;
}
@media screen and (max-width:540px){
    .btn a{
        width: 80%;
    }
}
/* 制作の流れ */
.flow li{
    border: 2px solid #000;
    background: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    padding: 16px 32px;
}
.flow li img{
    width:100px;
    opacity: 0.4;
    padding-right: 32px;
}
.flow li p span{
    display: block;
    text-align: left;
    color: #000;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 12px;
}
@media screen and (max-width:540px){
    .flow ul{
        padding-left: 0px;
    }
    .flow li{
        flex-wrap: wrap;
        justify-content: center;
        margin:10px auto;
    }
    .flow li img{
        width:60px;
        padding-right: 0px;
    }
    .flow li p {
        width: 100%;
    }
    .flow li p span{
        text-align: center;
    }
}

/* 問い合わせ */
section.contact{
    padding-bottom:120px;
}
section.contact h2.title{
    font-size:28px;
}
@media screen and (max-width:540px){
    section.contact h2.title{
        font-size:20px;
    }
}

/* フッター */
footer p.copy{
    text-align: center;
    color: #fff;
    font-size: 13px;
    opacity: 0.71;
}