/*calendar*/

@media screen and (max-width: 641px) {
    embed,
    iframe,
    object {
        max-width: 100%;
    }
}

/*バックグラウンドカラー*/

.bg-blue {
    background-color: #5959d9;
}

.bg-green {
    background-color: #35a039;
}

.bg-orange {
    background-color: #f0a248;
}

.bg-yellow {
    background-color: #fdf3d6;
}

.bg-white {
    background-color: #ffffff;
    border: solid 2px #bfbfbf;
}

/*ボタン*/

.bt-blue {
    background-color: #5959d9;
    padding: 10px;
    border-radius: 10px;
    color: white;
    text-align: center;
    font-weight: bold;
}

.bt-blue a {
    display: block;
}

/*センター揃え*/

.center {
    text-align: center;
}

/*フォントサイズ*/

.px-16 {
    font-size: 16px;
}

/*フォントカラー*/

.f-white {
    color: white;
}

.f-orange {
    color: #ff6c00;
}

/*ボーダー*/

.border {
    border: solid 1px #b9b9b9;
}

/*要素を等間隔に（flexbox）*/

.column {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.column section {
    flex: 1;
    flex-grow: 1;
    margin: 5px;
    border-radius: 10px;
    padding: 10px;
}

.column section h2 {
    font-size: 22px;
    text-align: center;
    background-color: rgba(89, 89, 217, 0);
    margin: 0;
}

.column p {
    margin-top: 0px;
}

.design-ichiran {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.design-ichiran section {
    margin-bottom: 10px;
}

.logo {
    width: 950px;
    margin: 0 auto 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-top: 10px;
}

.logo section {
    flex: 1;
    flex-grow: 1;
}

/*グローバルナビ*/

.slicknav_menu {
    display: none;
}

/*FLEXBOX------------------------------*/

.item {
    background: #FFFFFF;
    margin: 10px;
    text-align: center;
}

.item img {
    max-width: 100%;
    height: auto;
    border: #ADADAD solid 1px;
}

.item p {
    text-align: center;
    margin-top: 0px;
    background: #006699;
    color: #FFFFFF;
    line-height: 30px;
    border-radius: 5px;
}

/* Responsive */

@media screen and (min-width: 641px) {
    .flexbox {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .item {
        width: 30%;
    }
    .item2 {
        width: 45%;
    }
    .flexbox2 {
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }
    .product-main {
        width: 57%;
    }
    .product-side {
        width: 35%;
    }
}

/*商品詳細画像-------------------------*/

.product-main {
    margin-bottom: 10px;
}

.product-main img {
    max-width: 100%;
}

.product-side {
    background: #E9E9E9;
    padding: 2%;
    border-radius: 10px
}

.product-side .border {
    border: solid 2px #FAA05E;
}

/*サイド画像***/

.item2 {
    margin: 5px;
    text-align: center;
}

.item2 img {
    max-width: 100%;
    height: auto;
    border: #ADADAD solid 1px;
}

.item2 p {
    position: relative;
    background: #006699;
    border-radius: 5px;
    color: #FFFFFF;
    padding: 5px;
    margin-top: 0;
}

.item2 p:after,
.item2 p:before {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.item2 p:after {
    border-color: rgba(0, 102, 153, 0);
    border-bottom-color: #006699;
    border-width: 10px;
    margin-left: -10px;
}

.item2 p:before {
    border-color: rgba(0, 0, 0, 0);
    border-bottom-color: #;
    border-width: 16px;
    margin-left: -16px;
}

.back-yellow {
    background-color: #FFF66E;
}

/*レスポンシブ*/

@media screen and (max-width: 640px) {
    .column {
        -webkit-flex-direction: column;
        flex-direction: column;
    }
    .design-ichiran {
        -webkit-flex-direction: column;
        flex-direction: column;
    }
    .logo {
        -webkit-flex-direction: column;
        flex-direction: column;
        width: auto;
        margin-bottom: -20px;
    }
    .logo-title {
        width: 60%;
    }
    #menu {
        display: none;
    }

    .slicknav_menu {
        display: block;
    }
}

/*ブログ記事*/

#blog p {
    font-size: 17px;
    line-height: 160%;
    color: #333333;
    margin-bottom: 20px;
}

#blog h3 {
    font-size: 20px;
    background-color: #d8d8d8;
    border-radius: 10px;
    padding: 15px;
}

#blog strong {
    background: linear-gradient(transparent 40%, #ffff66 40%);
}

#blog table {
    border-collapse: collapse;
    border: 1px solid #848484;
}

#blog td,
th {
    padding: 10px;
    border: 1px solid #848484;
}

#blog th {
    font-weight: bold;
    background: #069;
    color: white;
}

#blog tr:nth-child(odd) td {
    background-color: #f0f0f0;
}


.back-blue {
    background-color: #c0d6ff;
    padding: 20px;
    border-radius: 10px;
}

.cta {
    background-color: #3b3b3b;
    padding: 5px 20px 20px 20px;
    border-radius: 5px;
    margin: 30px 0 30px 0;
}

