/*@charset "utf-8";
@import url("animate.css");
@import url("icomoon.css");
@import url("bootstrap.css");
@import url("slick.css");
@import url("slick-theme.css");
@import url("default.css");
@import url("print.css");

@import url("mediaquery.css");

@import url("add.css");*/

/*------------------------------------------------

CSS STRUCTURE:


/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
    --accent-color:             #333;
    --white-color:              #fff;
    --black-color:              #000;
    --gray-color:               #F3F3F3;
    --gray-color-300:           #D8D8D8;
    --gray-color-500:           #aeaeae4b;
    --gray-color-800:           #3A3A3A;
    --light-gray-color:         #D7DDDF;
    --primary-color:            #007dd5;
    --bs-primary-rgb:           11,159,249;
    --light-color:              #f8f9fa;
    --dark-color:               #212529;
    --light-blue-color:         #EDF1F3;
    --navbar-color-color:       #131814;
    --swiper-theme-color:       #4A4A4A;
    --swiper-pagination-color:  #4A4A4A;

}

/* on mobile devices below 600px
*/
@media screen and (max-width: 600px) {
    :root {
        --header-height : 100px;
        --header-height-min   : 80px;
    }
}

/* Fonts */
/*@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap')*/
:root {
    --body-font           : "Noto Sans CJK JP","Lato", sans-serif;
    --heading-font        : "Arial Black","Helvetica", sans-serif;
}

/*----------------------------------------------*/
/* 1 GENERAL TYPOGRAPHY */
/*----------------------------------------------*/

/* 1.1 General Styles
/*----------------------------------------------*/
*, *::before, *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    box-sizing: border-box;
}
body {
    font-family: "YakuHanJP", "Noto Sans", "Noto Sans CJK JP", "Noto Sans CJK JP Subset", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}
