/*全体設定*/
body {
    color: #333;

}
p {
    font-size: 14px;
}
a {
    text-decoration: none;
}

/*個別設定*/
#copy { 
    text-align: center;
    font-size: 1.8em;
 }

.font-serif {
    font-family: '游明朝', YuMincho, 'Hiragino Mincho ProN W3', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
}


/*見出しバリエーション*/
.subTitle01 {
    font-size: 1.8em;
    padding: .5em .5em .3em;
    background: #f4f4f4;/*背景色*/
    border-left: solid 10px #003F8A;/*左線*/
    border-bottom: solid 5px #d7d7d7;/*下線*/
}

.subTitle02 {
    font-size: 1.8em;
    padding: .5em .5em .3em;
    background: transparent;/*背景透明に*/
    border-left: solid 10px #003f8a;/*左線*/
}

.subTitle03 {
    font-size: 1.8em;
    display: inline-block;
    padding: 0 .5em;
    background: linear-gradient(transparent 50%, yellow 50%);
}

.subTitle04 {
    font-size: 1.8em;
    text-align: center;
    padding: .5em 0;
    border: none;
    position: relative;
    margin-bottom: 60px;
  }
.subTitle04:before {
    content: '';
    position: absolute;
    bottom: -10px;
    display: inline-block;
    width: 80px;
    height: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #003f8a;
    border-radius: 2px;
}


/*アコーディオン*/
details.lp > summary {
    display: block;
}
details.lp > summary::-webkit-details-marker {
    display: none; 
}
details.lp > summary:hover {
    cursor: pointer;
    opacity: .8;
}

details.lp .arrow{
    position: relative;
    display: inline-block;
    padding: 0 0 0 16px;
    color: #fff;
    vertical-align: middle;
    text-decoration: none;
    font-size: 15px;
    margin-right: 3em;
    z-index: 5;
}
details.lp .arrow::after{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    box-sizing: border-box;
    left: 1em;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
details.lp[open] .arrow::after {
    transform: rotate(135deg);
    right: .2em;
    bottom: .4em;
}
details.lp > summary {
    background-color: #003F8A;
    color: #fff;
    font-size: 1.2em;
    padding: .5em 4em .5em 1em;
    display: inline-block;
    border-top: 1px solid #fff;
}
/** オープン時にアニメーションを設定 **/
details.lp[open] .details-content {
    animation: fadeIn 0.25s ease;
  }
  @keyframes fadeIn {
    0% {
      opacity: 0; /* 透明 */
      transform: translateY(-10px); /* 上から表示 */
    }
    100% {
      opacity: 1;
      transform: none;
    }
  }
/** アコーディオン中身 **/
details.lp .details-content {
    padding: 1em;
    border: 1px solid #003F8A;
}

/* タブメニュー風 */
/*タブ切り替え全体のスタイル*/
.tabs {
    background-color: #fff;
    min-height: 400px;
    width: 100%;
}
/*タブのスタイル*/
.tab_item {
    height: 50px;
    line-height: 50px;
    font-size: 1.2em;
    display: block;
    float: left;
    transition: all 0.2s ease;
    background-color: #003F8A;
    color: #fff;
    text-align: center;
    border-right: 1px solid #fff;
    position: relative;
}
.tab_item4 {
    width: calc(100%/4);
}
.tab_item3 {
    width: calc(100%/3);
}
.tab_item2 {
    width: calc(100%/2);
}

.tab_item:last-of-type {
    border-right: none;
}
.tab_attention {
    background-color: #fff000;
    border: 2px solid #003F8A;
    border-right: 2px solid #003F8A!important;
    box-sizing: border-box;
    color: #111;
    font-weight: bold;
}
.tab_item:hover {
    opacity: 0.8;
}
.tab_item .arrow_lp {
    display: inline-block;
    color: #fff;
    vertical-align: middle;
    text-decoration: none;
    margin-right: 1em;
    z-index: 5;
}
.tab_item .arrow_lp::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: .8em;
    margin: auto;
    content: "";
    vertical-align: middle;
    box-sizing: border-box;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.tab_attention .arrow_lp::after {
    border-top: 2px solid #111;
    border-right: 2px solid #111;
}
@media screen and (min-width:320px) and (max-width:767px){
    .tab_item .arrow_lp {
        display: none;
    }
}
/*ラジオボタンを全て消す*/
input[name="tab_item"] {
    display: none;
}
/*タブ切り替えの中身のスタイル*/
.tab_content {
    display: none;
    padding: 1em;
    clear: both;
    overflow: hidden;
}  
/*選択されているタブのコンテンツのみを表示*/
#tab1:checked ~ #tab1_content,
#tab2:checked ~ #tab2_content,
#tab3:checked ~ #tab3_content,
#tab4:checked ~ #tab4_content {
    display: block;
}
/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
    opacity: .8;
}
.tabs input:checked + .tab_item .arrow_lp::after {
    transform: rotate(135deg);
    right: .8em;
    bottom: .3em;
}
/*タブの中身のレイアウト*/
.tab_content{ 
    border: 1px solid #003F8A;
    font-size: 1.2em;
}
.tab_content_description p {
    font-size: 1em;
}
/* 商品説明等の装飾 */
.setLabel {
    display: inline-block;
    background-color: #DDF0FA;
    padding: .5em .8em;
    font-weight: bold;
    margin-bottom: 0;
    font-size: 1rem;
    text-align: center;
}

