@charset "UTF-8";
/* --------------------------------------
  CSS MENU
-----------------------------------------
reset
clearfix
------------
Responsive
Media Query for Copy
------------
Common Style
Link
Common Icon Style
Parts
Button
------------
Header
Responsive Menu
Footer
Fixed Parts
for Script
------------
Main Common
Index
Subpage
- プロフィール
- 購入方法
- 新作紹介（一覧ページ）
- 新作紹介（単体ページ）
------------
Animation
Priority setting
----------------------------------------*/
/* reset */
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strong,sub,sup,var,b,u,i,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;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}html{font-size:medium}body{text-rendering:optimizeLegibility;-webkit-text-size-adjust:100%}dt,dd,li,caption,th,td,h1,h2,h3,h4,h5,h6,p,address{font-size:1em}dd p,dd dt,dd dd,dd li,dd th,dd td,dd select,dd textarea,dd input,li p,li dt,li dd,li li,li th,li td,li select,li textarea,li input,td p,td dt,td dd,td li,td th,td td,td select,td textarea,td input,p select,p input,p textarea{font-size:1em}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}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}caption{text-align:left}th{font-weight:700}th,td{vertical-align:top}input,textarea,select{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}input,textarea{margin:0;font-size:100%}input[type="image"]{cursor:pointer;vertical-align:top}textarea{resize:vertical}address{font-style:normal;font-weight:400}img{border:none;vertical-align:top;-ms-interpolation-mode:bicubic}object,embed,iframe{vertical-align:top;outline:none}em,strong{font-style:normal;font-weight:700}main{display:block}

/* clearfix */
header::after, footer::after, main::after, section::after, article::after, aside::after, nav::after, #container::after, #header::after, #contents::after, #main::after, #aside:after, #footer::after, .clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/*---------------------------------------
  Responsive *BreakPoint=768px
----------------------------------------*/
@media (max-width: 767px) {
  .pc_only { display: none !important;}
  .sp_only { display: block !important;}
}
@media (min-width: 768px) {
  .pc_only { display: block !important;}
  .sp_only { display: none !important;}
}

/* Media Query for Copy
-------------------------------- */
/* 768px以下（スマホ） */
@media screen and (max-width: 767px){}
/* 768px以上（スマホ以外） */
@media screen and (min-width: 768px){}
/* 768px以上（PC・タブレット） */
@media screen and (min-width: 768px) and (max-width: 990px){}
/* 990px以上（PCディスプレイ以上） */
@media screen and (min-width: 991px){}

/*---------------------------------------
  Common Style
----------------------------------------*/
html {
  font-size: 62.5%;
}
body {
  font-family: -apple-system, 'Noto Sans JP', 'Hiragino Sans', 'メイリオ', meiryo, Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  color: #444444;
  font-weight: 400;
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
  background-color: #FFF3EC;
}

#container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
section {
  max-width: 100%;
  width: 100%;
}
img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

/* Link
-------------------------------- */
a, a:visited {
  color: #444444;
  text-decoration: none;
}
a:hover, a:active {
  color: #DD6E7B;
}
@media screen and (min-width: 768px){
  a:hover {
    -moz-transition-property: color;
    -webkit-transition-property: color;
    transition-property: color;
    -moz-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
  }
}
/* Common Icon Style
-------------------------------- */
a.blink::after, .blink a::after {
  font-family: 'icomoon';
  content: "\f14c"; /* .icon-blink-square */
  padding-left: 10px;
  font-size: .9em;
}

a.blue_link {
  color: #106bb6;
}
a.blue_link:hover, a.blue_link:active {
  color: #106bb6;
}

/* Parts
-------------------------------- */
hr {
  border: none;
  border-top: 1px solid #EB9EA7;
}
hr.yellow {
  border-color: #F09C3E;
}