.cta p {
    color: #ffffff;
    font-size: 17px;
}

.cta h3 {
    color: #ffffff;
    font-size: 28px;
}

.cta-button {
    background-color: red;
    color: white;
    font-size: 1.3em;
    font-weight: bold;
    box-shadow: 0 4px #8b0505;
    border-radius: 5px;
    text-align: center;
}

.cta-button a {
    display: block;
    color: white;
    padding: 10px;
}

.cta-button a:hover {
    text-decoration: none;
    background-color: #ff4242;
    border-radius: 5px;
}

blockquote {
    position: relative;
    padding: 10px 12px;
    box-sizing: border-box;
    font-style: italic;
    color: #464646;
    border-left: solid 40px #c4c4c4;
    background: #f3f3f3;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.19);
}

blockquote:before {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: -32px;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    vertical-align: middle;
    content: "\f10d";
    font-family: FontAwesome;
    color: #FFF;
    font-size: 22px;
    line-height: 1;
}

blockquote p {
    position: relative;
    padding: 0;
    margin: 10px 0;
    z-index: 3;
    line-height: 1.7;
}

blockquote cite {
    display: block;
    text-align: right;
    color: #888888;
    font-size: 0.9em;
}

/*ブログ記事一覧表示*/

.catwrap {
    margin-bottom: 20px;
    border: 1px solid #adadad;
}

.catwrap a {
    display: block;
    padding: 10px;
}

.catwrap a:hover {
    background-color: #f4f4ff;
    text-decoration: none;
}

.catphoto {
    margin-right: 20px;
    max-width: 35%;
}

.cattitle {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    color: #333333;
}

.catcontent {
    font-size: 14px !important;
    color: #585555;
    margin: 5px;
}

.catflex {
    display: flex;
}

.operation {
    font-size: 20px;
    text-align: center;
    border: 1px solid #c3c0c0;
}

.operation a {
    background-color: #ededed;
    display: block;
    padding: 10px;
    color: #000000;
}

.operation a:hover {
    background-color: #ebebff;
    text-decoration: none;
}

.pagenation {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.pagenationnow {
    border: 1px solid #c3c0c0;
    padding: 15px 20px;
    display: block;
    margin: 5px;
    background-color: #ededed;
}

.pagenation a {
    display: block;
    border: 1px solid #c3c0c0;
    padding: 15px 20px;
    margin: 5px;
    color: #333333;
}

.pagenation a:hover {
    background-color: #ebebff;
    text-decoration: none;
}

/*お知らせ*/

.info{
    padding: 10px;
    border: 3px solid #bc2b2b;
    margin-bottom: 20px;
}
.info strong{
    font-size: 18px;
    color: #bc2b2b;
}

/* 入力フォームガイド用テキストカラー */

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:#ccc;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:#ccc;
}
::placeholder{ /* Others */
 color:#ccc
}

/* 宛名印刷画面テンプレート */

#atena-temp{
    width: 100%;
}

/*価格表 割引あり*/
.price-table table{
    border: 1px solid #999999;
    border-collapse: collapse;
    width: 100%;
}
.price-table td{
    padding: 10px;
    border: 1px solid #999999;
    border-collapse: collapse;
    text-align: center;
}
.price-table td:first-child{
    background-color: #eeeeee;
}
.pricehead1{
    background-color: #E0E2ED !important;
}
.pricehead2{
    background-color: #C8ECDA !important;
}
.price-table td:nth-child(3){
    font-weight: bold;
}
.price-table td:nth-child(5){
    font-weight: bold;
}

.price-table tr:nth-child(2n+1){ background:#ffffff;}
.price-table tr:nth-child(2n){ background:#eaf9fc;}

.price-table tr:nth-child(n+5) > td:nth-child(2){
    color: #606060;
    text-decoration: line-through;
}
.price-table tr:nth-child(n+5) > td:nth-child(4){
    color: #606060;
    text-decoration: line-through;
}

/*価格表 割引なし*/
.price-table2 table{
    border: 1px solid #999999;
    border-collapse: collapse;
    width: 100%;
}
.price-table2 td{
    padding: 10px;
    border: 1px solid #999999;
    border-collapse: collapse;
    text-align: center;
}
.price-table2 td:first-child{
    background-color: #eeeeee;
}
.pricehead1{
    background-color: #E0E2ED !important;
}
.pricehead2{
    background-color: #C8ECDA !important;
}


.price-table2 tr:nth-child(2n+1){ background:#ffffff;}
.price-table2 tr:nth-child(2n){ background:#eaf9fc;}

/*目次*/

.mokuji ul{
    margin: 20px 0 0 0;
    padding: 0;
}

.mokuji li{
    display: inline-block;
    border: solid 1px #003b99;
    border-radius: 6px;
    margin-right: 10px;
}
.mokuji li a{
    padding: 5px 15px;
    display: block;
    color: #003b99;
}
.mokuji li a:hover{
    background-color: #003b99;
    color: white;
}

