@charset "utf-8";

/*************
/* 共通
*************/
body {
	color: #0C0C0C;
    font-size: 16px;
}
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	color: #0C0C0C;
	font-weight: 600;
}
h1 {
    margin: 0;
}
@media (max-width: 768px) {
    h2 {
        font-size: 22px;
    }
    h3 {
        font-size: 20px;
    }
    h4 {
        font-size: 16px;
    }
}
@media (max-width: 650px) {
    h2 {
        font-size: 18px;
    }
    h3 {
        font-size: 16px;
    }
    h4 {
        font-size: 15px;
    }
}
a:hover {
    text-decoration: none;
}
.btn-box {
    margin: 67px 0;
    text-align: center;
}
.more-btn a {
    position: relative;
    text-decoration: none;
    padding: 20px 70px 20px 60px; 
    background-color: #fff;
    color: #0C0C0C;
    border-radius: 5px;
    border: 1px solid #262626;
}
.more-btn a:hover {
    opacity: 0.7;
    transition:transform 0.3s;
}
.more-btn a:after {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 2px solid #8c8c8c;
    border-right: 2px solid #8c8c8c;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 15px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
@media (max-width: 768px) {
    .btn-box {
        margin: 50px 0;
    }
    .more-btn a {
        padding: 15px 50px 15px 40px; 
    }
}

/* レイアウト */
.container-fluid {
	width: 100%;
	padding: 0;
	/* background-color: red; */
}
.container {
	max-width: 1300px;
	width: 95%;
	margin: 0 auto;
	padding: 0;
	/* background-color: blue; */
}
.wrapper {
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
	/* background-color: green; */
}
.wrapper-small {
	max-width: 730px;
	width: 100%;
	margin: 0 auto;
	/* background-color: rgb(255, 0, 242); */
}
.wrapper-list {
	max-width: 700px;
	width: 100%;
	margin: 0 auto;
	/* background-color: rgb(255, 0, 242); */
}
.wrapper-wide {
    width: 95%;
    max-width: 1600px;
    margin: 0 auto;
}
.wrapper-contents {
    width: 100%;
	display: flex;
    padding: 40px 0 120px 0;
}
@media (max-width: 768px) {
    .wrapper-contents {
        padding: 0 0 120px 0;
    }
}
.mb-2 {
    margin-bottom: 20px;
}
.mb-3 {
    margin-bottom: 30px;
}
.m-2 {
    margin: 20px;
}
.m-3 {
    margin: 30px;
}
.mr-2 {
    margin-right: 20px;
}
.grey-bg {
    background: #f4f4f4;
}
.pc-off {
    display: block;
}
.sp-on {
    display: none;
}
@media (max-width: 650px) {
    .sp-on {
        display: block;
    }
    .pc-off {
        display: none;
    }
}
/* サイドメニュー */
.sidebar {
    width: 250px;
}
.side-ttl {
    padding: 5px 0;
}
.bk-r {
    background-color: #BE1F15;
}
.bk-g {
    background-color: #8CB55C;
}
.bk-b {
    background-color: #4E4E4E;
}
.side-ttl h4{
    color: #fff;
    font-size: 16px;
}
.side-box {
    border: 1px solid #DBDBDB;
    margin-bottom: 20px;
}
.sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.sidebar ul li {
    border-bottom: 1px solid#DBDBDB;
}
.sidebar ul li:last-child {
    border-bottom: none;
}
.sidebar ul li a {
    display: block;
    text-decoration: none;
    font-size: 15px;
    color: #0C0C0C;
    padding: 15px;
    position: relative;
    justify-content: space-around;
    align-items: center;
}
.sidebar ul li a:after {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 2px solid #8c8c8c;
    border-right: 2px solid #8c8c8c;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 15px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.sidebar ul li a:hover {
    opacity: 0.7;
    transition:transform 0.3s;
}
.sidebar img:hover {
    opacity: 0.8;
    transition:transform 0.3s;
}
@media (max-width: 768px) {
    .sidebar {
        display: none;
    }
}
.main-contents {
    flex: 1;
    margin-left: 50px;
}
.products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.product-item {
    flex: 1 1 calc(33.333% - 20px); /* 33.333%の幅で商品を3列に */
    background-color: #e9e9e9;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
    }
    .product-item {
        flex: 1 1 100%; /* 画面幅が768px以下のときは全幅1列に */
    }
    .main-contents {
        margin-left: 0;
    }
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.text-center {
    text-align: center;
}

/* パンくず */
.breadcrumb>li+li:before{content:">\00a0";padding:0 5px;color:#8c8c8c}
.breadcrumb {
    padding: 0;
    margin: 20px 0;
    list-style: none;
    background-color: #fff;
    border-radius: 4px;
    font-size: 12px;
}

/* タイトル */
.page-header {
	text-align: center;
    margin: 0 0 20px;
	border-bottom: 2px solid #C4AC68;
}
.row {
	margin-left: 0;
	margin-right: 0;
}

/*************
/* ヘッダー
*************/
.logo {
    display: block;
}
.logo-sp {
    display: none;
}
.header {
    padding: 10px 0 0 0;
    color: #0C0C0C;
    border-top: none;
}
.header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-logo {
    width: 25%;
}
.header h1 {
    margin: 0;
}
.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.header-right > div:first-child {
    margin-bottom: 10px;
}

.header-right-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.header-right-buttons img {
    width: 20px;
    margin-right: 10px;
}

.header-right-buttons a {
    display: flex;
    text-decoration: none;
    padding: 10px 39.3px;
    background-color: #fff;
    color: #0C0C0C;
    border-radius: 5px;
    border: 1px solid #262626;
}
.header-right-buttons a:hover {
    opacity: 0.7;
    transition:transform 0.3s;
}
/* navigation */
.nav-box {
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
    margin-top: 20px;
}
.nav-lists {
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-top: 20px; */
    margin-bottom: 0;
    padding: 15px 0;
    text-align: center;
    /* border-top: 1px solid #CCCCCC; */
}
.nav-lists li {
    width: calc(100% / 6);
    border-right: #CCCCCC 1px solid;
}
.nav-lists li:last-child {
    border-right: none;
}
.nav-lists li:first-child {
    border-left: none;
}
.nav-lists li a{
    justify-content: center;
    color: #0C0C0C;
}
.nav-lists li a:hover{
    opacity: 0.7;
    transition:transform 0.3s;
}
.nav-lists2 {
    display: none;
}

/* ハンバーガーメニュー */
.hamburger-menu__outer {
    display: none;
    position: fixed;
    top: 3px;
    right: 3px;
    z-index: 1000;
}
.hamburger-menu  {
    position: relative;
    background:#fff;
    cursor: pointer;
    width: 50px;
    height: 50px;
    transition: .5s;
    border: 1px solid #D1AD3B;
}
/*inner*/
.hamburger-menu span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    background: #D1AD3B;
    width: 45%;
}
.hamburger-menu span:nth-of-type(1) {
    top:13px; 
}
.hamburger-menu span:nth-of-type(2) {
    top:21px;
}
.hamburger-menu span:nth-of-type(3) {
    top:29px;
}
.menu {
    font-size: 10px;
    background: transparent!important;
    color: #262626;
    bottom: 15px;
    width: 100%!important;
    left: 50%!important;
    transition: .2s;;
    text-align: center;
    transform: translate(-50%, 0);
}
/* active */
/* .hamburger-menu.active  {
    background: transparent;
} */
.hamburger-menu.active span:nth-of-type(1) {
    top: 13px;
    left: 13px;
    transform: translateY(6px) rotate(-45deg);
    width: 52%;
}
.hamburger-menu.active span:nth-of-type(2) {
    opacity: 0;
}
.hamburger-menu.active span:nth-of-type(3){
    top: 25px;
    left: 13px;
    transform: translateY(-6px) rotate(45deg);
    width: 52%;
    transition: 0.2s;
}
/* 画面右固定ボタン */
.rsvBtn {
    position: fixed;
    top: 60%;
    transform: translate3d(0, -50%, 0);
    right: 0;
    z-index: 10;
}
.rsvBtn a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    color: #0C0C0C;
    font-weight: 600;
    border-radius: 4px 0 0 4px;
    padding: 2rem 1rem;
    transition: padding-right .2s;
    font-size: 1.8rem;
    letter-spacing: 2px;
    border: 1px solid #CCCCCC;
    margin: 10px 0;
}
.rsvBtn a span {
    writing-mode: vertical-lr;
    color: var(--white-y);
    margin-top: 1rem;
}
.rsvBtn a:hover {
    opacity: 0.7;
    transition:transform 0.3s;
}