/* SNSアイコンリスト（横） */
.sns_list li {
  display: inline-block;
  width: 32px;
  height: auto;
  text-align: center;
  margin-right: 12px;
  margin-top: 4px;
}
.sns_list li:last-of-type {
  margin-right: 0;
}
.sns_list li i {
  font-size: 2.4rem;
}

/* 注意書き等インデント付きリスト */
.list_indent li {
  padding-left: 1rem;
  text-indent: -1.4rem;
  line-height: 1.5;
  margin-bottom: 4px;
}
.list_indent li:last-of-type {
  margin-bottom: 0;
}

/* 埋め込み動画レスポンシブ化 */
.youtube_wrap {
  position: relative;
  width: 94%;
  margin: 0 auto;
  padding-top: 56.25%;
}
.youtube_wrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* Button
-------------------------------- */
input.btn {
  border: none;
  cursor: pointer;
}
.btn,
a.btn,
input.btn {
  display: block;
  background-color: #DD6E7B;
  border: 1px solid #ffffff;
  box-shadow: 0px 0px 8px #ffffff7a;
  color: #ffffff;
  font-size: 1.8rem;
  border-radius: 2px;
  padding: 15px 12px 16px;
  text-align: center;
  opacity: 1;
}
.btn:hover, .btn:active,
a.btn:hover, a.btn:active,
input.btn:hover, input.btn:active {
  cursor: pointer;
  background-color: #eb9ea7;
  box-shadow: 0px 0px 8px #ffffffff;
}
.btn:hover,
a.btn:hover,
input.btn:hover {
  -moz-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: 0.8s;
  -webkit-transition-duration: 0.8s;
  transition-duration: 0.8s;
}

/*---------------------------------------
  Header
----------------------------------------*/
#header {
  position: relative;
}

#logo:hover, #logo:active {
  color: inherit;
}
#logo {
  display: block;
  width: 240px;
  padding: 24px 0 0 24px;
  float: left;
}
#logo.eng {
  width: 268px;
}

.navbar_brand {
  position: relative;
  z-index: 999;
}

@media screen and (max-width: 767px){
  #logo {
    width: 200px;
    padding: 18px 0 0 16px;
  }
  #logo.eng {
    width: 240px;
  }
}

/*---------------------------------------
  Responsive Menu
----------------------------------------*/
/* SP */
@media screen and (max-width: 767px){
  #gnavi {
    width: 100%;
    display: block;
    padding: 8px 10px;
  }
  .gmenu {
    display: none;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 56px 24px 40px;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
  }
  .drawer {
    position: fixed;
    z-index: 1001;
    right: 14px;
    top: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 14px 12px;
    background-color: #F09C3E;
  }
  .navbar_toggle {
    z-index: 1000;
  }
  .navbar_toggle_icon {
    position: relative;
    display: block;
    height: 1.2px;
    width: 28px;
    background: #FFFFFF;
    -webkit-transition: ease .5s;
    transition: ease .5s;
  }
  .navbar_toggle_icon:nth-child(1) { top: 0;}
  .navbar_toggle_icon:nth-child(2) { margin: 10px 0;}
  .navbar_toggle_icon:nth-child(3) { top: 0;}
  .navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
     top: 11px;
     -webkit-transform: rotate(45deg);
     transform: rotate(45deg);
  }
  .navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
     -webkit-transform: translateY(-50%);
     transform: translateY(-50%);
     opacity: 0;
  }
  .navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
     top: -11px;
     -webkit-transform: rotate(-45deg);
     transform: rotate(-45deg);
  }
  /* メニュー外を押して閉じる*/
  .gnavi_back {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
  }
  /* Open Menu Style */
  .gmenu .line_list li {
    font-size: 1.6rem;
    border-bottom: 1px solid #FFE0DD;
  }
  .gmenu .line_list li a {
    display: block;
    padding: 24px 8px 20px;
  }
  .gmenu .line_list li.cur a {
    color: #D85B6A;
  }
  .gmenu .sns_list {
    display: block;
    margin-top: 40px;
    text-align: center;
  }
  .gmenu .sns_list i::before {
    color: #DD6E7B;
  }
}

