@charset "UTF-8";

/* ================================================================

制作コンテンツ

info:
- レスポンシブの場合は、ブレイクポイント 768px で記述してください。
- SP用CSSを先に記述する方法を推奨します。下記の記述は例です。
- PCのみの場合は、記述を削除してください。

================================================================ */

h1 {
    position: absolute;
    top: -1000px;
}

.title-wrap {
    background: url(../images/title-bg.png) no-repeat top center;
    height: 459px;
    max-width: 1600px;
}

.slide_01 {
    background: url(../images/slider_01.png) no-repeat top center;
    height: 459px;
    max-width: 1600px;
}

.slide_02 {
    background: url(../images/slider_02.png) no-repeat top center;
    height: 459px;
    max-width: 1600px;
}

.slide_03 {
    background: url(../images/slider_03.png) no-repeat top center;
    height: 459px;
    max-width: 1600px;
}

.slide_04 {
    background: url(../images/slider_04.png) no-repeat top center;
    height: 459px;
    max-width: 1600px;
}

.content-wrap {
    background: url(../images/bg.png) no-repeat top center;
    height: 3041px;
    max-width: 1600px;
}

.content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.parts,
.article,
.link {
    position: absolute;
}

.parts01 {
    top: -423px;
    left: 20px;
}

.article01 {
    top: 43px;
    left: 95px;
}

.article02 {
    top: 570px;
    left: 53px;
}

.article03 {
    top: 1223px;
    left: 54px;
}

.article04 {
    top: 1872px;
    left: 53px;
}

.accordion-menu {
    top: 2483px;
    left: 63px;
}

.link01 {
    top: 2951px;
    left: 54px;
}

.link02 {
    top: 2951px;
    right: 54px;
}

.link:hover {
    opacity: 0.9;
    transform: translateX(4px);
    transition-duration: 1s;
}

/* アコーディオンの記述 */

.accordion-menu dl {
    width:973px;
    height:419px; }
    
.accordion-menu dt {
    width:125px;
    height:419px;
    float:left;
}

.accordion-menu dt span {
    display:block;
    width:100%;
    height:100%;
}

.accordion-menu dt span.over {
    cursor:pointer;
}

.accordion-menu dt span.selected {
    cursor:default;
}

.accordion-menu dt#s01 {
    display: none;
}

.accordion-menu dd {
    margin:0;
    width:598px;
    height:419px;
    float:left;
    background:#efefef; overflow:hidden;
}

.accordion-menu dd p {
    width:598px;
    margin:0;
}

.accordion-menu dt span.over:hover {
    opacity: 0.7;
}





.seasonarea {
    position: absolute;
    top: 2483px;
    left: 63px;
    width: 973px;
}
.seasonarea ul{

    display: flex;
}
.seasonarea ul li {
    position: relative;
    width: 125px;
    overflow: hidden;
    cursor: pointer;
}
.seasonarea ul li img {
    width: auto;
    max-width: 598px;
    vertical-align: middle;

}

.seasonarea ul li img.icon {
    position: absolute;
    bottom: 0;
    left: 0;
}

.seasonarea ul li span.on {
    display: block;
}
.seasonarea ul li span.off {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.seasonarea ul li:hover img.icon {
    animation: circle 0.3s forwards;
    z-index: 55;
}

@keyframes circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


.seasonarea ul li.is-active:hover img.icon {
    animation: none;
}



.seasonarea ul li.is-active {
    width: 598px;
    animation: fadeIn 0.7s forwards;
}

@keyframes fadeIn {
  0% {
    width: 125px;
  }
  100% {
    width: 598px;
  }
}

.seasonarea ul li.is-active02 {
    animation: fadeIteo 0.7s forwards;
}

@keyframes fadeIteo {
  0% {
    width: 598px;
  }
  100% {
    width: 125px;
  }
}




/* PC、Tablet用CSSの記述 */
@media (min-width:768px){
}



