@charset "UTF-8";
/*
Theme Name: artist
Theme URL: テーマのURL
Description: 作家サイト用のテーマ
Author: tomomisan
Version: 1.0
Tags: portfolio,
License: テーマのライセンス
License URI: テーマのライセンスのURI
*/

* {
  /*outline: 2px solid blue;*/
}
.test::before{
  content:"▶︎";
  color: red;
}
.test{
  color: red;
}

/**************************
 * サイト全体の共通レイアウト
 **************************/
:root{
  --sitecolor:#707070;
  --fontcolor:#fff;
}
body{
  font-family: "Mplus 1p", sans-serif;
  /*cursor: none;
  font-family: 'Noto Serif JP', serif;
  font-family: "Sawarabi Gothic", sans-serif;
  font-family: "Noto Sans Japanese";
  */
}
img{
  max-width: 100%;
}
.wrapper {
    max-width: 100%;
}
header{
  margin-inline-start: 10px;
  margin-inline-end: 20px;
  margin-block-start: 2em;
  margin-block-end: 10px;
  align-items:flex-end;
}
main,
footer nav{
  margin-inline-start: 20px;
  margin-inline-end: 20px;
  margin-block-start: 2em;
  margin-block-end: 30px;
}
main{
  margin-block-start: 50px;
}
.container,
.breadcrumb,
article{
  max-width: 1080px;
  margin: 0 auto;
}
header{
  display: flex;
  justify-content: space-between;
}
nav{
  display: flex;
  justify-content: space-between;
}
nav a, nav a:link, nav a:active, nav a:visited {
    text-decoration: none;
    color: #fff;
}
#footer,#footer2{
  width: 100%;
  padding-block-start: 30px;
  
  background: var(--sitecolor);
  color: var(--fontcolor);
  font-size; 80%;
}


svg {
  fill: #eee;
  max-width: 50vw;
}
.creditArea .footerTitle{
  font-size: 1.8em;
}
.creditArea a,
.creditArea a:link,
.creditArea a:active,
.creditArea a:visited {
  text-decoration:none;
  color:#fff;
}

.copyright{
  text-align: center;
}

/*ロゴ周り*/
.logo h1{
  display: inline;
  font-size: 1.4em;
  margin-inline-end: 15px;
}
.logo img{
  max-width: 50vw;
}
.logo span{
  font-size: 0.9em;
}

/*ハンバーガーメニュー
*/
.drawer input{
  display: none;
}
.drawer label{
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;  /*メニューが出てきても一番上に*/
  width:30px;
  height:30px;
  background:var(--sitecolor);
}
.drawer span,
.drawer span::before,
.drawer span::after{
  content:"";
  display: block;
  width: 15px;
  height: 1px;
  border-radius: 1px;
  background: #fff;
  transition: 0.7s;
  position: absolute;
}
.drawer span::before{
  bottom: 6px;
}
.drawer span::after{
  top: 6px;
}
.drawer  nav {
  position: fixed;
  z-index: 99;
  width: 100vw; /* 画面幅に対して */
  height: 100vh; /* 画面の高さに対して */
  background-color: var(--sitecolor);
  /*transform: translateX(110%);！！！！ブラウザ戻るボタンで挙動悪！！！！*/
  top: 0;
  /*left: 0; */
  right: -100vw;
  transition: .7s;
}
/*メニュー項目の配置*/
.drawer ul{
  margin-block-start: 15vh;
  margin-inline-start: 42vw;
  height: 80vh;
  font-size: 1.1em;
  font-weight: 600;
}
.drawer li{
  margin: 1em 0;
  width: 6em;
}
.langbutton{
  margin:initial;
  height: 2em;
  width: 9em;
  position: relative;
}
.langbutton select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0.2em;
  width: 100%;
  position: relative;
  background-color: var(--sitecolor);
  color: #fff;
}
.langbutton::after {
  content: "";
  position: absolute;
  top:0.8em;
  right: 0.5em; 
  width: 10px;
  height: 10px;
  border-top: 2px solid white;
  border-left: 2px solid white;
  pointer-events: none;
  transform: translateY(-50%) rotate(
-135deg);
}