/* PC */
@media screen and (min-width: 768px) {
  #gnavi {
    position: relative;
    font-size: 1.4rem;
  }
  .navbar_toggle {
    display: none;
  }
  .gmenu {
    display: block;
    float: right;
    width: calc(100% - 320px);
    padding: 40px 44px 0 0;
  }
  .gmenu .line_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .gmenu .line_list li {
    font-size: 1.4rem;
    padding-left: 5%;
  }
  .gmenu .line_list li a {
    display: block;
    padding: 0;
  }
  .gmenu .line_list li.cur a,
  .gmenu .line_list li.cur a:hover {
    color: #D85B6A;
  }
  .gmenu .line_list li:first-of-type {
    padding-left: 0;
  }
}

/*---------------------------------------
  Footer
----------------------------------------*/
#footer {
  color: #707070;
  font-size: 1.3rem;
  padding: 32px 32px 48px;
}

#footer .gnavi {
  display: block;
  float: left;
  width: 80%;
  margin-bottom: 60px;
}
#footer .gnavi li {
  display: inline-block;
  line-height: 1;
  border-right: 1px solid #eb9ea7;
  padding-right: 3%;
  margin-right: 3%;
  margin-bottom: 12px;
}
#footer .gnavi li:last-of-type {
  border: none;
  padding-right: 0;
  margin-right: 0;
  margin-bottom: 0;
}
#footer .gnavi li a:not(:hover) {
  color: #707070;
}

#footer .sns_list {
  display: block;
  float: right;
}
#footer .sns_list i::before {
  color: #DD6E7B;
}

#footer .gallery_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  max-width: 100%;
}
#footer .footer_logo {
  display: block;
  max-width: 72px;
  height: auto;
  margin-right: 12px;
}
#footer .address {
  flex-grow: 2;
  font-size: 1.1rem;
}
#footer #copyright {
  display: block;
  text-align: right;
  font-family: sans-serif;
  font-size: .9rem;
  letter-spacing: .1rem;
}

/* SP */
@media screen and (max-width: 767px){
  #footer {
    padding: 32px 16px;
  }
  #footer .gnavi {
    display: block;
    float: none;
    width: 100%;
    margin-bottom: 48px;
  }
  #footer .gnavi li {
    display: block;
    line-height: 1;
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 24px;
    width: 100%;
    text-align: center;
  }

  #footer .sns_list {
    display: block;
    float: none;
    text-align: center;
    margin: 0 auto 48px;
  }

  #footer .gallery_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 100%;
    text-align: center;
  }
  #footer .footer_logo {
    display: block;
    max-width: 68px;
    height: auto;
    margin: 0 auto 20px;
    text-align: center;
  }
  #footer .address {
    font-size: 1.2rem;
    margin: 0 auto 40px;
    width: 94%;
    text-align: left;
  }
  #footer #copyright {
    width: 100%;
    text-align: center;
  }
}

/*----------------------------------------
  Fixed Parts
----------------------------------------*/
#pagetop {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  bottom: 80px;
  right: 32px;
  z-index: 99998;
  text-align: center;
  padding-top: 8px;
  font-size: 1.6rem;
  color: #DD6E7B;
}
#pagetop:hover,
#pagetop:active {
  color: inherit;
}

@media screen and (max-width: 767px){
  #pagetop {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 16px;
    padding-top: 7px;
    font-size: 1.5rem;
  }
}

/*----------------------------------------
  for Script
----------------------------------------*/
.fade_up {
  transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: transform 0.6s;
  -moz-transition: transform 0.6s;
  -webkit-transition: transform 0.6s;
}

/*----------------------------------------
  Main Common
----------------------------------------*/
.eng { font-family: inherit;}

