@charset "utf-8";
/* CSS Document */

.item-h3{
    width:109%;
}
.fade-in {
    opacity: 0;
    transition: opacity 1.2s 
ease-in;
}

h1.new_h1 {
    font-size: 36px;
    margin: 200px 0px 40px 100px;
    position: relative;
    top: 40px;
    left: 40px;
}

.animatrogo {
    font-size: 21px;
    text-align: left;
    color: #d5d5d5;
    border-bottom: solid 2px;
    padding: 8px 0px 3px 10px;
    border-image: linear-gradient(to right, rgb(183 202 255), rgb(90 122 214 / 50%), rgba(0, 255, 127, 0.5), rgba(0, 255, 127, 0)) 1;
    position: relative;
    top: -150px;
}

@keyframes ani {
    0% {
filter: blur(30px);
  }

      100% {
filter: blur(0px);
  }

}

.popout.visible span {
    position: relative;
    display: inline-block;
    animation: ani 2.2s ease-in-out 1;
    padding: 2px;
    font-weight: bold;
    font-size: 70px;
}

        .popout.visible span:nth-last-child(1n) {
            animation-delay: -0.3s;
        }

        .popout.visible span:nth-last-child(2n) {
            animation-delay: -0.9s;
        }

        .popout.visible span:nth-last-child(3n) {
            animation-delay: -0.4s;
        }

        .popout.visible span:nth-last-child(4n) {
            animation-delay: -0.3s;
        }

        .popout span:nth-last-child(5n) {
            animation-delay: -0.5s;
        }

        .popout.visible span:nth-last-child(6n) {
            animation-delay: -0.7s;
        }

        .popout.visible span:nth-last-child(7n) {
            animation-delay: -0.5s;
        }

        .popout.visible span:nth-last-child(8n) {
            animation-delay: -0.3s;
        }

        .popout.visible span:nth-last-child(9n) {
            animation-delay: -0.6s;
        }





h1{
    font-size: 26px;
    font-family: auto;
    padding: 14px;
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: normal;
    font-weight: unset;
    text-align: left;
    line-height: normal;
}

h2{
    background-image: none;
    font-size: 26px;
    margin-top: 14px;
    margin-bottom: 14px;
    padding-top: 20px;
    padding-left: 26px;
    height: 48px;
    
}

h3{
    clear: both;
    background: linear-gradient(to right,#165cb4 40%,#87c2dd 100%);
    font-size: 18px;
    padding-top: 12px;
}

body{
    padding-top: 60px;
    font-size: 16px;
}

p.m_b_4{
    margin-top: 15px;
    height: 33px;

}
/* サイドナビ */

.sidenavi {
    /* width: 240px; */
    float: left;
    font-size: 14px;
    margin-top: 40px;
    display: block;
}

.sidenavi_center {
    width: 240px;
}

.sidenavi_center ul {
    margin: 0px;
    padding: 0px;
}

.sidenavi_center ul li {
    list-style-type: none;
    background-repeat: no-repeat;
    padding: 16px 10px 16px 10px;
    font-weight: bold;
    border-top: 1px solid #ffffff;
    background-color: #f6f6f6;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-image: none;
    width: auto;
    display: block;
}

.sidenavi_center ul li a:link,
.sidenavi_center ul li a:visited {
    color: #333;
    text-decoration: none;
    width: 100%;
    display: block;
}

.sidenavi_center ul li:hover {
    background-color: #4a4a4a; /* ホバー時の背景色 */
}

.sidenavi_center ul li:hover a {
    color: #fff !important; /* ホバー時にリンクの文字色を変更 */
}

.sidenavi_category {
    color: #FFF;
    background: linear-gradient(to right, #165cb4 40%, #87c2dd 100%);
    padding-left: 18px;
    border-right-width: 1px;
    border-left-width: 1px;
    border-right-style: solid;
    border-left-style: solid;
    border-right-color: #ecede7;
    border-left-color: #ecede7;
    padding-top: 20px;
    padding-bottom: 8px;
    width: 222px;
    margin: 2px;

}
    
.sidenavi p {
    clear: left;
    margin-top: 20px;
    overflow: hidden;
    transition: transform 0.3s ease; /* アニメーションをスムーズにするための遷移効果 */
}

.sidenavi_category_02{
    background-color: #d6e4f6;
    padding-left: 18px;
    border-right-width: 1px;
    border-left-width: 1px;
    border-right-style: solid;
    border-left-style: solid;
    border-right-color: #ecede7;
    border-left-color: #ecede7;
    padding-top: 6px;
    padding-bottom: 6px;
    width: 222px;
    }



.fixed ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding-left: 1%;
    font-size: 13px;
}

nav ul li {
    display: flex;
    justify-content: center;
    padding: 4px;
    margin: 4px;
}

nav ul li a {
    color: #2b2b2b;
    text-decoration: none !important;
    position: relative !important;
}

.fixed a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px; /* リンクの下に配置 */
    width: 0; /* 初期状態では横幅を0に */
    height: 2px; /* 線の高さ */
    background-color: #005aca; /* 線の色 */
    transition: width 0.3s ease; /* アニメーションの設定 */
}