p {
    font-size: 1.2em;
    /*color: var(--gray-color-500);*/
}
ul.inner-list li {
    font-size: 1.2em;
}
a {
    color: var(--dark-color);
    text-decoration: none;
    transition: 0.3s color ease-out;
}
a.light {
    color: var(--light-color);
}
a:hover {
    text-decoration: none;
    color: var(--primary-color);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

a:hover img {
    opacity: 0.6;
    filter: alpha(opacity=60);
    -moz-opacity: 0.6;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.font120 {
    font-size: 120%;
}
.font160 {
    font-size: 160%;
}

/*------------ Background Color -----------*/
.bg-gray {
    background: var(--gray-color);
}
.bg-dark {
    background: var(--dark-color);
}
.bg-light {
    background: var(--light-color);
}
.bg-light-blue {
    background: var(--light-blue-color);
}

/* - Section Padding
--------------------------------------------------------------*/
.padding-xsmall {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}
.padding-small {
    padding-top: 2em;
    padding-bottom: 2em;
}
.padding-medium {
    padding-top: 4em;
    padding-bottom: 4em;
}
.padding-large {
    padding-top: 7em;
    padding-bottom: 5em;
}
.padding-xlarge {
    padding-top: 9.5em;
    padding-bottom: 9.5em;
}

/* no padding */
.no-padding-top {
    padding-top: 0 !important;
}
.no-padding-right {
    padding-right: 0 !important;
}
.no-padding-bottom {
    padding-bottom: 0 !important;
}
.no-padding-left {
    padding-left: 0 !important;
}
.no-padding-tb {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.no-padding-lr {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.no-gutter {
    padding: 0 !important;
}

/* no padding and margin */
.no-padding {
    padding: 0 !important;
}
.no-margin {
    margin: 0 !important;
}

.h400 {
    height: 400px;
}

/* - Section margin
--------------------------------------------------------------*/
.margin-small {
    margin-top: 3em;
    margin-bottom: 3em;
}
.margin-medium {
    margin-top: 5em;
    margin-bottom: 5em;
}
.margin-large {
    margin-top: 7em;
    margin-bottom: 7em;
}
.margin-xlarge {
    margin-top: 9em;
    margin-bottom: 9em;
}

@media only screen and (max-width: 768px) {
    .margin-small,
    .margin-medium,
    .margin-large {
        margin-top: 1em;
        margin-bottom: 1em;
    }
    .product-store.padding-large {
        padding-top: 2em;
    }
}

.num {
    padding: 3px 5px;
    border-radius: 30px;
    background: none;
    border: 2px solid #333;
    font-size: 140%;
}
.num a {
    padding: 0;
}

.link-quote {
    font-weight: 700;
    border-radius: 20px;
    padding: 4px 10px 7px;
    border: 2px solid #333;
    display: block;
    width: 160px;
    text-align: center;
}
@media only screen and (max-width: 768px) {
    .num {
        border-radius: 0;
        font-size: 100%;
    }
}

/* - font color
--------------------------------------------------------------*/
.text-blue {
    color:#007dd5;
}
.text-blue-radi {
    background: #007dd5;
    padding: 10px 20px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
}


.wrap-text-tate {
    text-align: center;
    display: flex;
}
.text-tate {
    writing-mode: vertical-rl;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

.box-bg-grey-rad {
    background: var(--light-blue-color);
    border-radius: 20px;
}


@media screen and (max-width: 768px) {
    .text-tate {
        writing-mode: horizontal-tb;
        margin-bottom: 30px;
    }
    .box-bg-grey-rad {
        background: #fff;
    }
    .text-content {
        margin: auto;
        padding: 20px;
        background: rgba(255, 255, 255, .8);
    }
}

/* - Section Title
--------------------------------------------------------------*/
.card-meta span {
    font-size: 110%;
    display: block;
    /*display: inline;*/
    text-align: left;
    background-color: transparent;
}

h3.card-title,
h3.cart-title {
    font-size: 1.1em;
}

.card-body h3.card-title,
.card-body h3.cart-title {
    font-size: 1.5em;
    padding: 5px 0;
}

h3.card-title,
h3.cart-title,
h5.card-title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 任意の行数を指定 */
}
#rireki p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 任意の行数を指定 */
}

@media screen and (max-width: 768px) {
    .card.border-none {
        width: 100%;
        margin: auto;
        padding: 20px;
    }
}

/* - Section width
--------------------------------------------------------------*/
.u-full-width {
    width: 100%;
    border: none;
}

/*--------------------------------------------------------------
/** 2.10 Buttons
--------------------------------------------------------------*/
/* - Button Sizes
------------------------------------------------------------- */
.btn.btn-small {
    padding: 0.8em 1.8em;
    font-size: 0.65em;
}
.btn.btn-medium {
    padding: 0.8em 2.8em;
    font-size: 1.1em;
    letter-spacing: 2px;
}
.btn.btn-large {
    padding: 2.4em 5.1em;
    font-size: 1.8em;
}

/* - Button Shapes
------------------------------------------------------------- */
.btn.btn-rounded,
.btn.btn-rounded::after {
    border-radius: 6px;
}
.btn.btn-pill,
.btn.btn-pill::after {
    border-radius: 2em;
}
/* button outline */
.btn.btn-outline-dark,
.btn.btn-outline-light,
.btn.btn-outline-accent {
    background: transparent;
    text-shadow: none;
    box-shadow: none;
}
.btn.btn-outline-dark:hover::after,
.btn.btn-outline-light:hover::after {
    background-color: transparent;
}
.btn.btn-outline-dark {
    border-color: rgba(0,0,0,1);
    color: var(--dark-color);
}
.btn.btn-outline-dark:hover {
    background: var(--dark-color);
    color: var(--light-color);
}
.btn.btn-outline-light {
    border-color: rgba(255,255,255,0.5);
    color: var(--light-color);
}
.btn.btn-outline-light:hover {
    background: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}
.btn.btn-outline-accent {
    background: transparent;
    border-color: var(--accent-color);
    color: var(--dark-color);
}
.btn.btn-outline-accent:hover {
    border-color: var(--dark-color);
    color: var(--dark-color) !important;
}
.btn.btn-full {
    display: block;
    margin: .85em 0;
    width: 100%;
    letter-spacing: 0.12em;
}
.btn.btn-detail {
    width: 48.5%;
    padding: 20px;
    font-size: 120%;
    /*margin-top:30px;*/
}

@media only screen and (max-width: 767px) {
    .btn.btn-detail {
        width: 100%;
        margin: 1px auto;
        font-size: 100%;
    }
}

/* no border radius */
.btn-rounded-none,
.btn-rounded-none::after {
    border-radius: 0;
}

/* - Buttons Color Scheme
------------------------------------------------------------- */
.btn.btn-normal {
    text-decoration: underline;
    border: none;
}
.btn.btn-normal:hover {
    text-decoration: none;
}
.btn.btn-accent {
    color: var(--light-color);
    background-color: var(--accent-color);
    border: none;
}
.btn.btn-accent:hover {
    color: var(--light-color) !important;
    background-color: var(--primary-color);
}
.btn.btn-black {
    background-color: var(--dark-color);
    color: var(--light-color);
    border: none;
}
.btn.btn-black:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}
.btn.btn-light {
    background-color: var(--light-color);
    color: var(--dark-color);
    border: none;
}
.btn.btn-light:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}
.btn.btn-primary {
    background: var(--primary-color);
    color: var(--light-color);
    border: none;
}
.btn.btn-primary:hover {
    background-color: var(--dark-color);
    color: var(--light-color);
}

.btn-check:focus+.btn, .btn:focus {
    box-shadow: none;
}

/* - Buttons Aligns
------------------------------------------------------------- */
.btn-left {
    text-align: left;
    display: block;
}
.btn-center {
    text-align: center;
    display: block;
}
.btn-right {
    text-align: right;
    display: block;
}

/*----------------------------------------------*/
/* 2 SITE STRUCTURE */
/*----------------------------------------------*/

/* - Search Bar
------------------------------------------------------------- */
.search-box {
    background: var(--gray-color);
    position: relative;
}
.close-button {
    position: absolute;
    top: 20px;
    right: 120px;
    cursor: pointer;
    z-index: 9;
}
.search-box input.search-input {
    font-size: 1.3em;
    width: 70%;
    height: 30px;
    padding: 25px;
    border-radius: 80px;
    border-color: rgb(0 0 0 / 25%);
    background: transparent;
}
.search-box svg {
    width: 22px;
    height: 22px;
    color: var(--primary-color);
}
.search-box svg.search {
    margin-left: -50px;
}


/** Search Form
--------------------------------------------------------------*/
.search-form input[type="search"].search-field {
    border: none;
    background: #f1f1f1;
    width: 100%;
    border-radius: 50px;
    padding: 10px 40px;
    margin-bottom: 30px;
}
.search-form input[type="search"].search-field::focus {
    border-color: #af9aaa;
}
.search-form button {
    position: absolute;
    top: 6px;
    right: 9px;
    background: transparent;
    border: none;
}

/** Search Popup
--------------------------------------------------------------*/
.search-popup {
    background-color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
}
.search-popup.is-visible {
    opacity: 1;
    visibility: visible;
    cursor: -webkit-image-set(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23FFF' d='M20 1l-1-1-9 9-9-9-1 1 9 9-9 9 1 1 9-9 9 9 1-1-9-9'/%3E%3C/svg%3E") 1x, url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23000' d='M20 1l-1-1-9 9-9-9-1 1 9 9-9 9 1 1 9-9 9 9 1-1-9-9'/%3E%3C/svg%3E") 2x), pointer;
    cursor: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23000' d='M20 1l-1-1-9 9-9-9-1 1 9 9-9 9 1 1 9-9 9 9 1-1-9-9'/%3E%3C/svg%3E"), pointer;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s;
}
.search-popup-container {
    background-color: transparent;
    position: relative;
    top: 50%;
    margin: 0 auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    text-align: center;
    box-shadow: none;
    cursor: default;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
    -webkit-backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.is-visible .search-popup-container {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.search-popup-form {
    position: relative;
    margin: 0 0 3em 0;
}
.search-popup-form .form-control {
    padding: 0 0 .375em 0;
    font-size: 2em;
}
.search-popup-form #search-popup-submit {
    display: none;
}
.search-popup .search-popup-close {
    display: block;
    position: absolute;
    top: 2em;
    right: 2em;
    margin: -0.5em;
    padding: 0.5em;
    line-height: 0;
}
.search-popup .search-popup-close:hover {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.search-popup .search-popup-close i {
    display: block;
    position: relative;
    width: 1em;
    height: 1em;
    fill: rgba(0,0,0,0.5);
}
.search-popup .search-popup-close:hover i {
    fill: rgba(0,0,0,1);
}
.search-popup .cat-list-title {
    margin-top: 40px;
    margin-bottom: 10px;
    font-size: 0.6em;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.search-popup .cat-list {
    margin: 0;
    list-style-type: none;
}
.search-popup .cat-list-item {
    display: inline-block;
    margin-bottom: 0;
    letter-spacing: 0.015em;
    font-size: 2em;
}
.search-popup .cat-list-item a {
    position: relative;
}
.search-popup .cat-list-item a::after {
    background: none repeat scroll 0 0 #fff;
    content: "";
    height: 1px;
    border-bottom: 1px solid #ff9697;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 100%;
    width: 100%;
    -webkit-transition: height 0.3s,opacity 0.3s,-webkit-transform 0.3s;
    transition: height 0.3s,opacity 0.3s,transform 0.3s;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}
.search-popup .cat-list-item a:hover::after {
    height: 1px;
    opacity: 1;
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
}
.search-popup .cat-list-item::after {
    content: "/";
    padding: 0 5px;
    line-height: 1;
    color: rgba(0, 0, 0, 0.5);
    vertical-align: text-top;
}
.search-popup .cat-list-item:last-child::after {
    display: none;
}

@media only screen and (max-width: 991px) {
    .search-popup .cat-list-item,
    .search-popup-form .form-control {
        font-size: 1.425em;
    }
}
@media only screen and (max-width: 767px) {
    .search-popup .search-popup-close {
        top: 1em;
        right: 1em;
    }
}
@media only screen and (max-width: 575px) {
    .search-popup .cat-list-item,
    .search-popup-form .form-control {
        font-size: 1.125em;
    }
    .search-popup .search-popup-close {
        top: 1em;
        right: 1em;
    }
}

.search-popup input[type="search"] {
    font-size: 24px;
    height: 60px;
    padding: 26px;
}
.search-popup .search-form button {
    top: 12px;
    right: 15px;
}
.search-popup .search-form button svg {
    height: 28px;
    width: 28px;
}

.form-check {
    margin: 10px auto;
}
.form-check b {
    display: block;
    padding: 5px 0;
    margin-bottom: 10px;
    border: 1px solid #666;
    border-radius: 30px;
}
.form-check label {
    display: inline-block;
    padding: 0 50px 0 0;
}
.form-control {
    display: inline-block;
    width: 42%;
    padding: 10px 15px;  /*文字開始位置を調整 */
}
.item_option {
    width: 79%;
}

/*.personal .form-control {
    display: inline-block;
    width: 42%;
    margin-left: calc(100% - 99%);  開始位置を調整
}

.inline-form {
    display: inline-block;
    margin-top: 0;
    unicode-bidi: isolate;
}*/

/*.inline-form a.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    padding: 10px 15px;
    white-space: nowrap;
    border: 1px solid #dc3545;  必要に応じてボタンの枠線色を指定
    background-color: #dc3545;  背景色を指定
    color: #fff;  テキスト色
    border-radius: 5px;  ボタンの角丸
    font-size: 14px;  フォントサイズ
}*/

p.btn-detail button {
    position: inherit;
}

@media only screen and (max-width: 767px) {
    .search-form {
        font-size: 70%;
    }
    .form-check {
        margin: 5px auto;
    }
    .form-check label {
        padding-right: 30px;
    }
    .search-popup input[type="search"]{
        font-size: 16px;
        height: 40px;
    }
    .search-form input[type="search"].search-field {
        margin-bottom: 10px;
    }
}

/* 1. Header
/*----------------------------------------------*/
.site-header {
    position: fixed;
    width: 100%;
    z-index: 100;
    transition: background 0.3s ease-out;
    border-bottom: 1px solid #e5e5e5;
}
.navbar-toggler svg.navbar-icon {
    width: 50px;
    height: 50px;
}
.p-20 {
    padding: 20px 0;
}
.navbar-nav .nav-item a.nav-link {
    color: var(--accent-color);
}
.navbar-nav .nav-item a.nav-link.active,
.navbar-nav .nav-item a.nav-link:focus,
.navbar-nav .nav-item a.nav-link:hover {
    color: var(--primary-color);
}
.navbar {
    padding-top: 1rem;
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0;
}

/*------------ Offcanvas -------------- */
#header-nav .navbar-toggler:focus {
    box-shadow: none;
}
#header-nav .offcanvas.show {
    z-index: 9999;
    background-color: var(--light-blue-color);
}
#header-nav .offcanvas-end {
    width: 500px;
}
.offcanvas.show .nav-item a.nav-link {
    font-size: 1.4em;
    border:none;
}
.offcanvas.show .offcanvas-body .navbar-nav {
    align-items: unset!important;
    padding-left: 20px;
}

.nav-menu {
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 15px 10px 10px;
    width: 96%;
}

@media only screen and (max-width: 1440px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 0;
    }
    .offcanvas.show .nav-item a.nav-link {
        font-size: 1.2em;
    }
}
@media only screen and (max-width: 1440px) {
    .navbar {
        height: 100px;
    }
}
@media only screen and (max-width: 1280px) {
    li.nav-item {
        font-size: 90%;
    }
    .ps-5 {
        padding-left: 1rem !important;
    }
}
@media only screen and (max-width: 1080px) {
    .offcanvas  a.nav-link.me-4.link-quote,
    .offcanvas .num {
        margin: 0 -10px;
    }
    .offcanvas  a.nav-link.me-4.link-quote {
        width: 90px;
        padding: 0;
    }
    .offcanvas .num a.nav-link {
        width: 172px;
        padding: 3px 0;
        margin-left: -20px;
    }
    .offcanvas  a.nav-link.me-4.link-quote i {
        display: none;
    }
    .offcanvas li.nav-item {
        width: 115px;
        margin: 0 -5px;
    }

    .offcanvas .num {
        border:none;
        font-size: 102%;
    }
}

/*------------ Top User Icons -----------*/
.site-header .user-items svg {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

@media only screen and (max-width: 991px) {
    #navbar .user-items {
        /*display: none;*/
        margin: 20px auto 0;
    }
}

.logo {
    width: 270px;
    margin-top: -5px;
}
@media screen and (max-width: 768px) {
    .logo {
        width: 240px;
        margin-top: 10px;
        margin-bottom: 0;
    }
}
@media screen and (max-width: 380px) {
    .logo {
        width: 210px;
    }
}

/* 2. Billboard
/*----------------------------------------------*/

.slider {
    width: 50%;
    margin: 100px auto;
}

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-prev:before,
.slick-next:before {
    color: black;
}


.slick-slide {
    transition: all ease-in-out .3s;
    opacity: .2;
}

.slick-active {
    opacity: .5;
}

.slick-current {
    opacity: 1;
}



/*------------Swiper Arrow -----------*/

.swiper.caru-swiper {
    margin-top: 100px;
    padding-bottom: 45px;
    /* 0912 add */
    width: 140%;
    margin-left: -20%;
}
.swiper.caru-swiper .swiper-slide img {
    height: auto;
    width: 100%;
}
.swiper .image-holder {
    text-align: center;
}

#billboard {
    padding: 40px 0 10px;
}