.section_wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 6% 56px;
}
.section_title {
  font-size: 2.4rem;
  margin-bottom: 32px;
}
.section_title.child_01 {
  display: inline-block;
  text-align: left;
  font-size: 1.7rem;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #DD6E7B;
  margin-top: 40px;
}

.page_title {
  text-align: center;
  font-size: 3rem;
  letter-spacing: .3rem;
  margin-bottom: 56px;
}
.page_title span {
  display: block;
  color: #DD6E7B;
  font-size: 1.4rem;
  letter-spacing: .1rem;
  margin-top: 8px;
}

.txt_box {
  padding: 0 4px;
  margin-bottom: 24px;
}
.txt_box:last-of-type {
  margin-bottom: 0;
}
.txt_box p {
  margin-bottom: 24px;
}
.txt_box p:last-of-type {
  margin-bottom: 0;
}
.txt_box .author {
  margin-top: 32px;
  text-align: right;
  font-size: 1.7rem;
}

.main_btm_nav {
  display: block;
  width: 100%;
}
.main_btm_nav .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 240px;
}
.main_btm_nav .nav li {
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  margin: 0;
	padding: 0;
}
.main_btm_nav .nav a {
  display: block;
  text-align: center;
  padding-top: 96px;
  width: 100%;
  height: 100%;
  position: relative;
  background-color: rgba(254, 220, 220, 0.7);
  color: #D85B6A;
}
.main_btm_nav .nav .cur a {
  color: inherit;
  background-color: rgba(230, 119, 134, 0.7);
  transition: all .8s;
  color: #FFFFFF;
}
.main_btm_nav .nav .menu01 {
  background: url("../img/img_sq_aw01.jpg") no-repeat center center;
  background-size: cover;
}
.main_btm_nav .nav .menu02 {
  background: url("../img/img_sq_aw02.jpg") no-repeat center center;
  background-size: cover;
}
.main_btm_nav .nav .menu03 {
  background: url("../img/img_sq_aw03.jpg") no-repeat center center;
  background-size: cover;
}
.main_btm_nav .nav .menu04 {
  background: url("../img/img_sq_aw04.jpg") no-repeat center center;
  background-size: cover;
}

/* PCのみhover付与
note:スマホSafari：hoverかかっているとダブルタップ判定が必要になる仕様対策
----------------------- */
@media screen and (min-width: 768px){
  .main_btm_nav .nav a:hover,
  .main_btm_nav .nav a:active {
    color: inherit;
    background-color: rgba(230, 119, 134, 0.6);
    color: #FFFFFF;
    transition: all .8s;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .main_btm_nav .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: auto;
  }
  .main_btm_nav .nav li {
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    width: 100%;
    height: 160px;
    font-size: 1.6rem;
  }
  .main_btm_nav .nav a {
    padding-top: 60px;
    padding-top: calc(80px - 1.4rem);
    width: 100%;
    height: 100%;
  }
}

/*----------------------------------------
  Index
----------------------------------------*/
#header.index_header {
  background: url("../img/bg_index_washi.jpg") no-repeat left top;
  background-size: cover;
}
#index_mv .main_work {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  padding: 16px 0 48px;
}
#index_mv .work_img {
  display: block;
  width: 30%;
  max-width: 300px;
  padding-top: 8%;
}
#index_mv .title_wrap {
  position: relative;
  display: block;
  width: 56%;
  max-height: 440px;
  padding: 7% 14% 0;
}
#index_mv .title_bg {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  background: url(../img/title_bg.png) no-repeat right top;
  background-size: contain;
  padding: 50%;
}
#index_mv .title_wrap .title_name {
  display: block;
  float: right;
  width: 40%;
  max-width: 102px;
  margin-left: 12%;
}
#index_mv .title_wrap .title_theme {
  display: block;
  float: right;
  width: 30%;
  max-width: 80px;
  padding-top: 0.5rem;
}
#index_mv .title_wrap .title_eng {
  display: block;
  margin: 0 auto;
  margin-top: 40px;
}

