@charset "UTF-8";
/*
Theme Name: Artist FC
Theme URI:
Description:Artist FCの専用テンプレートです。
Author:koshimizu ayako
Version:1.0 2024.01.25
*/

/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
img{vertical-align: bottom;}

/* iphone リセット*/
input[type="submit"],
input[type="button"],
input[type="reset"]{
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration{
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus,
input[type="reset"]::focus{
  outline-offset: -2px;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input, select, textarea{
    border: none;
    outline: none;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/********* base *********/

html{font-size: 62.5%; /* sets the base font to 10px for easier math */}

body{
	color: #000;
	font-size: 16px;
	font-size: 1.6rem;  
  /* sets the default sizing to make sure nothing is actually 10px */
	line-height: 1.6;
    letter-spacing: 0.5px;
}

body, table, input, textarea, select, option, h1, h2, h3, h4, h5, h6{
    font-family: YakuHanJP, 'Inter', source-han-sans-japanese, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Meiryo', 'メイリオ', sans-serif
}

a{text-decoration: none;
    color: #000;}
a:hover{opacity: 0.8;}

.sp{display: none!important;}

img{
    max-width: 100%;
}

.slick-dotted.slick-slider{
     margin-bottom: 0px!important; 
}

@media screen and (max-width: 768px){
    body{font-size: 1.6rem;}
    img{
        max-width: auto;
        width: 100%;
        vertical-align: bottom;}
	.sp{display: block!important;}
	.pc{display: none!important;}
    
}

/********* header *********/
header {
    padding: 15px 15px 10px;
    position: relative;
    background: #c9d6df;
}
header .inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .inner .pc {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

h1.logo{
    width: 194px;
    height: auto;
    display: block;
    z-index: 2;
}
h1.logo a{border-bottom: none!important;}

header .inner ul#menu-g-nav {
    display: flex;
    flex-wrap: wrap;
}
header .inner ul#log{
    display: flex;
}

header .inner ul#menu-g-nav li,
header .inner ul#log li {
    font-size: 1.8rem;
    margin-left: 12px;
}

header .inner ul#log li a{
    padding: 3px 10px;
    color: #fff;
    display: block;
}
header .inner ul#log li.mypage a {
    background: #cd0000;
}
header .inner ul#log li.login a {
    background: #000;
}

/* 初期状態でサブメニューを非表示にしておく */
.sub-menu {
    display: none;
  }
  
  /* 子を持つ親メニューにマウスオーバーしたとき、サブメニューを表示する */
  .menu-item-has-children:hover .sub-menu {
    display: block;
  }

  .menu {
    text-align: center;
  }
  
  /* 親メニューをinline-blockにしてセンターに配置 */
  .menu > .menu-item {
    display: inline-block;
    padding: .5em .3em;
  }
  
  /* リストの記号を消去 */
  .menu-item {
    list-style-type: none;
  }
  
  /* サブメニューをabsoluteにするため、親メニューをrelativeに */
  .menu-item-has-children {
    position: relative;
  }
  
  /* 親メニューにマウスオーバーしたときにカーソルを変更 */
  .menu-item-has-children:hover {
    cursor: pointer;
  }
  
  /* 子を持つ親メニューにマウスオーバーしたときサブメニューを表示 */
  .menu-item-has-children:hover .sub-menu {
    display: block;
  }
  
  /* サブメニューをabsoluteにして親メニューの下に配置。スタイルは適宜調整してください */
  .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background: white;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
    padding: 0;
    z-index: 1;
  }
  
  /* サブメニューの境目をわかりやすくするため、一番下の項目以外下線を引いた */
  .sub-menu > .menu-item:not(:last-child) {
    border-bottom: 1px solid #eee;
  }
  
  header .inner ul#menu-g-nav li.menu-item-4580 > a{
    display: flex;
    align-items: center;
    color: #cd0000;}
  header .inner ul#menu-g-nav li.menu-item-4580 > a:after{
    content: '▼';
    display: inline-block;
    font-size: 1.2rem;
    margin-left: 5px;
  }
  header .inner ul#menu-g-nav .sub-menu li{margin-left: 0;}

  /* サブニューのリンクタグをmenu-itemの大きさと合わせ、クリックしやすいようにした */
  .sub-menu > .menu-item a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: .5em 0;
  }
  
  /* サブメニューにマウスオーバーしたときリンクの背景色とテキストカラーを変更 */
  .sub-menu > .menu-item a:hover {
    background: black;
    color: white;
  }


main{
    /*width: 85.5vw;*/
    width: 100%;
    margin: 0;
    overflow: hidden;
}

section.page,
section.single-page{
    /*display: flex;    */
}