#billboard .swiper-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
}
.swiper-icon.swiper-arrow svg {
    fill: var(--light-gray-color);
}
.swiper-icon.swiper-arrow:hover svg,
.swiper-icon.swiper-arrow:focus svg {
    fill: var(--primary-color);
}
#billboard .swiper-arrow.swiper-arrow-prev {
    left: 0;
}
#billboard .swiper-arrow.swiper-arrow-next {
    right: 0;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 16%;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 16%
}

.product-store .swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 10%;
}
.product-store .swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 10%
}

@media only screen and (max-width: 767px) {
    #billboard .banner-content {
        margin-top: 210px;
    }
    #billboard .image-holder {
        margin-top: -390px;
        opacity: 0.3;
    }
    .swiper {
        /*margin-top: 150px;*/
    }
    #billboard .swiper-arrow {
        top: 400px;
    }
    .swiper.caru-swiper {
        /* 0912 add */
        width: 100%;
        margin-left: auto;
    }
    .swiper-button-prev,
    .swiper-button-next {
        top: 40%;
        color: #fff;
    }
    .swiper-button-prev {
        left: 5%;
    }
    .swiper-button-next {
        right: 5%;
    }
}



/* ２階層目 */
#head2nd {
    height: 400px;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    color: #fff;
}
#head2nd h2.display-7 {
    color: white;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