#greeting {
  background: transparent -webkit-gradient(linear, left bottom, left top, from(#FFF3EC), to(#FAEBE6)) 0% 0% no-repeat;
  background: transparent linear-gradient(0deg, #FFF3EC 0%, #FAEBE6 100%) 0% 0% no-repeat;
}
#artist_greeting {
  background: transparent linear-gradient(350deg, #FFE0DD 0%, #FFD4A5 100%) 0% 0% no-repeat;
}

/* SP */
@media screen and (max-width: 767px){
  #index_mv .main_work {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    width: 94%;
    margin: 0 auto;
    padding: 0;
  }
  #index_mv .work_img {
    width: 80%;
    margin: -72px auto 32px;
    max-width: 200px;
    padding-top: 0;
  }
  #index_mv .work_img img {
    width: 100%;
    max-width: 100%;
    height: 100%;
  }
  #index_mv .title_wrap {
    display: block;
    width: 310px;
    max-height: unset;
    padding: 0 0 72px;
    margin: 0 auto;
  }
  #index_mv .title_bg {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    background: url(../img/title_bg.png) no-repeat center top;
    background-size: 100% auto;
    padding: 50%;
  }
  #index_mv .title_wrap .inner {
    display: inline-block;
    margin: 0 auto;
    padding: 12px 0 24px;
  }
  #index_mv .title_wrap .title_name {
    display: block;
    float: right;
    width: 64px;
    max-width: unset;
    margin-left: 16px;
    margin-right: -24px;
  }
  #index_mv .title_wrap .title_theme {
    display: block;
    float: right;
    width: 48px;
    max-width: unset;
    padding-top: 0.5rem;
  }
  #index_mv .title_wrap .title_eng {
    margin-top: 0;
    padding: 24px 64px;
  }

  #greeting {
    margin-top: 0;
  }
}

/*----------------------------------------
  Animation
----------------------------------------*/
/* index: タイトルアニメーション */

