@charset "UTF-8";

/* --------------------------------
outline
------------------------------------- */
html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
body {
  font-family: 'Noto Sans JP', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #323232;
  animation: fadeIn ease .5s;
  background: #fff;
  overflow-x: hidden;
}
.no-scroll {
  overflow: hidden;
}

.main {
  width: 100%;
}
.inner {
  width: 100%;
  max-width: calc(1090px + 10px);
  margin: 0 auto;
  padding: 0 5px;
}
.section .inner {
  padding: 56px 0 75px;
}

.block_bdr .inner {
  border-bottom: 1px solid #000;
}
.block_bdr:first-of-type .inner {
  border-top: 1px solid #000;
}
.block_bdr:last-of-type .inner {
  border-bottom: none;
}

.relation_books .inner {
  border-top: 1px solid #000;
}

@media screen and (max-width: 1096px) {
  .inner {
    max-width: 96%;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .main {
    width: 100%;
    max-width: 100%;
  }
  .inner {
    width: 100%;
    max-width: 87.2%;
    padding: 0;
  }
  .section .inner {
    padding: 32px 0;
  }
}

/* -----------------------------------------
animation
----------------------------------------- */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes slideLeft {
  0% {
    transform: translateX(-180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%,100% {
    opacity: 1;
  }
}

@keyframes swipeRight {
  0% {
    transform: translate(0);
  }
  50%, 60% {
    transform: translate3d(100%,0,0);
  }
  100% {
    transform: translate3d(100%,0,0);
  }
}

@keyframes zoom {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes scroll {
  0% {
    height: 0;
  }
  50% {
    height: 200px;
    margin-top: 0;
  }
  100% {
    margin-top: 200px;
    height: 200px;
  }
}

/* --------------------------------
effect
------------------------------------- */
.slideLeft {
  display: none;
  animation: slideLeft 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

.fadeUp {
  transform: translateY(100px);
  opacity: 0;
}
.fadeUp.active {
  transform: translateY(0);
  opacity: 1;
  transition: opacity .5s ease-out, transform .75s ease-out;
  transition-delay: .5s;
}
.fadeUp:nth-of-type(2).active {
  transition-delay: .75s;
}

/* --------------------------------
scrollbar
------------------------------------- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background-color: #fff;
}
::-webkit-scrollbar-thumb {
  background-color: #656565;
  border-radius: 4px;
}

.no_scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.no_scrollbar::-webkit-scrollbar {
  display: none;
}

/* --------------------------------
.pcOnly / .spOnly
------------------------------------- */
.pcOnly {
  display: block;
}
.spOnly {
  display: none;
}

@media screen and (max-width: 768px) {
  .pcOnly {
    display: none;
  }
  .spOnly {
    display: block;
  }
}

/* --------------------------------
WP class
------------------------------------- */
img.alignright {
  display: block;
  margin: 0 0 0 auto;
}
img.alignleft {
  display: block;
  margin: 0 auto 0 0;
}
img.aligncenter {
  display: block;
  margin: 0 auto;
}

/* --------------------------------
common style
------------------------------------- */
h1 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.5;
}
.heading_01 {
  font-size: 34px;
  font-weight: 700;
}
h2 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.5;
}
.heading_02 {
  width: 100%;
  margin-bottom: 52px;
  font-size: 25px;
  font-weight: 500;
  line-height: 37px;
  text-align: center;
}
.top_content_box .heading_02 {
  letter-spacing: .3em;

}
.heading_02_obi {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-shrink: 0;
  width: 100vw;
  height: 96px;
  margin-bottom: 0;
  color: #fff;
}
.heading_02_obi::before {
  position: absolute;
  left: 0;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  background: #9f9f9d;
}
.heading_02 .small {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.top_sumi_box .heading_02 .small {
  text-indent: -1em;
}
h3 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.5;
}
.heading_03 {
  margin-bottom: 52px;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: .3em;
  line-height: 37px;
  text-align: center;
}
h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .top_content_box .heading_02 {
    letter-spacing: .3em;
  }
  .heading_02 {
    margin-bottom: 32px;
  }
  .heading_02_obi {
    width: 100%;
    height: 96px;
    color: #fff;
    background: #9f9f9d;
  }
  .heading_02_obi::before {
    position: unset;
    display: none;
  }
}

ul li,
ol li {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}
p {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  word-wrap: break-word;
}
.text {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}
a {
  color: #323232;
  transition: .2s;
}
a.block {
  display: block;
  height: 100%;
}
a.underline {
  position: relative;
}
a.underline::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
a:hover {
  opacity: .7;
}

select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  line-height: 1;
  font-size: 16px;
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: #000;
  padding: 0 .75em;
  outline: 0;
  border: 0;
  border-radius: 3px;
  background: #fff;
}
select::-ms-expand {
  display: none;
}
select option {
  width: 100%;
}


@media screen and (max-width: 768px) {
  a:hover {
    opacity: 1;
  }
}

/* common class */
.hide {
  display: none;
}
.txt_box {
  max-width: 750px;
  margin: 0 auto 1em;
}
.signature {
  display: flex;
  justify-content: flex-end;
  margin-top: 1em;
}
.hide {
  display: none;
}
.ls_100 {
  letter-spacing: .1px;
}
.indent {
  text-indent: 1em;
}
.bold {
  font-weight: bold;
}
.txt_underline {
  text-decoration: underline;
}
.flx {
  display: flex;
  align-items: center;
}
.not {
  display: inline-block;
  margin: 2em auto .5em;
}
.nowrap {
  white-space: nowrap;
}

/* color */
.red {
  color: #C72A2A;
}
.blue {
  color: #2764AF;
}

/* .btn_link */
.btn_link_blue {
  width: 80%;
  max-width: 264px;
  height: 60px;
  min-height: 60px;
  max-height: 60px;
  margin: 0 auto;
  background-color: #9F9F9D;
  border-radius: 5px;
}
.btn_link_blue a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/ico_arrow_rt_white.svg);
  background-repeat: no-repeat;
  background-position: center right 1em;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: .1em;
  border-radius: 5px;
}
.btn_link_blue a:hover {
  background-color: #fff;
  background-image: url(../images/common/ico_arrow_rt_ashgray.svg);
  background-repeat: no-repeat;
  background-position: center right 1em;
  border: 1px solid #9f9f9d;
  color: #9f9f9d;
  opacity: 1;
}

.btn_link_white {
  width: 87.2%;
  max-width: 327px;
  height: 70px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 0;
}
.btn_link_white a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/ico_arrow_rt_ashgray.svg);
  background-repeat: no-repeat;
  background-position: center right 27px;
  background-color: #fff;
  border: 1px solid #9F9F9D;
  color: #9F9F9D;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: .1em;
  overflow: hidden;
}
.btn_link_white img {
  width: 100%;
}

/* category */
.cat_media {
  background-color: #064583;
}
.cat_event {
  background-color: #064583;
}
.cat_artaccess {
  background-color: #064583
}
.cat_other {
  background-color: #064583
}


/* --------------------------------
.breadcrumb
------------------------------------- */
.breadcrumb_wrap {
  padding: 36px 0;
}
.breadcrumb {
  white-space: nowrap;
}
.breadcrumb ul {
  display: flex;
}
.breadcrumb li {
  font-size: 16px;
}
.breadcrumb li::after {
  content: ">";
  display: inline-block;
  margin: 0 0.25em;
}
.breadcrumb li:last-child::after {
  content: none;
}
@media screen and (max-width: 768px) {
  .breadcrumb_wrap {
    display: none;
  }
}

/* --------------------------------
.selectbox .select_frame
------------------------------------- */
@media screen and (max-width: 768px) {
  .select_frame_sp {
    position: relative;
    width: 75.5351%;
    height: 40px;
    margin: 0 auto 44px;
    border: 1px solid #A7A7A7;
    border-radius: 3px;
    font-size: 18px;
    color: #000;
    cursor: pointer;
  }
  .select_frame_sp::after {
    content: "";
    position: absolute;
    width: 21px;
    height: 12px;
    background-image: url('../images/common/ico_selectbox.svg');
    background-repeat: no-repeat;
    background-size: contain;
    top: 15px;
    right: 10px;
    pointer-events: none;
  }
}

