@charset "utf-8";


        /* リセットCSS */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family:  游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
            color: #333;
            line-height: 1.6;
        }
        
        /* ヘッダー */
        header {
            background-color: #fff;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 50px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #6d071a; /* ボルドー */
        }
        
        .logo a {
            text-decoration: none;
            color: #6d071a; /* ボルドー */
        }
        
        .header-container nav ul {
            display: flex;
            list-style: none;
        }

        nav li {
            margin-left: 25px;
        }
        
        nav a {
            text-decoration: none;
            color: #333;
            font-weight: 400;
            position: relative;
            transition: color 0.3s;
        }
        
        nav a:hover {
            color: #6d071a; /* ボルドー */
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #6d071a; /* ボルドー */
            transition: width 0.3s;
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        /* メインビジュアル */
        .main-visual {
            height: 100vh;
            background-color: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin-top: 70px;
        }
        
        .main-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .main-visual-content {
            position: absolute;
            text-align: center;
            color: #fff;
            z-index: 10;
        }
        
        .main-visual-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            letter-spacing: 2px;
            color: #93254d;
            text-shadow: 1px 1px 5px rgb(255 255 255 / 81%);
        }
        
        .main-visual-content p {
            font-size: 18px;
            margin-bottom: 30px;
            color: #8f1e46;
            background: rgb(255 255 255 / 70%);
            padding: 5px 10px 3px;
        }
        
        /* セクション共通 */
        .section {
            padding: 80px 50px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 32px;
            color: #6d071a; /* ボルドー */
            margin-bottom: 10px;
        }
        
        .section-title p {
            font-size: 16px;
            color: #888;
        }
         .section-title p.line{
 
        }
        .section-title p.line img{
 
width: 300px;
 
}
        
        /* サービス紹介 */
        .services {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .service-item {
            width: calc(50% - 20px);
            margin-bottom: 40px;
            background-color: #fff;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .service-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #6d071a; /* ボルドー */
        }
        
        .service-content p {
            font-size: 14px;
            margin-bottom: 15px;
            color: #666;
        }
        
        .more-btn {
            display: inline-block;
            padding: 8px 20px;
            background-color: #6d071a; /* ボルドー */
            color: #fff;
            text-decoration: none;
            border-radius: 3px;
            font-size: 14px;
            transition: background-color 0.3s;
        }
        
        .more-btn:hover {
            background-color: #8f0a23; /* ボルドーより少し明るい */
        }
        
        /* 理念 */
        .philosophy {
            background-color: #f9f9f9;
            text-align: center;
        }
        
        .philosophy-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .philosophy-item {
            margin-bottom: 30px;
        }
        
        .philosophy-item h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #6d071a; /* ボルドー */
        }
        
        .philosophy-item p {
            font-size: 15px;
            line-height: 1.8;
        }
        
        /* ニュース */
        .news-list {
            margin-bottom: 30px;
        }
        
        .news-item {
            display: flex;
            border-bottom: 1px solid #eee;
            padding: 15px 0;
        }
        
        .news-date {
            width: 120px;
            color: #999;
        }
        
        .news-category {
            width: 120px;
        }
        
        .news-category span {
            display: inline-block;
            background-color: #6d071a; /* ボルドー */
            color: #fff;
            padding: 2px 10px;
            font-size: 12px;
            border-radius: 3px;
        }
        
        .news-title {
            flex: 1;
        }
        
        .news-title a {
            text-decoration: none;
            color: #333;
            transition: color 0.3s;
        }
        
        .news-title a:hover {
            color: #6d071a; /* ボルドー */
        }
        
        .news-more {
            text-align: center;
            margin-top: 20px;
        }
        
        .news-more a {
            display: inline-block;
            padding: 10px 30px;
            border: 1px solid #6d071a; /* ボルドー */
            color: #6d071a; /* ボルドー */
            text-decoration: none;
            transition: background-color 0.3s, color 0.3s;
        }
        
        .news-more a:hover {
            background-color: #6d071a; /* ボルドー */
            color: #fff;
        }
        
        /* お問い合わせ */
        .contact {
            text-align: center;
            background-color: #f9f9f9;
        }
        
        .contact p {
            margin-bottom: 30px;
            font-size: 16px;
        }
        
        .contact-btn {
            display: inline-block;
            padding: 15px 50px;
            background-color: #6d071a; /* ボルドー */
            color: #fff;
            text-decoration: none;
            border-radius: 3px;
            font-size: 16px;
            transition: background-color 0.3s;
        }
        
        .contact-btn:hover {
            background-color: #8f0a23; /* ボルドーより少し明るい */
        }
        
        /* フッター */
        footer {
            background-color: #333;
            color: #fff;
            padding: 50px 0 20px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 50px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        .footer-info {
            width: 300px;
        }
        
        .footer-info h2 {
            font-size: 18px;
            margin-bottom: 20px;
        }
        
        .footer-info p {
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .footer-nav {
            display: flex;
        }
        
        .footer-nav-group {
            width: 200px;
            margin-right: 30px;
        }
        
        .footer-nav-group h3 {
            font-size: 16px;
            margin-bottom: 20px;
            color: #ffffff; /* ボルドー */
        }
        
        .footer-nav-group ul {
            list-style: none;
        }
        
        .footer-nav-group li {
            margin-bottom: 10px;
        }
        
        .footer-nav-group a {
            text-decoration: none;
            color: #ccc;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .footer-nav-group a:hover {
            color: #fff;
        }
        
        .copyright {
            text-align: center;
            font-size: 12px;
            color: #999;
            padding: 20px 0;
            border-top: 1px solid #444;
        }
        
        /* レスポンシブ対応 */
        @media (max-width: 1024px) {
            .header-container {
                padding: 15px 30px;
            }
            
            .section {
                padding: 60px 30px;
            }
            
            .service-item {
                width: 100%;
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                padding: 0;
            }
            
            .logo {
                margin-bottom: 0;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav li {
                margin: 0 10px 10px;
            }
            
            .main-visual {
                margin-top: 78px;
                height: 60vh;
            }
            
            .main-visual-content h1 {
                font-size: 32px;
            }
            
            .main-visual-content p {
                font-size: 16px;
            }
            
            .section {
                padding: 50px 20px;
            }
            
            .footer-info, .footer-nav-group {
                width: 100%;
                margin-bottom: 30px;
            }
            
            .footer-nav {
                flex-direction: column;
            }
        }



#sp-nav {
    display: none
}

@media only screen and (max-width: 960px) {
    #sp-nav {
        display:block;
        top: 20px;
        right: 10px;
        position: fixed;
        z-index: 9999
    }
}

#nav-drawer {
    position: relative
}