#head2nd h5 {
    color: white;
    margin-top: -15px;
    font-size: 450%;
    line-height: 1;
    padding: 20px 30px;
    font-family: serif;
    /*width: 220px;
  border: 5px outset #fff;*/
    background: rgba(255, 255, 255, .13);
    border: 2px solid #72bff0;
    border-radius: 20px;
}
#head2nd h5 span {
    font-size: 40%;
    display: block;
    text-align: center;
}
@media only screen and (max-width: 767px) {
    #head2nd h2 {
        margin-top: 120px;
        margin-bottom: -100px;
    }
    #head2nd h5 {
        margin-top: -360px;
        font-size: 200%;
        border: none;
        text-align: center;
    }
}

/* 3. Icon Box - Company Services
/*----------------------------------------------*/
.icon-box .icon-box-icon svg {
    width: 62px;
    height: 62px;
    fill: var(--primary-color);
}

#company-services {
    border-radius: 50px;
    padding: 50px 0 15px;
    background: #e4f1ff;
    margin: 80px 50px;
    border: 3px solid #bfe4ff;
}
#company-services h3.card-title {
    font-size: 1.5em;
}

@media only screen and (max-width: 991px) {
    #company-services .icon-box {
        flex-wrap: wrap;
        justify-content: center;
    }
    #head2nd h5 {
        font-size: 250%;
    }
}
@media only screen and (max-width: 768px) {
    #head2nd h5 {
        margin-top: -390px;
        width: 100%;
        padding: 7px;
        border-radius: 5px;
        font-size: 200%;
        border: 2px solid #72bff0;
    }
}
@media only screen and (max-width: 380px) {
    .icon-box-content {
        width: 100%
    }
    .icon-box-content p {
        font-size: 1em;
    }
}