/* ====================================================================
.home style
====================================================================== */
/* --------------------------------
.top_content_box style
------------------------------------- */
.top_content_box {
  padding: 21px 0;
}
@media screen and (max-width: 768px) {
  .top_content_box {
    padding: 20px 0 10px;
  }
  .top_content_box .inner {
    padding: 0 0 32px;
  }
}

/* common */
.post_title {
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: normal;
  text-align: left;
}
.post_lead {
  font-size: 16px;
  line-height: 26px;
}
.author {
  display: block;
  margin-bottom: 3px;
}
.publication_date {
  font-size: 14px;
  line-height: 20px;
}
@media screen and (max-width: 768px) {
  .post_title {
    width: 96%;
    margin: 0 auto .5em;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    color: #000;
  }
  .post_lead {
    display: none;
  }
  .author {
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 22px;
    color: #000;
  }
}

/* .newissue */
.newissue_post ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
}
.newissue_post li {
  flex-shrink: 0;
  width: calc(25% - 21px);
  max-width: 250px;
  margin-right: 28px;
  margin-bottom: 53px;
  text-align: center;
}
.newissue_post li:nth-of-type(4n) {
  margin-right: 0;
}
.newissue_post a {
  display: block;
  height: auto;
}
.newissue_post a:hover {
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .newissue_post a:hover .newissue_txt * {
    color: #9f9f9d;
  }
  .newissue_post a:hover .cat_name,
  .newissue_post a:hover .img_box,
  .newissue_post a:hover .publication {
    opacity: .7;
  }
}

.newissue_post .cat_name_box {
  display: flex;
  width: 80%;
  height: 4em;
  margin: 0 auto 10px;  
  text-align: center;
  justify-content: flex-end;
  flex-direction: column;
}
.newissue_post .cat_name {
  color: #000;
  font-size: 16px;
  line-height: normal;
}
.newissue_post .cat_name:last-child {
  margin-right: 0;
}

.newissue_post .img_box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88%;
  height: 280px;
  margin: 0 auto 11px;
  overflow: hidden;
  transition: .3s;
}
.newissue_post .img_box img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border: 1px solid #727171;
}

.newissue_post .publication {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  height: 40px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  background-color: #D1C271;
  transition: .3s;
}
.newissue_post .publication.shinkan {
  background-color: #E95464;
}
.newissue_post .publication.kikan_01 {
  background-color: #D1C271;
}
.newissue_post .publication.kikan_02 {
  background-color: #D1C271;
}
.newissue_post .publication.backnumber {
  background-color: #D1C271;
}

.newissue_post .post_title {
  text-align: center;
}

/* .newissue_post .soldout */
.newissue_post .img_box.soldout::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  content: "";
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
}
.newissue_post .img_box.soldout img {
  filter: brightness(70%);
  mix-blend-mode: multiply;
}
.newissue_post .publication.soldout {
  background-color: #4E5255;
}

@media screen and (max-width: 768px) {
  .newissue_post ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 7px;
    justify-content: space-between;
  }
  .newissue_post li {
    width: calc(50% - 13px);
    margin-bottom: 27px;
    margin-right: 0;
  }
  .newissue_post .img_box {
    width: 100%;
    height: 166px;
  }
  .newissue_post .cat_name_box {
    height: 5em;
    margin: 0 auto 4px;
  }
  .newissue_post .cat_name {
    font-size: 14px;
  }
  .newissue_post .publication {
    margin: 0 auto 13px;
  }
}

/* .top_sumi_meiten_wrap */
.top_sumi_meiten_wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 0 0 75px;
}
.top_sumi_meiten_wrap::before {
  position: absolute;
  z-index: -1;
  content: "";
  display: block;
  width: 100vw;
  height: 96px;
  background: #9f9f9d;
}

.top_sumi_meiten_wrap .heading_02_obi {
  width: 50%;
  margin-bottom: 46px;
}
.top_sumi_meiten_wrap .top_sumi_meiten_box .heading_02_obi::before {
  display: none;
}
@media screen and (max-width: 768px) {
  .top_sumi_meiten_wrap .heading_02_obi {
    width: 100%;
    margin-bottom: 46px;
  }
}

/* .top_sumi_meiten_box */
.top_sumi_meiten_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  max-width: 549px;
}
.top_sumi_meiten_box a.block {
  height: auto;
}
.top_sumi_meiten_box .post_title {
  width: 48%;
  text-align: center;
  margin: 0 auto auto;
}
.top_sumi_meiten_box .publication_date {
  margin: 1em 0;
}
.top_sumi_meiten_box .img_box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 313px;
  aspect-ratio: 1 / 1.278;
  margin: 0 auto 15px;
  transition: .3s;
}
.top_sumi_meiten_box .img_box img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border: 1px solid #000;
}
.top_sumi_meiten_box .publication_date {
  margin-bottom: 15px;
}
.top_sumi_box {
  border-right: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  .top_sumi_meiten_box .img_box {
    width: 100%;
  }
  .top_sumi_meiten_box .img_box img {
    width: 20vw;
    height: auto;
  }
}
@media screen and (max-width: 480px) {
  .top_sumi_meiten_wrap {
    display: block;
    padding: 56px 0 75px;
  }
  .top_sumi_meiten_wrap::before {
    display: none;
  }

  .top_sumi_meiten_box::before {
    position: absolute;
    z-index: -1;
    content: "";
    display: block;
    width: 100%;
    height: 96px;
    background: #9f9f9d;
  }
  .top_sumi_meiten_box {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .top_sumi_meiten_box .publication_date {
    margin-bottom: 13px;
  }
  .top_sumi_box {
    margin: 0 auto 72px;
  }
  .top_sumi_meiten_box .img_box img {
    width: 50vw;
    height: auto;
  }
}

/* .featured_box */
.featured_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.featured_box a {
  display: flex;
  justify-content: center;
  min-height: 40px;
  height: auto;
  margin: 0 13.5px 24px;
  padding: .25em 1.25em;
  border: 1px solid #9F9F9D;
  border-radius: 20px;
  color: #fff;
  background: #9F9F9D;
  font-size: 20px;
  line-height: 29px;
  align-items: center;
  letter-spacing: 1px;
  font-feature-settings: "palt";
}
.featured_box a:hover {
  color: #9F9F9D;
  background: #fff;
  opacity: 1;
}
.featured_box li:nth-of-type(n+7) {
  display: none;
}　
@media screen and (max-width: 768px) {
  .featured_box {
    width: calc(100% + 10px);
    max-width: 100%;
    margin-left: -5px;
  }
  .featured_box a {
    margin: 0 5px 18px;
    padding: .225em .75em;
  }
}
@media screen and (max-width: 320px) {
  .featured_box a {
    padding: .25em 1.25em;
    font-size: 18px;
    line-height: 27px;
  }
}

/* .topics_post */
.topics_post .post_title {
  font-size: 22px;
}
.topics_post ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 53px;
}
.topics_post li {
  flex-shrink: 0;
  width: calc(25% - 21px);
  max-width: 250px;
  margin-right: 28px;
  text-align: left;
}
.topics_post li:nth-of-type(4n) {
  margin-right: 0;
}
.topics_post a {
  display: block;
  height: 100%;
}
.topics_post a:hover {
  opacity: 1;
}
.topics_post a:hover .topics_txt * {
  color: #9f9f9d;
}
.topics_post a:hover .img_box,
.topics_post a:hover .publication {
  opacity: .7;
}
.topics_post .img_box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 250px;
  margin: 0 auto;
  overflow: hidden;
  transition: .3s;
}
.topics_post .img_box img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.topics_post .cat_name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto 21px;
  height: 40px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  transition: .3s;
}

.topics_post .post_date {
  color: #064583;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .topics_post ul {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 22px;
  }
  .topics_post li {
    width: calc(50% - 13px);
    margin-bottom: 23px;
    margin-right: 0;
  }
  .topics_post li:nth-of-type(2n) {
    margin-right: 0;
  }
  .topics_post .img_box {
    height: 150px;
  }
  .topics_post .cat_name {
    margin: 0 auto 8px;
  }
  .topics_post .post_date {
    margin-bottom: 4px;
  }
}