/*タップされたときの挙動*/
#touch:checked ~ nav {
  /*transform: translateX(0%);  /*メニュー表示　！！！！ブラウザ戻るボタンで挙動悪！！！！*/
  right:0;
}
#touch:checked ~ label span{
  background: rgba(255,255,255,0);/*真ん中の線を消す*/
}
#touch:checked ~ label span::before{
  bottom: 0;
  transform: rotate(45deg);/*一番上の線を斜めに回転*/
}
#touch:checked ~ label span::after{
  top: 0;
  transform: rotate(-45deg);/*一番下の線も斜めに回転*/
}

/*言語切り替え*/
.drawer .lang{
  position:static;
}

/*色指定欄を赤枠で囲む*/
.colorSettings{
  outline: 1px solid red;
  padding: 2em;
}
.colorSetItem{
   width: calc(100% /2);
   padding: 20px 0;
}
input#checkButton{
  margin-block-end: 1em;
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 0.5em 2em;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
  color: #fff;
  background-color: #444;
}
input#checkButton:hover {
  color: #fff;
  font-weight: 500;
  background: #112255;
}
#rgb{
  background: #eee;
  color: red;
  font-size: 1.2em;
}

/*
多言語切り替え
*/
 /* === ラジオボタンは非表示 ================== */
#sample1 input[type="radio"]{
  display    : none;
}
 
 /* === 各ラジオボタンのラベルをボタンに変更 == */
#sample1 label{
  display    : inline-block;
  border     : 1px solid #ccc;
  box-shadow : 2px 2px #999;
  padding    : 2px 6px;
}
 
 /* === 選択されている言語のラベル色を変更 ==== */
#sample1 input[type="radio"]:checked + label {
  background : #ffa64d;
}
/*
* 各ページ見出し共通設定
*/
.content h1 {
  font-size: 1.6em;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  margin-block-end: 50px;
}

.content h1:before,  .content h1:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: black;
}

.content h1:before {
  left:0;
}
.content h1:after {
  right: 0;
}


/**************************
 * トップページのレイアウト
 **************************/
/*トップページ メインビュー*/
.view{
  text-align: center;
}
.view img{
  width:100%;
  height: 100%;
  object-fit: cover;
}
/*フェード型スライド*/
#slider {
  position: relative;
  height: 700px;
}
#slider img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 1s ease-in;
}
#slider img.show {
  opacity: 1;
}
/*ニュース枠*/
.newsList{
  max-width: 960px;
  margin: 3em auto;
  padding: 1em;
  background-color: #f6f6f6;
  transition: background .8s;
}
.newsList:hover{
  background-color: #dfdfdf;
}
.newsList li{
  margin-block: 2em;
}
/*『お知らせ一覧へ』表示位置操作*/
.newsHeader a{
  display: none;
}
.newsHeader{
  max-width: 100%;
}

/*フッター部分のクレジット中央寄せ*/
footer .creditArea{
  text-align: center;
}
#copyright{
  color: var(--fontcolor);
}
#footer2 .creditArea .footerLogo{
  margin-block-end: 3em;
}


/**************************
 * ニュースページのレイアウト
 **************************/
.news{
}
.news p{
  margin-block-start: 3em;
  margin-block-end: 3em;
}
.news figure img{
  object-fit: contain;
}
.news figcaption{
  font-size: 0.8em;
  text-align: center;
}


/**************************
 * プロフィールページのレイアウト
 **************************/
.biography{
  max-width: 100%;
  margin: 0 auto;
  
}
.name{
  font-size: 1.8rem;
  margin-block-end: 2em;
}
.name span{
  display: block;
  font-size: 0.8rem;
  margin-block-start: 0.6em;
}
.name span::before{
  content:"（";
}
.name span::after{
  content:"）";
}
.imageArea {
  max-width: 42%;
  float: right;
  margin-left: 3em;
}

.profile h3.subTitle{
  font-size: 1.6em;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  margin-block: 50px;
}
.profile h3.subTitle:before,  .profile h3.subTitle:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: black;
}
.profile h3.subTitle:before {
  left:0;
}
.profile h3.subTitle:after {
  right: 0;
}

.textArea{
  font-size: 1.1em;
  line-height: 1.9em;
}
.textArea p{
  margin-block-end: 1.5em;
}
.textArea p,
.textArea li,
.textArea dt,
.textArea dd,{
  /*font-family: 'Zen Kaku Gothic New', sans-serif;*/
  margin-inline-start: 1em;
}

.textArea dl {
	width: 100%;
	margin: 4px 0;
	}
