@charset "UTF-8";

/*リセット
--------------------------------------------*/
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
  font-feature-settings: "palt";
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

@font-face {
  font-family: 'apercu';
  font-style: normal;
  font-weight: 100;
  src: url("../font/apercu/apercu_regular_pro.eot");
  src: url("../font/apercu/apercu_regular_pro.eot?#iefix") format("embedded-opentype"), url("../font/apercu/apercu_regular_pro.woff") format("woff"), url("../font/apercu/apercu_regular_pro.ttf") format("truetype");
  /* Safari, Android, iOS */
}

@font-face {
  font-family: 'javacom';
  font-style: normal;
  src: url("../font/javacom/Javacom.eot");
  src: url("../font/javacom/Javacom.woff") format("woff"), url("../font/javacom/Javacom.ttf") format("truetype");
  /* Safari, Android, iOS */
}

html {
  font-size: 62.5%;
  /* 16px x 0.625 = 10px(=1rem) */
}

body {
  margin: 0;
  padding: 0;
  font-size: 1.1rem;
  /* 16px */
  line-height: 150%;
  font-family: 'apercu', "Yu Gothic", YuGothic, Arial, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, sans-serif;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
  padding: 0;
}

h1 {
  margin: 0;
  padding: 0;
  display: block;
}

img {
  width: 100%;
  vertical-align: bottom;
}

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

a:hover {
  opacity: 0.5;
}

.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

/*--------------------
 animation
 ---------------------*/
/* .invisible {
  transition: opacity 0.2s ease;
  opacity: 0.0;
}

.visible {
  transition: opacity 0.2s ease;
  opacity: 1.0;
} */
.animated {
  /* animation-duration:0.1s; */
  transition-delay: .38s;
}

/* ------------------------main------------------------ */
#main {
  width: 100%;
}

#main #main_visual {
  width: 100%;
  height: 87vh;
  background: url("../images/main.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

#main #main_visual h1 {
  width: 85%;
  margin: 0 auto;
  padding: 67% 0 0 0;
}

#main #main_visual h1 .pc {
  display: none;
}

/*---arrow---*/
@-webkit-keyframes scroll-line {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40% {
    -webkit-transform: translate3d(0, 185px, 0);
    transform: translate3d(0, 185px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 175px, 0);
    transform: translate3d(0, 175px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 280px, 0);
    transform: translate3d(0, 280px, 0);
  }
}

@-webkit-keyframes triangle-bounce {
  0% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  50% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
}

@-webkit-keyframes triangle-first {

  0%,
  20% {
    -webkit-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0);
  }

  30%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  100%,
  85% {
    -webkit-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
  }
}

@-webkit-keyframes triangle-right {

  0%,
  25% {
    -webkit-transform: rotate(-163deg) translate3d(0, 40px, 0);
    transform: rotate(-163deg) translate3d(0, 40px, 0);
  }

  40%,
  84% {
    -webkit-transform: rotate(-163deg) translate3d(0, 0, 0);
    transform: rotate(-163deg) translate3d(0, 0, 0);
  }

  100%,
  90% {
    -webkit-transform: rotate(-163deg) translate3d(0, -37px, 0);
    transform: rotate(-163deg) translate3d(0, -37px, 0);
  }
}

@-webkit-keyframes triangle-left {

  0%,
  33% {
    -webkit-transform: rotate(163deg) translate3d(0, -34px, 0);
    transform: rotate(163deg) translate3d(0, -34px, 0);
  }

  50%,
  88% {
    -webkit-transform: rotate(163deg) translate3d(0, 0, 0);
    transform: rotate(163deg) translate3d(0, 0, 0);
  }

  100%,
  95% {
    -webkit-transform: rotate(163deg) translate3d(0, 38px, 0);
    transform: rotate(163deg) translate3d(0, 38px, 0);
  }
}

