﻿/**
* 共通
**/
html{
    -webkit-text-size-ajust: 100%;
}

.contents{
    padding-top: 70px;
    max-width: 940px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.centered{
    text-align: center;
}

img{
    max-width: 100%;
}

a{
    word-break: break-all;
/*
    text-decoration: underline dotted;
    text-underline-offset: 5px;
*/
    text-decoration: none;
    border-bottom: 1px dotted #0000cd;
    color: #0000cd;
    cursor: pointer;
}

a:visited{
    border-bottom: 1px dotted #5f9ea0;
    color: #5f9ea0;
}

a:hover{
    border-bottom:1px dotted #1e90ff;
    color: #1e90ff;
}

h1{
    font-size: clamp(20px, 2.5vw, 48px);
}

/**
* 戻るボタン
**/
.gotop{
    display: none;
    width: 60px;
    height: 60px;
    box-sizing: border-box;
    background: #FFF;
    border: 1px solid #999;
    border-radius: 50%;
    padding-top: 30px;
    text-align: center;
    letter-spacing: -1px;
    font-size: 85%;
    text-decoration: none;
    color: #333;
    opacity: 0.5;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
}
.gotop::before{
    content: "";
    display: block;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    width: 25%;
    height: 25%;
    top: 40%;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    transform: rotate(-45deg);
}
.gotop:hover{
    opacity: 1;
}

/**
* ボタン
**/
.bt_buy {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    max-width: 100%;
    height: 50px;
    border-radius: 5px;
    font-size: 1.2rem;
    color: #fff;
    font-weight: bold;
    background-image: linear-gradient(to top left, rgba(0,0,205,0.9) 0%, rgba(30,144,255,0.9) 50%, rgba(0,191,255,0.9) 100%);
    transition: 1.0s ;
    cursor: pointer;
    border: none;
    outline: none;
    margin-left: auto;
}

.bt_buy:hover{
    border: 2px solid #1e90ff;
    color: #1e90ff;
    background-image: linear-gradient(to top left, #afeeee 40%, #e0ffff 80%);
}

/**
* 購入ボックス
**/
.container{
    display: flex;
    justify-content: center;
    gap:30px;
}

.box{
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-radius: 8px;
    font-size: 1.3rem;
    width: 350px;
    max-width: 100%;
    padding: 20px;
    margin-bottom: 1rem;
    background-color: #e0ffff;
}

.box > a{
    text-decoration: none;
    border-bottom: 0px;
}

.wp_buy_text{
    flex-grow: 1;
    margin-bottom: 1rem;
}

/**
* ヘッダーのスタイリング
**/
.bl_hambg_inner{
    display: none;
}

.nav_btn{
    display: none;
}

.ly_header_inner{
    position: fixed;
    top: 0%;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    background-color: #fff;
}

/**
* タブナビゲーション
**/
.bl_tabNav_inner{
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: -10px;
    padding-left: 0px;
}

.bl_tabNav_inner li{
    list-style: none;
}

.bl_tabNav_inner > li > a{
    display: inline-block;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    margin-bottom: 10px;
    border-bottom: 4px solid #efefef;
    color: #777;
    text-decoration: none;
    transition: .25s;
}

.bl_tabNav_inner > li > a:focus,
.bl_tabNav_inner > li > a:hover{
    border-bottom-color: currentColor;
    color: #1e90ff;
    opacity: .75;
}

/*ナビ子階層以降共通*/

.bl_tabNav_inner > li.menu__single{
    position: relative;
}

li.menu__single ul.menu__second{
    position: absolute;
    top: 50px;
    padding: 0;
    width: 135px;
    -webkit-transition: all .1s ease;
    transition: all .1s ease;
    visibility: hidden;
    background-color: #f0f8ff;
}

li.menu__single:hover ul.menu__second{
    top: 50px;
    visibility: visible;
}

.menu__second > li > a{
    display: inline-block;
    padding-top: 20px;
    padding-right: auto;
    padding-bottom: 10px;
    padding-left: auto;
    margin-bottom: 10px;
    color: #777;
    text-decoration: none;
    transition: .1s;
    border-bottom: 0px;
}

.menu__second > li > a:focus,
.menu__second > li > a:hover{
    color: #0000cd;
    font-weight: bold;
}

/* 吹き出し */
.balloon{
  position: relative;
  padding: 0px;
}

.balloon::before{
  content: '';
  position: absolute;
  left: 20px;
  top: -15px;
  display: block;
  width: 0;
  height: 0;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #f0f8ff;
  border-left: 15px solid transparent;
}

/**
* レスポンシブ
**/
/* ###### 960px以下 ######*/
@media screen and (max-width: 960px){
    .gotop{
        width: 40px;
        height: 40px;
        text-indent: -9999px;
        opacity: 1;
        border: none;
        background: none;
        bottom: 10px;
        right: 10px;
    }
    .gotop::before{
        bottom: 0;
    }

/* メニューバー */
    .ly_header_inner{
        display: none;
    }

    .nav_btn{
        display: block;
    }

    .nav_btn {
        margin: 0;
        padding: 3px;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: inherit;
        vertical-align: middle;
        text-align: inherit;
        font: inherit;
        -webkit-appearance: none;
        appearance: none;
        position: fixed;
        top: 15px;
        left: 15px;
        width: 35px;
        height: 35px;
        z-index: 10;
        cursor: pointer;
    }

    .bl_hambg_inner {
        position: fixed;
        left: -70%;
        margin-left: auto;
        display: flex;
        flex-direction: column;
        background-color: transparent;
        transition: .3s;
        list-style: none;
    }

    .menu__second2 {
        list-style: none;
    }

    .nav_list {
        width: 100%;
        line-height: 2;
/*        height: 100%;*/
        display: flex;
        align-items: center;
        padding-left: 40px;
    }

    .nav_list a{
        padding-right: 10px;
        text-decoration: none;
        color: #696969;
        border-bottom: 0px;
    }

    .nav_list a:hover{
         color: #0000cd;
    }

    .btn_line {
        display: block;
        position: relative;
        width: 100%;
        height: 3px;
        background-color: #00bfff;
        transition: .2s;
    }

    .btn_line::before,
    .btn_line::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #00bfff;
        transition: .5s;
    }
    .btn_line::before {
        transform: translateY(-12px);
    }
    .btn_line::after {
        transform: translateY(12px);
    }

    .bl_hambg_inner.open {
        left: -30px;
        background-color: rgba(220, 220, 220, 0.9);
    }

/***** メニューオープン時 *****/
    .btn_line.open {
        background-color: transparent;
    }
    .btn_line.open::before ,
    .btn_line.open::after {
        content: "";
        background-color: #00bfff;
        transition: .2s;
    }
    .btn_line.open::before {
        transform: rotate(45deg);
    }
    .btn_line.open::after {
        transform: rotate(-45deg);
    }

/*ナビ子階層以降共通*/

    .bl_hambg_inner > li.menu__single2{
        position: relative;
    }

    .bl_hambg_inner > li.menu__single2 ul.menu__second2{
        position: absolute;
        top: 0px;
        left: 150px;
        padding: 0;
        width: 120px;
        -webkit-transition: all .1s ease;
        transition: all .1s ease;
        visibility: hidden;
        background-color: #f0f8ff;
    }

    li.menu__single2:hover ul.menu__second2{
        top: 0px;
        left: 150px;
        visibility: visible;
    }

    .menu__second2 > li > a{
        display: inline-block;
        padding-top: 7px;
        padding-right: 10px;
        padding-bottom: 3px;
        padding-left: 10px;
        margin-bottom: 10px;
        color: #696969;
        text-decoration: none;
        transition: .1s;
        border-bottom: 0px;
    }

    .menu__second2 > li > a:focus,
    .menu__second2 > li > a:hover{
        color: #0000cd;
    }

     .menu__single2::after{
        content: "";
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 5px;
        border: 6px solid transparent;
        border-left-color: #696969;
        vertical-align: middle;
    }

}

/* ###### 520px以下 ###### */
@media screen and (max-width: 520px){
    .gotop{
        width: 40px;
        height: 40px;
        text-indent: -9999px;
        opacity: 1;
        border: none;
        background: none;
        bottom: 10px;
        right: 10px;
    }
    .gotop::before{
        bottom: 0;
    }

/* 購入ボックス */
    .container{
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: space-around;
        gap:0px;
    }
    .box{
        width: 300px;
        font-size: 1rem;
    }

/* メニューバー */
    .ly_header_inner{
        display: none;
    }

    .nav_btn{
        display: block;
    }

    .nav_btn {
        margin: 0;
        padding: 3px;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: inherit;
        vertical-align: middle;
        text-align: inherit;
        font: inherit;
        -webkit-appearance: none;
        appearance: none;
        position: fixed;
        top: 15px;
        left: 15px;
        width: 35px;
        height: 35px;
        z-index: 10;
        cursor: pointer;
    }

    .bl_hambg_inner {
        position: fixed;
        left: -70%;
        margin-left: auto;
        display: flex;
        flex-direction: column;
        background-color: transparent;
        transition: .3s;
        list-style: none;
    }

    .menu__second2 {
        list-style: none;
    }

    .nav_list {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        padding-left: 40px;
    }

    .nav_list a{
        padding-right: 10px;
        text-decoration: none;
        color: #696969;
        border-bottom: 0px;
    }

    .nav_list a:hover{
         color: #0000cd;
    }

    .btn_line {
        display: block;
        position: relative;
        width: 100%;
        height: 3px;
        background-color: #00bfff;
        transition: .2s;
    }

    .btn_line::before,
    .btn_line::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #00bfff;
        transition: .5s;
    }
    .btn_line::before {
        transform: translateY(-12px);
    }
    .btn_line::after {
        transform: translateY(12px);
    }

    .bl_hambg_inner.open {
        left: -30px;
        background-color: rgba(220, 220, 220, 0.9);
    }

/***** メニューオープン時 *****/
    .btn_line.open {
        background-color: transparent;
    }
    .btn_line.open::before ,
    .btn_line.open::after {
        content: "";
        background-color: #00bfff;
        transition: .2s;
    }
    .btn_line.open::before {
        transform: rotate(45deg);
    }
    .btn_line.open::after {
        transform: rotate(-45deg);
    }

/*ナビ子階層以降共通*/

    .bl_hambg_inner > li.menu__single2{
        position: relative;
    }

    .bl_hambg_inner > li.menu__single2 ul.menu__second2{
        position: absolute;
        top: 0px;
        left: 150px;
        padding: 0;
        width: 120px;
        -webkit-transition: all .1s ease;
        transition: all .1s ease;
        visibility: hidden;
        background-color: #f0f8ff;
    }

    li.menu__single2:hover ul.menu__second2{
        top: 0px;
        left: 150px;
        visibility: visible;
    }

    .menu__second2 > li > a{
        display: inline-block;
        padding-top: 7px;
        padding-right: 10px;
        padding-bottom: 3px;
        padding-left: 10px;
        margin-bottom: 10px;
        color: #696969;
        text-decoration: none;
        transition: .1s;
        border-bottom: 0px;
    }

    .menu__second2 > li > a:focus,
    .menu__second2 > li > a:hover{
        color: #0000cd;
    }

     .menu__single2::after{
        content: "";
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 5px;
        border: 6px solid transparent;
        border-left-color: #696969;
        vertical-align: middle;
    }
}