.textArea dl dt {
	float: left;
	clear: left;
 	width: 6em;
	}
.textArea dd {
	margin-left: 6em;
	}
.textArea dd:last-child {
	margin-bottom: 1em;
	}

.messageBy{
  text-align: right;
  font-size: 1.2em;
}
/**************************
 * ニュースページのレイアウト
 **************************/
.newspage .container{
  min-height: 80vh;
}

/**************************
 * 投稿ページのレイアウト
 **************************/
.postpage article{
  font-family: 'Zen Kaku Gothic New', sans-serif;
}
.postTitle h2{
  font-size: 1.7em;
  font-family: 'Noto Serif JP', serif;
  margin-block-end: 2em;
}
.postTitle span{
  color: #666;
  display: block;
  margin-block-end: 1em;
}
.postTitle span::before{
  content: "- ";
}
.post-news figure {
  margin: auto;
  display: block;
}
.post-news p{
  margin: 1.3em 0;
  font-size: 1.1em;
  line-height: 1.9em;
}
.photoby{
  text-align: right;
  font-size: 70%;
}


/**************************
 * 作品ページのレイアウト
 **************************/
.thumnails{  
  margin-block-end: 100px;
}
.item{
  margin: 0 auto;
  width: 70%;
  margin-block-end: 100px;
}
.img-wrap{
    width: 100%;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.img-wrap::before{
    content: "";
    padding-top: 100%;
    display: block;
}
.img-wrap img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain;
}
.more-btn{
	text-align: center;
	width: 280px;
	padding: 12px 16px;
	text-align: center;
	background: #7e7e7e;
	color: #fff;
	margin: 3em auto 0;
	cursor: pointer;
}
.more-btn.is-hide {
	display: none;
}

/**************************
 * 個別作品ページのレイアウト
 **************************/
.productDetail{
  width: 90%;
}
.productImage{
  margin-block-start: 20px;
  text-align: center;
  vertical-align: top;
}
.productImage img{
  width: 100%; 
  height: auto; 
}
.detail{
  font-family: 'Zen Kaku Gothic New', sans-serif;
}
.detail h2{
  margin-block-start: 50px;
  margin-block-end: 30px;
}
.priceInfo{
  max-width: 100%;
  text-align: center;
}
.price{
  margin-inline: auto;
  margin-block-end: 1em;
  display: flex;
  justify-content:center;
}
.detail .price dt::after{
  content: '：';
}
.detail .price dd::before{
  content: '¥';
}
.priceInfo a {
  color: #fff;
  font-weight: bold;
  background: #333;
  padding: 18px 20px;
  border-radius: 6px;
  transition: .3s;
}
.priceInfo a:hover {
  background: #13c3ac;
}
.description p{
  margin: 1.3em 0;
  font-size: 1.1em;
  line-height: 1.9em;
}
.pagenation{
  margin-inline: auto;
  margin-block-start: 60px;
  margin-block-end: 100px;
  width: 70%;
  display: flex;
  justify-content: space-between;
}
.marker{
  display: inherit;
}
.soldout {
  //padding: 1rem 2rem;
  //border-top: 6px double #000;
  //border-bottom: 6px double #000;
  color: red;
}
/*矢印が右に移動する*/
.btnarrow{
    /*矢印と下線の基点とするためrelativeを指定*/
	position: relative;
    /*形状*/
    display: inline-block;
	padding: 0 20px;
    color: #333;
    text-decoration: none;
    outline: none;
}
/*矢印と下線の形状*/
.arrowR::before{
    content: '';
    /*絶対配置で下線の位置を決める*/
	position: absolute;
    bottom:0;
    left:15%;
    /*下線の形状*/    
    width: 85%;
    height: 1px;
	background:#333;
    /*アニメーションの指定*/
    transition: all .3s;
}
.arrowR::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
	position: absolute;
    bottom:5px;
    right:0;
    /*矢印の形状*/    
    width: 15px;
    height:1px;
	background:#333;
    transform: rotate(35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}
.arrowL::before{
    content: '';
    /*絶対配置で下線の位置を決める*/
	position: absolute;
    bottom:0;
    right:15%;
    /*下線の形状*/    
    width: 85%;
    height: 1px;
	background:#333;
    /*アニメーションの指定*/
    transition: all .3s;
}
.arrowL::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
	position: absolute;
    bottom:5px;
    left:0;
    /*矢印の形状*/    
    width: 15px;
    height:1px;
	background:#333;
    transform: rotate(-35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}