@-webkit-keyframes triangle-last {

  0%,
  87.5% {
    -webkit-transform: translate3d(-120px, 0, 0);
    transform: translate3d(-120px, 0, 0);
  }

  91% {
    -webkit-transform: translate3d(-80px, 0, 0);
    transform: translate3d(-80px, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(45px, 0, 0);
    transform: translate3d(45px, 0, 0);
  }
}

.animation-start .c-scroll-icon {
  opacity: 1;
  -webkit-transition: all 1.5s 1.2s;
  transition: all 1.5s 1.2s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transform: scale(0.8, 0.8);
}

.c-scroll-icon {
  width: 21px;
  height: 100px;
  margin-left: -10px;
  opacity: 0;
  -webkit-transform: translate3d(0, -50px, 0);
  transform: translate3d(0, -50px, 0);
  position: absolute;
  bottom: 15%;
  left: 50%;
}

.c-scroll-icon-line-mask {
  position: relative;
  overflow: hidden;
  width: 20px;
  height: 100px;
  margin: 0 auto;
}

.c-scroll-icon-line {
  position: absolute;
  display: inline-block;
  width: 1px;
  height: 150px;
  border-left: 1px solid #ffffff;
  top: -150px;
  left: 10px;
  -webkit-animation: scroll-line 3s infinite;
  animation: scroll-line 3s infinite;
  -webkit-transition: all cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.c-scroll-icon-triangle {
  position: relative;
  width: 20px;
  height: 30px;
  margin: -10px auto 0;
  -webkit-animation: triangle-bounce 3s infinite;
  animation: triangle-bounce 3s infinite;
}

.c-scroll-icon-triangle-mask.first {
  width: 40px;
  height: 5px;
  right: 0;
  overflow: hidden;
}

.c-scroll-icon-triangle-mask {
  position: absolute;
}

.c-scroll-icon-triangle-line.first {
  border-bottom: 1px solid #ffffff;
  width: 30px;
  right: 0;
  -webkit-animation: triangle-first 3s infinite;
  animation: triangle-first 3s infinite;
  -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.c-scroll-icon-triangle-line {
  position: absolute;
}

.c-scroll-icon-triangle-mask.right {
  width: 10px;
  height: 30px;
  overflow: hidden;
  right: 0;
}

.c-scroll-icon-triangle-line.right {
  border-left: 1px solid #ffffff;
  height: 44px;
  -webkit-transform: rotate(-163deg);
  transform: rotate(-163deg);
  right: 5px;
  top: -6px;
  -webkit-animation: triangle-right 3s infinite;
  animation: triangle-right 3s infinite;
  -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.c-scroll-icon-triangle-mask.left {
  width: 10px;
  height: 30px;
  overflow: hidden;
  left: 1;
}

.c-scroll-icon-triangle-line.left {
  border-left: 1px solid #ffffff;
  height: 40px;
  -webkit-transform: rotate(163deg);
  transform: rotate(163deg);
  left: 5px;
  top: -3px;
  -webkit-animation: triangle-left 3s infinite;
  animation: triangle-left 3s infinite;
  -webkit-transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.c-scroll-icon-triangle-mask.last {
  width: 40px;
  height: 5px;
  overflow: hidden;
}

.c-scroll-icon-triangle-line.last {
  border-bottom: 1px solid #ffffff;
  width: 120px;
  left: 0;
  -webkit-animation: triangle-last 3s infinite;
  animation: triangle-last 3s infinite;
  -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

#main #main_title {
  width: 90%;
  margin: 0 auto 25px auto;
  padding: 50px 0 0 0;
  /*    font-size:1.8rem;*/
  font-size: 4.1vmin;
  line-height: 180%;
  letter-spacing: 1px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  text-align: center;
}

#main #main_lead {
  width: 85%;
  margin: 0 auto 100px auto;
  padding: 0;
  font-size: 1.27rem;
  line-height: 180%;
  text-align: left;
}

#main #main_lead br {
  display: none;
}

#main #main_nav {
  width: 85%;
  height: 105px;
  margin: 0 auto 100px auto;
  font-size: 1.5rem;
  /*    font-size: 4.5vmin;*/
  font-family: 'EB Garamond', serif;
  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;
}

#main #main_nav li {
  width: 47%;
  height: 35px;
  margin: 0;
}

#main #main_nav li span {
  margin: 0 4px 0 0;
  font-weight: 600;
  font-size: 16px;
}

#main #main_nav li span:after {
  margin: 0 5px;
  content: '――';
  letter-spacing: -3px;
  color: #666;
  vertical-align: -1px;
}

/* ------------------------item_container------------------------ */
.item_container {
  width: 100%;
  margin: 0 auto 100px auto;
  padding: 0;
  text-align: center;
}