.nav-unshown {
    display: none
}

#nav-open {
    display: inline-block;
    width: 25px;
    height: 20px;
    vertical-align: middle;
    background: #fff;
    padding: 5px;
}

#nav-open span,#nav-open span:before,#nav-open span:after {
    position: absolute;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #868686;
    display: block;
    content: '';
    cursor: pointer
}

#nav-open span:before {
    bottom: -8px
}

#nav-open span:after {
    bottom: -16px
}

#nav-close {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transition: .3s ease-in-out
}

#nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 90%;
    max-width: 330px;
    height: 100%;
    background: #ffffff;
    transition: .3s ease-in-out;
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%)
}

#nav-input:checked~#nav-close {
    display: block;
    opacity: .5
}

#nav-input:checked~#nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    box-shadow: 6px 0 25px rgba(0,0,0,.15)
}

#nav-content h1 {
    background: #ffffff;
    padding: 4% 2% 2%;
    text-align: center
}

#nav-content h1 img {
    width: 100%;
}

#nav-content ul {
    padding: 1% 0;
    margin: 1% 0;
    display: block;
}

#nav-content ul li {
    list-style: none;
    color: #757575;
    /* margin: 1%; */
    /* padding: 1%; */
    font-family: Georgia,游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
}

#nav-content ul li a {
    display: block;
    margin: 0;
    padding: 0;
    color: #0c0c0c;
}
#nav-content ul li.sns_youtube a {
    font-size:140%;
    color: #f00;
}

#nav-content ul li.cpay_btn a{
    padding:5px 30px 5px 10px;
    border:solid 1px #d71318;
    background:#d71318;
    display:inline-block;
    margin:0;
    color:#fff;
}
#nav-content ul li.cpay_btn a:hover{
    padding:5px 30px 5px 10px;
    border:solid 1px #d71318;
    background:#ff6165;
    display:inline-block;
    margin:0;
    color:#fff;
}
#nav-content ul li.contact_btn a{
    padding:5px 30px 5px 10px;
    border:solid 1px #000;
    display:inline-block;
    margin:0;
}
#nav-content ul li.contact_btn a:hover{
    padding:5px 30px 5px 10px;
    border:solid 1px #000;
    display:inline-block;
    margin:0;
    background:#fcfcfc;
    opacity:0.7;
}
#nav-content ul li a:hover {
    background: #f1f1f1;
    opacity: 1
}

#nav-content ul li a:before {
    content: "・"
}

#nav-content ul li em {
    padding: 2%;
    font-size: 80%
}

#nav-content form {
    padding: 1%;
    margin: 0 5%
}



.pc {
    display: block
}

@media only screen and (max-width: 960px) {
    .pc {
        display:none
    }
}

.sp {
    display: none
}
@media only screen and (max-width: 960px) {
    .sp {
        display:block
    }
}
        @media only screen and (max-width: 960px) {
     .header-container nav ul.pc {
        display:none
    }
    
}