.btnarrow:hover{
	text-decoration:none;
}
.gg-menu-grid-r {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs,1));
    width: 26px;
    height: 26px;
}
.gg-menu-grid-r::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;  
    top:5px;
    width: 5px; /*□の大きさ*/
    height: 5px; /*□の大きさ*/
    background: currentColor;
    box-shadow: /*□の間隔*/
        0 8px 0,
        8px 8px 0,
        16px 8px 0,
        8px 16px 0,
        16px 16px 0,
        8px 0 0,
        16px 0 0,
        0 16px 0
    ;
}

.ex-productlist{
    border: 1px solid #333;
    padding:10px;
    background: #f2f2f2;
    display: inline-block;
    font-weight: bold;
    transition: .3s;
}
.ex-productlist:hover{
    background: yellow;
}
.pagenation a:hover{
  coler: #eee;
}

/*hoverした際の移動*/
.arrowR:hover::before{
    left:25%;
}
.arrowR:hover::after{
    right:-10%;
}
.arrowL:hover::before{
    right:25%;
}
.arrowL:hover::after{
    left:-10%;
}


/**************************
 * お問い合せページのレイアウト
 **************************/
.inquery{
}
.inquery section{
  margin-block-start: 60px;
  margin-block-end: 60px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}


@media screen and (min-width:640px) {
  /*フッターのメニューが横並び*/
  footer nav{
    display: grid;
    grid-template-columns: 20% 20% 20%;
  }
}




/**************************
 * SNSシェアリンク
 **************************/
.sns{
    margin: 0 auto;
}

.sns .icon-sns-facebook,
.sns .icon-sns-x,
.sns .icon-sns-instagram,
.sns .icon-sns-line {
  display: inline-block;
  width: 35px;
  height: 35px;
  margin: 20px 20px 0 20px;
  background-color: #fff;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none
}
.sns .icon-sns-facebook {
    -webkit-mask-image: url(_imgs/icon-sns-facebook.svg);
    mask-image: url(_imgs/icon-sns-facebook.svg);
}
.sns .icon-sns-x {
    -webkit-mask-image: url(_imgs/icon-sns-x.svg);
    mask-image: url(_imgs/icon-sns-x.svg);
  width: 30px;
  height: 30px;
}
.sns .icon-sns-instagram {
    -webkit-mask-image: url(_imgs/icon-sns-instagram.svg);
    mask-image: url(_imgs/icon-sns-instagram.svg);
}
.sns .icon-sns-line {
    -webkit-mask-image: url(_imgs/icon-sns-line.svg);
    mask-image: url(_imgs/icon-sns-line.svg);
}



/**************************
 * SNSシェアリンク
 **************************/
.SNS_instagram a{
  outline: 1px solid red;
}

/* はてブはアイコンフォントがないためテキストで代用 */
.fa-hatena:before {
font-family: Verdana;
font-weight: bold;
content: 'B!';
}

/* 上下のマージン */
.share {
margin-top: 40px;
margin-bottom: 40px;
}

.share ul {
margin: 0;
padding: 0;
width: 100%;
list-style: none;
display: flex;
flex-wrap: nowrap;
}

.share ul:after {
display: block;
clear: both;
content: '';
}

.share li {
margin: 0;
margin-top: 15px;
width: 100%;
}

.share li a {
font-size: 14px;/* フォントサイズ */
display: block;
padding: 10px;
text-align: center;
text-decoration: none;
color: #fff;
}

/* マウスオーバー時の透明度 */
.share li a:hover {
opacity: .8;
}

.share li a:visited {
color: #fff;
}

/* ボタンの各ブランドカラー設定 */
.tweet a {
background-color: #55acee;
}

.insta a {
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;/*グラデーション①*/
  
}

.facebook a {
background-color: #315096;
}

.insta a {
  position: relative;
  display: inline-block;
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;/*グラデーション①*/
}

.insta a:before{/*グラデーション②*/
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;/*全体を覆う*/
  height: 100%;/*全体を覆う*/
  background: -webkit-linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}

.line a {
background-color: #00c030;
}

.hatena a {
background-color: #008fde;
}