.fixed a:hover::after {
    width: 100%; /* ホバー時に横幅を100%に拡大 */
}

nav img {
    position: relative;
    top: 0px;
    left: 0px;
    width: 165px;
    margin-left: 4px;
    margin-right: -12px;
}

.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    justify-content: space-evenly;
    height: 60px;
    display: flex;
    align-items: center; /* ロゴとリスト項目を垂直方向に中央揃え */
    
}

input#search {
    width: 110px;
}

input#searchbtn {
    width: 16px;
    position: absolute;
    bottom: 32px;
    margin: 10px 0px -10px 4px;
    display: revert-layer;
}

 /* スマホメニュー非表示 */
nav.SP_fixed {
    display: none;
}



.sonota{
    width: auto;
}

.m_b_4-new01 a,
.m_b_4-new02 a {
  display: inline-block;
  width: 364px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 8px;
  position: relative;
  border: 2px solid;
  color: #000;
  overflow: hidden;
  transition: background-color 0.4s ease, transform 0.2s ease;
}

/* 黄色ボタン */
.m_b_4-new01 a {
  border-color: #ffd84d;
  background-color: #fff;
}

.m_b_4-new01 a:hover {
  background-color: #ffd84d;
  transform: translateY(-2px); /* ほんのり浮く */
  box-shadow: 0 4px 10px rgba(255, 216, 77, 0.4);
}

/* 水色ボタン */
.m_b_4-new02 a {
  border-color: #7fd9ff;
  background-color: #fff;
}

.m_b_4-new02 a:hover {
  background-color: #7fd9ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(127, 217, 255, 0.4);
}

/* モバイル対応 */
@media (max-width: 480px) {
  .m_b_4-new01 a,
  .m_b_4-new02 a {
    width: 90%;
    height: 44px;
    line-height: 44px;
    font-size: 14px;
  }
}



/* フッター */

.imgover:hover {
    transform: scale(1.05);
    transition: transform 0.4s ease;
}

img.footerrogo {
    width: 140px;
    height: auto;
    float: right;
    margin: 26px;
    position: relative;
    top: -30px;
}

#footer {
    font-size: 12px;
    font-family: "ＭＳ Ｐゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS PGothic", sans-serif;
    clear: both;
    margin-top: 90px;
    padding-top: 180px;
}

.footerarea {
    width: 100%;
    padding-top: 20px;
    background-color: #262626;
    min-width: 920px;
    position: relative;
    z-index: 2000;
    background-image: none;
    height: 230px;
}


.footernavi_02 {
    margin-top: 13px;
    height: 190px;
    width: 100%;
    background-image: none;
    height: auto;
    
}

.footernavi_02 ul {
    margin: 0;
    padding: 4px 0 0 0;
    width: 780px;
    margin-left: 70px;
    position: relative;
    top: -80px;
    list-style: none;
    clear: both;
}

.footernavi_02 ul li {
    float: left;
    padding: 4px;
    margin: 4px;
    border: 1px solid #585858;
    position: relative;
    overflow: hidden;
    background-image: none;
}

.footernavi_02 ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: white;
    transition: left 0.1s ease-in-out;
    z-index: 0;
}

.footernavi_02 ul li:hover::before {
    left: 0;
}