/* .top_twitter */
.top_twitter_box {
  display: flex;
  justify-content: center;
  gap: 0 93px;
}
.top_twitter_box .heading_03 {
  margin-bottom: 11px;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  letter-spacing: normal;
}
@media screen and (max-width: 1080px) {
  .top_twitter_box {
    gap: 0 8%;
  }
  .top_twitter_box .twitter-timeline {
    display: flex;
    justify-content: center;
    width: 340px!important;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .top_twitter_box {
    display: block;
  }
  .top_twitter_01,
  .top_twitter_02 {
    margin: 0 auto 40px;
  }
  .top_twitter_box .twitter-timeline {
    display: flex;
    justify-content: center;
    width: 100%!important;
    padding: 0 5%;
  }
  .top_twitter_box .twitter-timeline iframe {
    margin: 0 auto 40px;
  }
  .top_twitter_box .heading_03 {
    margin-bottom: 22px;
  }
}

/* .youtube */
.top_youtube .heading_02 {
  display: flex;
  flex-direction: row;
  letter-spacing: .1px;
}
.top_youtube .heading_02 .ls_100 {
  margin-left: .25em;
}
.youtube_post ul {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 2.1481%;
  margin: 0 auto 53px;
}
.youtube_post li {
  flex-shrink: 0;
  width: 22.8519%;
  max-width: 250px;
  text-align: left;
}
.youtube_post .img_box {
  display: flex;
  align-items: center;
  width: 100%;
  height: 144px;
  margin-bottom: 10px;
  overflow: hidden;
}
.youtube_post .img_box img.noimage {
  display: block;
  max-width: 60%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .youtube_post ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin-bottom: 0;
  }
  .youtube_post li {
    width: 100%;
    margin: 0 auto 50px;
    text-align: center;
  }
  .youtube_post li:nth-of-type(4n) {
    margin-right: auto;
  }
  .youtube_post .img_box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
  }
}

/* .infomation */
.infomation_box {
  display: flex;
  align-items: flex-end;
}
.infomation_box .infomation_item {
  width: 50%;
  flex-basis: 50%;
}
.infomation_box .infomation_item .heading_02 {
  margin-bottom: 15px;
  color: #000;
  font-size: 18px;
  letter-spacing: .3em;
  line-height: 27px;
}
.infomation_box .infomation_item.partner .btn_link {
  margin-top: 1.5em;
}
@media screen and (max-width: 768px) {
  .infomation_box {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .infomation_box .infomation_item {
    width: 100%;
    flex-basis: 100%;
  }
  .infomation_box .infomation_item {
    margin: 0 auto 56px;
  }
  .infomation_box .infomation_item .heading_02 {
    margin-bottom: 15px;
  }
  .infomation_box .infomation_item.partner .btn_link {
    margin-top: 1.5em;
  }
}
@media screen and (max-width: 320px) {
  .infomation_box .infomation_item .heading_02 {
    font-size: 16px;
    line-height: 25px;
  }
}

/* .footer */
.footer {
  min-height: 280px;
  padding-top: 30px;
  background: #656565;
  color: #fff;
}
.footer a {
  color: #fff;
}

.footer .inner {
  position: relative;
}

/* .pagetop */
.pagetop_wrap {
  position: relative;
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
}
.pagetop {
  display: none;
  position: absolute;
  right: 45px;
  z-index: 99;
  overflow: hidden;
}
.pagetop a {
  position: fixed;
  bottom: 279px;
  display: block;
  width: 45px;
  height: 45px;
  text-align: center;
  background-image: url(../images/common/pagetop.svg);
  background-repeat: no-repeat;
}

/* .footer_link */
.footer_link_box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: #fff;
}
.footer_link_box li {
  font-size: 19px;
  line-height: 30px;
}
.footer_link_box .li_lower {
  font-size: 16px;
  line-height: 30px;
}
.footer_link_box a {
  color: #fff;
}

.underline a {
  display: inline-block;
  border-bottom: 1px solid #fff;
}
.underline_nolink {
  border-bottom: 1px solid #fff;
}

.mb_oneline {
  margin-bottom: 1em;  
}

@media screen and (max-width: 1000px) {
  .footer_link_box li {
    font-size: 1.9vw;
    line-height: 3vw;
  }
  .footer_link_box .li_lower {
    font-size: 1.6vw;
    line-height: 3vw;
  }
}

/* .footer_credit */
.footer_credit {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-block;
  text-align: right;
}
.footer_credit .sitename {
  display: inline-block;
  margin-bottom: 4px;
}
.footer_credit .sitename .txt {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: .01em;
}

.footer_credit .copyright {
  display: block;
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .footer {
    min-height: 122px;
    padding-top: 30px;
  }
  .pagetop_wrap {
    max-width: 100%;
  }
  .pagetop {
    right: 45px;
  }
  .pagetop a {
    bottom: 121px;
  }
  .footer_link_box {
    display: none;
  }
  .footer_link_item {
    font-size: 19px;
    line-height: 30px;
  }
  .footer_credit {
    position: relative;
    right: unset;
    left: 50%;
    transform: translate(-50%,0);
    display: block;
    text-align: center;
  }
  .footer_credit .sitename {
    display: block;
    margin: 0 auto 10px;
  }
  .footer_credit .sitename .txt {
    letter-spacing: .1em;
  }
  .footer_credit .copyright {
    line-height: 1.5;
  }
}

/* ====================================================================
.lowerpage style
====================================================================== */
/* --------------------------------
.page common style
------------------------------------- */
.entry_content {
  padding: 130px 0 40px;
}

.entry_title:not(.entry_title_noobi) {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  margin: 0 auto 27px;
  font-weight: 500;
  font-size: 25px;
  letter-spacing: 0.3em;
  text-align: center;
  color: #fff;
}
.entry_title:not(.entry_title_noobi)::before {
  position: absolute;
  left: 50%;
  transform: translate(-50%,0);
  z-index: -1;
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  margin: 0 auto;
  background: #9F9F9D;
}
.title {
  width: 100%;
  margin: 0 auto;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: .3em;
  text-align: center;
}
.title_obi {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-shrink: 0;
  width: 100%;
  position: relative;
  left: 50%;
  transform: translate(-50%,0);
  width: 100vw;
  height: 69px;
  color: #fff;
}
.title_obi::before {
  position: absolute;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  background: #9f9f9d;
}
.main_single_etc .title {
  margin: 0 auto 34px;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: .3em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .entry_content {
    padding: 0 0 40px;
  }
}

/* --------------------------------
.list_wrap common style
------------------------------------- */
.list_wrap .newissue_post li {
  margin-bottom: 70px;
}
.list_wrap .topics_post li {
  margin-bottom: 61px;
}
@media screen and (max-width: 768px) {
  .list_wrap .newissue_post li {
    margin-bottom: 28px;
    margin-right: 0;
  }
  .list_wrap .topics_post li {
    margin-bottom: 22px;
  }
}

/* --------------------------------
.list_wrap .archive style
------------------------------------- */
/* .entry_sumi / .entry_meiten */
.entry_sumi .list_wrap,
.entry_meiten .list_wrap {
  margin: 80px auto 0;
}
@media screen and (max-width: 768px) {
  .entry_sumi .list_wrap,
  .entry_meiten .list_wrap {
    margin: 50px auto 0;
  }
}

/* --------------------------------
.single common style
------------------------------------- */
.single .newissue_post ul {
  margin-bottom: 0;
}

/* --------------------------------
.single .article style
------------------------------------- */
.article {
  padding-bottom: 50px;
}

/* .post_entry_title_box */
.post_entry_title_box {
  margin: 20px 0;
  text-align: left;
  line-height: 35px;
  letter-spacing: normal;
}
.post_entry_title_box .name {
  font-size: 20px;
  font-weight: 500;
  line-height: 35px;
  text-align: left;
  letter-spacing: normal;
}

/* .post_entry_title */
.post_entry_title {
  margin: 0;
  font-size: 28px;
  font-weight: 500;
  text-align: left;
  line-height: 35px;
  letter-spacing: normal;
}
.entry_single_topics .post_entry_title {
  margin: 1em 0;
}
@media screen and (max-width: 768px) {
  .entry_single_topics .post_entry_title {
    margin: 1em 0;
  }
  .post_entry_title .title {
    margin-bottom: 0;
  }
}

/* .post_box */
.post_box {
  padding-bottom: 90px;
}