@media screen and (max-width: 768px){
    header{
        padding: 10px 15px 5px;
        overflow: hidden;;
    }
    header .inner{
        display: flex;
        justify-content: space-between;
    }
    
    section.page,
    section.single-page{
        display: block;
    }
    h1.logo,
    .home h1.logo{
        width: 60%;
        max-width: 200px; 
        padding-top: 0;
        position: relative;
        display: block;
        height: auto;
        z-index: 1;
        filter: none;
    }
    .home h1.logo.isSmall{
        width: 60%;        
    }
    main{
        width: 100%;
        margin: 0 auto;
    }
}




/********* footer *********/
#page-top {
    text-align: center;
    padding-bottom: 20px;
    margin-top: 50px;}
.home #page-top {
    background: #c9d6df;
    margin-top: 0;
}
div#page-top a:before{
    content: '';
    width: 20px;
    height: 20px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(-45deg);
    display: block;
    margin: auto;
    left: 0;
    right: 0;
}

footer {
    padding: 30px 0 15px;    
    background: #000;
    font-size: 1.6rem;    
    color: #fff;
}
footer a{color: #fff;}

footer h2{
    margin-bottom: 15px;
    font-size: 2.5rem;
    text-align: center;
}

footer .inner{
    width: 840px;
    margin: 0 auto;
}
ul#menu-f-nav {
    display: flex;
    align-items: flex-end;
    justify-content: center;    
    margin-bottom: 15px;  
    flex-wrap: wrap;
}
ul#menu-f-nav li {
    margin: 0 10px 20px;
    
}

footer .inner p{
    margin-bottom: 24px;     
}

footer p.txt {
    width: 930px;
    margin: 0 auto 10px;
    padding-top: 15px;
    border-top: 1px solid #000;
    text-align: center;
}
footer p.copy{
    text-align: center;
    font-size: 1.4rem;
}
@media screen and (max-width: 768px){
    footer{padding: 5% 0 15px;}
    footer h2{font-size: 2.2rem;}
    footer .inner{
        width: 100%;
        display: block;
        padding: 0 10px 0 10px;    
    }
    footer p.txt{
        width: 100%;
        padding: 0 10px;
        margin: 0 auto 20px;
        font-size: 1.4rem;
    }
    
    ul#menu-f-nav{
        flex-wrap: wrap;
        justify-content: center;
    }
    ul#menu-f-nav li{
        font-size: 1.4rem;
        margin: 0 10px 10px;
        text-align: center;
    }
    
    footer p.copy{
        font-size: 1.2rem;
        padding: 0 1em;
    }
}

#net_shop_admin_shopping_cart table .thumbnail_table, #net_shop_admin_shopping_cart table .thumbnail_table td{
    line-height: 2.1rem!important;
}

p.net_shop_admin_checkout{
    display: flex;
    justify-content: space-between;
}

p.continue_btn{
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}


p.net_shop_admin_checkout a,
p.net_shop_admin_checkout input[type="submit"],
p.continue_btn a{
    padding: 11px 15px;
    background: none;
    border-radius: 8px;
    border: 2px solid #A17D66;
    font-size: 1.8rem;
    color: #A17D66;
}

p.net_shop_admin_checkou.continue_btn input[type="submit"]{
    padding: 11px 15px;
    background: none;
    border-radius: 8px;
    border: 2px solid #A17D66;
    font-size: 1.8rem;
    color: #A17D66;
}

#net_shop_admin_shopping_cart table .thumbnail_table img{
    height: auto;
}

table.form-table input[type="text"]{
    background: #f5f5f5;
    padding: 8px;
    font-size: 1.6rem;
}
table.form-table select{
    font-size: 1.6rem;  
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;    
}
#net_shop_admin_flow{
    width: 1100px;
    margin: 30px auto!important;
}

#net_shop_admin_shopping_cart,
div#net_shop_admin_checkout_body,
#net_shop_admin_history{
    width: 1100px;
    margin: 0 auto 40px!important;    
}

#cart table,
#net_shop_admin_history{
  width: 100%;
}
#cart table th,
#cart table td,
#net_shop_admin_history table th,
#net_shop_admin_history table td{
  border: 1px solid #222;
  padding: 10px;
}
#cart table th,
#net_shop_admin_history table th{
  background-color: #ccc;
  white-space: nowrap;
}

div#net_shop_admin_history select {
    appearance: auto;
    border: 1px solid #3f3f3f;
    padding: 3px 5px;
    border-radius: 5px;    
}

#net_shop_admin_shopping_cart table td.delete a{
        background: #999;
        padding: 0 5px;
        color: #fff;
        display: inline-block;
        border-radius: 5px;
        border-bottom: 1px solid #000;    
}

.buying_history_each{
    margin: 1em auto 2em!important;
    padding: 20px;  
    position: relative;
    background: #f9f9f9; 
    border-bottom: none!important;
    
}

