@charset "utf-8";
/* リセット
------------------------------------- */
* {
	margin:0;
	padding:0;
	box-sizing:border-box;
}

table {border-spacing:0; border-collapse:collapse;}
* html table {border-collapse:collapse;}
*:first-child+html table {border-collapse:collapse;}
caption,th {text-align:left; font-weight:normal;}
table,th,td,img {border:0;}
img,input {vertical-align:middle; outline:none;}
q:before,q:after {content:'';}
ul {list-style: none;}

hr,
legend,
caption {display:none;}

img {border:0; vertical-align:bottom;}

a:focus { outline:none;}


/* aタグ設定
------------------------------------- */
a{
    color:#FD5229;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
	opacity:0.75;
	filter: alpha(opacity=75);
	-ms-filter: "alpha(opacity=75)";
	-moz-opacity:0.75;
	-khtml-opacity: 0.75;
	zoom:1;
}

a:active {
    position: relative;
    top: 2px;
    left: 2px;
}

/* 基本設定
------------------------------------- */
body{
    width: 100%;
    height: 100%;
    /* font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif; */
    font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    color: #3B1316;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.flex{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

/* アニメーション */
@-webkit-keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  75% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}
@keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  75% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}

/* マウスオーバー時 */
.boxWorks:hover, .boxWorks:focus, .boxWorks:active {
  -webkit-animation-name: hvr-pulse;
  animation-name: hvr-pulse;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  cursor: pointer;
}

/* マウスオーバー時 */
.btnAction:hover, .btnAction:focus, .btnAction:active {
  -webkit-animation-name: hvr-pulse;
  animation-name: hvr-pulse;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  cursor: pointer;
}

.comingsoon{
    width: 300px;
    height: auto;
    margin: 5vw auto;
}

/* Header
------------------------------------- */
#header{
    width: 100%;
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

@media screen and (min-width: 1200px){
    #header p:nth-child(1){
        width: 152px;
        height: 137px;
        margin: 30px;
    }
}

@media screen and (max-width: 1199px){
    #header p:nth-child(1){
        width: 12.67vw;
        height: 11.42vw;
        margin: 2.5vw;
    }
}

#header p:nth-child(1) img{
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 1200px){

    #header p:nth-child(2){
        font-family: "Jersey 10", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 108px;
        color: #000;
        transform: rotate(-8deg);
        line-height: 0.8;
        padding-right: 72px;
    }

    #header p:nth-child(2) span{
        display: block;
        font-family: "Kaisei Opti", serif;
        font-weight: 400;
        font-style: normal;
        font-size: 26px;
        letter-spacing: 0.33vw;
    }

}
    
@media screen and (max-width: 1199px){

    #header p:nth-child(2){
        font-family: "Jersey 10", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 9vw;
        color: #000;
        transform: rotate(-8deg);
        line-height: 0.8;
        padding-right: 6vw;
    }

    #header p:nth-child(2) span{
        display: block;
        font-family: "Kaisei Opti", serif;
        font-weight: 400;
        font-style: normal;
        font-size: 2.17vw;
        letter-spacing: 0.33vw;
    }

}

/* ハンバーガーメニュー
------------------------------------- */
.hamburger-menu {
    width: 42px;
    height: 41px;
    position: relative;
    border: none;
    background: transparent;
    appearance: none;
    padding: 0;
    cursor: pointer;
    margin: 30px;
}

.hamburger-menu::before{
    position: absolute;
    content: "";
    width: 80px;
    height: 52px;
    background: url("../img/iconMenu.svg") no-repeat;
    background-size: 100%;
    top: -60px;
    left: -18px;
}