@media (max-width: 768px) {
    header {
        margin-bottom: 20px;
    }
    .nav-box {
        border-top: none;
        border-bottom: none;
        margin-top: 20px;
    }
    .header-right-buttons {
        display: block;
        width: 100%;
    }
    .header-right-buttons a{
        margin-bottom: 10px;
        padding: 20px 39.3px;
        justify-content: center;
        align-items: center;
    }
    .header-right {
        padding: 20px 0 0 0;
    }
    .header-box {
        display: block;
        justify-content: space-between;
        align-items: center;
    }
    .credit {
        display: none;
    }
    .header-logo {
        width: 50%;
    }
    .logo-sp {
        display: block;
        width: 180px;
    }
    .hamburger-menu__outer,
    .header__inner {
        display: block;
    }
    .nav-lists__wrap {
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        margin-top: 0;
        z-index: 1000;
        padding: 0 15px 10px;
    }
    .nav-lists,
    .nav-lists2 {
        display: block;
        border: none;
        /* background: white; */
        border-radius: 10px;
        border: 1px solid #ececec;
    }
    .nav-lists li {
        width: 100%;
        border: none;
        border-bottom: #ececec 1px solid;
    }
    .nav-lists li a {
        display: block;
        padding: 1rem;
    }
    .nav-lists li:first-child {
        border-left: none;
    }
    .nav-lists li:last-child {
        border-bottom: none;
    }
    #nav{
        position:fixed;
        z-index: 999;
        right: -120%;
        top: 0;
        bottom: 0;
        width: 85%;
        transition: all 0.6s;
    }
    #nav.open{
        right: 0;
    }
    .mask.open {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        background: #2f2b2a;
        opacity: .7;
        z-index: 100;
        transition: all 0.6s;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        background-color: #f5f5f5;
        position: absolute;
        top: 60px;
        right: 0;
        width: 250px;
        padding: 10px;
    }
    .nav-menu a {
        text-decoration: none;
        padding: 10px;
        color: black;
    }
    .show {
        display: flex;
    }
    .hamburger-box {
        display: block;
        cursor: pointer;
        font-size: 30px;
    }
    .icon-bar {
        background-color: #0C0C0C;
    }
    .rsvBtn {
        display: none;
    }
    
    .nav-lists {
        padding: 0;
        text-align: left;
        margin-bottom: 10px;
    }
    .nav-lists li {
        position: relative;
    }
    .nav-lists li a:after {
        content: '';
        width: 8px;
        height: 8px;
        border-top: 2px solid #8c8c8c;
        border-right: 2px solid #8c8c8c;
        transform: rotate(45deg) translateY(-50%);
        position: absolute;
        top: 50%;
        right: 15px;
        border-radius: 1px;
        transition: 0.3s ease-in-out;
    }
    .nav-lists img {
        width: 100%;
    }
}
/*************
/* TOP
*************/
/* common */
.top-contentsbox {
    padding: 100px 0;
}
/* ttl */
.top-ttl {
    text-align: center;
}
.top-ttl h2{
    position: relative;
    display: inline-block;
    margin-bottom: 1em;
}
.top-ttl h2::before{
    content: '';
    position: absolute;
    bottom: -25px;
    display: inline-block;
    width: 30px;
    height: 2px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #DEDEDE;
    border-radius: 2px;
}
.ttl-l {
    position: absolute;
    top: 26%;
    left: 19%;
}
.ttl-r {
    position: absolute;
    top: 26%;
    right: 19%;
}
/* mv */
/* flow */
.top-img {
    width: 100%;
}
.flow-bg {
    height: 1590px; 
    background-image: url(../img/top/flow-bg.jpg);
    /* background-repeat: no-repeat; */
    background-position: center;
    background-size: cover;
}
.top-sec {
    padding: 50px;
    text-align: center;
    background: #fff;
    border-radius: 0 0 40px 40px;
    box-shadow: 3px 3px 10px 0px rgba(156, 156, 156, 0.4);
}
.top-sec p {
    margin-bottom: 30px;
}
.top-sec-ttl {
    position: relative;
}
.top-sec-ttl h2 {
    margin: 0;
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.top-sec-ttl span {
    font-size: 20px;
}
.top-sec-ttl span::before {
    content: '';
    display: inline-block;
    width: 35px;/*画像の幅*/
    height: 35px;/*画像の高さ*/
    background-image: url(../img/top/sensu.svg);
    background-size: contain;
    vertical-align: bottom;
    background-repeat: no-repeat;
    margin-right: 7px;
}
.top-sec-ttl span::after {
    content: '';
    display: inline-block;
    width: 35px;/*画像の幅*/
    height: 35px;/*画像の高さ*/
    background-image: url(../img/top/sensu.svg);
    background-size: contain;
    vertical-align: bottom;
    background-repeat: no-repeat;
    margin-left: 7px;
}
.flow-contentbox {
    text-align: left;
    padding: 40px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ECECEC;
    box-shadow: 1px 1px 10px 0px rgba(156, 156, 156, 0.4);
}
.gold-line {
    border: 2px solid #C4AC68;
}
.flow-contents {
    display: flex;
    margin-bottom: 20px;
}
.flow-contents-right {
    margin-left: 3%;
}
.flow-contents-right-ttl h3 {
    margin-bottom: 30px;
    padding: 0.25em 0.5em;
    background: transparent;
    border-left: solid 5px #BE1F15;
}
.flow-contents-right p {
    margin-bottom: 10px;
}
.flow-contents-right-ttl span {
    color: #BE1F15;
}
.y-line {
    display: inline-block;
    font-weight: 600;
    background: linear-gradient(transparent 50%, #FBFF95 50%);
}
.member-btn span {
    font-size: 28px;
}
.member-btn a {
    display: inline-block;
    position: relative;
    text-decoration: none;
    padding: 30px 80px 30px 70px; 
    background-color: #BE1F15;
    color: #fff;
    border-radius: 5px;
    border: double 6px #ffffff;
}
.member-btn a:hover {
    opacity: 0.7;
    transition:transform 0.3s;
}
.member-btn a:after {
    content: '';
    width: 15px;
    height: 15px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 25px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.member-box p {
    margin-bottom: 10px;
    color: #BE1F15;
    font-weight: 600;
    font-size: 28px;
}
.btn-heading {
    align-items: center; 
    display: flex; 
    justify-content: center; 
}
.btn-heading::before,
.btn-heading::after {
    background-color: #BE1F15; 
    border-radius: 5px; 
    content: "";
    height: 3px; 
    width: 25px; 
}
.btn-heading::before {
    margin-right: 10px; 
    transform: rotate(60deg); 
}
.btn-heading::after {
    margin-left: 10px; 
    transform: rotate(-60deg); 
}

@media (max-width: 1500px) {
    .ttl-l {
        top: 24.5%;
        left: 10%;
    }
    .ttl-r {
        top: 24.5%;
        right: 10%;
    }
}
@media (max-width: 768px) {
    .ttl-l {
        top: 19%;
        left: 0%;
        width: 160px;
    }
    .ttl-r {
        top: 19%;
        right: 0%;
        width: 160px;
    }
    .member-btn a {
        padding: 15px 50px 15px 40px; 
    }
    .top-sec {
        padding: 20px;
    }
    .top-sec p {
        margin-bottom: 20px;
    }
    .flow-contentbox {
        padding: 15px;
    }
    .flow-contents-right-ttl h3 {
        margin: 15px 0;
    }
    .top-sec p {
        margin-bottom: 15px;
    }
    .top-sec-ttl span {
        font-size: 16px;
    }
    .top-sec-ttl span::before {
        width: 25px;
        height: 25px;
        margin-right: 7px;
    }
    .top-sec-ttl span::after {
        width: 25px;
        height: 25px;
        margin-left: 7px;
    }
    .member-btn span {
        font-size: 18px;
    }
    .member-btn a:after {
        content: '';
        width: 8px;
        height: 8px;
        border-top: 2px solid #ffffff;
        border-right: 2px solid #ffffff;
        transform: rotate(45deg) translateY(-50%);
        position: absolute;
        top: 50%;
        right: 15px;
        border-radius: 1px;
        transition: 0.3s ease-in-out;
    }
    .flow-bg {
        height: 1200px;
    }
    .top-ttl h2::before{
        bottom: -6px;
    }
}
@media (max-width: 650px) {
    .ttl-l {
        display: none;
    }
    .ttl-r {
        display: none;
    }
    .top-sec-ttl h2 {
        width: 100%;
    }
    .top-sec-ttl span {
        font-size: 13px;
    }
    .top-sec-ttl span::before {
        width: 20px;
        height: 20px;
        margin-right: 7px;
    }
    .top-sec-ttl span::after {
        width: 20px;
        height: 20px;
        margin-left: 7px;
    }
    .top-sec {
        padding: 10px;
    }
    .top-sec p {
        text-align: left;
    }
    .flow-contents {
        display: block;
    }
    .flow-contents-left {
        width: 100%;
        text-align: center;
    }
    .flow-contents-left img {
        width: 40%;
    }
    .flow-contentbox {
        padding: 20px 10px;
    }
    .flow-bg {
        height: 2430px;
    }
    .flow-contents-img {
        width: 100%;
        text-align: center;
    }
    .btn-box {
        margin: 30px 0;
    }
    .top-contentsbox {
        padding: 20px 0;
    }
    .member-box p {
        margin-bottom: 10px;
        font-size: 16px;
    }
    
}
@media (max-width: 600px) {
    .flow-bg {
        height: 2300px;
    }
}
@media (max-width: 550px) {
    .flow-bg {
        height: 2160px;
    }
}
@media (max-width: 500px) {
    .flow-bg {
        height: 2018px;
    }
    
}
@media (max-width: 450px) {
    .flow-bg {
        height: 1889px;
    }
}
@media (max-width: 400px) {
    .flow-bg {
        height: 1810px;
    }
}
@media (max-width: 350px) {
    .flow-bg {
        height: 1590px;
    }
}
@media (max-width: 300px) {
    .flow-bg {
        height: 1590px;
    }
}

/* design */
.design-txt {
    text-align: center;
    margin: 60px 0;
}
.top-cat-ttl {
    position: relative;
}
.top-cat-ttl2 {
    position: relative;
}
.top-cat-ttl h2 {
    font-size: 40px;
    color: #fff;
    margin: 0;
    position: absolute;
    top: 71%;
    left: 22%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.top-cat-ttl2 h2 {
    font-size: 40px;
    color: #fff;
    margin: 0;
    position: absolute;
    top: 35%;
    left: 5%;
    transform: translate(0, 0);
    text-align: center;
}
.top-cat-ttl3 h2 {
    font-size: 30px;
    top: 39%;
}
.top-cat-ttl span {
    font-size: 20px;
}
.top-cat-ttl span::before {
    content: '';
    display: inline-block;
    width: 35px;/*画像の幅*/
    height: 35px;/*画像の高さ*/
    background-image: url(../img/top/sensu-hinomaru.svg);
    background-size: contain;
    vertical-align: bottom;
    background-repeat: no-repeat;
    margin-right: 7px;
}
.top-cat-ttl span::after {
    content: '';
    display: inline-block;
    width: 35px;/*画像の幅*/
    height: 35px;/*画像の高さ*/
    background-image: url(../img/top/sensu-hinomaru.svg);
    background-size: contain;
    vertical-align: bottom;
    background-repeat: no-repeat;
    margin-left: 7px;
}
.design-contentsbox {
    display: flex;
    flex-wrap: wrap; /* 要素を複数行に並べる */
    justify-content: space-between; /* 要素間にスペースを均等に配置 */
    max-width: 1100px; /* コンテナの最大幅を指定 */
    margin: 0 auto; /* コンテナを中央に配置 */
}
.design-contents {
    flex: 0 1 calc(33.33% - 20px); /* 3列表示に調整、左右にスペースを確保 */
    margin-bottom: 20px; /* 各要素の下に余白を追加 */
}
.contents-img {
    background: #F8F8F8;
    padding: 10px 50px;
}
.design-txt {
    margin: 0;
}
.design-contents h3 {
    font-size: 20px;
}
.pb-9 {
    padding-bottom: 90px;
}
.mb-6 {
    margin-bottom: 60px;
}
.design-contents a:hover{
    opacity: 0.7;
    transition:transform 0.3s;
}
.kumo-1 {
    position: absolute;
    top: 27%;
    left: 0%;
    width: 150px;
}
.kumo-2 {
    position: absolute;
    top: 32%;
    right: 0%;
    width: 150px;
}
.kumo-3 {
    position: absolute;
    top: 46%;
    left: 0%;
    width: 150px;
}
.kumo-4 {
    position: absolute;
    top: 52%;
    left: 0%;
    width: 150px;
}
.kumo-5 {
    position: absolute;
    top: 57%;
    right: 0%;
    width: 150px;
}
.kumo-6 {
    position: absolute;
    top: 68%;
    left: 0%;
    width: 150px;
}
.kumo-7 {
    position: absolute;
    top: 73%;
    right: 0%;
    width: 150px;
}
.kumo-8 {
    position: absolute;
    top: 79%;
    right: 0%;
    width: 150px;
}
.kumo-9 {
    position: absolute;
    top: 81%;
    left: 0%;
    width: 150px;
}
.kasa {
    position: absolute;
    top: 85%;
    right: 0%;
    width: 17%;
}

@media only screen and (max-width:1500px){
    .kumo-1,.kumo-2,.kumo-3,.kumo-4,.kumo-5,.kumo-6,.kumo-7,.kumo-8,.kumo-9 {
        display: none;
    }
}
@media only screen and (max-width:1300px){
    .kasa {
        top: 86.5%;
    }
}

@media only screen and (max-width:1100px){
    .top-cat-ttl h2 {
        font-size: 30px;
    }
    .top-cat-ttl3 h2 {
        font-size: 24px;
    }
    .kasa {
        top: 85.5%;
    }
}
@media only screen and (max-width:1024px){
    .contents-img {
        padding: 10px 30px;
    }
}
@media only screen and (max-width:768px){
    .top-cat-ttl h2 {
        font-size: 22px;
    }
    .top-cat-ttl3 h2 {
        font-size: 18px;
    }
    .top-cat-ttl span {
        font-size: 16px;
    }
    .top-cat-ttl span::before {
        width: 25px;
        height: 25px;
        margin-right: 7px;
    }
    .top-cat-ttl span::after {
        width: 25px;
        height: 25px;
        margin-left: 7px;
    }
    .design-contents {
        flex: 0 1 calc(50% - 10px); 
    }
    .design-contents h3 {
        font-size: 18px;
    }
    .img-off {
        display: none;
    }
    .kasa {
        top: 85%;
        width: 135px;
    }
}
@media only screen and (max-width:650px){
    .top-cat-ttl h2 {
        font-size: 20px;
        top: 40%;
        left: 50%;
    }
    .top-cat-ttl2 h2 {
        font-size: 20px;
        top: 33%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .top-cat-ttl3 h2 {
        font-size: 18px;
    }
    
    .top-cat-ttl span {
        font-size: 13px;
    }
    .top-cat-ttl span::before {
        width: 20px;
        height: 20px;
        margin-right: 7px;
    }
    .top-cat-ttl span::after {
        width: 20px;
        height: 20px;
        margin-left: 7px;
    }
    .design-contents {
        flex: 0 2 48%;
    }
    .contents-img {
        padding: 10px;
    }
    .design-contents h3 {
        font-size: 16px;
        margin: 0;
        margin-top: 10px;
    }
    .pb-9 {
        padding-bottom: 60px;
    }
    .kasa {
        display: none;
    }
}
/* linkbutton */
.linkbuttonbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 100%; 
    padding: 60px 0;
}
.linkbuttonbox img {
    width: 97%;
    height: auto; 
    margin: 5px;
}
.linkbuttonbox a:hover {
    opacity: 0.7;
    transition:transform 0.3s;
}
.linkbuttonbox-sp  {
    display: none;
}
@media only screen and (max-width:768px){
    .linkbuttonbox img {
        width: 260px;
    }
    .linkbuttonbox-sp img {
        width: 38%;
        margin: 3px;
    }
}
@media only screen and (max-width:600px){
    .linkbuttonbox  {
        display: none;
    }
    .linkbuttonbox-sp  {
        display: block;
        text-align: center;
        padding: 20px 0;
    }
}

/* banner */
.top-bannerbox {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%; 
    padding-bottom: 40px;
    padding-top: 24px;
}
.top-bannerbox img {
    width: 33.33%; 
    height: auto; 
    margin: 5px;
}
.top-bannerbox img:first-child {
    margin-left: 0; 
}
.top-bannerbox img:last-child {
    margin-right: 0; 
}

@media only screen and (max-width:480px){
    .top-bannerbox {
        display: block;
        padding-bottom: 15px;
        padding-top: 24px;
        text-align: center;
    }
    .top-bannerbox img {
        width: 80%; 
        height: auto; 
        margin: 0;
        margin-bottom: 8px;
    }
}

/* q&a */

/*************
/* 商品一覧
*************/
.list-img-sec {
    width: 100%;
}
.list-ttl {
    font-size: 20px;
    text-align: center;
    margin: 0;
    margin-bottom: 10px;
}
.list-btn {
    background-image: none;
    margin: 15px 0;
}
.list-btn:hover {
    color: #555555;
    background: #fff;
    opacity: 0.7;
    transition:transform 0.3s;
}
.list-imgbox {
    width: 33.33%;
    padding: 0 10px;
}
.list-img {
    background: #F8F8F8;
    text-align: center;
}
.list-img img {
    max-width: 220px;
}
@media only screen and (max-width:1200px){
    .list-imgbox {
        width: 100%;
    }
}
/*************
/* 商品詳細
*************/
.br-pc {
    display: block;
}
@media only screen and (max-width:768px){
    .br-pc {
        display: none;
    }
}
.selectbox {
    border: 1px solid #DBDBDB;
    width: 100%;
    padding: 30px 0;
    margin-bottom: 60px;
}
.select-btn {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.selectline {
    color: #0C0C0C;
    border-bottom: 1px solid #262626;
}
.selectline:hover {
    color: #0C0C0C;
    opacity: 0.7;
    transition:transform 0.3s;
}

/*************
/* 印刷内容入力
*************/
.easyedit-btn {
    border-bottom: none;
    background-image: none;
    background: #BE1F15;
    color: #fff;
    padding: 20px 30px;
}
.easyedit-btn:hover {
    border-bottom: none;
    background-image: none;
    background: #BE1F15;
    color: #fff;
    opacity: 0.7;
    transition:transform 0.3s;
}
.easyedit-txt {
    margin: 15px 0 20px 0;
}
.easyedit-ttl {
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0;
}

/* 挨拶文選択 */
/* 初期状態でポップアップを非表示にする */
.popup {
    display: none; /* ポップアップを非表示に */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-height: 80%;
    overflow-y: auto;
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    border-radius: 8px;
}
.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.popup-header h3 {
    margin: 0;
}
.close-btn {
    background-color: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
}
.popup-content {
    margin-bottom: 10px;
}
.overlay {
    display: none; /* オーバーレイも非表示に */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
.popup-header-ttl h3 {
    border-bottom: 1px solid #707070;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-align: center;
}
.greeting-option {
    width: 100%;
    text-align: left;
    background: #fff;
    border: 1px solid #DBDBDB;
    padding: 20px;
    margin-bottom: 7px;
}
/* teble */
.editform-btn {
    min-height: 50px;
    min-width: 150px;
}
.editform-btnbox {
    display: flex;
    justify-content: center;
}

.btnbox-item {
    margin: 0 30px;
}
@media only screen and (max-width:768px){
    .popup {
        width: 95%;
        padding: 5px;
    }
    .easyedit-ttl {
        font-size: 16px;
        font-weight: 600;
        margin: 10px 0;
    }
}


















.next-btn {
    background: #BE1F15;
    color: #fff;
}
.next-btn:hover {
    background: #BE1F15;
    color: #fff;
    opacity: 0.7;
    transition:transform 0.3s;
}
.modoru-btn {
    background: #f0f0f0;
    color: #262626;
    border: 1px solid #e6e6e6;
}
.modoru-btn:hover {
    background: #f0f0f0;
    color: #262626;
    border: 1px solid #e6e6e6;
    opacity: 0.7;
    transition:transform 0.3s;
}
.all-btn {
    background: #fff;
    color: #262626;
    border: 1px solid #e6e6e6;
}
.all-btn:hover {
    background: #fff;
    color: #262626;
    border: 1px solid #e6e6e6;
    opacity: 0.7;
    transition:transform 0.3s;
}
.previmg-img {
    width: 80%;
}
@media only screen and (max-width:768px){
    .previmg-img {
        width: 100%;
    }
}

/*************
/* 枚数・用紙決定
*************/
.total-price {
    font-size: 45px;
    text-align: center;
    background: none;
    border: none;
}
.hagaki-selectbox {
    text-align: center;
    text-align: -webkit-center;
}
.hagaki-select {
    width: 20%;
}
@media only screen and (max-width:768px){
    .hagaki-select {
        width: 100%;
    }
    .total-price {
        font-size: 30px;
    }
}

/*************
/* カート
*************/

/*************
/* お支払・配送方法
*************/
.about-payment {
    border: 1px solid #DBDBDB;
    width: 100%;
    padding: 0 30px 30px 30px;
    margin-bottom: 60px;
}
.payment-img {
    width: 100%;
    max-width: 400px;
    margin: 10px 0 20px 0;
}
.personal-information {
    font-size: 18px;
    font-weight: 600;
    margin: 30px 0 15px 0;
    text-align: center;
}
.payment-box {
    padding-bottom: 30px;
    border-bottom: 1px solid #DEDEDE;
}
.payment-box:last-child{
    padding-bottom: 0;
    border-bottom: none;
}
.payment-box h4 {
    margin: 30px 0 20px 0;
}
@media only screen and (max-width:768px){
    .about-payment {
        padding: 0 15px 20px 15px;
        margin-bottom: 20px;
    }
    .payment-box h4 {
        margin: 30px 0 10px 0;
    }
    .personal-information {
        font-size: 14px;
        margin: 20px 0 10px 0;
    }
    .payment-box {
        padding-bottom: 20px;
    }
}

/*************
/* 注文完了
*************/
.finish-box {
    font-size: 16px;
    color: #0C0C0C;
    background-color: #ffffff;
    border: none;
    border-radius: 4px;
}



/*************
/* フッター
*************/
.footer {
    background: #fff;
    margin-top: 100px;
    color: #0C0C0C;
    border-top: 2px solid #CECECE;
}
.footer-logo {
    padding: 45px 0;
}
.footer-logo img {
    width: 25%;
}
.footer-box {
    display: flex;
    flex-wrap: wrap;
}
.footer-menu-list {
    width: 30%;
}
.footer-box ul li a{
    color: #0C0C0C;
}
.footer-box ul li a:hover {
    opacity: 0.7;
    transition:transform 0.3s;
}
.footer-ttl {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
}
.footer-menu-list li {
    margin-bottom: 20px;
}
.about-company {
    padding: 60px 0 0 0;
    font-size: 14px;
    justify-content: space-around;
    align-items: center;
}
.about-company a {
    color: #0C0C0C;
    text-decoration: underline;
}
.about-company a:hover {
    opacity: 0.7;
    transition:transform 0.3s;
}
.company-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0 20px 0;
}
#footerCopyright {
    background: #262626;
}
@media (max-width: 768px) {
    .footer {
        margin-top: 60px;
    }
    .footer-logo {
        text-align: center;
        padding: 30px 0;
    }
    .footer-menu-list {
        width: 48%;
    }
    .footer-logo img {
        width: 70%;
    }
}
@media only screen and (max-width:480px){
    .footer-box {
        display: block;
    }
    .footer-menu-list {
        width: 100%;
        margin-bottom: 0;
    }
    .footer-menu-list a {
        display: block;
    }
    .footer-menu-list li {
        border-bottom: 1px solid #ececec;
        margin-bottom: 0;
    }
    .footer-menu-list .footer-ttl {
        background-color: #f7f7f7;
    }
    .footer-ttl {
        font-size: 16px;
    }
    .footer-menu-list li a {
        display: block;
        text-decoration: none;
        font-size: 15px;
        color: #0C0C0C;
        padding: 15px;
        position: relative;
        justify-content: space-around;
        align-items: center;
    }
    .footer-menu-list a:after {
        content: '';
        width: 8px;
        height: 8px;
        border-top: 2px solid #8c8c8c;
        border-right: 2px solid #8c8c8c;
        transform: rotate(45deg) translateY(-50%);
        position: absolute;
        top: 50%;
        right: 15px;
        border-radius: 1px;
        transition: 0.3s ease-in-out;
    }
    .footer-menu-list a:hover {
        opacity: 0.7;
        transition:transform 0.3s;
    }
    .about-company {
        padding: 30px 0 0 0;
    }
    .company-item { 
        margin-bottom: 20px;
    }
    .sp-img {
        width: 210px;
    }
    .company-box {
        padding: 3px 0 10px 0;
    }
}




/*************
/* よくある質問
*************/
/* アコーディオン */
.accordion-content {
    display: none;
}
.accordion-header {
    padding: 20px 45px 22px 20px;
    margin: 10px 0 0;
    transition: background .3s ease;
    cursor: pointer;
    position: relative;
    border-bottom:1px solid #ececec ;
}
.accordion-header::before,
.accordion-header::after{
    position:absolute;
    content:'';
    top:1px;
    right:20px;
    bottom:0;
    width:12px;
    height:2px;
    margin:auto;
    background:#8c8c8c;
}
.accordion-header::after{
    transform:rotate(-90deg);
    transition:transform 0.3s;
}
.accordion-header.active::after{transform:rotate(0deg);}
.accordion-content {
    padding: 22px 20px 20px;
}
.accordion-header span,
.accordion-content span{
    padding-left: 40px;
    position: relative;
}
.accordion-header span::before{
    position: absolute;
    content:"Q";
    top: -10px;
    left: 0;
    color: #BE1F15;
    font-size: 24px;
    font-weight: 600;
}
.accordion-content span::before{
    position: absolute;
    content:"A";
    top: -10px;
    left: 0;
    color: #D1AD3B;
    font-size: 28px;
    font-weight: 600;
}
/* hover */
.accordion-header:hover {
    opacity: 0.7;
    transition:transform 0.3s;
}
@media (max-width: 768px) {
    .accordion-header {
        padding: 13px 32px 19px 6px;
    }
}

/*************
/* 特定商取引法に基づく表記
*************/
.legal-table {
    width: 100%;
    border-collapse: collapse;
}

.legal-table th, 
.legal-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
    vertical-align: top;
}

.legal-table th {
    background-color: #F8F8F8;
    width: 25%;
    font-weight: bold;
}

.legal-table td {
    width: 75%;
}

@media (max-width: 600px) {
    .legal-table th, 
    .legal-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .legal-table th {
        border: none;
        padding-top: 15px;
    }

    .legal-table td {
        border: none;
    }
}

/*************
/* 利用規約
*************/
.terms_item{
    margin-bottom: 30px;
}
.terms_item dt{
    font-weight: 500;
    margin-bottom: .5rem;
}
.terms_item dd{
    margin-left: 15px;
    margin-bottom: .5rem;
}

/*************
/* 個人情報保護方針
*************/
.policy-contents h3 {
    margin: 100px 0 60px 0;
}
/* iPad 縦 */
@media only screen and (max-width:768px){
    .policy-contents h3 {
        margin: 60px 0 30px 0;
    }
}

/*************
/* ご利用ガイド
*************/
.tabs {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
    padding: 15px 5px;
    cursor: pointer;
    border: none;
    background-color: #ddd;
    border: 1px solid #CCCCCC;
    color: #676767;
    text-align: center;
    transition: background-color 0.3s ease;
}

.tab-btn:hover {
    opacity: 0.7;
    transition:transform 0.3s;
}

.tab-btn.active {
    background-color: #FD5A5A;
    border: 1px solid #FD5A5A;
    border: none;
    color: #fff;
}

.tab-content {
    max-width: 1000px;
    padding: 0;
    background-color: #fff;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    margin: 0 0 20px 0;
    padding: 20px 30px;
    background-color: #f7f7f7;
}

.flow-box {
    display: flex;
    justify-content: space-between;
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid #ececec;
}
.flow-box:last-child {
    border-bottom: none;
}
.flow-box img {
    max-width: 400px;
}
.flow-ttl {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
}
.flow-ttl span {
    font-size: 24px;
    color: #0C0C0C;
    margin-right: 15px;
}
.flow-txt {
    margin-right: 30px;
}

/* ポップアップのオーバーレイ */
.popup-overlay {
    display: none; /* 初期は非表示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* 半透明の背景 */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* ポップアップの画像 */
.popup-content {
    max-width: 100%;
    max-height: 80%;
    border: 5px solid #fff;
}

/* 閉じるボタン */
.popup-close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
@media only screen and (max-width:768px){
    .tab-content .flow-box {
        display: block;
        width: 100%;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    .main-contents .tabs {
        display: block;
    }
    .tab-btn {
        width: 100%;
    }
    .flow-txt {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .tab-panel h3 {
        margin: 0 0 20px 0;
        padding: 15px;
        background-color: #f7f7f7;
    }
    .flow-box img {
        width: 100%;
    }
    .flow-ttl {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .flow-ttl span {
        font-size: 18px;
        margin-right: 10px;
    }
}

/* お支払い */
.main-contents h4 {
    margin: 0;
    margin: 0 0 20px 0;
    padding: 0;
    padding: 15px;/*文字周りの余白*/
    border-left: solid 5px #FD5A5A;/*左線（実線 太さ 色）*/
}
.guide-img {
    width: 100%;
    margin: 10px 0 20px 0;
}
.guide-btm {
    margin-bottom: 60px;
}
@media only screen and (max-width:768px){
    .main-contents h4 {
        padding: 10px;
    }
    .guide-img {
        margin: 0 0 10px 0;
    }
    .guide-btm {
        margin-bottom: 30px;
    }
}


/*************
/* 料金表
*************/
.price-table {
    padding: 0;
}
.price-table .price-item {
    width: 100%;
    border-collapse: collapse;
}
.price-table .price-item th, .price-table .price-item td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
    vertical-align: middle; 
}
.cat-0 {
    background: #f2f2f2;
}
.cat-1{
    background: #C1261C;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}
.cat-2{
    background: #E5941A;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}
.cat-3{
    background: #414052;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}
.cat-4{
    background: #66A252;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}
.cat-5{
    background: #BE99C7;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}
.price-teika {
    color: #8d8d8d;
}
.c-red {
    color: #fd5a5a;
    font-weight: 600;
}
.c-blue {
    color: #00a5ff;
    font-weight: 600;
}
@media only screen and (max-width:768px){
    .cat-1,.cat-2,.cat-3,.cat-4,.cat-5 {
        font-size: 13px;
    }
    .price-table {
        padding: 10px 0;
    }
}

/*************
/* 出荷日
*************/

.price-table .price-item tbody tr:nth-child(even) {
    background-color: #fdfdfd; /* 任意の背景色を指定 */
}

.delivery-box {
    padding: 100px;
    text-align: center;
    margin-bottom: 15px;
    background: #ffe5e3;
}
.delivery-box h3 {
    margin: 0;
    color: #C1261C;
}
.delivery-box h3 span {
    font-size: 60px;
}
@media only screen and (max-width:768px){
    .delivery-box h3 span {
        font-size: 30px;
    }
    .delivery-box {
        padding: 50px 0;
    }
}

/*************
/* お問い合わせ
*************/
.contactbox {
    text-align: left;
    margin: 30px 0;
}
.contact-txt {
    padding: 30px;
    border: 1px solid #DBDBDB;
    margin: 20px 0;
}

.form-horizontal .form-box {
    margin-left: 0;
    margin-right: 0;
}

@media only screen and (max-width:768px){
    .contact-txt {
        padding: 15px;
    }
}

.contactfinishbox {
    padding: 70px 0;
}
@media only screen and (max-width:768px){
    .contactfinishbox {
        padding: 35px 0;
    }
}

/*************
/* ログイン
*************/
.login-box {
    border: 1px solid #DBDBDB;
}
.loginttl {
    font-weight: 600;
}
.login-contents {
    padding: 30px;
}

.login-ttl .pass-txt {
    font-size: 14px;
}
.login-ttl {
    padding: 0;
    padding-bottom: 10px;
}
.create-btn {
    width: 100%;
    text-align: center;
}
.create-btn a {
    display: block;
    background: #BE1F15;
    color: #fff;
    padding: 15px 0;
}
.create-btn a:hover {
    opacity: 0.7;
    transition:transform 0.3s;
}
.login-btn {
    padding: 15px 0;
    font-size: 16px;
}
@media only screen and (max-width:768px){
    .login-contents {
        padding: 0;
    }
    .login-btn {
        font-size: 14px;
    }
}
.karibox {
    padding: 15px 0;
}
.kari-txt {
    text-align: center;
}
@media only screen and (max-width:768px){
    .kari-txt {
        text-align: left;
    }
    .karibox {
        padding: 10px 0;
    }
}
.karifinish-box h3 {
    margin-bottom: 30px;
}
.finish-box p {
    font-size: 16px;
    font-weight: 600;
}


/*************
/* ポップアップ
*************/
.ui-widget-overlay {
    background: #000000;
}
.ui-widget-header {
    border: none;
    background: #BE1F15;
    color: #fff;
    font-weight: bold;
}

/*************
/* マイページ
*************/
.mypagebox {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; 
}
.mypagebox a {
    color: #0C0C0C;
}
.mypagebox a:hover {
    opacity: 0.7;
    transition:transform 0.3s;
}
.my-item {
    border: 1px solid #DBDBDB;
    padding: 30px 0 10px 0;
    text-align: center;
    margin: 5px; 
    flex: 0 0 calc(25% - 10px);
    box-sizing: border-box; 
}
.my-item h3 {
    margin: 0; 
    margin-bottom: 20px;
}

.mypage-icon {
    max-width: 60px;
}
.mypage-txt {
    margin: 20px 0;
}

@media (max-width: 768px) {
    .my-item {
        flex: 0 0 calc(50% - 10px); 
    }
    .my-item {
        padding: 15px 0 10px 0;
    }
    .my-item h3 {
        margin-bottom: 15px;
    }
    .mypage-icon {
        max-width: 32px;
    }
    .mypage-txt {
        margin: 15px 0 3px 0;
    }
}

/*************
/* 宛名印刷
*************/
.atenabox {
    display: flex;
    margin: 30px 0;
    justify-content: center;
    align-items: center;
}
.atena-contents {
    text-align: center;
}
.option-container {
    display: inline-grid;
    align-items: center;
    gap: 10px; /* ボタンと画像の間隔を調整する場合 */
    margin: 0 60px;
}
.atena-txt {
    text-align: center;
}
@media (max-width: 768px) {
    .atena-txt {
        text-align: left;
    }
    .atenabox {
        margin: 10px 0;
    }
    .option-container {
        margin: 0 20px;
    }
}
.selectbox-note {
    border: #BE1F15 1px solid;
    padding: 30px;
}
.atenaselectbox {
    margin: 60px 0 0 0;
}
@media (max-width: 768px) {
    .selectbox-note {
        padding: 15px;
    }
    .atenaselectbox {
        margin: 30px 0 0 0;
    }
}
.downloadbox {
    display: flex;
    margin: 30px 0;
    justify-content: center;
    align-items: center;
    align-items: stretch;
}
.download-item {
    border: 1px solid #DBDBDB;
    text-align: center;
    flex: 1; /* 等しい大きさにする */
    margin: 0 10px; /* アイテム間にスペースを追加 */
    min-width: 300px; /* 必要に応じて最小幅を設定 */
}
.download-ttl h4 {
    background: #f4f4f4;
    padding: 40px;
    margin: 0;
    border-bottom: 1px solid #DBDBDB ;
}
.download-ttl  {
    margin-bottom: 40px;
}
.download-ttl h4 span {
    font-size: 15px;
}
.download-txt {
    text-align: left;
    margin: 30px 0 60px 0;
    padding: 0 20px;
}
.download-txt p {
    margin-bottom: 30px;
}
@media (max-width: 650px) {
    .downloadbox {
        display: block;
        margin: 15px 0;
    }
    .download-ttl h4 {
        padding: 20px;
    }
    .download-ttl h4 span {
        font-size: 13px;
    }
    .download-txt {
        margin: 15px 0 40px 0;
        padding: 0 10px;
    }
    .download-txt p {
        margin-bottom: 15px;
    }
    .download-ttl {
        margin-bottom: 30px;
    }
}

.scroll-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #BE1F15;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    display: none; /* 初期状態では非表示 */
    transition: opacity 0.3s ease-in-out;
}
.scroll-top-btn img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%; /* 画像をボタンに合わせて縮小 */
    height: auto; /* 縦横比を維持して縮小 */
}
.scroll-top-btn:hover {
    opacity: 0.8;
}
@media (max-width: 650px) {
    .scroll-top-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}












.kari-img {
    width: 100%;
}

/* PC用 */
@media only screen and (min-width:960px){

}

/* モニター幅940px以下 */
@media only screen and (max-width:960px){

}

/* iPad 縦 */
@media only screen and (max-width:768px){

}

/* スマートフォン 横(ランドスケープ) */
@media only screen and (max-width:640px){

}

/* スマートフォン 縦(ポートレート) */
@media only screen and (max-width:480px){

}