#page-top {
    right: -2px;
    bottom: 80px;
    position: fixed;
    z-index: 99999
}
#page-top a {
    display: block;
    background: #4e4e4e;
    padding: 10px;
    font-size: 80%;
    text-align: center;
    border: solid 1px #8c8c8c;
    color: #fff;
    text-decoration: none;
}


        
        /* 会社概要テーブル */
        .company-info {
            max-width: 900px;
            margin: 0 auto 80px;
        }
        
        .company-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .company-table th, 
        .company-table td {
            padding: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .company-table th {
            width: 30%;
            text-align: left;
            font-weight: bold;
            color: #6d071a; /* ボルドー */
            vertical-align: top;
        }
        
        .company-table td {
            width: 70%;
        }
        
        /* 企業理念 */
        .philosophy {
            background-color: #f9f9f9;
            padding: 80px 50px;
            text-align: center;
        }
        
        .philosophy-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .philosophy-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 50px;
        }
        
        .philosophy-item {
            width: calc(33.333% - 20px);
            background-color: #fff;
            padding: 40px 30px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .philosophy-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .philosophy-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background-color: #f0f0f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6d071a; /* ボルドー */
            font-size: 30px;
        }
        
        .philosophy-item h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #6d071a; /* ボルドー */
        }
        
        .philosophy-item p {
            font-size: 14px;
            color: #666;
            text-align: left;
        }
        
        /* 代表メッセージ */
        .message {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 80px;
        }
        
        .message-content {
            width: 80%;
            margin: 0 auto;
        }
        
        .message-title {
            font-size: 24px;
            color: #6d071a; /* ボルドー */
            margin-bottom: 20px;
        }
        
        .message-text {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .message-name {
            font-size: 16px;
            text-align: right;
            font-weight: bold;
        }
        
        .message-image {
            width: 35%;
        }
        
        .message-image img {
            width: 100%;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* アクセス */
        .access {
            background-color: #f9f9f9;
            padding: 80px 50px;
        }
        
        .access-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .access-map {
            width: 100%;
            height: 450px;
            margin-bottom: 40px;
            background-color: #eee;
        }
        
        .access-map img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .access-info {
            display: flex;
            justify-content: space-between;
        }
        
        .access-info-item {
            width: 48%;
        }
        
        .access-info-title {
            font-size: 18px;
            color: #6d071a; /* ボルドー */
            margin-bottom: 15px;
            border-left: 3px solid #6d071a; /* ボルドー */
            padding-left: 10px;
        }
        
        .access-info-text {
            font-size: 15px;
            line-height: 1.8;
        }
        
        /* お問い合わせ */
        .contact {
            text-align: center;
        }
        
        .contact p {
            margin-bottom: 30px;
            font-size: 16px;
        }
        
        .contact-btn {
            display: inline-block;
            padding: 15px 50px;
            background-color: #6d071a; /* ボルドー */
            color: #fff;
            text-decoration: none;
            border-radius: 3px;
            font-size: 16px;
            transition: background-color 0.3s;
        }
        
        .contact-btn:hover {
            background-color: #8f0a23; /* ボルドーより少し明るい */
        }
                /* レスポンシブ対応 */
        @media (max-width: 1024px) {

            
            .section, .philosophy, .access {
                padding: 60px 30px;
            }
            
            .breadcrumb-container {
                padding: 0 30px;
            }
            
            .philosophy-item {
                width: calc(50% - 15px);
            }
            
            .message {
                flex-direction: column;
            }
            
            .message-content, .message-image {
                width: 100%;
            }
            
            .message-image {
                margin-top: 30px;
                order: -1;
            }
            
            .access-info {
                flex-direction: column;
            }
            
            .access-info-item {
                width: 100%;
                margin-bottom: 30px;
            }
        }
        @media (max-width: 768px) {

            

            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav li {
                margin: 0 10px 10px;
            }
            
            .page-header {
                margin-top: 120px;
                height: 200px;
            }
            
            .page-header-content h1 {
                font-size: 28px;
            }
            
            .section, .philosophy, .access {
                padding: 50px 20px;
            }
            
            .breadcrumb-container {
                padding: 0 20px;
            }
            
            .company-table th, 
            .company-table td {
                display: block;
                width: 100%;
            }
            
            .company-table th {
                padding-bottom: 5px;
            }
            
            .company-table td {
                padding-top: 5px;
            }
            
            .philosophy-item {
                width: 100%;
            }
            
            .footer-info, .footer-nav-group {
                width: 100%;
                margin-bottom: 30px;
            }
            
            .footer-nav {
                flex-direction: column;
            }
        }
/* ページヘッダー */
.page-header {
    height: 300px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 70px;
    background-image: url('images/resonant_top_img0001.jpg');
    background-size: cover;
    background-position: center;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.page-header-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 10;
}
.page-header-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.page-header-content p {
    font-size: 16px;
}
#company .reverseaging-img01 {
    background-image: url('images/resonant_top_img0002.jpg');
}
#company .company-heder {
    background-image: url('images/resonant_top_img0003.jpg');
}
/* パンくずリスト */
.breadcrumb {
    background-color: #f9f9f9;
    padding: 15px 0;
}
.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}


        /* 概要セクション */
        .overview {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 80px;
        }
        
        .overview-content {
            width: 55%;
        }
        
        .overview-content h3 {
            font-size: 24px;
            color: #6d071a; /* ボルドー */
            margin-bottom: 20px;
        }
        
        .overview-content p {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .overview-image {
            width: 40%;
        }
        
        .overview-image img {
            width: 100%;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* 商品リスト */
        .products {
            margin-bottom: 80px;
        }
        
        .product-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
        }
        
        .product-item {
            width: calc(33.333% - 20px);
            margin-bottom: 40px;
            background-color: #fff;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .product-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgb(0 0 0 / 0.2);
        }
        
        .product-image {
            position: relative;
            height: 500px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 80%;
            height: 80%;
            margin: 10%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .product-item:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-tag {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: #6d071a; /* ボルドー */
            color: #fff;
            padding: 5px 10px;
            font-size: 12px;
            border-radius: 3px;
        }
        
        .product-content {
            padding: 25px;
        }
        
        .product-content h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #6d071a; /* ボルドー */
        }
        
        .product-content p {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
            height: 200px;
            overflow: hidden;
        }
        .product-content p.rsn-item {
            height: 0;
            overflow: inherit;
            padding: 0 0 20px;
            font-weight: bold;
        }
        .product-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .price {
            font-size: 18px;
            font-weight: bold;
            color: #333;
        }
        
        .price small {
            font-size: 12px;
            color: #999;
            font-weight: normal;
        }
        
        .cart-btn {
            display: inline-block;
            padding: 8px 20px;
            background-color: #6d071a; /* ボルドー */
            color: #fff;
            text-decoration: none;
            border-radius: 3px;
            font-size: 14px;
            transition: background-color 0.3s;
        }
        
        .cart-btn:hover {
            background-color: #8f0a23; /* ボルドーより少し明るい */
        }

 .product-list02 {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
        }
        
        .product-item02 {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            margin-bottom: 40px;
            background-color: #fff;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .product-item02:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgb(0 0 0 / 0.2);
        }
        .product-item02 p.main-img {
            width:100%;
        }
        .product-item02 p.main-img img{
            width:100%;
            padding:10px;
        }
         .product-item02 p.main-img a{
        text-decoration: none;
        background: #ffc5cd;
        color: #555;
        padding: 5px 40px;
        border-radius: 20px;
        display: block;
        margin: 0 auto 10%;
        width: 80%;
        text-align: center;
        }
         .product-item02 p.main-img a:hover{
             opacity:0.7;
        }
        .product-image02 {
            position: relative;
            /* height: 500px; */
            overflow: hidden;
            width: 40%;
        }
        @media only screen and (max-width: 960px) {
        .product-image02 {
            width: 100%;
        }
    }
        .product-image02 img {
            width: 80%;
            height: 80%;
            margin: 10%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .product-item02:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-tag02 {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: #6d071a; /* ボルドー */
            color: #fff;
            padding: 5px 10px;
            font-size: 12px;
            border-radius: 3px;
        }
        
        .product-content02 {
            padding: 1%;
            width: 55%;
        }
        @media only screen and (max-width: 960px) {
     .product-content02 {
            padding: 5%;
            width: 100%;
        }
    }
        .product-content02 h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #6d071a; /* ボルドー */
        }
        
        .product-content02 p {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
            height: 200px;
            overflow: hidden;
        }
        .product-content02 p.rsn-item {
            height: 0;
            overflow: inherit;
            padding: 0 0 20px;
            font-weight: bold;
        }
        .product-price02 {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        
        /* カテゴリー */
        .categories {
            background-color: #f9f9f9;
            padding: 80px 50px;
        }
        
        .categories-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .category-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .category-item {
            width: calc(25% - 15px);
            margin-bottom: 30px;
            text-align: center;
        }
        
        .category-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background-color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6d071a; /* ボルドー */
            font-size: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .category-item h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #6d071a; /* ボルドー */
        }
        
        .category-item p {
            font-size: 14px;
            color: #666;
        }
        
        /* レビュー */
        .reviews {
            margin-bottom: 80px;
        }
        
        .review-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .review-item {
            width: calc(50% - 15px);
            margin-bottom: 30px;
            background-color: #fff;
            border-radius: 5px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }
        
        .review-item::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 60px;
            color: #f0f0f0;
            font-family: 'Georgia', serif;
            line-height: 1;
        }
        
        .review-content {
            position: relative;
            z-index: 1;
        }
        
        .review-text {
            font-size: 15px;
            color: #666;
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .review-author {
            display: flex;
            align-items: center;
        }
        
        .review-author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .review-author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .review-author-info h4 {
            font-size: 16px;
            color: #333;
            margin-bottom: 5px;
        }
        
        .review-author-info p {
            font-size: 13px;
            color: #999;
        }
        
        /* ECリンク */
        .ec-link {
            text-align: center;
            background-color: #f9f9f9;
            padding: 80px 50px;
        }
        
        .ec-link-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .ec-link h2 {
            font-size: 32px;
            margin-bottom: 20px;
            color: #6d071a; /* ボルドー */
        }
        
        .ec-link p {
            font-size: 16px;
            margin-bottom: 30px;
            color: #666;
        }
        
        .ec-btn {
            display: inline-block;
            padding: 15px 50px;
            background-color: #6d071a; /* ボルドー */
            color: #fff;
            text-decoration: none;
            border-radius: 3px;
            font-size: 16px;
            transition: background-color 0.3s;
        }
        
        .ec-btn:hover {
            background-color: #8f0a23; /* ボルドーより少し明るい */
        }
        
        /* FAQ */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #eee;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background-color: #f9f9f9;
            font-weight: bold;
            cursor: pointer;
            position: relative;
        }
        
        .faq-question::after {
            content: '+';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 20px;
            color: #6d071a; /* ボルドー */
        }
        
        .faq-answer {
            padding: 20px;
            border-top: 1px solid #eee;
            display: none;
        }
        
        /* フッター */
        footer {
            background-color: #333;
            color: #fff;
            padding: 50px 0 20px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 50px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        .footer-info {
            width: 300px;
        }
        
        .footer-info h2 {
            font-size: 18px;
            margin-bottom: 20px;
        }
        
        .footer-info p {
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .footer-nav {
            display: flex;
        }
        
        .footer-nav-group {
            width: 200px;
            margin-right: 30px;
        }
        
        
        .footer-nav-group ul {
            list-style: none;
        }
        
        .footer-nav-group li {
            margin-bottom: 10px;
        }
        
        .footer-nav-group a {
            text-decoration: none;
            color: #ccc;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .footer-nav-group a:hover {
            color: #fff;
        }
        
        .copyright {
            text-align: center;
            font-size: 12px;
            color: #999;
            padding: 20px 0;
            border-top: 1px solid #444;
        }
        
        /* レスポンシブ対応 */
        @media (max-width: 1024px) {
            .header-container {
                padding: 15px 30px;
            }
            
            .section, .categories, .ec-link {
                padding: 60px 30px;
            }
            
            .breadcrumb-container {
                padding: 0 30px;
            }
            
            .product-item {
                width: calc(50% - 15px);
            }
            
            .category-item {
                width: calc(50% - 15px);
            }
        }
        
        @media (max-width: 960px) {
            .header-container {
                flex-direction: column;
                padding: 0;
            }
            
            nav > ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav > ul > li {
                margin: 0 10px 10px;
            }
            
            .service-dropdown {
                position: static;
                width: 100%;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                padding: 0;
                margin-top: 10px;
                display: none;
            }
            
            .service-dropdown.active {
                display: block;
            }
            
            .service-dropdown a {
                padding: 8px 0 8px 20px;
            }

            
            .page-header-content h1 {
                font-size: 28px;
            }
            
            .section, .categories, .ec-link {
                padding: 50px 20px;
            }
            
            .breadcrumb-container {
                padding: 0 20px;
            }
            
            .overview {
                flex-direction: column;
            }
            
            .overview-content, .overview-image {
                width: 100%;
            }
            
            .overview-image {
                margin-top: 30px;
                order: -1;
            }
            
            .product-item {
                width: 100%;
            }
            
            .category-item {
                width: 100%;
            }
            
            .review-item {
                width: 100%;
            }
            
            .footer-info, .footer-nav-group {
                width: 100%;
                margin-bottom: 30px;
            }
            
            .footer-nav {
                flex-direction: column;
            }
        }

        /* 概要セクション */
        .overview {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 80px;
        }
        
        .overview-content {
            width: 55%;
        }
        
        .overview-content h3 {
            font-size: 24px;
            color: #6d071a; /* ボルドー */
            margin-bottom: 20px;
        }
        .overview-content h3 span{
            padding:0 10px 0 0;
            color:#c70a2d;
        }
        .overview-content h4 {
            font-size: 20px;
            color: #54484b; /* ボルドー */
            margin-bottom: 40px;
            border-bottom: solid 5px #f8eeee;
        }
        .overview-content h5 {
            font-size: 18px;
            color: #54484b; /* ボルドー */
            margin-bottom: -10px;
        }
        .overview-content ul {
            margin: 20px 20px 60px;
        }
        .overview-content ul li {
            margin-bottom: 5px;
        }
        
        .overview-content p {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .overview-image {
            width: 40%;
        }
        
        .overview-image img {
            width: 100%;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* 特徴セクション */
        .features {
            background-color: #f9f9f9;
            padding: 80px 50px;
        }
        
        .features-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .features-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .feature-item {
            width: calc(33.333% - 20px);
            background-color: #fff;
            padding: 30px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background-color: #f0f0f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6d071a; /* ボルドー */
            font-size: 30px;
        }
        
        .feature-item h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #6d071a; /* ボルドー */
        }
        
        .feature-item p {
            font-size: 14px;
            color: #666;
        }
        
        /* サービス詳細 */
        .service-details {
            margin-top: 60px;
        }
        
        .service-item_03 {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 80px;
        }
        
        .service-item_03:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .service-item-content {
            width: 50%;
        }
        
        .service-item-content h3 {
            font-size: 24px;
            color: #6d071a; /* ボルドー */
            margin-bottom: 20px;
        }
        
        .service-item-content p {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #666;
        }
        
        .service-item-image {
            width: 45%;
        }
        
        .service-item-image img {
            width: 100%;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* CTA */
        .cta {
            text-align: center;
            padding: 80px 50px;
            background-color: #f5f5f5;
        }
        
        .cta-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta h2 {
            font-size: 32px;
            margin-bottom: 20px;
            color: #6d071a; /* ボルドー */
        }
        
        .cta p {
            font-size: 16px;
            margin-bottom: 30px;
            color: #666;
        }
        
        .cta-btn {
            display: inline-block;
            padding: 15px 50px;
            background-color: #6d071a; /* ボルドー */
            color: #fff;
            text-decoration: none;
            border-radius: 3px;
            font-size: 16px;
            transition: background-color 0.3s;
        }
        
        .cta-btn:hover {
            background-color: #8f0a23; /* ボルドーより少し明るい */
        }
        
        /* FAQ */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #eee;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background-color: #f9f9f9;
            font-weight: bold;
            cursor: pointer;
            position: relative;
        }
        
        .faq-question::after {
            content: '+';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 20px;
            color: #6d071a; /* ボルドー */
        }
        
        .faq-answer {
            padding: 20px;
            border-top: 1px solid #eee;
            display: none;
        }

        /* レスポンシブ対応 */
        @media (max-width: 1024px) {
   
            
            .section, .features, .cta {
                padding: 60px 30px;
            }
            
            .breadcrumb-container {
                padding: 0 30px;
            }
            
            .feature-item {
                width: calc(50% - 15px);
            }
            
            .service-item, .service-item:nth-child(even) {
                flex-direction: column;
            }
            
            .service-item-content, .service-item-image {
                width: 100%;
            }
            
            .service-item-image {
                margin-bottom: 30px;
            }
            
            .service-item:nth-child(even) .service-item-image {
                margin-bottom: 30px;
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
    
            nav > ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav > ul > li {
                margin: 0 10px 10px;
            }
            
            .service-dropdown {
                position: static;
                width: 100%;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                padding: 0;
                margin-top: 10px;
                display: none;
            }
            
            .service-dropdown.active {
                display: block;
            }
            
            .service-dropdown a {
                padding: 8px 0 8px 20px;
            }
            
            .page-header {
                margin-top: 120px;
                height: 200px;
            }
            
            .page-header-content h1 {
                font-size: 28px;
            }
            
            .section, .features, .cta {
                padding: 50px 20px;
            }
            
            .breadcrumb-container {
                padding: 0 20px;
            }
            
            .overview {
                flex-direction: column;
            }
            
            .overview-content, .overview-image {
                width: 100%;
            }
            
            .overview-image {
                margin-top: 30px;
                order: -1;
            }
            
            .feature-item {
                width: 100%;
            }
            
            .footer-info, .footer-nav-group {
                width: 100%;
                margin-bottom: 30px;
            }
            
            .footer-nav {
                flex-direction: column;
            }
        }
div.logo h1 {
line-height: 0;
padding: 5% 0;
}

div.logo h1 img{
    width:250px;
}

/* レイアウトや見た目のスタイル */
/* ---------------------------- */
/*------------------------------------------------------------------------------
  anim
------------------------------------------------------------------------------*/
.anim-box {
  opacity: 0;
}


/* フェードイン */
.anim-box.fadein.is-animated {
  animation: fadeIn 0.7s cubic-bezier(0.87, -0.02, 1, 1) 1 forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* スライドイン */
.anim-box.slidein.is-animated {
  animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes slideIn {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%,100% {
    opacity: 1;
  }
}

/* ズームイン */
.anim-box.zoomin.is-animated {
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ぽよよん */
.anim-box.poyoyon.is-animated {
  animation: poyoyon 0.5s cubic-bezier(0.12, 0, 0.39, 0) 1 forwards;
}

@keyframes poyoyon {
  0% {
    transform: translateX(140px);
    opacity: 0;
  }
  50% {
    transform: translateX(0);
  }
  65% {
    transform: translateX(30px);
  }
  100% {
    transform: translateX(0);
  }
  20%,100% {
    opacity: 1;
  }
}

/* ぽよよん2 */
.anim-box.poyoyon2.is-animated {
  animation: poyoyon2 1s ease-in-out 1 forwards;
}

@keyframes poyoyon2 {
  0%  {
    transform: scale(1.0, 1.0) translate(0, 0);
  }
  15% {
    transform: scale(0.98, 0.9) translate(0, 5px);
  }
  30% {
    transform: scale(1.02, 1.0) translate(0, 8px);
  }
  50% {transform: scale(0.98, 1.05) translate(0, -8px);
  }
  70% {
    transform: scale(1.0, 0.9) translate(0, 5px);
  }
  100% {
    transform: scale(1.0, 1.0) translate(0, 0);
  }
  0%, 100% {
    opacity: 1;
  }
}

/* ぽよよん3 */
.anim-box.poyoyon3 {
  animation: poyoyon3 2.5s infinite;
  opacity: 1;
}
@keyframes poyoyon3 {
  0%, 40% {
    transform: skew(0deg, 0deg);
  }
  5% {
    transform: skew(5deg, 5deg);
  }
  10% {
    transform: skew(-4deg, -4deg);
  }
  15% {
    transform: skew(3deg, 3deg);
  }
  20% {
    transform: skew(-2deg, -2deg);
  }
  25% {
    transform: skew(1deg, 1deg);
  }
  30% {
    transform: skew(-0.6deg, -0.6deg);
  }
  35% {
    transform: skew(0.3deg, 0.3deg);
  }
}


/* ポップアップ */
.anim-box.popup.is-animated {
  animation: popup 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1 forwards;
}

@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1.0);
  }
  80%, 100% {
    opacity: 1;
  }
}

/* どくどく */
.anim-box.poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}

/* ななめから出てくる */
.anim-box.slide-skew.is-animated {
  animation: slide-skew 0.4s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes slide-skew {
  0% {
    transform: translate(180px,30px);
    opacity: 0;
  }
  100% {
    transform: translate(0,0);
  }
  20%,100% {
    opacity: 1;
  }
}


/* きらん */
.anim-box.kiran {
  opacity: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.anim-box.kiran::before {
  background-color: #fff;
  content: "";
  display: block;
  position: absolute;
  top: -100px;
  left: 0;
  width: 30px;
  height: 100%;
  opacity: 0;
  transition: cubic-bezier(0.32, 0, 0.67, 0);
}
.anim-box.kiran:hover::before {
  animation: kiran 0.5s linear 1;
}

@keyframes kiran {
  0% {
    transform: scale(2) rotate(45deg);
    opacity: 0;
  }
  20% {
    transform: scale(20) rotate(45deg);
    opacity: 0.6;
  }
  40% {
    transform: scale(30) rotate(45deg);
    opacity: 0.4;
  }
  80% {
    transform: scale(45) rotate(45deg);
    opacity: 0.2;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

/* 背景色が流れてくる */
.bg .bg-wrap {
  position: relative;
  display: inline-block;
  margin-top: 5px;
}
.bg.is-animated .bg-wrap::before {
  animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  background: linear-gradient(to right, #362ae0 0%,#3b79cc 50%,#42d3ed 100%);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
}
.bg .bg-wrap .inn {
  color: #fff;
  display: inline-block;
  font-size: 36px;
  font-weight: bold;
  padding: 5px 15px;
  position: relative;
  z-index: 1;
}

@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}

/* 文字がぬるりと現れる */
.matrix .bg-wrap,
.matrix .bg-wrap .inn {
  display: block;
}

.matrix .bg-wrap {
  overflow: hidden;
  opacity: 0;
}

.matrix .bg-wrap + .bg-wrap {
  margin-top: 10px;
}

.matrix .bg-wrap .inn.large {
  font-size: 36px;
  font-weight: bold;
}
.matrix .bg-wrap .inn.small {
  font-size: 15px;
}

.matrix .bg-wrap .inn {
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.matrix.is-animated .bg-wrap {
  opacity: 1;
}

.matrix.is-animated .bg-wrap .inn {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}

/* 背景色が消えてから表示されるテキスト */
.mask-bg {
  color: transparent;
  display: inline-block;
  font-size: 36px;
  font-weight: bold;
  overflow: hidden;
  position: relative;
  transition: color 0ms 450ms;
}
.mask-bg::after {
  background: linear-gradient(to right, #362ae0 0%,#3b79cc 50%,#42d3ed 100%);
  bottom: 0;
  content: '';
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(0, 100%);
}

.mask-bg.is-animated {
  color: #362ae0;
}
.mask-bg.is-animated::after {
  animation: mask-bg 1.2s cubic-bezier(0.8, 0, 0.170, 1);
}

@keyframes mask-bg {
  0% {
    transform: translate(0, 101%)
  }
  40%, 60% {
    transform: translate(0, 0%)
  }
  100% {
    transform: translate(0, -100%)
  }
}


/* 線が伸びる */
.line {
  display: block;
  position: relative;
  margin-top: 20px;
}
.line::after {
  background: linear-gradient(to right, #362ae0 0%,#3b79cc 50%,#42d3ed 100%);
  content: '';
  display: block;
  height: 1px;
  width: 0;
  transform: translateX(-50%);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  position: absolute;
  bottom: 0;
  left: 50%;
}
.line.is-animated::after {
  width: 100%;
}


/* フェードアップ */
.anim-box.fadeup.is-animated {
  animation: fadeup 1s cubic-bezier(0.11, 0.55, 0.67, 0.89) 1 forwards;
}

@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ボーダーが緩やかにつく */
.stroke {
  background: #f0f0f0;
  max-width: 400px;
  height: 250px;
  position: relative;
}

.stroke .border {
  content: "";
  position: absolute;
  opacity: 0;
}
.stroke .border.top,
.stroke .border.bottom {
  width: calc(100% - 20px);
}
.stroke .border.top {
  border-top: 3px solid #362ae0;
  right: 0;
  top: 0;
}
.stroke .border.bottom {
  border-bottom: 3px solid #362ae0;
  left: 0;
  bottom: 0;
}

.stroke .border.right,
.stroke .border.left {
  height: calc(100% - 20px);
}
.stroke .border.right {
  border-right: 3px solid #362ae0;
  right: 0;
  top: 0;
}
.stroke .border.left {
  border-left: 3px solid #362ae0;
  left: 0;
  bottom: 0;
}

.stroke.is-animated .border {
  opacity: 1;
}

.stroke.is-animated .border.top,
.stroke.is-animated .border.bottom {
  animation: stroke-width 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.stroke.is-animated .border.right,
.stroke.is-animated .border.left {
  animation: stroke-height 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes stroke-width {
  0% {
    width: 0;
    opacity: 1;
  }
  100% {
    width: calc(100% - 20px);
    opacity: 1;
  }
}

@keyframes stroke-height {
  0% {
    height: 0;
    opacity: 1;
  }
  100% {
    height: calc(100% - 20px);
    opacity: 1;
  }
}

/* 文字が滑らかに表示される */
.smooth {
  clip-path: inset(0 100% 0 0);
  display: inline-block;
  font-size: 36px;
  font-weight: bold;
  transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
  line-height: 1;
  height: 40px;
  margin-top: 15px;
}
.smooth.is-animated {
  clip-path: inset(0);
}

/* ふわふわ */
.fuwafuwa {
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  background: url(../img/ico-apple.svg) no-repeat center center / 60px auto;
  display: inline-block;
  transition: 1.5s ease-in-out;
  width: 70px;
  height: 70px;
  margin-top: 15px;
}

@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}

/* ゆったりスクロールボタン */

.scroll {
  display: inline-block;
  padding-top: 70px;
  position: relative;
}
.scroll::before {
  animation: scroll 3.5s infinite;
  border: solid #000;
  border-width: 0 0 1px 1px;
  content: "";
  display: inline-block;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  transform: rotate(-45deg);
  width: 20px;
  height: 20px;
}
@keyframes scroll {
  0% {
    transform: rotate(-45deg) translate(0, 0);
  }
  80% {
    transform: rotate(-45deg) translate(-30px, 30px);
  }
  0%, 80%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}

/* くるくる回りながら出現 */
.kurukuru {
  background: linear-gradient(to right, #362ae0 0%,#3b79cc 50%,#42d3ed 100%);
  width: 50px;
  height: 50px;
  opacity: 0;
  padding-bottom: 40px;
}
.kurukuru.is-animated {
  animation: kurukuru 1.4s ease-out;
  opacity: 1;
}
@keyframes kurukuru {
  0%{
    transform: rotateY(0) translateY(40px);
    opacity: 0;
  }
  100%{
    transform: rotateY(360deg) translateY(0);
    opacity: 1;
  }
}

span.text_st{
font-weight: bold;
    color: #54484b;
    font-size: 120%;
    background: linear-gradient(transparent 70%, #e0f2ff 70%);
}
.pc {
    display: block
}

@media only screen and (max-width: 640px) {
    .pc {
        display:none
    }
}

.sp {
    display: none
}

@media only screen and (max-width: 640px) {
    .sp {
        display:block
    }
}

#link-section p{}
#link-section p a{
    text-decoration: none;
    background: #01a75b;
    color: #fff;
    padding: 2%;
    border-radius: 10px;
}
#link-section p a:hover{
    opacity:0.7;
}