h2 {
  width: 67%;
  margin: 0 auto 40px auto;
  font-size: 1.2rem;
  line-height: 140%;
  font-family: 'Amiri', serif;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 20px 0 15px 0;
  position: relative;
}

h2 .h2_font {
  padding: 0 8px 6px 8px;
  margin: 0 0 8px 0;
  font-size: 2.3rem;
  line-height: 140%;
  font-family: 'javacom';
}

.item_container .item_main {
  /* margin:0 0 30px 0; */
  padding: 0;
}

/* .item_container .item_main figure {
    width:70%;
    margin:0 auto 30px auto;
    padding:0;
    position:relative;
} */
.item_container .item_main figure p {
  margin: 0;
  padding: 0;
  font-family: 'EB Garamond', serif;
  letter-spacing: -10px;
  display: inline-block;
  position: absolute;
}

#item_01 .item_main figure p,
#item_04 .item_main figure p,
#item_06 .item_main figure p {
  bottom: 50%;
  right: -2%;
}

#item_02 .item_main figure p,
#item_03 .item_main figure p,
#item_05 .item_main figure p {
  bottom: 50%;
  left: -5%;
}

.item_container .item_main figure p .page_1 {
  font-size: 2.6rem;
  font-style: italic;
  vertical-align: 12px;
}

.item_container .item_main figure p .page_2 {
  font-size: 2.4rem;
  color: #999;
}

.item_container .item_main figure p .page_3 {
  font-size: 1.6rem;
  font-style: italic;
  vertical-align: -2px;
}

.item_container .item_main h3 {
  width: 100%;
  margin: 0 auto 40px auto;
  /*    font-size:2.0rem;*/
  font-size: 4.2vmin;
  line-height: 180%;
  font-feature-settings: "palt";
  font-family: 'Noto Serif JP', serif;
  font-weight:600;
  display: block;
  position: relative;
}
h2 .h2_be:before {
  left: 0px;
}
h2 .h2_be:after {
  right: 0px;
}
h2 .h2_be:before, h2 .h2_be:after {
  content: '';
  position: absolute;
  top: 0px;
  width: 1px;
  height: 10px;
  background-color: #ccc;
}
h2 .h2_af:before {
  left: 0px;
}
h2 .h2_af:after {
  right: 0px;
}
h2 .h2_af:before, h2 .h2_af:after {
  content: '';
  position: absolute;
  top: 58px;
  width: 1px;
  height: 10px;
  background-color: #ccc;
}

.item_container .item_main p {
  margin: 0 0 20px 0;
  padding: 0;
  font-size: 1.35rem;
  line-height: 180%;
}

.item_container .item_main a {
  font-size: 1.3rem;
  text-decoration: underline;
}

.item_container .item_style_box .item_style_a,
.item_container .item_style_box .item_style_b {
  margin: 0 auto 100px auto;
  padding: 0;
}

.item_container .item_style_box figure {
  margin: 0 auto 30px auto;
  padding: 0;
}

.item_container h4 {
  width: 85%;
  margin: 0 auto 30px auto;
  font-size: 1.2rem;
  line-height: 140%;
  font-family: 'Amiri', serif;
}

.item_container h4 span {
  padding: 0 0 6px 10px;
  margin: 0 0 8px 0;
  font-size: 2.5rem;
  line-height: 140%;
  font-family: 'javacom';
}

.item_container h4:after {
  content: "";
  border-bottom: solid 1px #ccc;
  width: 20%;
  display: block;
  margin: 0 auto;
  padding-top: 20px;
}

.item_container .item_style_box p {
  width: 85%;
  margin: 10px auto 0;
  padding: 0;
  font-size: 1.1em;
}

.item_container .item_style_box p.item_style_txt {
  font-size: 1.2rem;
  line-height: 180%;
  text-align: left;
  margin-bottom: 20px;
}

.item_container .item_style_box p.item_style_txt br {
  display: none;
}

.item_container .item_style_box a {
  width: 90%;
  margin: 0 0 10px 0;
  padding: 0;
  font-size: 1.3rem;
  display: inline-block;
  text-decoration: underline;
}