.post_box h1 {
  font-size: 28px;
  font-weight: 500;
  text-align: left;
  line-height: 35px;
  letter-spacing: normal;
}
.post_box h2 {
  margin-bottom: 1em;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 36px;
  text-align: left;
}
.post_box h3 {
  margin-bottom: 1em;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 32px;
  text-align: left;
}
.post_box p {
  margin-bottom: 1em;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

.post_box .img_box {
  position: relative;
  width: 100%;
  max-width: 550px;
  margin: 0 auto 20px;
  text-align: center;
  overflow: hidden;
}
.post_box .img_box img {
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .post_box {
    padding-bottom: 50px;
  }
  .post_box .img_box {
    max-width: 480px;
  }
}

/* slick .slider */
.slider_box {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto 42px;
}
.slider {
  margin: 30px auto 36px;
}
.slider .slick-img {
  position: relative;
  height: 550px;
  max-height: 550px;
  margin: 0 auto;
}
.slider .slick-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border: 1px solid #727171;
}

/* arrows */
.slider .slick-prev {
  left: 0;
  background: url(../images/common/ico_slide_lt.svg) no-repeat;
  background-size: contain;
}
.slider .slick-next {
  right: 0;
  background: url(../images/common/ico_slide_rt.svg) no-repeat;
  background-size: contain;
}
.slider .slick-prev,
.slider .slick-next {
  width: 20px;
  height: 53px;
  z-index: 99;
}
.slider .slick-prev::before,
.slider .slick-next::before {
  content: "";
  font-size: 0;
  line-height: 0;
}

/* slick .thumbnail */
.thumbnail {
  height: 88px;
  margin: 0 auto;
  overflow: hidden;
}
.thumbnail .slick-track {
  transform: unset !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.thumbnail .slick-img {
  position: relative;
  width: auto!important;
  height: 88px;
  margin-right: 35px;
}
.thumbnail .slick-img:last-of-type {
  margin-right: 0;
}
.thumbnail .slick-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border: 1px solid #ddd;
}
@media screen and (max-width: 768px) {
  .slider_box {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .slider {
    margin: 20px auto 13px;
  }
  .slider .slick-img {
    width: 300px;
    height: 432px;
    max-height: 432px;
  }
  .slider .slick-img img {
    width: 300px;
  }

  /* arrows */
  .slider .slick-prev,
  .slider .slick-next {
    width: 11px;
    height: 27px;
  }
  .slider .slick-prev {
    left: -10px;
    background: url(../images/common/ico_slide_lt_sp.svg) no-repeat;
    background-size: contain;
  }
  .slider .slick-next {
    right: -10px;
    background: url(../images/common/ico_slide_rt_sp.svg) no-repeat;
    background-size: contain;
  }

  /* slick .thumbnail */
  .thumbnail {
    display: none;
  }
}

/* .share_box */
.share_box {
  margin-bottom: 85px;
}
.share_box ul {
  display: flex;
  width: 325px;
  justify-content: space-between;
  margin-left: auto;
}
.share_box li {
  flex-shrink: 0;
  width: calc(33.3333% - 3px);
  max-width: 105px;
  text-align: center;
}

/* .type_list */
.type_list {
  display: flex;
  margin-left: -7.5px;
  margin-bottom: 28px;
}
.type_list ul {
  display: flex;
  flex-wrap: wrap;
}
.type_list ul li a {
  display: inline-flex;
  flex: 1 1 auto;
  justify-content: center;
  min-height: 40px;
  height: auto;
  margin: 0 7.5px 24px;
  padding: 0 1.4em;
  border-radius: 20px;
  font-size: 20px;
  line-height: 29px;
  align-items: center;
  letter-spacing: 1px;
  font-feature-settings: "palt";
}
.type_list .category a {
  min-width: 150px;
  color: #fff;
  background: #000;
  border: 1px solid #000;
}
.type_list .category a:hover {
  color: #000;
  background: #fff;
  opacity: 1;
}
.type_list .tag a {
  color: #9f9f9d;
  background: #fff;
  border: 1px solid #9f9f9d;
}
.type_list .tag a:hover {
  color: #fff;
  background: #9f9f9d;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .share_box {
    margin-bottom: 36px;
  }
  .share_box ul {
    display: flex;
    width: 100%;
    max-width: 325px;
    justify-content: space-between;
    margin: 0 auto;
  }
  .share_box li {
    flex-shrink: 0;
    width: calc(33.3333% - 3px);
    max-width: 105px;
    text-align: center;
  }
  
  /* .type_list */
  .type_list ul {
    flex-wrap: wrap;
    margin-left: -7.5px;
    margin-bottom: 35px;
  }
  .type_list ul li {
    margin-bottom: 13px;
  }
  .type_list ul li a {
    min-height: 40px;
    height: auto;
    margin: 0 6px;
    padding: 0 1em;
  }
}

/* .content_wrap */
.content_wrap {
  margin: 0 auto;
}
.content_wrap .content {
  display: flex;
  align-items: flex-start;
}
.content_wrap .heading_02 {
  margin-bottom: 1em;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 36px;
  text-align: left;
}

/* .content_wrap .form_info */
.content_wrap .form_info {
  max-width: 750px;
  margin: 0 auto;
}

/* .content .content_box */
.content .content_box {
  width: 65.3136%;
  max-width: 708px;
  margin-right: 4.6125%;
}
.content .content_box h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}
.content .content_box p {
  margin-bottom: 1em;
}
.content .content_box .text {
  line-height: 1.5;
}

/* .content .detail_box  */
.content .detail_box {
  flex-shrink: 0;
  width: 327px;
}

/* .book_information */
.book_information {
  margin-bottom: 20px;
  padding: 17px 15px;
  font-size: 18px;
  font-weight: 400;
  line-height: 38px;
  border: 1px solid #707070;
}
.isbn {
  display: block;
}
@media screen and (max-width: 768px) {
  .content_wrap {
    margin: 0 auto;
    padding-bottom: 13px;
  }
  .content_wrap  .content {
    display: block;
  }
  .content_wrap .heading_03 {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 36px;
    text-align: left;
  }
  
  /* .content .content_box */
  .content .content_box {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 50px;
  }

  .content .detail_box {
    width: 87.2%;
    max-width: 327px;
    margin: 0 auto;
  }

  /* .book_information */
  .book_information {
    margin-bottom: 50px;
  }
}

/* .purchase_btn */
.purchase_btn {
  width: 100%;
  font-size: 18px;
  font-weight: bold;
}
.purchase_btn li {
  margin-bottom: 17px;
  overflow: hidden;
}
.purchase_btn li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 46px;
  border-radius: 5px;
  color: #fff;
}
.purchase_btn li a:hover {
  opacity: .5;
}
@media screen and (max-width: 768px) {
  .purchase_btn li a:hover {
    opacity: 1;
  }
}

/* .purchase_btn .amazon */
.purchase_btn .amazon a {
  background: #000;  
}
.purchase_btn .amazon img {
  width: 93px;
  margin-right: 8px;
}

/* .purchase_btn .rakuten */
.purchase_btn .rakuten a {
  background:  #B30100;
}
.purchase_btn .rakuten img {
  width: 104px;
  margin-right: 8px;
}

/* .purchase_btn .fujisan */
.purchase_btn .fujisan a {
  background: #6451B1;
}
.purchase_btn .fujisan img {
  width: 104px;
  margin-right: 8px;
}

/* .purchase_btn .order */
.purchase_btn .order a {
  background: #2764AF;
  font-size: 20px;
}

/* .purchase_btn .sumi */
.purchase_btn .sumi a {
  background: #194274;
  font-size: 20px;
}