.buying_history_each:after{
    content: '';
    border-bottom: 1px dashed #CCC;
    display: block;
    position: absolute;
    bottom: -17px;
    width: 100%;
    left: 0;
}

#net_shop_admin_checkout{
    width: 1000px;
    margin: 20px auto!important  ;
}

#net_shop_admin_checkout p.submit{
    width: 130px;
    margin: 0 auto 20px;
    padding: 5px 15px;
    clear: both;
    text-align: center;
    background: none;
    border-radius: 8px;
    border: 2px solid #A17D66;
    font-size: 1.8rem;
    color: #A17D66;
}
#net_shop_admin_checkout p.submit input,
#net_shop_admin_checkout input#wp-submit{
    padding: 0!important;
    font-size: 1.6rem;    
    background: none;
    color: #A17D66; 
}

#net_shop_admin_checkout_login dl dt{
    margin: 12px 0!important;
}

#net_shop_admin_checkout_login dl dd input{
    padding: 7px 10px;
    font-size: 1.6rem;
    border-radius: 5px;
}

div#net_shop_admin_checkout_body input[type="text"],
div#net_shop_admin_checkout_body select{
    border: 1px solid #999;
    border-radius: 5px;
    padding: 8px;
    font-size: 1.6rem;
    appearance: auto;
}

#net_shop_admin_checkout{
    padding: 20px 10px!important;    
}

#net_shop_admin_checkout li{
    margin: 20px 0 10px;    
    background: #FEFEFE;
    font-weight: bold;
    padding: 5px;
    line-height: 1.8;
}
    
#net_shop_admin_checkout form#loginform input{
    padding: 7px 10px;
    font-size: 1.6rem;
    border-radius: 5px;
}
p.net_shop_admin_checkout a,
p.net_shop_admin_checkout input[type="submit"],
p.continue_btn a{
    font-size: 1.6rem;
}

p.clearboth input ,
div#net_shop_admin_checkout_body dt input,
p.clearboth input[type="reset"],
.form-table.checkout_step input,
input#shipping_address_add{
    background: #efefef;
    padding: 2px 5px;
    color: #000;
    font-size: 1.6rem;
    display: inline-block;
    border-radius: 0!important; 
    line-height: 1.5;    
}

a.delete {
    background: #999;
    padding: 0 5px;
    color: #fff;
    display: inline-block;
    border-radius: 5px;
    border-bottom: 1px solid #000;
}  

@media screen and (max-width: 768px){
    #net_shop_admin_shopping_cart img{
        height: 150px;
        max-width: 150px;
        object-fit: cover;
    }
    
    #net_shop_admin_checkout{
        width: 100%;
    }
        
    div#net_shop_admin_checkout_body label {
        margin-bottom: 10px;
        display: inline-block;
    }
    
    div#net_shop_admin_checkout_body dt label{
        margin-bottom: 0;
    }
    
    #net_shop_admin_flow{
        width: 100%;
        margin: 30px auto!important;
    }

    #net_shop_admin_shopping_cart,
    div#net_shop_admin_checkout_body{
        width: 100%;
        margin: 0 auto 40px!important;    
    }
    
    #mail-magazine input[type="text"]{
        width: 100%!important;
    }    
    
    .buying_history_each{
        padding: 10px;    
    }

    #net_shop_admin_flow ol{
        margin-bottom: 0.8em;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        left: 0!important;
        clear: left;
        float: unset!important;
        padding: 0;
        list-style: decimal outside;
    }
    #net_shop_admin_flow ol li{
        margin: 0 12px 0 12px!important; 
        font-size: 1.3rem;    
        right: auto!important;
        float: none!important
    }
    
    div#net_shop_admin_checkout_body dt {
        border: 1px solid #222;
        background: #ccc;
        padding: 5px;
    }
    div#net_shop_admin_checkout_body dd {
        border-left: 1px solid #222;
        border-right: 1px solid #222;
        border-bottom: 1px solid #222;
        padding: 5px;
    }    
    
    div#net_shop_admin_checkout_body select{
        width: 50%;
    }
    
    .width400{
        min-width: 100%!important;
    }
    form#net_shop_admin_payment_form label {
        display: block;
    }
    table.form-table.checkout_step th {
        background: none!important;
        border: none!important;
        padding: 0 10px!important;
    }

}

.loading {
    width: 100vw;
    height: 100vh;
    transition: all 1s;
    background-color: #202533;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
  }
  
  .loading.is-active {
    opacity: 0;
    visibility: hidden;
  }
  
  .loading-animation {
    width: 100vw;
    height: 100vh;
    transition: all 3s;
    background-color: #202533;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
  }
  
  .loading-animation.is-active {
    opacity: 1;
    visibility: visible;
  }
  
  .loading-animation img {
      max-width: 780px;
  }