.item_container .item_main h5 {
  margin: 0 auto 10px auto;
  padding: 0 10px;
  font-size: 6.1vmin;
  line-height: 130%;
  font-feature-settings: "palt";
  font-family: 'Amiri', serif;
  display: block;
  position: relative;
  letter-spacing: 2px;
}

.item_container .item_main h5:after {
  content: "";
  border-bottom: solid 1px #ccc;
  width: 15%;
  display: block;
  margin: 0 auto;
}

#must_buy figure {
  margin: 0 auto 20px auto;
  width: 70%;
}

.must_item_style {
  margin: 0 auto 50px auto;
  padding: 0;
}

.box_bottom {
  margin-bottom: 30px;
}

.real_insta a {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
}

#real_style a i {
  margin: 0 10px 0 0;
  font-size: 2rem;
}

#real_style a span {
  padding: 5px 0;
  letter-spacing: 1px;
  text-decoration: underline;
}

#real_style figure {
  margin: 0 auto;
  width: 70%;
}

#real_style ul {
  width: 70%;
  margin: 0 auto;
}

#real_style .insta_top {
padding: 30px 0 20px;;
}

/* ------------------------allitem------------------------ */
#allitem {
  text-align: center;
}

#allitem a {
  width: 50%;
  padding: 20px 10px;
  font-size: 16px;
  font-family: 'Noto Serif JP', serif;
  text-align: center;
  display: inline-block;
  position: relative;
  background-color: #808080;
  color: #fff;
}

/* #allitem a:before,
#allitem a:after{
	content: '';
	position: absolute;
	top: 5px;
	width: 1px;
	height: calc(100% - 10px);
	background-color: #000;
}
#allitem a:before{left: -5px;}
#allitem a:after{right: -5px;} */
/* ------------------------profile------------------------ */
#profile {
  width: 85%;
  margin: 100px auto 30px;
}

#profile>div {
  margin: 0 0 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#profile>div figure {
  width: 18%;
  margin: 0;
}

#profile>div figure img {
  border-radius: 50%;
}

#profile>div>div {
  width: 80%;
  margin: 0;
}

#profile>div>div #profile_name {
  margin: 0 0 5px 0;
  font-size: 1.6rem;
  line-height: 140%;
  letter-spacing: 1px;
  font-weight: 600;
}

#profile>div>div #profile_name2 {
  font-family: 'Noto Serif JP', serif;
}

#profile>p {
  margin: 0 0 15px 0;
}

#profile>p br {
  display: none;
}

#profile a {
  margin: -10px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#profile a i {
  margin: 0 10px 0 0;
  font-size: 2rem;
}

#profile a span {
  padding: 5px 0;
  letter-spacing: 1px;
  text-decoration: underline;
}

/* ------------------------book------------------------ */
#book {
  width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#book_line {
  width: 85%;
  margin: 0 auto 100px auto;
  padding: 20px 0;
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
}

#book figure {
  width: 28%;
}

#book>div {
  width: 68%;
  text-align: center;
}

#book>div p {
  margin: 0 0 20px 0;
}
.book_in{
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  padding-bottom: 20px;
}

#book>div a {
  font-size: 1.3rem;
  text-decoration: underline;
  display: inline-block;
}

/* ------------------------footer------------------------ */
footer {
  margin: 50px 0 0 0;
}

footer img {
  display: block;
  width: 100px;
  margin: 0 auto;
}

footer p {
  margin: 20px 0 15px 0;
  text-align: center;
  font-size: 11px;
}

.underline {
  text-decoration: underline;
}

.pc {
  display: none;
}

#to_top {
  display: none;
  position: fixed;
  bottom: 75px;
  right: 15px;
  z-index: 100;
}

@media screen and (max-width: 999px) {
  #to_top {
    right: 15px;
    width: 15px;
    height: 15px;
  }
}

#to_top span {
  /*&:last-child {
      letter-spacing: 1px;
      font-size: 10px;
      writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    margin-top: 5px;
    @include mq(sp) {
      display: block;
      /*font-size: 14px;
    }
    }*/
}

#to_top span:first-child {
  width: 15px;
  height: 15px;
  display: flex;
}

#to_top span:first-child img {
  width: 100%;
}

@media screen and (max-width: 999px) {
  #to_top span:first-child img {
    max-width: 15px;
  }
}