/*上からフェードイン*/
.fade-in-top {
  opacity: 0;
  animation-name: fadein-top;
  -webkit-animation-name: fadein-top;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
@-webkit-keyframes fadein-top {
  0% {
     opacity: 0;
     transform: translateY(0);
     -webkit-transform: translateY(0);
  }
  100% {
     opacity: 1;
     transform: translateY(30px);
     -webkit-transform: translateY(30px);
  }
}
@keyframes fadein-top {
   0% {
      opacity: 0;
      transform: translateY(0);
      -webkit-transform: translateY(0);
   }
   100% {
      opacity: 1;
      transform: translateY(30px);
      -webkit-transform: translateY(30px);
   }
}

/*下からフェードイン*/
.fade-in-bottom {
  opacity: 0;
  animation-name: fadein-bottom;
  -webkit-animation-name: fadein-bottom;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
@-webkit-keyframes fadein-bottom {
  0% {
     opacity: 0;
     -webkit-transform: translateY(30px);
             transform: translateY(30px);
  }
  100% {
     opacity: 1;
     -webkit-transform: translateY(0);
             transform: translateY(0);
  }
}
@keyframes fadein-bottom {
   0% {
      opacity: 0;
      transform: translateY(30px);
   }
   100% {
      opacity: 1;
      transform: translateY(0);
   }
}

/* 遅延調整 for index-MV */
#index_mv .work_img .fade-in-bottom {
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
#index_mv .title_wrap .title_theme.fade-in-top {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

/* 拡大 */
.anime-zoom {
  opacity: 0;
  animation-name: fade-zoom;
  -webkit-animation-name: fade-zoom;
  animation-duration: 4s;
  -webkit-animation-duration: 4s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
    
width:100%;
height:100%; 
position:absolute.top:0;
position:absolute.left:0; 
  
}
@keyframes fade-zoom {
  0% {
      opacity: 0;
      transform: scale(0.5);
  }
  100% {
      opacity: 1;
      transform: scale(1);
  }
}
@-webkit-keyframes fade-zoom {
  0% {
      opacity: 0;
      -webkit-transform: scale(0.5);
  }
  100% {
      opacity: 1;
      -webkit-transform: scale(1);
  }
}

/* 遅延調整 for index-MV */
#index_mv .title_bg.anime-zoom {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

/*----------------------------------------
  Subpage
----------------------------------------*/
.subpage {
  padding-top: 24px;
}

@media screen and (max-width: 767px){
  .subpage {
    padding-top: 0;
    padding-bottom: 0;
  }
}

/* プロフィール
--------------------------- */
.profile .profile_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  height: auto;
  margin-bottom: 40px;
}
.profile .profile_wrap .txt_box {
  order: 1;
  width: 64%;
  padding-right: 40px;
}
.profile .profile_wrap .portrait {
  order: 2;
  width: 36%;
  border: solid 8px white;
}
.profile .section_01 .more .btn {
  display: block;
  margin: 40px auto;
  width: 86%;
}
.list_history {
  display: block;
  margin: 24px auto 24px;
}
.list_history dt {
  width: 20%;
  float: left;
  color: #EB9EA7;
}
.list_history dd {
  margin-left: 20%;
  padding-bottom: 8px;
}
.list_history dd:after {
  content: '';
  display: block;
  clear: both;
}
.list_history li {
  margin-left: 1rem;
  text-indent: -1.6rem;
  margin-bottom: 6px;
}
.list_history li::before {
  content: '・';
  color: #EB9EA7;
}

@media screen and (max-width: 767px){
  .profile .profile_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: auto;
    margin-bottom: 40px;
  }
  .profile .profile_wrap .portrait {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 60%;
    margin: 0 auto 40px;
  }
  .profile .profile_wrap .txt_box {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    padding: 0;
  }

  .list_history {
    font-size: 1.4rem;
  }
  .list_history dt {
    width: 20%;
    float: left;
  }
  .list_history dd {
    margin-left: 20%;
    padding-bottom: 8px;
  }
}

/* 購入方法
--------------------------- */
.contact .contact_info {
  display: block;
  margin-bottom: 40px;
}
.contact .contact_info p {
  margin-bottom: 8px;
}
.contact .mail_body {
  display: block;
  margin-bottom: 24px;
  padding: 24px 32px 26px;;
  border: 1px solid #707070;
}
.contact .mail_body li {
  margin-bottom: 6px;
}

/* 新作紹介（一覧ページ）
--------------------------- */
.works_list {
  width: 94%;
  max-width: 1160px;
  margin: 40px auto 40px;
}
.works_list .hr_short {
  display: block;
  width: 40px;
  margin-top: 40px;
}
.works_list .item_list .help {
  display: block;
  color: #999999;
  font-size: 1.5rem;
  margin: 64px auto 64px;
  text-align: center;
}
.works_list .box_3col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}
.works_list .box_3col .box {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -webkit-box-shadow: 0px 0px 3px rgba(255, 123, 123, 0.3);
  box-shadow: 0px 0px 3px rgba(255, 123, 123, 0.3);
  background-color: #FFFBFB;
  margin-bottom: 48px;
}
.works_list .box_3col .box:nth-child(3n-1) {
  margin-right: 3%;
  margin-left: 3%;
}
.works_list .box_3col .box:hover {
  box-shadow: 0px 0px 3px rgba(255, 123, 123, 0.7);
  -moz-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: 0.8s;
  -webkit-transition-duration: 0.8s;
  transition-duration: 0.8s;
}
.works_list .box_3col .item_box {
  padding: 32px 32px 34px;
}
.works_list .box_3col .item_box .item_img {
  display: block;
  margin-bottom: 16px;
}
.works_list .box_3col .item_box .item_name {
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 2.2rem;
}
.works_list .box_3col .item_box .item_name_kana {
  display: block;
  margin: 4px auto 24px;
  text-align: center;
  font-size: 1.4rem;
  color:#DD6E7B;
}
.works_list .box_3col .item_box .item_size,
.works_list .box_3col .item_box .item_sozai,
.works_list .box_3col .item_box .item_year {
  display: block;
  text-align: left;
  font-size: 1.4rem;
  color: #707070;
}
.works_list .box_3col .item_box .has_movie { /* 動画ありの時のみ */
  display: block;
  font-size: 1.5rem;
  color: #F09C3E;
  margin-top: 16px;
}