/** テーブル設定 **/
.lpTable {
    margin: 0 auto .5em;
}
.lpTable td {
    width: 50%;
    text-align: center;
    border: 1px solid #fff;
    line-height: 2;
}
.lpTable th {
    background-color: #003F8A;
    color: #fff;
    text-align: center; 
    line-height: 2;
}
.lpTable tr:nth-child(odd) > td {
    background-color: #e6e6e6;
}
.lpTable tr:nth-child(even) > td {
    background-color: #fafafa;
}
.lpTable tr > td:first-of-type {
    background-color: #DDF0FA;
    font-weight: bold;
}

/* 共通ボタン */
.btn {
    background-color: #003F8A;
    width: 300px;
    line-height: 2.5em;
    font-size: 1.5em;
    margin: 10px auto;
    text-align: center;
    border-radius: 10px;
}
.btn > a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    height: 100%;
}
a:hover, .btn:hover {
    opacity: .8;
}

/* 2カラムコンテンツ */
.column2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
@media screen and (min-width:320px) and (max-width:767px){
    .column2 {
        display: block;
    }
}
.column2 > div {
    padding: 1em;
}
/* 商品配置3カラム */
.items3column {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.items3column > div, .items2column > div {
    padding: 1em;
    text-align: center;
}
.items3column .btn, .items2column .btn {
    width: 200px;
    line-height: 2.5em;
    font-size: 1.2em;
}
/* 商品配置2カラム */
.items2column {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
@media screen and (min-width:320px) and (max-width:767px){
    .items3column {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .items3column > div, .items2column > div {
        padding: 1em;
        text-align: center;
    }
    .items3column .btn, .items2column .btn {
        width: 150px;
        line-height: 2.5em;
        font-size: .8em;
    }
}

/* 商品詳細　ラベル等 */
.label {
    padding: .3em 1.5em;
    font-weight: bold;
    color: #fff;
    border-radius: 10px;
    font-size: .8em;
    background-color: #B5272D;
    margin: .5em;
}
@media screen and (min-width:320px) and (max-width:767px){
    .label {
        display: inline-block;
        margin: .2em 0 0;
    }
}
.itemName, .itemYen{
    margin: 0;
    font-size: 1.2em;
}
.itemName{
    font-weight: bold;
    margin-top: .5em;
}

/* 商品詳細説明　共通 */
.item_details {
    padding: 1em;
    text-align: center;
}

/* 商品詳細説明　横3カラム */
.itemDetail3 {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
}
.set_details {
    text-align: left;
    width: 350px;
    margin: 1em auto;
    display: grid;
    grid-template-columns: 90px auto;
    align-items: center;
    font-size: 1.2em;
}
.set_details > div:nth-of-type(2) {
    padding-left: 1em;
}
.set_details > .setLabel {
    margin-right: 1em;
    padding-top: .8em;
}
.item_details .btn {
    width: 200px;
    font-size: 1.2em;
}
@media screen and (min-width:320px) and (max-width:767px){
    .itemDetail3 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr auto;
    }
    .itemDetail3 > div:first-of-type {
        grid-column: 1 / 2 ;
        grid-row: 1 / 2;
    }
    .itemDetail3 > div:nth-of-type(2) {
        grid-column: 1 / span 2 ;
        grid-row: 2 / 2;
    }
    .itemDetail3 > div:nth-of-type(3) {
        grid-column: 2 / 2 ;
        grid-row: 1 / 2;
    }
    .set_details {
        width: 100%;
    }
}

/* 商品ページ　タブ */
/*タブ切り替え全体のスタイル*/
.prodcut_area .tabs {
    background-color: #fff;
    min-height: 400px;
    width: 100%;
}
/*タブのスタイル*/
.prodcut_area .tab_item {
    height: 50px;
    line-height: 50px;
    font-size: 1.2em;
    font-weight: bold;
    display: block;
    float: left;
    transition: all 0.2s ease;
    background-color: #fff;
    color: #003F8A;
    text-align: center;
    border: 2px solid #DDF0FA;
    border-bottom: none;
    position: relative;
    margin-right: 1%;
    border-radius: 10px 10px 0 0;
}
.prodcut_area .tab_item2 {
    width: calc(99%/2);
}
.prodcut_area .tab_item:last-of-type {
    margin-right: 0;
}
/*選択されているタブのコンテンツのみを表示*/
#product_tab1:checked ~ #product_tab1_content,
#product_tab2:checked ~ #product_tab2_content {
    display: block;
}
/*選択されているタブのスタイルを変える*/
.prodcut_area .tabs input:checked + .tab_item {
    background-color: #DDF0FA;
    color: #528ac1;
    border: 4px solid #DDF0FA;
}

/*タブの中身のレイアウト*/
.prodcut_area .tab_content{ 
    border: none;
    border-top: 4px solid #DDF0FA;
}


/* リストスタイル */
.lp_list {
    counter-reset:number; /*数字をリセット*/
    list-style-type: none!important; /*数字を一旦消す*/
    padding:0.5em;
}
.lp_list li {
    position: relative;
    line-height: 1.5em;
    padding: 0.5em 0.5em 0.5em 2.5em;
}
 
.lp_list li span{
    /* 以下数字をつける */
    position: absolute;
    counter-increment: number;
    content: counter(number);
    /*以下数字のデザイン変える*/
    display:inline-block;
    background: #003F8A;
    color: #fff;
    font-weight:bold;
    font-size: 1.1em;
    border-radius: 50%;
    left: 0;
    width: 2em;
    height: 2em;
    line-height: 2em;
    text-align: center;
    /*以下 上下中央寄せのため*/
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