.hamburger-menu__bar {
  display: inline-block;
  width: 42px;
  height: 9px;
  background: #242424;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: .5s;
}
.hamburger-menu__bar:first-child {
  top: 0px;
}
.hamburger-menu__bar:nth-child(2) {
  top: 16px;
}
.hamburger-menu__bar:last-child {
  top: 32px;
}
.hamburger-menu--open .hamburger-menu__bar {
  top: 50%;
}
.hamburger-menu--open .hamburger-menu__bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.hamburger-menu--open .hamburger-menu__bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
  display: none;
}
.navigation {
    display: none;
    background: #1B78BD;
    position: absolute;
    top: 197px;
    width: 100%;
    z-index: 9999;
    font-family: "Kaisei Opti", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 26px;
    letter-spacing: 3px;
    opacity: 0.9;
}
.navigation__list {
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.navigation__link {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    display: block;
    padding: 12px 0;
    transition: 1.0s;
    border-bottom: solid 1px #fff;
}

@media (hover: hover) and (pointer: fine) {
    .navigation__link:hover {
        background:#003479;
    }
}

/* Slide
------------------------------------- */
#slide{
    width: 100%;
    height: auto;
    margin: 0 auto;
    background: #FFE3C0
}

#slide .slider .slideBox{
    width: 100%;
    height: auto;
    margin: 0 auto;
}

#slide .slider .slideBox img {
    width: 100%;
    height: 44.53%;
}

#slide .slider .slideBox a {
	transition: 0.8s;
}

#slide .slider .slideBox a:hover {
	opacity:0.65;
	transition: 0.8s;
}

#slide .slider img.arrowL{
    position: absolute;
    width: 50px;
    height: 40px;
    z-index: 1;
    top: calc(50% - 10px);
    left: 10px;
    transform: scale(-1, 1);
}

#slide .slider img.arrowR{
    position: absolute;
    width: 50px;
    height: 40px;
    z-index: 1;
    top: calc(50% - 10px);
    right: 10px;
}

#slide .slider img.arrowL:hover, #slide .slider img.arrowR:hover{
    opacity:0.55;
	transition: 0.5s;
    cursor: pointer;
}

#slide .slider ul.slideDots{
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: center;
    list-style-type: none;
}

#slide .slider ul.slideDots li{
    display: inline-block;
    margin: 0 5px;
}

#slide .slider ul.slideDots li button{
    position: relative;
    text-indent: -9999px;
    height: 12px;
    width: 12px;
    border-radius: 6px;
    border: none;
    background: #C8C9CA;
}

#slide .slider ul.slideDots li button:hover{
    opacity:0.55;
	transition: 0.5s;
    cursor: pointer;
}

#slide .slider ul.slideDots li.slick-active button{
    background: #1867F0;
}

#slide .slick-dotted.slick-slider{
    margin-bottom: 0 !important;
}

/* Works
------------------------------------- */
#wrapWorks{
    position: relative;
    width: 100%;
    overflow: hidden;
}

@media screen and (min-width: 1200px){

    #wrapWorks #works{
        position: relative;
        width: 1200px;
        margin: 0 auto 0;
        display: flex;
        flex-flow: row wrap;
        justify-content: flex-start;
        align-items: center;
    }

    #wrapWorks #works.top{
        transform: rotate(-8deg);
        padding-bottom: 40px;
    }
    
    #wrapWorks #works h1{
        font-family: "Jersey 10", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 72px;
        color: #000;
        text-align: center;
        width: 100%;
        margin: 40px auto 0;
    }

    #wrapWorks #works p.msg{
        font-size: 17px;
        font-family: "Kaisei Opti", serif;
        margin: 0 auto 50px;
        text-align: center;
    }

    #wrapWorks #works.top h1{
        margin-top: 0;
        margin-bottom: 0;
        margin-left: 30px;
        text-align: left;
    }

    #wrapWorks #works.top p.msg{
        margin-left: 30px;
        text-align: left;
        width: 100%;
        margin-bottom: 10px;
    }
    
    
    #wrapWorks #works .boxWorks{
        position: relative;
        width: 360px;
        height: 240px;
        margin: 10px 20px;
        overflow: hidden; /* はみ出した部分を非表示にする */
        display: flex; /* Flexboxを使って中央揃えにする */
        justify-content: center; /* 水平方向の中央揃え */
        align-items: center; /* 垂直方向の中央揃え */
    }

    #wrapWorks #works .boxWorks .mask {
        width:			300px;
        height:			180px;
        position:		absolute;
        top:			30px;
        left:			30px;
        opacity:		0;	/* 表示させない */
        background-color:	rgba(255,255,255,0.9);
        -webkit-transition:	all 0.6s ease;
        transition:		all 0.6s ease;
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-items: center;
        align-content: center;
        text-align: center;
    }

    #wrapWorks #works .boxWorks .mask span{
        font-family: "M PLUS Rounded 1c", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 13px;
        color: #fff;
        background: #FF9300;
        padding: 1px 5px;
        margin: 3px 3px;
        line-height: 1.2;
    }

    #wrapWorks #works .boxWorks .mask p{
        font-family: "Kaisei Opti", serif;
        font-weight: 400;
        font-style: normal;
        font-size: 17px;
        color: #000;
        line-height: 1.3;
        width: 100%;
    }
 
}