@media screen and (min-width: 1000px) {
  #to_top span:first-child img {
    max-width: 25px;
  }
}

/*-----------------------------------------------------------------------------------

PC

-----------------------------------------------------------------------------------*/
@media screen and (min-width: 769px) {

  /* ------------------------main------------------------ */
  #main {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
  }

  #main #main_lead {
    width: 100%;
  }

  #main #main_visual {
    max-width: 800px;
    width: 100%;
    height: 0;
    margin: 0px auto;
    padding-top: 90%;
    background: url("../images/main_pc.jpg");
    background-size: contain;
    background-position: center;
    position: relative;
  }

  #main #main_visual h1 {
    padding: 0;
    position: absolute;
    top: 27px;
    left: 0;
    right: 0;
    margin: auto;
    width: 55%;
  }

  #main #main_visual h1 .pc {
    display: inherit;
  }

  #main #main_visual h1 .sp {
    display: none;
  }

  #main #main_title {
    font-size: 1.8rem;
  }

  #main #main_lead {
    text-align: center;
  }

  #main #main_lead br {
    display: inherit;
  }

  #main #main_nav {
    width: 50%;
    text-align: center;
  }

  .animation-start .c-scroll-icon {
    display: none;
  }

  /* ------------------------item_container------------------------ */
  .item_container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 100px auto;
    padding: 0;
    text-align: center;
  }

  h2 {
    width: 40%;
  }

  h2 {
    font-size: 1.2rem;
  }

  h2 .h2_font {
    font-size: 2.5rem;
  }

  h2 .h2_af:before, h2 .h2_af:after {
    top: 60px;
  }

  .item_container .item_main {
    width: 100%;
    /* margin:0 0 30px 0; */
    padding: 0;
  }

  .item_container .item_main h3 {
    font-size: 2.2rem;
  }

  .item_container .item_main h3:after {
    width: 15%;
  }

  .item_container h4:after {
    width: 15%;
  }

  .item_container .item_main figure {
    width: 90%;
  }

  .item_container .item_main figure p {
    /*    transform:scale(1.5, 1.5) translate(0, 50px);*/
  }

  #item_01 .item_main figure p,
  #item_04 .item_main figure p,
  #item_06 .item_main figure p {
    top: 10%;
    right: 0;
  }

  #item_02 .item_main figure p,
  #item_03 .item_main figure p,
  #item_05 .item_main figure p {
    top: 10%;
    left: -3%;
  }

  .item_container .item_main figure p .page_1 {
    font-size: 4.8rem;
    font-style: italic;
    vertical-align: 20px;
  }

  .item_container .item_main figure p .page_2 {
    font-size: 4.0rem;
  }

  .item_container .item_main figure p .page_3 {
    font-size: 3.0rem;
    font-style: italic;
    vertical-align: -5px;
  }

  .item_container .item_style_box {
    width: 80%;
    margin: 0 auto;
  }

  /* .item_container .item_style_box p.item_style_txt {
    text-align:center;
} */
  .item_container .item_style_box p.item_style_txt br {
    display: inherit;
  }

  .item_container .item_main h5 {
    margin: 0 auto 15px auto;
    font-size: 3vmin;
  }

  #allitem a {
    width: 20%;
  }

  /* ------------------------profile------------------------ */
  #profile {
    max-width: 860px;
    text-align: center;
  }

  #profile>div {
    display: block;
  }

  #profile>div figure {
    width: 18%;
    margin: 0 auto;
  }

  #profile>div figure img {
    border-radius: 50%;
  }

  #profile>div>div {
    width: 100%;
    margin: 20px 0 0 0;
  }

  #profile>p br {
    display: inherit;
  }

  #profile a {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  /* ------------------------book------------------------ */
  #book {
    max-width: 860px;
    display: block;
    text-align: center;
  }

  #book_line {
    padding: 30px 0;
    width: 60%;
}

.book_in {
    font-size: 16px;
}

  #book figure {
    width: 20%;
    margin: 0 auto 20px auto;
  }

  #book>div {
    width: 100%;
  }

  #book>div p {
    margin: 0 0 10px 0;
  }

  #book>div a {
    font-size: 1.4rem;
    text-decoration: underline;
    display: inline-block;
  }

  .pc {
    display: inherit;
  }
}