/* 4. Product
/*----------------------------------------------*/
.product-store .product-card .cart-concern {
    /*bottom: 75px;*/
    width: 100%;
    display: flex;
    justify-content: center;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease-out;
    opacity: 0;
    top: 40%;
    height: 16%;
}
.product-store .product-card:hover .cart-concern {
    bottom: 90px;
    opacity: 1;
}

.product-store {
    padding-top: 4em;
    padding-bottom: 1em;
}
.product-card .cart-concern svg {
    width: 16px;
    height: 16px;
    fill: var(--light-color);
    margin-left: 9px;
}

a:hover .product-card {
    /*border:3px solid #0b9ff9;
    padding :10px;
    transform: scale(0.95);*/
    transition: 0.8s all;
}
.card-body .car-meta span {
    background-color: transparent;
}
.product-card .card-detail span {
    font-size: 1.4em;
    padding-bottom: 5px;
    display: block;
}
.product-card .card-detail i {
    font-style: normal;
    width: 31%;
    padding: 2px 3px;
    border: 1px solid #626262;
    margin-right: 1px;
    display: inline-block;
    text-align: center;
    font-size: 90%;
}
.h-noflex60 {
    height: 60px;
    display: block;
}

#list-products h2 {
    padding-bottom: 25px;
    border-bottom: 2px solid #333;
    display: block;
    width: 100%;
}
#list-products .area-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
#list-products .area-list .card {
    width: 24%;
    margin: 2px;

    /*    height: 300px;  カードの高さを固定
        display: flex;
        flex-direction: column;
        justify-content: space-between;  必要に応じて
        overflow: hidden;*/

    /*height: auto; これはデフォルト*/

    /*    display: -webkit-box;
        -webkit-line-clamp: 7;  表示する行数を設定
        -webkit-box-orient: vertical;
        overflow: hidden;  内容が溢れた場合に隠す
        text-overflow: ellipsis;  溢れたテキストを省略記号にする */
}
#list-products .area-list .card .card-body {
    padding: 1rem .5rem;
}
#list-products .area-list .card dt,
#list-products .area-list .card dd {
    padding: 0 5px;
    position: relative;
}
#list-products .area-list .card .card-title {
    font-size: 1.1em;
    display: -webkit-box; /* 必要に応じて複数行を処理する */
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* 3行に固定 */
    overflow: hidden;
    text-overflow: ellipsis; /* テキストが長すぎる場合の処理 */
    /* min-height: calc(1.1em * 3); 3行分の高さを確保 */
    -webkit-line-clamp: 2;
}

/* card-title部が3行未満の場合でも高さを確保する */
#list-products .area-list .card .card-title:empty::after {
    content: '\00a0'; /* 空白を追加して高さを維持 */
}

/* item-price-composition部を2行表示 */
#list-products .area-list .item-price-composition {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start; /* 文字を左揃え */
    min-height: calc(2.5em * 2); /* 2行分の高さを確保 */
    overflow: hidden;
    margin: 0; /* 不要なマージンを削除 */
}

/* item-price-composition部が2行未満の場合でも高さを確保する */
#list-products .area-list .item-price-composition p:empty::after {
    content: '\00a0'; /* 空白を追加して高さを維持 */
}

.item-price-composition p span s {
    font-size: 85%;
    padding: 0;
    margin: -5px 0 0px 4px;
    display: block;
    color: rgb(193 39 45 / 70%);
    font-family: "Arial";
    position: absolute;
    top: -12%;
    left: 1.2%;
}

#list-products .area-list .card span {
    font-size: 1.3em;
    padding-bottom: 5px;
    display: block;
}
#list-products .area-list .card p span {
    background-color: transparent;
    /*letter-spacing: -0.03em;  文字間隔を狭める */
    /*margin-right: -10px;  必要に応じて調整 */
}
#list-products .area-list .card i {
    font-style: normal;
    width: 31%;
    padding: 2px 3px;
    border: 1px solid #626262;
    margin-left: 1px;
    display: inline-block;
    text-align: center;
    font-size: 80%;
}