/* スマホでの表示 */
@media(max-width: 599px) {

  .share li {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 3px;
  }

  .share li i {
    font-size: 1.3em;
    padding-top: 3px;
  }
  /* スマホ表示ではテキスト非表示 */
  .share li span {
    display: none;
  }
}




@media screen and (min-width:768px) {
  /*スマホのみ改行*/
  .br-sp {
    display: none;
  }
  /*ロゴ大きく*/
  .logo h1{
    display: inline;
    font-size: 1.8em;
  }
  .logo span{
    font-size: 1.1em;
  }
  /*ページタイトルを左よせ*/
  .toppage h1,
  .profile h1,
  .gallery h1,
  .newspage h1,
  .postpage h1{
    text-align: left;
  }
  /*メインビュー高さ調整*/
  .view img{
    width: 100%;
    height: 42vw;
    object-fit: cover;
  }
  /*フェード型スライド*/
  #slider {
    position: relative;
    height: 42vw;
  }
  
  /*「お知らせ一覧へ」の表示位置変更*/
  .newsHeader{
    overflow: hidden;//floatの高さ対策
  }
  .newsHeader h1{
    text-align: left;
    width: 50%;
    float: left;
  }
  .newsHeader a{
    display: inherit;
    float: right;
  }
  .forSP{
    display: none;
  }
  /*お知らせの日付とタイトルが横並び*/
  .newsList a span{
    float: left;
  }
  .newsList a p{
    margin-inline-start: 8em;
  }
  
  /*ニュース投稿ないの写真サイズ調整*/
  .news figure img{
    max-height: 40vw;
  }
  
  /*プロフィールが２ブロック配置*/
  .profile .conteiner{
    max-width: 1020px;
    width: 100%;
    display: grid;
    gap: 10%;
    grid-template-columns:  45% 45%;
    justify-content: center;
  }
  
  /*作品ページが３カラム化*/
  .item{
    width: 100%;
  }
  .thumnails{  
    margin: 0 auto;
    display: grid;
    justify-content: center;
    gap: 10%;
    margin-block-end: 100px;
    grid-template-columns:  1fr 1fr 1fr;
    gap: 5em 7em;
  }
  .textArea p{
    margin-inline-end: 5em;
  } 
  
  /*作品写真小さめに*/
  
  .productImage{
    margin-block-start: 60px;
  }
  .productImage img{
    max-height: 75vh;
    object-fit: contain;
    font-family: ‘object-fit: contain;’; /*  【js】 IE対策  */
  }
  
}

@media screen and (min-width:1025px) {
  /*フッターのメニューが右寄せに*/
  #footer nav{
    justify-content: end;
  }
  /*プロフィール枠95％*/
  .biography{
    max-width: 95%;
  }
}



@media screen and (min-width:1080px) {
  /*ロゴ左スペース*/
  .logo h1{
    margin-inline-start: 30px;
  }
  /*ヘッダーナビがPC用に切替*/
  .drawer label{
    display: none;
  }
  .drawer nav{
    position: static;
    width: 60%;
    height: auto; /* 画面の高さに対して */
  }
  .drawer  nav {
    position: static;
    transform: translateX(0%);
    background: #fff;
    width: 100%;
}
  .drawer ul{
    margin-block-start: initial;
    margin-inline-start: initial;
    height: initial;
    font-size: 1.1em;
    width: 100%;
  }

  .drawer li{
    margin: 0 1em 0 1em;
    display: inline-block;
    width: initial;
  }
  /*メニューの文字色を白背景対策*/
  .drawer nav a,
  .drawer nav a:link,
  .drawer nav a:active,
  .drawer nav   a:visited {
    color: #444;
  }
  .langbutton select {
    background-color: white;
    color: #444;
  }
  
  /*ニュース枠の高さだし*/
  .newspage .container{
    min-height: 80vh;
  }
  
  /*フッターのタイトルとメニューが横並び*/
  .creditArea{
    grid-area: credit;
    padding-block-start: 3em;
  }
  .naviArea{
    grid-area: navi;
    border-left: 1px #fff solid;
  }
  .copyrightArea{
    grid-area: copyright;
  }
  #footer{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas:"credit navi navi"
    "copyright copyright copyright";
  }
  #footer nav{
    display: grid;
    grid-template-columns: 30% 30% 30%;
  }
  #footer .copyright,
  #footer2 .copyright{
    text-align: right;
    margin-inline-end: 3em;
  }
  
}