/* .purchase_meiten_btn */
.purchase_meiten_btn {
  width: 100%;
  max-width: 327px;
  margin: 1.5em 0 1em;
  font-size: 18px;
  font-weight: bold;
}
.purchase_meiten_btn li {
  margin-bottom: 17px;
  overflow: hidden;
}
.purchase_meiten_btn li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 46px;
  color: #fff;
}
.purchase_meiten_btn .meiten a {
  background: #fff;
  border: 2px solid #F0A803;
  border-radius: 24px;
  color: #F0A803;
  font-size: 20px;
  line-height: normal;
}
.purchase_meiten_btn .meiten a:hover {
  opacity: 1;
  background: #F0A803;
  border: 1px solid #F0A803;
  color: #fff;
}
.purchase_meiten_btn .meiten.artaccess a .txt::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 22px;
  margin-left: 8px;
  background-image: url(../images/common/ico_move_01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.purchase_meiten_btn .meiten.artaccess a:hover .txt::after {
  background-image: url(../images/common/ico_move_02.svg);
}

@media screen and (max-width: 768px) {
  .purchase_meiten_btn {
    max-width: 87.2%;
    margin: 1.5em auto 1em;
  }
}

/* --------------------------------
.single common style
------------------------------------- */
/* --------------------------------
.page-company style
------------------------------------- */
.entry_company_set .content_wrap {
  margin: 0 auto;
}

/* .company_nav */
.company_nav {
  position: relative;
}
.company_nav::before {
  position: absolute;
  left: 50%;
  transform: translate(-50%,0);
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #000;
  color: #fff;
}
.company_nav ul {
  display: flex;
  align-items: center;
  padding: 6px 0;
}
.company_nav li {
  position: relative;
  flex-basis: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
}
.company_nav li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1px;
  height: 34px;
  background: #fff;
}
.company_nav li:last-of-type::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 1px;
  height: 34px;
  background: #fff;
}
.company_nav a {
  position: relative;
  height: 100%;
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 34px;
}
.company_nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: all .3s ease;
}
.company_nav a:hover {
  opacity: 1;
}
.company_nav a:hover::after {
  width: 100%;
}

/* .company_box */
.company_box {
  margin: 0 0 55px;
}

.entry_corporate_philosophy .company_box {
  margin: 55px 0 55px;
}

.company_box .heading_02 {
  margin: 0 auto 34px;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: .3em;
  text-align: center;
}

/* .company_box .dl_box */
.company_box .dl_box {
  position: relative;
  max-width: 750px;
  margin: 20px auto 1em;
}
.company_box .dl_box::before {
  position: absolute;
  top: 2em;
  left: 0;
  z-index: -1;
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 2em);
  background: repeating-linear-gradient(180deg, rgba(245, 245, 245, 1), rgba(245, 245, 245, 1) 2em, rgba(255, 255, 255, 1) 0, rgba(255, 255, 255, 1) 4em);
  background-size: 100% 4em;
  font-size: 1em;
  line-height: 2em;
}
.company_box .dl_box::after {
  position: absolute;
  top: 2em;
  left: 0;
  z-index: -1;
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 1em);
  background: repeating-linear-gradient(180deg, rgba(206, 206, 206, 1), rgba(206, 206, 206, 1) 1px, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 2em);
  background-size: 100% 2em;
  font-size: 1em;
  line-height: 2em;
}
.company_box dl {
  width: 100%;
  display: flex;
  font-size: 1em;
  line-height: 2em;
}
.company_box dl.access {
  background: #fff;
}

.company_box dl,
.company_box dt,
.company_box dd,
.company_box .dd_txt {
  font-weight: 400;
  font-size: 1em;
  line-height: 2em;
}
.company_box dt {
  flex-shrink: 0;
  flex-basis: 80px;
}
.company_box dd {
  width: 100%;
}

.company_box.profile dl:nth-last-child(3) {
  padding-bottom: 2px;
}
.company_box.profile dl:last-of-type {
  background-image: none;
}
.company_box.history dl:last-of-type {
  padding-bottom: 2px;
}

/* .company_box .map */
.company_box .map {
  max-width: 750px;
  margin: 0 auto;
}
.company_box .map iframe {
  width: 100%;
  margin-bottom: 8px;
}
.company_box .map .txtlink {
  display: flex;
  justify-content: flex-end;
}
.company_box .map .txtlink a {
  position: relative;
  color: #9f9f9d;
}
.company_box .map .txtlink a::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #9f9f9d;
  transition: .25s;
}
.company_box .map .txtlink a:hover {
  opacity: 1;
}
.company_box .map .txtlink a:hover::after {
  opacity: 0;
}
.company_box .txt_box {
  margin: 1em auto;
}
@media screen and (max-width: 767px) {
  .company_nav {
    margin-bottom: 0;
  }
  .company_nav ul {
    flex-wrap: wrap;
  }
  .company_nav li {
    position: relative;
    height: 34px;
    margin: 5.5px 0;
  }
  .company_nav li:nth-of-type(3)::after,
  .company_nav li:last-of-type::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 1px;
    height: 34px;
    background: #9f9f9d;
  }
  .company_nav li:first-of-type,
  .company_nav li:nth-of-type(2),
  .company_nav li:nth-of-type(3) {
    flex-basis: 33.3333%;
    width: 33.3333%;
  }
  .company_nav li:nth-of-type(4),
  .company_nav li:last-of-type{
    flex-basis: 50%;
    width: 50%;
  }

  .company_nav a::after {
    display: none;
  }
  
  /* .company_box */
  .company_box .access,
  .company_box .map {
    display: none;
  }
}

/* --------------------------------
.page-message style
------------------------------------- */
.company_box.message .txt {
  text-indent: 1em;
}

.company_box.message ul li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 16px;
  line-height: 28px;
}
.company_box.message ul li::before {
  content: "・";
}

/* --------------------------------
.page-privacy style
------------------------------------- */
.entry_privacy .heading_02 {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 28px;
}
.entry_privacy .heading_03 {
  margin-bottom: 0;
  color: #2764AF;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  letter-spacing: normal;
  text-indent: -2em;
  padding-left: 2em;
}
.entry_privacy .txt_box {
  margin: 2em auto;
}
.entry_privacy .txt {
  font-size: 16px;
  line-height: 28px;
}
.entry_privacy .indent_block {
  padding-left: 2em;
}
.entry_privacy .one_line {
  margin-bottom: 1.5em;
}

/* --------------------------------
.page-tokushoho style
------------------------------------- */
.entry_tokushoho .heading_02 {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 28px;
}
.entry_tokushoho .heading_03 {
  margin-bottom: 0;
  color: #2764AF;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  letter-spacing: normal;
  text-indent: -2em;
  padding-left: 2em;
}
.entry_tokushoho .txt_box {
  margin: 2em auto;
}
.entry_tokushoho .txt {
  font-size: 16px;
  line-height: 28px;
}
.entry_tokushoho .indent_block {
  padding-left: 2em;
}
.entry_tokushoho .one_line {
  margin-bottom: 1.5em;
}

/* --------------------------------
.page-selfpublishing style
------------------------------------- */
.entry_selfpublishing .lead {
  margin-bottom: 2em;
  color: #2764AF;
  font-size: 16px;
  font-weight: bold;
  line-height: 28px;
}
.entry_selfpublishing .txt,
.selfpublishing_list li {
  font-size: 16px;
  line-height: 28px;
}
.selfpublishing_list li {
  text-indent: -1em;
  padding-left: 1em;
}
.selfpublishing_list {
  margin-bottom: 2em;
}
.selfpublishing_list li::before {
  content: "・"; 
}
.entry_selfpublishing .info_txt {
  font-weight: bold;
}

/* --------------------------------
.page-auction style
------------------------------------- */
.auction_box {
  margin: 2em auto;
}
.auction_box .heading_02 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: bold;
  line-height: 27px;
}
.auction_box .heading_02 a {
  color: #2764AF;
}

.auction_box .txt_box {
  margin-bottom: 2em;
}
.auction_box .txt {
  font-size: 18px;
  line-height: 27px;
}
.auction_box dl {
  display: flex;
  flex-wrap: wrap;
  font-size: 18px;
  line-height: 27px;
}
.auction_box dt {
  width: 110px;
  flex-basis: 14.6666%;
  flex-shrink: 0;
}
.auction_box dd {
  width: 640px;
  flex-basis: 85.3333%;
}
@media screen and (max-width: 767px) {
  .auction_box dt {
    width: 33.7423%;
    flex-basis: 33.7423%;
    flex-shrink: 0;
  }
  .auction_box dd {
    width: 66.2577%;
    flex-basis: 66.2577%;
  }
}

/* --------------------------------
.page-bookstore style
------------------------------------- */
.entry_bookstore .heading_02 {
  margin: 0 auto 15px;
  font-size: 25px;
  font-weight: 500;
  text-align: center;
  letter-spacing: .3em;
  line-height: 37px;
}
.entry_bookstore .post_title {
  margin: 0;
  padding: 0 7px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: normal;
}