.detail-point {
    margin: 20px auto;
    padding: 0;
}
.detail-point li {
    list-style: none;
    display: inline-block;
    width: 24%;
    margin: 0 1px;
    padding: 10px 1px;
    color: #fff;
    background: #303030;
    border-radius: 20px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.box-price b {
    font-size: 300%;
    color: #c1272d;
    font-family: "Arial Black";
    padding: 0 10px;
}
.box-price span {
    margin: 0 0 0 2px;
    padding: 3px 10px;
    background: #333333;
    color: #fff;
    border-radius: 10px;
}

.box-ph-item img {
    width: 47%;
    margin: 3px;
}

.box-ph-item a.lightb {
    width: 48%;
}
.box-ph-item a.lightb img {
    width: 100%;
    margin: 3px auto;
}

.rireki-item {
    width: 14.222%;
}
.rireki-item img {
    max-width: 90%;
}
.rireki-item p {
    margin: 5px auto;
    font-size: 100%;
    line-height: 1.2em;
}
.rireki-item p span {
    display: block;
    font-size: 120%;
    margin-top: 5px;
}

.sticky {
    position: sticky;
    top: 10%;
    background:#fff;
    padding-top: 10px;
    padding-bottom: 10px;
    z-index: 10;
}

@media only screen and (max-width: 1024px) {
    .detail-point li {
        font-size: 80%;
    }
    .box-price {
        font-size: 90%;
    }
    .item-price-composition p span s {
        top: -12%;
        left: 1.2%;
    }
}


@media only screen and (max-width: 1440px) {
    .sticky {
        top: 15%;
    }
}

@media only screen and (max-width: 767px) {
    .h-noflex60 {
        height: 110px;
    }
    .product-card .card-detail i {
        width: 100%;
    }
    #list-products .area-list .card {
        width: 48.8%;
    }
    #list-products .area-list .card i {
        width: 100%;
        border: none;
        border-top: 1px solid #ddd;
    }
    #list-products .area-list .item-price {
        text-align: center;
    }
    .detail-point li {
        width: 48%;
    }
    .rireki-item {
        width: 50%;
        text-align: center;
    }
    .sticky {
        position: relative;
    }
}
@media only screen and (max-width: 575px) {
    .product-store .product-card .card-detail {
        padding: 10px;
    }
}

/*------------Swiper Pagination -----------*/
.product-store .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    /*bottom: -35px;*/
}
.swiper-pagination span.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
}

#pickup-products .swiper-pagination {
    bottom: -40px; /* 現在の位置から下に20px移動 */
}

/* 5. Testimonial
/*----------------------------------------------*/
.review-item blockquote {
    font-size: 2.5em;
    font-weight: 300;
    line-height: 1.2;
}
.rating svg.star {
    width: 16px;
    height: 16px;
    fill: var(--primary-color);
}
#testimonials .swiper-arrow svg {
    width: 45px;
    height: 45px;
    fill: var(--light-gray-color);
}
.review-content .swiper-arrow {
    top: 0;
    bottom: 0;
    z-index: 2;
}
.review-content .swiper-arrow.swiper-arrow-next {
    right: 0;
}
.review-content .quotation svg.quote {
    color: var(--light-blue-color);
}

@media only screen and (max-width: 767px) {
    #testimonials blockquote {
        font-size: 2em;
    }
    .review-content .swiper-arrow {
        bottom: -420px;
    }
}

/* 6. Subscribe
/*----------------------------------------------*/
.subscribe-content p {
    color: var(--gray-color-300);
}

@media only screen and (max-width: 1199px) {
    .subscription-form input.form-control,
    .subscription-form button {
        width: 100%;
        margin-bottom: 10px;
    }
}
@media only screen and (max-width: 767px) {
    .subscribe-content .ps-5 {
        padding-left: 0!important;
    }
}

/* info */
.info {
    margin: auto;
    padding: 0;
}
.info li {
    list-style: none;
    padding: 8px 5px; /* 上下の余白を15px → 8pxに狭める */
    margin: 0; /* 不要な余白を完全になくす */
    border-bottom: 1px solid #ccc;
}

.info li span {
    padding-right: 10px; /* 右の余白を20px → 10pxに狭める */
}

/* 8. Footer
/*----------------------------------------------*/
/*------------ Social Icon -----------*/
.social-links svg {
    width: 20px;
    height: 20px;
    color: var(--light-gray-color);
}
.social-links svg:hover {
    color: var(--primary-color);
}
.social-links li {
    padding-right: 30px;
}

#footer {
    padding: 80px 0 60px;
    background: #2062df;
}


#footer-bottom  {
    font-size: 14px;
    background: #222;
    color: #fff;
}
#footer-bottom a {
    color: #fff;
}

@media only screen and (max-width: 778px) {
    #footer-bottom  {
        padding-bottom: 50px;
    }
    #footer-bottom a {
        font-size: 90%;
    }
}

/* 9. About Us Page
/*----------------------------------------------*/
/*------------ Video Icon -----------*/
.video-item a {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.video-item svg.video-player {
    width: 80px;
    height: 80px;
    padding: 19px;
    border-radius: 50%;
}

/* - Shop Page
--------------------------------------------------------------*/
/* ----------- Search Bar -----------*/
.shopify-grid select#input-sort {
    font-size: 1.2em;
    color: var(--dark-grey-color);
    border: none;
    padding: 0;
    text-align: center;
}

/* ----------- SideBar -----------*/
.sidebar input.search-field {
    width: 290px;
    height: 50px;
    box-shadow: 5px 5px 15px 5px #eee;
    border: 1px solid #eee;
    padding-left: 20px;
    outline-offset: 0;
}
.sidebar .search-icon {
    padding: 14px;
}
.sidebar svg.search {
    width: 20px;
    height: 20px;
}
.sidebar h5.widget-title {
    font-size: 1.4em;
    margin-bottom: 15px;
}
.sidebar .sidebar-list li {
    font-size: 1.2em;
}
.sidebar .sidebar-list li a {
    color: var(--dark-30);
}
.sidebar .sidebar-list li a:hover {
    color: var(--primary-color);
}

@media only screen and (max-width: 991px) {
    .widget-search-bar form {
        flex-wrap: wrap;
    }
}

/* ----------- Pagination -----------*/
.paging-navigation .pagination .page-numbers {
    font-size: 1.4em;
    color: var(--gray-color-500);
}
.paging-navigation .pagination .page-numbers:hover {
    color: var(--primary-color);
}
.paging-navigation .pagination svg {
    width: 35px;
}