/* ###### 375px以下 ###### */
@media screen and (max-width: 375px){
    .gotop{
        width: 40px;
        height: 40px;
        text-indent: -9999px;
        opacity: 1;
        border: none;
        background: none;
        bottom: 10px;
        right: 10px;
    }
    .gotop::before{
        bottom: 0;
    }

/* 購入ボックス */
    .container{
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: space-around;
        gap:0px;
    }
    .box{
        width: 300px;
        font-size: 1rem;
    }

/* メニューバー */
    .ly_header_inner{
        display: none;
    }

    .nav_btn{
        display: block;
    }

    .nav_btn {
        margin: 0;
        padding: 3px;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: inherit;
        vertical-align: middle;
        text-align: inherit;
        font: inherit;
        -webkit-appearance: none;
        appearance: none;
        position: fixed;
        top: 15px;
        left: 15px;
        width: 35px;
        height: 35px;
        z-index: 10;
        cursor: pointer;
    }

    .bl_hambg_inner {
        position: fixed;
        left: -70%;
        margin-left: auto;
        display: flex;
        flex-direction: column;
        background-color: transparent;
        transition: .3s;
        list-style: none;
    }

    .menu__second2 {
        list-style: none;
    }

    .nav_list {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        padding-left: 40px;
    }

    .nav_list a{
        padding-right: 10px;
        text-decoration: none;
        color: #696969;
        border-bottom: 0px;
    }

    .nav_list a:hover{
         color: #0000cd;
    }

    .btn_line {
        display: block;
        position: relative;
        width: 100%;
        height: 3px;
        background-color: #00bfff;
        transition: .2s;
    }

    .btn_line::before,
    .btn_line::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #00bfff;
        transition: .5s;
    }
    .btn_line::before {
        transform: translateY(-12px);
    }
    .btn_line::after {
        transform: translateY(12px);
    }

    .bl_hambg_inner.open {
        left: -30px;
        background-color: rgba(220, 220, 220, 0.9);
    }