.footernavi_02 ul li a {
    color: #fff;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease-in-out;
}

.footernavi_02 ul li a:link {
    color: #fff;
    text-decoration: none;
}

.footernavi_02 ul li a:visited {
    color: #fff;
    text-decoration: none;
}

.footernavi_02 ul li:hover a {
    color: #000;
}


.copyright {
    display: block;
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 10px 0px 10px 0px;
    clear: both;
    font-size: 10px;
}


 /* スマホ対応 スマホ対応 スマホ対応 スマホ対応 スマホ対応 スマホ対応 スマホ対応 スマホ対応 スマホ対応 スマホ対応 スマホ対応 */
@media (max-width: 868px) {
#contents {
    width: auto;
    margin: 6px;
}
.twocolumn{
    width: auto;
}

.anchor {
    width:auto;
}

.footernavi_01{
    width:auto;
}

.footernavi_02{
    width:auto;
}

.footerarea {
        width: 100%;
        padding-top: 20px;
        background-color: #262626;
        min-width: 100%;
        height: 220px;
    }


    .footernavi_02 {
        background-image: none;
        background-repeat: repeat-x;
        clear: left;
        margin-top: 13px;
        margin-right: auto;
        margin-left: auto;
        height: 20px;
        width: 100%;
    }


.footernavi_02 ul {
    margin: 0;
    padding: 4px 0 0 0;
    margin-left: 10px;
    position: relative;
    top: -35px;
    list-style: none;
    clear: both;
}

    .footernavi_02 ul li {
    float: left;
    padding: 8px;
    margin: 4px;
    border: 1px solid #585858;
    position: relative;
    overflow: hidden;
}

.sidenavi {
    display: none;
}

.products_detail {
  clear: both;
    float: none;
    margin: 0 auto;
    
}


.second_frame{
    float: none;
    width: auto;
}

/* スマホメニューアイコン */
nav.SP_fixed {
    display: block;
    position: fixed;
    z-index: 2000;
    background-color: #fff;
    width: 100%;
    top: 0px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .menu-btn {
        position: fixed;
        top: 4px;
        right: 10px;
        background-color: #fff;
        color: #262626;
        padding: 0px 12px;
        border: none;
        cursor: pointer;
        z-index: 1001;
        font-size: 34px;
    }

/* モーダルメニューの基本スタイル */
.modal-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 30%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 2000;
    overflow-y: auto;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
    opacity: 0; /* フェードイン/アウト用 */
    transition: opacity 0.5s ease; /* フェードイン/アウトの速度 */
}

/* モーダルの中身のスタイル */
.modal-content {
    padding: 10px 10px 0px 10px;
}

/* 閉じるボタンのスタイル */
.close-btn {
    background-color: #272727;
    color: white;
    padding: 7px 14px 7px 14px;
    border: none;
    cursor: pointer;
    float: right;
    font-size: 21px;
    border-radius: 24px;
    position: absolute;
    top: 10px;
    right: 10px;
}

/* リンクリストのスタイル */
.modal-menu ul {
    list-style: none;
    display: flex;
    padding: 0;
    position: relative;
    top: 42px;
    margin-left: 10px;
}

.modal-menu ul li {
    margin: 6px;
}

.modal-menu ul li a {
    color: #333;
    text-decoration: none;
    font-size: 12px;
    background-color: #2d72ff;
    padding: 10px;
    border-radius: 5px;
    min-width: 80px;
    text-align: center;
    color: #fff;
}

/* メニューボタンがクリックされた時にメニューを表示するスタイル */
.modal-menu.active {
    display: block;
    opacity: 1; /* フェードイン効果 */
}
    body{
        width: 100%;
    }

    main {
        height: 6290px;
    }

    nav ul li {
        margin: 10px;
    }

    form {
        display: none;        
    }

   .fixed ul {
       display: none;
    }
    .global-menu{
      display: none;
    }


    nav img {
        width: 140px;
        position: static;
        margin: 0 auto;
        display: block;
        scale: 1.2;
    }

nav ul {
    display: none;
}

nav.fixed {
    justify-content: center;
}

    p.rogoText {
        margin: 20px 30px 20px 0px;
    }

}