/* 10. Single Product Page
/*----------------------------------------------*/
/*------------ Product Info -----------*/
.product-info .rating svg.star-fill {
    fill: var(--dark-color);
}
.product-info .select-list li.select-item {
    font-size: 1.2em;
}
.product-quantity .input-group {
    width: 140px;
    gap: 2px;
}
.product-quantity #quantity {
    height: auto;
    width: 20px;
    border: none;
    margin: 0;
    padding: 0;
}
.product-quantity #quantity,
.product-quantity .btn-number {
    width: 40px;
    height: 40px;
    text-align: center;
    background: #FFFFFF;
    border: 1px solid #E2E2E2;
    border-radius: 6px;
    color: #222;
    padding: 0;
}
.single-product .cart-wrap h4.item-title {
    font-size: 1.5em;
}
.single-product .product-quantity .stock-number {
    font-size: 1.2em;
}
.meta-product h4.item-title {
    font-size: 1.2em;
}
.item-price {
    color: #c1272d;
    font-family: "Arial Black";
}


/*------------ Product Info Tabs -----------*/
.product-info-tabs .tabs-listing button {
    font-size: 2em;
    color: var(--dark-color);
}
.product-info-tabs .nav-tabs .nav-link {
    border: none;
}
.product-info-tabs .nav-tabs .nav-item.show .nav-link,
.product-info-tabs .nav-tabs .nav-link.active {
    color: var(--primary-color);
}


@media only screen and (max-width: 991px) {
    .product-info-tabs .tabs-listing button {
        font-size: 1.2em;
        padding-right: 20px!important;
    }
}


/* 10. Cart Page
-----------------------------------------------------*/
.shopify-cart .card-price .money {
    font-size: 1.5em;
}
.shopify-cart .total-price .money {
    font-size: 2.9em;
}
.total-price .cart-totals {
    font-size: 1.5em;
}
.shopify-cart .table th {
    width: 30%;
}

.table>:not(caption)>*>* {
    padding: 1rem 2rem;
}

/* 11. Checkout Page
--------------------------------------------------------------*/
.list-group-item span {
    font-size: 1.2em;
}


/* 12. Blog Page
--------------------------------------------------------------*/
/*------------ Sidebar -----------*/
.sidebar-post-item h4.card-title {
    font-size: 1.2em;
}

/* 13. Sibgle Post Page
--------------------------------------------------------------*/
#single-post-navigation .post-navigation span.page-nav-title {
    font-size: 1.5em;
}
.post-navigation svg {
    width: 30px;
    height: 45px;
}
.post-navigation:hover svg,
.post-navigation:focus svg {
    fill: var(--primary-color);
}

/* 14.  main 2cols
/*----------------------------------------------*/
#main-2cols .col-lg-3 {
    position:relative;
}

/* li.nav-item,
li.nav-item .dropdown-toggle {
  padding: 2px 0 10px;
} */
li.nav-item img {
    width: 22px;
}

.bor-bottom {
    border-bottom: 1px solid #ddd;
}

img.icon30 {
    width: 30px;
}

/* 通常のナビゲーションメニュー（デスクトップ向け） */
.menu-list {
    display: flex;
    gap: 1rem;
    position: relative;
    transition: all 0.3s ease;
}
/* ハンバーガーメニューと閉じるボタンをデスクトップでは非表示 */
.menu-toggle, .close-menu {
    display: none; /* デスクトップでは非表示にする */
}


/* スマートフォン向けの設定 */
@media (max-width: 768px) {
    /* メニューを画面外に配置しておく */
    .menu-list {
        position: fixed;
        left: -250px; /* メニューを左側に隠す */
        top: 0;
        width: 250px;
        height: 100vh; /* メニューを画面の高さに制限 */
        background-color: #fff; /* 背景色を白に設定 */
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
        transition: left 0.3s ease;
        z-index: 1000; /* 他の要素よりも前に表示 */
        overflow-y: auto; /* 縦スクロールを有効に */
    }

    /* メニューを表示するクラス */
    .menu-list.open {
        left: 0; /* 左からスライドして表示 */
    }

    /* ナビゲーションメニューの項目 */
    .menu-list li {
        width: 100%;
        margin-bottom: 1rem;
    }

    /* ナビゲーションリンクのデザイン */
    .menu-list .nav-link {
        display: block;
        width: 100%;
        padding: 1rem;
        color: #333;
        text-decoration: none;
    }

    /* ハンバーガーメニューボタン
    .menu-toggle {
      display: block;
      position: absolute;
      left: 10px;
      top: -70px;
      z-index: 2000;
      background-color: #333;
      color: #fff;
      padding: 10px;
      cursor: pointer;
      width: 96%;
      text-align: center;
    } */

    /* ハンバーガーメニューボタン */
    .menu-toggle {
        display: block;
        position: fixed;
        left: 0;
        bottom: 0;
        z-index: 2000;
        background-color: #222;
        color: #fff;
        padding: 10px;
        cursor: pointer;
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }

    /* 閉じるボタン（初期は非表示） */
    .close-menu {
        display: none;
        position: fixed;
        left: 10px;
        top: 10px;
        z-index: 2000;
        background-color: #333;
        color: #fff;
        padding: 10px;
        cursor: pointer;
    }

    /* メニューが開いた時に閉じるボタンを表示、ハンバーガーメニューを非表示にする */
    .menu-list.open ~ .close-menu {
        display: block;
    }

    .menu-list.open ~ .menu-toggle {
        display: none;
    }

    /* メニューが開いた時に閉じるボタンを表示、ハンバーガーメニューを非表示にする */
    .menu-list.open + .close-menu {
        display: block;
    }

    .menu-list.open + .menu-toggle {
        display: none;
    }
}