/* .bookstore_top_list */
.bookstore_top_list {
  margin: 55px auto 79px;
}
.bookstore_top_list ul {
  display: flex;
}
.bookstore_top_list li {
  flex-basis: 260px;
  width: 260px;
  min-height: 51px;
  margin-right: 15px;
}
.bookstore_top_list li:last-of-type {
  margin-right: 0;
}
.bookstore_top_list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 .5em;
  color: #000;
  font-size: 18px;
  text-align: center;
  border: 2px solid #000;
  border-radius: 5px;
}
.bookstore_top_list a:hover {
  color: #fff;
  background: #000;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .bookstore_top_list a {
    padding: 13px .5em;
  }
}

/* .bookstore_kakuzai_wrap */
.bookstore_kakuzai_wrap {
  margin: 0 auto 55px;
  border-bottom: 1px solid #000;
}
.bookstore_kakuzai_wrap:last-child {
  border-bottom: 0;
}

/* .bookstore_kakuzai common */
.bookstore_kakuzai {
  display: flex;
  align-items: center;
  min-height: 76px;
  border-bottom: 1px solid #000;
}
.bookstore_kakuzai:last-child {
  margin-bottom: 92px;
  border-bottom: 0;
}
.bookstore_kakuzai p {
  font-size: 18px;
  line-height: 27px;
  text-align: left;
}
.bookstore_kakuzai .date {
  flex-shrink: 0;
  width: 108px;
}
.bookstore_kakuzai .publication {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 73px;
  height: 34px;
  color: #000;
  background: #E2E2E1;
}
.bookstore_kakuzai .title {
  margin: 0;
  padding: 0;
  text-align: left;
  letter-spacing: normal;
  line-height: 37px;
}

/* .bookstore_box .bookstore_type */
.bookstore_type {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 328px;
  margin-left: auto;
}
.bookstore_type li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 35px;
  margin-right: 14px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.bookstore_type li.off {
  background: #818181;
}
.bookstore_type li:last-of-type {
  margin-right: 0;
}
.bookstore_type a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #000;
  color: #fff;
}
.bookstore_type a:hover {
  opacity: .5;
}
@media screen and (max-width: 767px) {
  .entry_bookstore .inner {
    width: 87.2%;
    max-width: 87.2%;
  }
  .entry_bookstore .heading_02 {
    margin: 0 auto 27px;
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    letter-spacing: .3em;
    line-height: 37px;
  }
  .entry_bookstore .bookstore_juhan .heading_02 {
    display: none;
  }
  .entry_bookstore .post_title {
    display: block;
    width: 100%;
    margin: 19px 0 17px;
    padding: 0;
  }
  
  /* .bookstore_top_list */
  .bookstore_top_list {
    margin: 55px auto;
  }
  .bookstore_top_list ul {
    display: block;
    align-items: center;
  }
  .bookstore_top_list li {
    flex-basis: 79.2682%;
    width: 79.2682%;
    max-width: 260px;
    margin: 0 auto;
    margin-right: auto;
    margin-bottom: 13px;
  }
  .bookstore_top_list li:last-of-type {
    margin-right: auto;
  }
  
  /* .bookstore_kakuzai_wrap */
  .bookstore_kakuzai_wrap {
    margin: 0 auto 32px;
  }
  .bookstore_kakuzai_wrap:last-child {
    border-bottom: 0;
  }
  
  /* .bookstore_kakuzai common */
  .bookstore_kakuzai {
    display: flex;
    flex-wrap: wrap;
    min-height: 76px;
    padding: 24px 0;
  }
  .bookstore_kakuzai:last-child {
    margin-bottom: 0;
    border-bottom: 0;
  }
  
  /* .bookstore_box .bookstore_type */
  .bookstore_type {
    width: 100%;
    max-width: 328px;
    margin: 0 auto;
  }
}

/* --------------------------------
.page-404 style
------------------------------------- */
.entry_page_error404 .entry_content {
  padding: 210px 0 70px;
}
.entry_page_error404 .txt_box {
  margin: 0 auto 75px;
  text-align: center;
}
.heading_404 {
  margin: 38px auto 44px;
  color: #2764AF;
}
.heading_404 .title {
  display: inline-block;
  width: 100%;
  margin: 0 auto;
  font-size: 150px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .02em;
}
.heading_404 .small {
  display: inline-block;
  width: 100%;
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
}
.entry_page_error404 .lead {
  display: inline-block;
  width: 100%;
  margin: 0 auto 18px;
  font-size: 25px;
  font-weight: 500;
}
.entry_page_error404 .txt {
  display: inline-block;
  width: 100%;
  margin: 0 auto 0;
  font-size: 18px;
  font-weight: 500;
}
.entry_page_error404 .btn_link_blue {
  width: 297px;
  height: 62px;
}
.entry_page_error404 .btn_link_blue a {
  background-image: url(../images/common/ico_btn_arrow_white.svg);
  background-repeat: no-repeat;
  background-position: center right 24px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: normal;
}

/* --------------------------------
.form_xxx common style / .entry_form_set
------------------------------------- */
.entry_form_set {
  padding: 130px 0 80px;
}
.entry_form_set .cf_wrap {
  margin: 50px auto;
}
.entry_form_set .lead {
  display: block;
  margin: 2em auto 34px;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .entry_form_set {
    padding: 0;
  }
}

.form_heading_02 {
  margin: 40px auto 28px;
  font-size: 25px;
  text-align: center;
  letter-spacing: .3em;
}

/* .form_flow_box */
.form_flow_heading_02 {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  line-height: 28px;
  letter-spacing: normal;
}
.form_flow_heading_03 {
  margin-bottom: 0;
  color: #2764AF;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  line-height: 28px;
  letter-spacing: normal;
}
.form_flow_box .txt {
  padding-left: 2.5em;
  line-height: 28px;
}
.form_flow_box .flx .txt {
  padding-left: 1em;
}

/* flow_copyright */
.flow_copyright {
  display: block;
  margin: 2em 0;
  text-align: right;
}

/* form_txt_box */
.form_txt_box {
  max-width: 750px;
  margin: 2em auto 1.75em;
}
.form_txt {
  line-height: 28px;
}

/* --------------------------------
.contact_form style
------------------------------------- */
/* contact_form */
.contact_form .inner {
  max-width: 750px;
  padding: 0;
}
.contact_form p {
  display: block;
  margin: 0 auto;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  text-align: center;
}

.contact_form dl {
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
}
.contact_form dt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-basis: 275px;
  flex-shrink: 0;
  height: 60px;
  margin-right: 10px;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}
.contact_form dd {
  flex-basis: 445px;
  height: 100%;
}

.contact_form dl.contact_message {
  display: flex;
  align-items: flex-start;
}
.contact_form dl.contact_message dt {
  align-items: flex-start;
  padding-top: 20px;
  padding-right: 0;
}

.contact_form span.wpcf7-form-control-wrap {
  width: 100%;
  height: 100%;
  z-index: 9;
}
.contact_form span.gender,
.contact_form span.age {
  height: unset;
}
@media screen and (max-width: 767px) {
  .contact_form dl.contact_message {
    display: block;
  }
  .contact_form dl.contact_message dt {
    display: block;
    width: 100%;
    height: 100%;
  }
}

/* .contact_form span.gender */
.contact_form span.gender.wpcf7-checkbox {
  display: flex;
}
.contact_form span.gender .wpcf7-list-item {
}
/* .contact_form span.age */
.contact_form span.age .wpcf7-list-item {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .contact_form span.gender.wpcf7-checkbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .contact_form span.gender .wpcf7-list-item {
    width: 50%;
  }
  /* .contact_form span.age */
  .contact_form span.age .wpcf7-list-item {
    width: 30%;
  }
}

/* .contact_form span.contact_keitai */
.contact_form .contact_keitai select {
  height: 60px;
  border: 1px solid #727171;
}
/* .contact_form span.contact_selectbox */
.contact_form .contact_selectbox dd {
  position: relative;
}
.contact_form .contact_selectbox dd::after {
  position: absolute;
  z-index: 99;
  right: 20px;
  top: 26px;
  content: "";
  display: block;
  width: 18px;
  height: 11px;
  background: url(../images/common/ico_dropdown.svg) no-repeat;
}
.contact_form .contact_selectbox select {
  height: 60px;
  border: 1px solid #727171;
}