/* PCのみマウスオーバー効果 */
@media screen and (min-width: 768px){
  .works_list .box_3col .item_box .item_img {
    overflow: hidden;
  }
  .works_list .box_3col .item_box .item_img img {
    display: block;
    transition-duration: 0.8s;
  }
  .works_list .box_3col .item_box .item_img img:hover {
    transform: scale(1.2, 1.2);
    transition-duration: 0.8s;
  }
}
/* Pad */
@media screen and (min-width: 480px) and (max-width: 900px){
  .works_list {
    width: 92%;
  }
  .works_list .box_3col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  .works_list .box_3col .box {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 48%;
    flex: 0 0 48%;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-bottom: 32px;
  }
  .works_list .box_3col .box:nth-child(3n-1) {
    margin-right: 0;
    margin-left: 0;
  }
  .works_list .box_3col .item_box {
    padding: 24px 24px 36px;
  }
}
/* SP */
@media screen and (max-width: 479px){
  .works_list {
    max-width: 100%;
    width: 90%;
    margin: 24px auto 0;
  }
  .works_list .item_list .help {
    font-size: 1.4rem;
    margin: 32px auto 48px;
  }
  .works_list .box_3col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  .works_list .box_3col .box {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 48%;
    flex: 0 0 48%;
    margin-bottom: 32px;
  }
  .works_list .box_3col .box:nth-child(3n-1) {
    margin-right: 0;
    margin-left: 0;
  }
  .works_list .box_3col .item_box {
    padding: 24px 24px 36px;
  }
}

/* 新作紹介（単体ページ）
--------------------------- */
.subpage.works_detail {
  padding-bottom: 0;
}
.item_detail {
  padding: 64px 40px 80px;
}
.list_detail {
  display: block;
  margin: 0 auto;
}
.list_detail dt {
  width: 120px;
  float: left;
  border: 1px solid #EB9EA7;
  font-size: 1.4rem;
  text-align: center;
  padding: 8px 0 10px;
  margin-bottom: 16px;
}
.list_detail dd {
  font-size: 1.8rem;
  margin-left: 140px;
  padding: 4px 0 8px;
}
.list_detail dd:after {
  content: '';
  display: block;
  clear: both;
}
.txt_box .aw_label {
  font-size: 1.8rem;
  margin-top: 24px;
  margin-bottom: 16px;
}

/* SP */
@media screen and (max-width: 767px){
  .item_detail {
    padding: 32px 24px 48px;
    font-size: 1.6rem;
  }
  .list_detail dt {
    width: 80px;
    font-size: 1.3rem;
    padding: 6px 0 8px;
    margin-bottom: 16px;
  }
  .list_detail dd {
    font-size: 1.5rem;
    margin-left: 96px;
    padding: 6px 0 8px;
  }
  .list_detail dd:after {
    content: '';
    display: block;
    clear: both;
  }
  .txt_box .aw_label {
    font-size: 1.7rem;
    margin-top: 8px;
    margin-bottom: 16px;
  }
}

/* スライダー
---------------------------------*/
.slider_area {
  padding: 40px 40px 72px;
}
.slider_area .page_title {
  margin-bottom: 32px;
}
.slider_area .page_title span {
  color: #DD6E7B;
}