@media screen and (max-width: 1199px){

    #wrapWorks #works{
        position: relative;
        width: 100vw;
        margin: 0 auto 0;
        display: flex;
        flex-flow: row wrap;
        justify-content: flex-start;
        align-items: center;
    }

    #wrapWorks #works.top{
        transform: rotate(-8deg);
        padding-bottom: 40px;
    }
    
    #wrapWorks #works h1{
        font-family: "Jersey 10", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 6vw;
        color: #000;
        text-align: center;
        width: 100%;
        margin: 3.33vw auto 0;
    }

    #wrapWorks #works p.msg{
        font-size: 1.8vw;
        font-family: "Kaisei Opti", serif;
        text-align: center;
        width: 100%;
        margin: 0 auto 6vw;
    }

    #wrapWorks #works.top h1{
        margin-top: 0;
        margin-bottom: 0;
        margin-left: 10vw;
        text-align: left;
    }
    
    #wrapWorks #works.top p.msg{
        font-size: 1.8vw;
        font-family: "Kaisei Opti", serif;
        margin-left: 10vw;
        text-align: left;
    }
    
    #wrapWorks #works .boxWorks{
        position: relative;
        width: 30vw;
        height: 20vw;
        margin: 0.8vw 1.60vw;
        overflow: hidden; /* はみ出した部分を非表示にする */
        display: flex; /* Flexboxを使って中央揃えにする */
        justify-content: center; /* 水平方向の中央揃え */
        align-items: center; /* 垂直方向の中央揃え */
    }

    #wrapWorks #works .boxWorks .mask {
        width:			25vw;
        height:			15vw;
        position:		absolute;
        top:			2.5vw;
        left:			2.5vw;
        opacity:		0;	/* 表示させない */
        background-color:	rgba(255,255,255,0.9);
        -webkit-transition:	all 0.6s ease;
        transition:		all 0.6s ease;
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-items: center;
        align-content: center;
        text-align: center;
    }

    #wrapWorks #works .boxWorks .mask span{
        font-family: "M PLUS Rounded 1c", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 1.08vw;
        color: #fff;
        background: #FF9300;
        padding: 0.08vw 0.42vw;
        margin: 0.25vw 0.25vw;
        line-height: 1.2;
    }

    #wrapWorks #works .boxWorks .mask p{
        font-family: "Kaisei Opti", serif;
        font-weight: 400;
        font-style: normal;
        font-size: 1.42vw;
        color: #000;
        line-height: 1.3;
        width: 100%;
    }
 
}

#wrapWorks #works ul.menuCategory{
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    font-family: "Jersey 10", sans-serif;
    letter-spacing: 1.0px;
    font-size: 24px;
    margin: -50px auto 50px;
}

#wrapWorks #works ul.menuCategory li{
    position: relative;
    margin: 0 7px;
}

#wrapWorks #works ul.menuCategory li:not(:first-child)::before{
    position: absolute;
    content: ".";
    left: -9px;
}

#wrapWorks #works .boxWorks img{
    max-width: 100%; /* 幅がDIVの100%を超えないようにする */
    max-height: 100%; /* 高さがDIVの100%を超えないようにする */
    object-fit: contain; /* 画像の縦横比を保持しつつ、可能な限りDIVに合わせる */
}