/* .contact_enquete_box */
.contact_enquete_box {
  margin: 60px auto;
}
.contact_enquete_box p.lead {
  display: flex;
  align-items: center;
  margin: 0 auto 28px;
  font-size: 20px;
}
.contact_enquete_box dl.contact_gender {
  align-items: center;
}
.contact_enquete_box dl.contact_age {
  align-items: flex-start;
}
.contact_enquete_box dl.contact_age dt,
.contact_enquete_box dl.contact_age dd {
  height: auto;
}
.contact_enquete_box dl.contact_age span.wpcf7-list-item {
  margin-bottom: 1em;
}
.contact_enquete_box dl.contact_message dt,
.contact_enquete_box dl.contact_message dd {
  height: 98px;
}

.contact_enquete_box dl.contact_message textarea.wpcf7-form-control.wpcf7-textarea {
  height: 100%;
}

@media screen and (max-width: 767px) {
  .contact_enquete_box {
    margin: 50px auto;
  }
  .contact_enquete_box p.lead {
    display: block;
    margin: 0 auto 20px;
    text-align: left;
  }
  .contact_form .contact_enquete_box p.lead .optional {
    margin-top: 4px;
  }
  .contact_enquete_box dl.contact_gender {
    align-items: center;
    margin-bottom: 10px;
  }
  .contact_enquete_box dl.contact_gender dt {
    margin-bottom: 1em;
  }
  .contact_enquete_box dl.contact_gender span.wpcf7-list-item {
    margin-bottom: 1em;
  }
  .contact_enquete_box dl.contact_age {
    align-items: flex-start;
    margin-bottom: 0;
  }
  .contact_enquete_box dl.contact_age dt,
  .contact_enquete_box dl.contact_age dd {
    height: auto;
  }
  .contact_enquete_box dl.contact_age dd {
    margin-top: 1em;
  }
  .contact_enquete_box dl.contact_age span.wpcf7-list-item {
    margin-bottom: 1em;
    white-space: nowrap;
  }
  .contact_enquete_box dl.contact_message dt {
    height: 100%;
    margin-bottom: .75em;
  }
  .contact_enquete_box dl.contact_message dd {
    height: 139px;
  }  
  .contact_enquete_box dl.contact_message textarea.wpcf7-form-control.wpcf7-textarea {
    height: 100%;
  }
}

/* .contact_form.order .contact_form.nenkoform common */
.contact_form.order dt,
.contact_form.nenkoform dt {
  flex-basis: 227px;
  margin-right: 0;
  padding-right: 30px;
}
.contact_form.order dd,
.contact_form.nenkoform dd {
  display: flex;
  flex-basis: 526px;
}
@media screen and (max-width: 767px) {
  .contact_form.order dt,
  .contact_form.nenkoform dt {
    height: auto;
    flex-basis: 100%;
    margin-right: 0;
    padding-right: 0;
  }
  .contact_form.order dd,
  .contact_form.nenkoform dd {
    flex-basis: 100%;
    height: 100%;
  }
}

/* .contact_form.order */
.contact_form.order .contact_product dd >span.wpcf7-form-control-wrap:first-of-type {
  width: 423px;
  height: 60px;
  margin-right: 14px;
}
.contact_form.order .contact_product dd >span.wpcf7-form-control-wrap:nth-of-type(2) .wpcf7-not-valid-tip {
  position: absolute;
  right: -40px;
  width: 17em;
  text-align: right;
}
.contact_form.order .contact_product dd >span.wpcf7-form-control-wrap:nth-of-type(2) {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  text-align: center;
  outline: 0;
  margin-right: 10px;
}
.contact_form.order .contact_product .product_count {
  width: 100%;
  height: 100%;
  padding: .5em;
  text-align: center;
  border: 1px solid #727171;
}

.contact_form .contact_bank_transfer {
  align-items: center;
}
.contact_form .contact_product .txt {
  padding-top: 24px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .contact_form.order .contact_product dd >span.wpcf7-form-control-wrap:first-of-type {
    width: 100%;
    margin-right: 10px;
  }
  .contact_form.order .contact_product dd >span.wpcf7-form-control-wrap:nth-of-type(2) .wpcf7-not-valid-tip {
    position: absolute;
    right: -40px;
    width: 17em;
    text-align: right;
  }
  .contact_form .contact_bank_transfer dd {
    margin-top: 12px;
  }
  .contact_form .contact_product .txt {
    margin-left: 0;
    padding-top: 20px;
    font-size: 20px;
  }
}

/* .contact_form.nenkoform */
.contact_form.nenkoform input {
  font-size: 16px;
}
.contact_form.nenkoform .contact_period dd {
  align-items: center;
  font-size: 20px;
}
.contact_form.nenkoform .nenkoform_period_year,
.contact_form.nenkoform .nenkoform_period_monthly,
.contact_form.nenkoform .nenkoform_period_yearly {
  width: 80px;
  height: 60px;
  margin-right: 7px;
}
.contact_form.nenkoform .period_year,
.contact_form.nenkoform .period_monthly,
.contact_form.nenkoform .period_yearly {
  display: inline-block;
  width: 78px;
  height: 60px;
  padding: .5em;
  text-align: center;
  border: 1px solid #727171;
}
.contact_form.nenkoform .nenkoform_period_monthly {
  margin-right: 22px;
  margin-left: 15px;
}
.contact_form.nenkoform .nenkoform_period_yearly {
  margin-left: 10px;
  margin-right: 18px;
}
.nenkoform_period_year .wpcf7-not-valid-tip,
.nenkoform_period_monthly .wpcf7-not-valid-tip,
.nenkoform_period_yearly .wpcf7-not-valid-tip {
  width: 9em;
}

.contact_form.nenkoform .contact_bank_transfer {
  align-items: center;
}

@media screen and (max-width: 767px) {
  .contact_form.nenkoform .contact_period dd {
    flex-wrap: wrap;
    align-items: center;
    font-size: 20px;
  }
  .contact_form.nenkoform .nenkoform_period_year,
  .contact_form.nenkoform .nenkoform_period_monthly,
  .contact_form.nenkoform .nenkoform_period_yearly {
    width: 80px;
    height: 60px;
    margin-bottom: 10px;
  }
  .contact_form.nenkoform .period_year,
  .contact_form.nenkoform .period_monthly,
  .contact_form.nenkoform .period_yearly {
    width: 100%;
    height: 100%;
    padding: .5em;
    text-align: center;
    border: 1px solid #727171;
  }
  .contact_form.nenkoform .nenkoform_period_year {
    margin-right: 4px;
  }
  .contact_form.nenkoform .nenkoform_period_monthly {
    margin-left: 4px;
    margin-right: 4px;
  }
  .contact_form.nenkoform .nenkoform_period_yearly {
    margin-left: 0;
    margin-right: 4px;
  }
  .nenkoform_period_year .wpcf7-not-valid-tip,
  .nenkoform_period_monthly .wpcf7-not-valid-tip,
  .nenkoform_period_yearly .wpcf7-not-valid-tip {
    width: 9em;
  }
  .contact_form.nenkoform .contact_bank_transfer {
    align-items: center;
  }
}

/* .optional .required */
.contact_form .optional {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background-color: #000;
}
.contact_form .required {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background-color: #E21412;
}

/* radio checkbox */
.contact_form .wpcf7-checkbox {
  display: block;
  margin-left: -9px;
}
.contact_form span.wpcf7-list-item {
  position: relative;
  margin: 0;
}
.contact_form .wpcf7-list-item-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 20px;
}
.contact_form input[type="radio"],
.contact_form input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.contact_form .wpcf7-list-item-label::before {
  content: '';
  border: 1px solid #727171;
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  margin: 0 9px;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
}
.contact_form .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  display: none;
  left: 18px;
  top: 0;
  width: 12px;
  height: 20px;
  border: 2px solid #FFF;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.contact_form input:checked + .wpcf7-list-item-label::before {
  background-color: #0070bd;
  border: 1px solid #0070bd;
  transition: .25s;
}
.contact_form input:checked + .wpcf7-list-item-label::after {
  display: block;
  opacity: 1;
}