/* slick カスタム
---------------------------------*/
.slick_slider {
  width: 90%;
  margin: 0 auto;
}
.slick_slider .slider-for p,
.slick_slider .slider-nav p {
  color: #707070;
  margin: 8px;
  text-align: center;
}
.slick_slider .slick-list:focus,
.slick_slider .slider-for p:focus,
.slick_slider .slider-nav p:focus {
  outline: none !important;
}

/* プレビュー */
.slick_slider .slider-for {
  position: relative;
  display: block;
  max-width: 980px;
  max-height: 735px;
  width: 70%;
  margin: 0 auto 24px;
}

/* サムネ */
.slick_slider .slider-nav {
  max-width: 1200px;
  margin: 0 auto;
}
.slick_slider .slider-nav p {
  display: inline-block;
  width: 72px;
  height: auto;
  cursor: pointer;
}
.slick_slider .slider-nav p img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 左右矢印 */
.slick-prev,
.slick-next {
  width: 6rem;
  height: 7rem;
}
.slick-prev {
  left: -8rem;
}
.slick-next {
  right: -8rem;
}
.slick-prev:before,
.slick-next:before {
  font-family: 'icomoon';
  font-size: 6rem;
}
.slick-prev:before {
  content: '\e900';
}
.slick-next:before {
  content: '\e901';
}

@media screen and (max-width: 767px){
  .slider_area .page_title {
    margin-bottom: 40px;
  }
  .slick_slider {
    width: 100%;
    margin: 0 auto;
  }
  .slick_slider .slider-for {
    max-width: 100%;
    max-height: auto;
    width: 100%;
    margin: 0 auto 24px;
  }
  .slick_slider .slider-nav {
    max-width: 100%;
  }
  .slick-prev,
  .slick-next {
    width: 40px;
    height: 40px;
  }
  .slick-prev {
    left: -32px;
  }
  .slick-next {
    right: -32px;
  }
  .slick-prev:before,
  .slick-next:before {
    font-family: 'icomoon';
    font-size: 32px;
  }
}

/* 単体ページ下部：作品一覧リンク */
.works_btm_nav {
  display: block;
  width: 100%;
  padding: 40px 40px;
}
.works_btm_nav .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.works_btm_nav .nav li {
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  width: auto;
}
.works_btm_nav .nav img {
  -webkit-filter: grayscale(40%);
  filter: grayscale(40%);
  opacity: .4;
}
.works_btm_nav .nav .cur img,
.works_btm_nav .nav img:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  opacity: 1;
}

/* SP */
@media screen and (max-width: 767px) {
  .works_btm_nav {
    margin-bottom: 0;
  }
  .works_btm_nav .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .works_btm_nav .nav li {
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    width: 33%;
  }
}


/*----------------------------------------
  Priority setting
----------------------------------------*/
.pb0 { padding-bottom: 0 !important;}
.mb0 { margin-bottom: 0 !important;}
.pt0 { padding-top: 0 !important;}
.mt0 { margin-top: 0 !important;}
.pb40 { padding-bottom: 40px !important;}

.hide { display: none !important;}

.bold { font-weight: 600;}
.align_right { text-align: right;}

.txt_color1 { color: #D85B6A !important;}
.txt_color2 { color: #F09C3E !important;}
.txt_color3 { color: #707070 !important;}

.bg_color2 {
  background: transparent linear-gradient(350deg, #FFE4E9 0%, #FFE3d9 100%) 0% 0% no-repeat;
}
.bg_color3 {
  background: transparent linear-gradient(350deg, #ffe4e9 0%, #ffe3d9 100%) 0% 0% no-repeat;
}

/* 縦書き
note: Safari/animationとの相性が悪いので、PCのみ物理的並べ替えに変更 */
@media screen and (min-width: 768px){
  .txt_vertical span {
    display: block;
    line-height: 1;
    margin-bottom: .9rem;
  }
}
@media screen and (max-width: 767px){
  .txt_vertical {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}