#wrapWorks #works .boxWorks:hover .mask {
	-webkit-transform:	rotate(360deg);
	transform:		rotate(360deg);
	opacity:		1;	/* ホバーで表示する */
}

#wrapWorks #works p.btnMore{
    position: relative;
    font-family: "Jersey 10", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    color: #000;
    text-align: center;
    width: 100%;
}

#wrapWorks #works p.btnMore span{
    font-size: 24px;
    position: relative;
    top: -2px;
}

#wrapWorks #works .boxModal{
    display: none;
    position: absolute;
    width: 80%;
    height: 80%;
    z-index: 100;
}

/* モーダル内レスポンシブ対応 */
.modaal-container{
    font-family: "Kaisei Opti", serif;
}

.modaal-container h2{
    width: 100%;
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 30px;
}

.modaal-container h3{
    width: 95%;
    text-align: left;
    font-weight: 700;
    font-size: 22px;
    margin: 0 auto;
    line-height: 1.2;
}

.modaal-container h3 a.url{
    font-size: 0.8em;
    letter-spacing: 0.3px;
}

.modaal-container .youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.modaal-container .youtube iframe {
  width: 100%;
  height: 100%;
}

.modaal-container img{
    width: 100%;
    height: auto;
}

.modaal-container p{
    width: 95%;
    text-align: left;
    margin: 0 auto 50px;
    font-size: 18px;
}

.modaal-container .boxBtn{
    width: 100%;
    text-align: right;
}

.modaal-container .boxBtn a img.btnContact{
    width: 465px;
    height: 103px;
}

ul.pagination {
	display: flex;
	justify-content: center;
	margin: 63px auto 63px;
	font-family: "Jersey 10", sans-serif;
    font-size: 21px;
}

ul.pagination li {
	width: 33px;
	height: 33px;
}

ul.pagination li:not(:first-child) {
	margin-left: 12px;
}

ul.pagination li a {
	width: 100%;
	height: 100%;
	border-radius: 5px;
	border: 2px solid #ef821e;
	text-align: center;
	line-height: 1!important;
	display: flex;
	justify-content: center;
	align-items: center;
}

ul.pagination li.skip a {
	border: none;
	pointer-events: none;
}

ul.pagination li.skip.cur a {
	background: none;
	color: #ef821e;
}

ul.pagination li.back a,
ul.pagination li.next a {
	padding-bottom: 4px;
}

ul.paginationli.cur a {
	background: #ef821e;
	color: #fff!important;
	pointer-events: none;
}


/* About
------------------------------------- */
#wrapAbout{
    position: relative;
    width: 100vw;
    overflow: hidden;
}

#wrapAbout #about{
    position: relative;
    width: 100%;
    margin: 0 auto 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
}

#wrapAbout #about h1{
    font-family: "Jersey 10", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 72px;
    color: #000;
    text-align: center;
    width: 100%;
    margin: 40px auto 50px;
}

/* Artists
------------------------------------- */
#wrapArtists{
    position: relative;
    width: 100vw;
    overflow: hidden;
}

#wrapArtists #artists{
    position: relative;
    width: 100%;
    margin: 0 auto 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
}

#wrapArtists #artists h1{
    font-family: "Jersey 10", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 72px;
    color: #000;
    text-align: center;
    width: 100%;
    margin: 40px auto 50px;
}

/* Contact
------------------------------------- */
#wrapContact{
    position: relative;
    width: 100%;
}

#wrapContact #contact{
    position: relative;
    width: 760px;
    margin: 0 auto 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    font-family: "Kaisei Opti", serif;
    text-align: center;
}

#wrapContact #contact h1{
    font-family: "Jersey 10", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 72px;
    color: #000;
    text-align: center;
    width: 100%;
    margin: 40px auto 30px;
}

#wrapContact #contact h2{
    font-weight: 700;
    font-style: normal;
    font-size: 30px;
    color: #000;
    text-align: center;
    width: 100%;
    margin: 0px auto 10px;
}

#wrapContact #contact p{
    width: 100%;
    margin-bottom: 30px;
}