/***** メニューオープン時 *****/
    .btn_line.open {
        background-color: transparent;
    }
    .btn_line.open::before ,
    .btn_line.open::after {
        content: "";
        background-color: #00bfff;
        transition: .2s;
    }
    .btn_line.open::before {
        transform: rotate(45deg);
    }
    .btn_line.open::after {
        transform: rotate(-45deg);
    }

/*ナビ子階層以降共通*/

    .bl_hambg_inner > li.menu__single2{
        position: relative;
    }

    .bl_hambg_inner > li.menu__single2 ul.menu__second2{
        position: absolute;
        top: 0px;
        left: 150px;
        padding: 0;
        width: 120px;
        -webkit-transition: all .1s ease;
        transition: all .1s ease;
        visibility: hidden;
        background-color: #f0f8ff;
    }

    li.menu__single2:hover ul.menu__second2{
        top: 0px;
        left: 150px;
        visibility: visible;
    }

    .menu__second2 > li > a{
        display: inline-block;
        padding-top: 7px;
        padding-right: 10px;
        padding-bottom: 3px;
        padding-left: 10px;
        margin-bottom: 10px;
        color: #696969;
        text-decoration: none;
        transition: .1s;
        border-bottom: 0px;
    }

    .menu__second2 > li > a:focus,
    .menu__second2 > li > a:hover{
        color: #0000cd;
    }

     .menu__single2::after{
        content: "";
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 5px;
        border: 6px solid transparent;
        border-left-color: #696969;
        vertical-align: middle;
    }
}

