/* header */
header{
    margin: 0px;
    padding: 0px;
    height: 120px;
    width: 100%;
    position: fixed;
    z-index: 99;
    background-color: #d8f309;
    display: block;
    font-family: "Sigmar", serif;
}
@media  only screen and (max-width: 800px){
    header{
        height: 150px;
    }
}
#hd_area{
    display: flex;
    height: 120px;
    width: auto;
    align-items: center;
    justify-content: space-between;
}
@media  only screen and (max-width: 800px){
    #hd_area{
        width: auto;
    }
}
.hd_menu h1{
    display: block;
    text-align: left;
}
@media  only screen and (max-width: 1024px){
    .hd_menu h1{
        padding-left:40px;
    }
}
@media  only screen and (max-width: 800px){
    .hd_menu h1{
        display: inline-block;
        padding-left: 30px;
    }
}
.sp{
    display: none;
}
@media not all and (min-width: 800px){
    .sp{
        display: block;
    }
}
.hd_menu a{
    font-size: 16px;
    font-weight: bold;
    font-family: "Lora", serif;
    color: orange;
    margin: 15px;
    padding-right: 60px;
}
@media  only screen and (max-width: 1024px){
    .hd_menu a{
        margin: 5px;
        padding-right: 30px;
    }

}
h1{
    margin: 0px;
    padding-top: 15px;
    padding-left: 60px;
}
/* ハンバーガーメニュー */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
}
.hamburger span {
    display: block;
    height: 4px;
    background-color: #333;
    border-radius: 2px;
    transition: 0.3s;
}
/* ハンバーガーメニューが開いたときの変化 */
.hamburger.open span:nth-child(1) {
    transform: rotate(45deg);
    position: relative;
    top: 6px;
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg);
    position: relative;
    top: -6px;
}
/* スライドメニュー */
.slide-menu {
    position: fixed;
    top: 0;
    right: -300px;  /* 初期状態は画面外に隠れている */
    width: 250px;
    height: auto;
    background-color: #f58a2c;
    color: white;
    list-style-type: none;
    padding: 20px;
    transition: right 0.3s ease-in-out;
}
.slide-menu li {
    margin-bottom: 20px;
}
.slide-menu li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}
/* 閉じるボタンのスタイル */
.close-btn {
    font-size: 30px;
    color: white;
    cursor: pointer;
    text-align: right;
    margin-bottom: 20px;
}
/* スライドメニューが開いた状態 */
.slide-menu.open {
    right: 0;  /* メニューを画面に表示 */
}
/* body */
body{ 
    overflow-x: hidden;
    font-family: "Lora", serif;
    margin: 0px;
    padding: 0px;
    height: auto;
    border: 5px solid;
    border-color: orange;
    border-top-style: none;
}
.plaid {
    background-color: #ffffff;
    background-image: repeating-linear-gradient(45deg, #ff98001f, #ff98001f 20px, transparent 20px, transparent 40px),
                      repeating-linear-gradient(-45deg, #ff98001f, #ff98001f 20px, transparent 20px, transparent 40px);
  }
#My_Product{
    padding-top: 130px;
}
.title {
    margin: 0px;
    width: auto;
    display: flex;
    height: 100px;
    justify-content: center;
    align-items: center;
}

.title span {
    position: relative;
    color: #00ff16e8;
    font-weight: bold;
}
.text{
    border-bottom: solid 5px orange;
}
.animate {
    font-size: 30px;
}
.animate span {
    display: inline-block;
} 
.animate span:nth-of-type(2) {
    animation-delay: .05s;
}
.animate span:nth-of-type(3) {
    animation-delay: .1s;
}
.animate span:nth-of-type(4) {
    animation-delay: .15s;
}
.animate span:nth-of-type(5) {
    animation-delay: .2s;
}
.animate span:nth-of-type(6) {
    animation-delay: .25s;
}
.animate span:nth-of-type(7) {
    animation-delay: .3s;
}
.animate span:nth-of-type(8) {
    animation-delay: .35s;
}
.animate span:nth-of-type(9) {
    animation-delay: .4s;
}
.animate span:nth-of-type(10) {
    animation-delay: .45s;
} 
.top-wrapper-txt span {
    opacity: 0;
    transform: translate(-150px, 0) scale(.3);
    animation: leftRight .5s forwards;
} 
@keyframes leftRight {
40% {
    transform: translate(50px, 0) scale(.8);
    opacity: 1;
    color: #fff;
}
60% {
    color: #fff;
}
80% {
    transform: translate(0) scale(3);
    opacity: 0;
}
100% {
    transform: translate(0) scale(1);
    opacity: 1;
}
}
.animation{
    animation-name: animation;
    animation-duration: 2s;
    text-align: center;
} 
  @keyframes animation{
    0%{
      width: 50%;
    }
    
    100%{
      width: 100%;
    }
}
.product_about{
    padding: 50px;
    margin: 0px 100px;
    background-color: rgb(255 249 0/64%);
    border: #d8f309;
    font-size: 30px;
    align-items: center;
}
.product_about > div {
    display: none;
}
.product_about > .product1 {
    display: block;
}
.product_title{
    color: #fd3a3ab8;
    font-weight: bold;
}
.product_contents{
    color: #09a5f38c;
    font-weight: bold;
    font-size:16px;
}
.product_explanation{
    color: #333;
}
.slide-wrapper{
    width: auto;
    height: auto;
    position: relative;
    overflow: hidden;
}
.next{
    position: absolute;
    width: 15px;
    height: 15px;
    right: 10px;
    bottom: 70%;
    z-index: 10;
    cursor: pointer;
    border-top: solid 3px #ff0000;
    border-right: solid 3px #ff0000;
    -webkit-transform: rotate(45deg) translateY(50%);
    transform: rotate(45deg) translateY(50%);
}
.prev{
    position: absolute;
    width: 15px;
    height: 15px;
    left: 25px;
    bottom: 70%;
    z-index: 10;
    cursor: pointer;
    border-top: solid 3px #ff0000;
    border-right: solid 3px #ff0000;
    -webkit-transform: rotate(-135deg) translateY(-50%);
    transform: rotate(-135deg) translateY(-50%);
}
.dots-container {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
  }
  
  .dot {
    width: 15px;
    height: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .dot.active {
    background-color: #333;
  }
.slide{ /*スライド全体 */
    width: 500%;
    height: 100%;
    display: flex;
    transition: all 0.4s;
}
.slide div{ /* スライドの中身 */
    width: 20%;
    height: 100%;
    font-size: 16px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.slide1 { /* スライドさせるために必要なクラス */
    transform: translateX(0);
}
.slide2 {
    transform: translateX(-20%);
}
.slide3 {
    transform: translateX(-40%);
}
.slide4 {
    transform: translateX(-60%);
}
.slide5 {
    transform: translateX(-80%);
}
.product_list{
    display: none;
}
.item{
    transform: translateY(20px);
    opacity: 0;
    transition: .5s;
}
.item.show{
    transform: translateY(0);
    opacity: 1;
}
.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.profile1{
    color:#6400ff8a;
    font-size: 20px;
    font-weight: bold;
    text-align: start;
    margin: 100px 200px;
}
@media  only screen and (max-width: 800px){
    .profile1{
        margin: 10px 50px;
    }
}
.profile1 > p{
    margin: 0;
}
.profile2{
    color: rgb(4 251 253 / 74%);
    font-size: 16px;
    font-weight: bold;
    text-align: start;
    margin: 100px 200px;
    margin-bottom: 0;
}
@media  only screen and (max-width: 800px){
    .profile2{
        margin: 10px 50px;
    }
}
.profile2.h2{
    font-size: 20px;
}
.explanation{
    color: #333;
    margin: 0;
    padding: 1em;
}
footer{
    font-size: 20px;
    font-weight: bold;
    height: 80px;
    background-color: rgb(198, 147, 245);
    padding: 0px;
    margin: 0px;
}
.text-area{
    text-align: right;
}
footer p{
    margin: 0px;
    padding: 16px;
    align-items: center;
    color: rgb(161, 253, 68);
    align-items: center;
    font-family: "Sigmar", serif;
}