#wrapContact #contact p.result{
    font-size: 17px;
    line-height: 2.0;
}

#wrapContact #contact p.result span{
    display: block;
    font-size: 20px;
    margin: 20px auto;
}

#wrapContact #contact dl.formContact{
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: stretch;
    text-align: left;
}

#wrapContact #contact dl.formContact dt{
    width: 200px;
    height: 46px;
    background: #1F8ECE;
    font-size: 16px;
    color: #fff;
    padding: 8px 18px;
    margin: 10px 0;
    border: solid #1F8ECE;
    border-width: 1px 0 1px 1px;
    border-radius: 6px 0 0 6px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}

#wrapContact #contact dl.formContact dt.required{
    position: relative;
}

#wrapContact #contact dl.formContact dt.required::after{
    position: absolute;
    width: 38px;
    height: 21px;
    display: block;
    content: "必須";
    right: 10px;
    font-size: 14px;
    background: #FF1D00;
    color: #fff;
    text-align: center;
    border-radius: 4px;
}

#wrapContact #contact dl.formContact dd{
    width: 560px;
    height: 46px;
    background: #fff;
    font-size: 16px;
    color: #000;
    padding: 8px 10px 8px 10px;
    margin: 10px 0;
    border: solid #1F8ECE;
    border-width: 1px 1px 1px 0;
    border-radius: 0 6px 6px 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}

#wrapContact #contact dl.formContact.confirm dt::before{
    position: absolute;
    content: "";
    width: 14px;
    height: 21px;
    background: url("../img/iconTriangleR.svg") no-repeat;
    right: -20px;
}

#wrapContact #contact dl.formContact.confirm dd{
    border: none;
    padding-left: 28px;
}

#wrapContact #contact dl.formContact dd input,
#wrapContact #contact dl.formContact dd textarea{
    border: none;
    font-family: "Kaisei Opti", serif;
    font-size: 16px;
    color: #000;
    padding: 4px 7px;
    border-radius: 5px;
}

#wrapContact #contact dl.formContact dd input::placeholder,
#wrapContact #contact dl.formContact dd textarea::placeholder{
    color: #87CCE0;
}

#wrapContact #contact dl.formContact dd input{
    width: 400px;
}

#wrapContact #contact dl.formContact dt.contentInquiry,
#wrapContact #contact dl.formContact dd.contentInquiry{
    height: 200px;
}

#wrapContact #contact dl.formContact.confirm dt.contentInquiry,
#wrapContact #contact dl.formContact.confirm dd.contentInquiry{
    height: auto;
}

#wrapContact #contact dl.formContact dd.contentInquiry textarea{
    height: 174px;
    width: 540px;
}

#wrapContact #contact .formBtnBox{
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    margin: 20px auto 0;
}

#wrapContact #contact .formBtnBox .btnSubmit{
    width: 319px;
    height: 138px;
    border: 0px;
    background: url("../img/btnSubmit.png") no-repeat;
    background-size: 100%;
}

#wrapContact #contact .formBtnBox .btnBack{
    width: 203px;
    height: 87px;
    border: 0px;
    background: url("../img/btnBack.png") no-repeat;
    background-size: 100%;
    margin-right: 30px;
}

#wrapContact #contact .formBtnBox .btnTop img{
    position: relative;
    width: 344px;
    height: 141px;
    left: 20px;
}

#wrapContact #contact .formBtnBox .btnSubmit:hover,
#wrapContact #contact .formBtnBox .btnBack:hover{
    cursor: pointer;
}

/* Banners
------------------------------------- */
#banners{
    width: 100%;
    text-align: right;
}

#banners a img.btnContact{
    width: 465px;
    height: 103px;
    margin: 50px auto 0;
}

/* Footer
------------------------------------- */
#footer{
    text-align: center;
    font-family: "Jersey 10", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 21px;
    color: #fff;
    letter-spacing: 1px;
    margin: 70px auto 0px;
    background: #6FBBDB;
    padding: 20px 0;
}

/* clearfix
------------------------------------- */
.clearfix:after {
	content : '';
	display : block;
	clear : both;
	height: 0;
}