@media (max-width: 380px) {
    .btn-toggle {
        font-size: 85%;
        padding: 0;
        margin: 0;
    }
    .menu-list li {
        margin: 5px auto;
        font-size: 90%;
    }
}


/* ////// TOP用 ////// */
/* 通常のナビゲーションメニュー（デスクトップ向け） */
.menu-list-top {
    width: 100%; /* 親要素の幅を継承 */
    max-width: 100%; /* 必要であれば幅の制限 */
    padding: 0; /* 不要なパディングを削除 */
    margin: 0 auto; /* センター揃え（必要に応じて） */

    display: flex;
    gap: 1rem;
    position: relative;
    transition: all 0.3s ease;
}
/* ハンバーガーメニューと閉じるボタンをデスクトップでは非表示 */
.menu-toggle, .close-menu {
    display: none; /* デスクトップでは非表示にする */
}


/* スマートフォン向けの設定 */
@media (max-width: 768px) {
    /* メニューを画面外に配置しておく */
    .menu-list-top {
        gap: 0;
    }

    /* メニューを表示するクラス */
    .menu-list-top.open {
        left: 0; /* 左からスライドして表示 */
    }

    /* ナビゲーションメニューの項目 */
    .menu-list-top li {
        width: 100%;
        margin-bottom: 1rem;
    }

    /* ナビゲーションリンクのデザイン */
    .menu-list-top .nav-link {
        display: block;
        width: 100%;
        padding: 1rem;
        color: #333;
        text-decoration: none;
    }

    /* ハンバーガーメニューボタン
    .menu-toggle {
      display: block;
      position: absolute;
      left: 10px;
      top: -70px;
      z-index: 2000;
      background-color: #333;
      color: #fff;
      padding: 10px;
      cursor: pointer;
      width: 96%;
      text-align: center;
    } */

    /* ハンバーガーメニューボタン */
    .menu-toggle {
        display: block;
        position: fixed;
        left: 0;
        bottom: 0;
        z-index: 2000;
        background: #2062df;
        color: #fff;
        padding: 10px;
        cursor: pointer;
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }

    /* 閉じるボタン（初期は非表示） */
    .close-menu {
        display: none;
        position: fixed;
        left: 10px;
        top: 10px;
        z-index: 2000;
        background-color: #333;
        color: #fff;
        padding: 10px;
        cursor: pointer;
    }

    /* メニューが開いた時に閉じるボタンを表示、ハンバーガーメニューを非表示にする */
    .menu-list-top.open ~ .close-menu {
        display: block;
    }

    .menu-list-top.open ~ .menu-toggle {
        display: none;
    }

    /* メニューが開いた時に閉じるボタンを表示、ハンバーガーメニューを非表示にする */
    .menu-list-top.open + .close-menu {
        display: block;
    }

    .menu-list-top.open + .menu-toggle {
        display: none;
    }
}

/*.modal {
    position: fixed;
    z-index: 1050;  最前面に表示
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.6);  背景を暗くする
    display: flex;  フレックスボックスで中央配置
    justify-content: center;  左右中央
    align-items: center;  上下中央
    opacity: 1;  完全に不透明に設定
}*/

.modal img {
    max-width: 100%;
}

/*.modal-dialog {
    max-width: unset;  モーダルの最大幅制限を解除
        width: auto;  コンテンツに合わせた幅
        margin: 0 auto;  左右中央寄せ
        display: flex;
        align-items: center;  上下中央寄せ
        justify-content: center;  左右中央寄せ
}*/

.modal-content {
    background-color: unset;
    /*    border: none;  必要に応じて枠線を消す
        box-shadow: none;  モーダルの影を消す */
}
/*
.modal-body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;  モーダル内部の余白をなくす
}

.modal-body img {
    display: block;
    max-width: 100%;  横幅をモーダルの幅以内に制限
    height: auto;  縦横比を維持して高さを調整
}*/

@media (max-width: 380px) {
    .btn-toggle {
        font-size: 85%;
        padding: 0;
        margin: 0;
    }
    .menu-list-top li {
        margin: 5px auto;
        font-size: 90%;
    }
}
@media (min-width: 768px) and (max-width: 840px) {
    .col-md-6 {
        width: 48%;
    }
}
.pagetop {
    display: none;
    position: fixed;
    bottom: 0px;
    right: 15px;
}
.pagetop a {
    display: block;
    background-color: #2e2e2e;
    text-align: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    padding: 10px 20px;
    filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}
.pagetop a:hover {
    display: block;
    background-color: #b2d1fb;
    text-align: center;
    color: #222;
    filter:alpha(opacity=30);
    -moz-opacity: 0.3;
    opacity: 0.3;
}

#spec th {
    min-width: 6em; /* 6文字分の幅を確保 */
    white-space: nowrap; /* 折り返しを防ぐ */
}

#request .row > * {
    display: flex;
    align-items: center;
    width: auto; /* width: 100% を無効化 */
    margin-bottom: 1rem; /* 適度な余白を追加 */
    flex-wrap: nowrap;
}

#request .row label {
    display: block; /* ラベルを1行に表示 */
    font-weight: bold;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

#request .row input[type="text"],
#request .row input[type="number"] {
    margin: 12px;
    margin-top: 0.3rem;
    /*margin-bottom: 0.5rem;*/
    /*margin-right: 1.0rem;*/
}

.form-group .col-form-label {
    /*padding-bottom: 10px;*/
}