/* .previous_btn */
.previous_btn {
  position: relative;
  width: 297px;
  height: 62px;
  margin: 22px auto;
}
.previous_btn::after {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translate(0,-50%);
  content: "";
  display: inline-block;
  width: 8px;
  height: 13px;
  margin-right: 10px;
  background-image: url(../images/common/ico_btn_arrow_ashgray.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
/* .submit_btn */
.submit_btn {
  position: relative;
  width: 297px;
  height: 62px;
  margin: 22px auto;
}
.submit_btn::after {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translate(0,-50%);
  content: "";
  display: inline-block;
  width: 8px;
  height: 13px;
  margin-right: 10px;
  background-image: url(../images/common/ico_btn_arrow_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
/* .btn_box */
.btn_box {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.btn_box .previous_btn,
.btn_box .submit_btn {
  margin: 0;
}
.btn_box .previous_btn {
  margin-right: 32px;
}
@media screen and (max-width: 767px) {
  .btn_box {
    display: block;
  }
  .btn_box .previous_btn,
  .btn_box .submit_btn {
    margin: 0 auto 1.25em;
  }
  .btn_box .previous_btn {
    margin-right: auto;
  }
}

/* .wpcf7 input[type="button"] */
.wpcf7 input[type="button"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  color: #9f9f9d;
  background-color: #fff;
  border: 3px solid #9f9f9d;
  border-radius: 5px;
  transition: .25s;
  letter-spacing: .25em;
}
.wpcf7 input[type="submit"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background-color: #9f9f9d;
  border-radius: 5px;
  transition: .25s;
  letter-spacing: .25em;
}
.wpcf7 input[type="button"]:hover,
.wpcf7 input[type="submit"]:hover {
  opacity: .7;
}


@media screen and (max-width: 768px) {
  .contact_form {
    max-width: 100%;
    margin: 21px auto;
  }
  .contact_form dl {
    flex-basis: 100%;
    display: block;
    width: 100%;
    margin-bottom: 30px;
  }
  .contact_form dt {
    flex-basis: 100%;
    display: block;
    width: 100%;
    margin-right: 0;
  }
  .contact_form dd {
    flex-basis: 100%;
    display: block;
    width: 100%;
    height: 60px;
  }
  .contact_form .optional {
    margin-top: 12px;
  }
  .contact_form .required {
    margin-top: 12px;
  }
  .contact_form .contact_message {
    margin: 0 auto 10px;
  }
  .contact_form .contact_message dt {
    padding-top: 0;
  }
  .contact_form .contact_message dd {
    height: 259px;
  }
  .submit_btn {
    margin: 12px auto;
  }
}

::placeholder {
  font-size: 16px;
  font-weight: 400;
  color: #ACACAC;
}
::-ms-input-placeholder {
  font-size: 16px;
  font-weight: 400;
  color: #ACACAC;
}
:-ms-input-placeholder {
  font-size: 16px;
  font-weight: 400;
  color: #ACACAC;
}
@media screen and (max-width: 768px) {
  ::placeholder {
    font-size: 17px;
    font-weight: 500;
    color: #A2A8AC;
  }
  ::-ms-input-placeholder {
    font-size: 17px;
    font-weight: 500;
    color: #A2A8AC;
  }
  :-ms-input-placeholder {
    font-size: 17px;
    font-weight: 500;
    color: #A2A8AC;
  }
}

/* wpcf7 */
.wpcf7 input.wpcf7-form-control.wpcf7-text,
.wpcf7 textarea.wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  height: 100%;
  padding: 15px 15px;
  line-height: 1.25;
  border: 1px solid #727171;
  outline: 0;
}
.wpcf7 textarea.wpcf7-form-control.wpcf7-textarea {
  height: 260px;
  padding: 23px 15px;
  border-radius: 0;
}

.wpcf7 form .wpcf7-response-output {
  width: 60%;
  margin: 0 auto;
  padding: 15px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  border: 2px solid #E21412;
}
.wpcf7-not-valid-tip {
  display: block;
  width: auto;
  padding: 0 4px 4px;
  margin-top: 4px;
  color: #E21412;
  font-size: 14px;
}

.contact_form.order .product_count_01 .wpcf7-not-valid-tip {
  position: absolute;
  bottom: unset;
  right: -20px;
  white-space: nowrap;
}
.contact_form.order .product_count_01 .wpcf7-not-valid-tip::after {
  margin-left: 140px;
}

.wpcf7 input.wpcf7-not-valid,
.wpcf7 textarea.wpcf7-not-valid,
.wpcf7 select.wpcf7-not-valid {
  background-color: rgba(226,20,18,.08)!important;
  border: 1px solid #E21412!important;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
}

@media screen and (max-width: 768px) {
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    width: 100%;
    padding: 15px;
    line-height: 1.5;
  }
}


/* --------------------------------
.page-confirm style
------------------------------------- */
.entry_confirm .cf_wrap {
  max-width: 750px;
  margin: 0 auto 40px;
}

/* .contact_form_confirm */
.contact_form_confirm {
  border-top: 1px solid #707070;
}
.contact_form_confirm .inner {
  width: 100%;
  max-width: 100%;
  padding: 0;
}
.contact_form_confirm dl {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 60px;
  padding: 1em 0;
  border-bottom: 1px solid #707070;
}
.contact_form_confirm dt {
  flex-basis: 320px;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}
.contact_form_confirm dd {
  display: flex;
  align-items: center;
  width: 430px;
  padding-right: 1em;
  font-size: 16px;
  font-weight: 400;
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 28px;
}
@media screen and (max-width: 767px) {
  .contact_form_confirm dl {
    display: block;
    width: 100%;
    min-height: auto;
  }
  .contact_form_confirm dt {
    width: 100%;
    margin-bottom: .25em;
  }
  .contact_form_confirm dd {
    display: flex;
    align-items: center;
    width: 100%;
    padding-right: 0;
  }
}

/* .contact_form_confirm dl.contact_message */
.contact_form_confirm dl.contact_message {
  padding: 23px 0;
}
/* .contact_form_confirm dl.contact_product */
.contact_form_confirm dl.contact_product dd {
  display: flex;
  justify-content: space-between;
  padding: 0;
}
.contact_form_confirm dl.contact_product .product_name {
  padding-right: 2em;  
}
.contact_form_confirm dl.contact_product .product_count {
  display: flex;
  width: 3em;
  flex-shrink: 0;
  justify-content: flex-end;
}

.contact_form_confirm .confirm_txt {
  display: block;
  margin: 43px auto 19px;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
}

/* --------------------------------
.page-thanks style
------------------------------------- */
.completion_box {
  margin: 44px auto 40px;
  text-align: center;
}
.completion {
  position: relative;
  display: inline-block;
  margin: 0 auto 51px;
  color: #2764AF;
  font-size: 22px;
  font-weight: 400;
}
.completion::after {
  content: "";
  position: absolute;
  left: -4px;
  bottom: -12px;
  display: block;
  width: 0;
  height: 2px;
  background: #2764AF;
  transition: width ease .5s;
  transition-delay: .5s;
}
.completion.active::after {
  width: calc(100% + 8px);
}
.completion_box .txt {
  font-size: 20px;
  font-weight: 400;
}

/* --------------------------------
  .wp-pagenavi
------------------------------------- */
.wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  height: 29px;
  margin: 0 auto 48px;
  text-align: center;
}
.wp-pagenavi span,
.wp-pagenavi a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 51px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: #000;
}

.wp-pagenavi .current {
  position: relative;
  color: #2764AF;
  font-weight: 700;
}
.wp-pagenavi .current::after {
  position: absolute;
  left: 50%;
  transform: translate(-50%,0);
  bottom: -1px;
  content: "";
  display: inline-block;
  width: .75em;
  height: 2px;
  background-color: #2764AF;
}

.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  position: relative;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  font-size: 0;
}
.wp-pagenavi .nextpostslink::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: block;
  width: 12px;
  height: 21px;
  background-image: url(../images/common/ico_pager_rt.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.wp-pagenavi .previouspostslink::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: block;
  width: 12px;
  height: 19px;
  background-image: url(../images/common/ico_pager_lt.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi span,
  .wp-pagenavi a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 51px;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    color: #000;
  }
}

/* --------------------------------
  .pc_only .sp_only
------------------------------------- */
.pc_only {
  display: block;
}
.sp_only {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}


