@charset "utf-8";
/* CSS Document */

/* reset
================================================== *
/* 
html5doctor.com Reset Stylesheet

*/

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 {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  line-height: 1.8em;
}

ol,
ul {
  list-style: none
}

blockquote,
q {
  quotes: none
}

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

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}



/* reset end---------------------------------------
================================================== *
/* 


/*==========================================================
__common
==========================================================*/


* {
  margin-left: auto;
  /* 左側マージンを自動的に空ける */
  margin-right: auto;
  /* 右側マージンを自動的に空ける */
}

body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 100%;
}

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

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



div#wrap {}


/*==========================================================
__グローバルメニュー
==========================================================*/




.warp-1200 {
  max-width: 1200px;
  margin: 0 auto 20px;
}

.warp-850 {
  max-width: 850px;
  /* margin: 0 auto 100px; */
}

.hamburger__menu {
  display: none;
}
.sctl_inner,
.guide_inner,
#primary{
  padding: 230px 0 100px;
}

.post__title{
  position: relative;
  font-size: 1.4em;
  margin-bottom: 50px;
}

.post__title::before{
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 2px;
  background: rgb(209, 208, 208);   /* 線の色 */
}

/*******************************
ショップアイコン
*******************************/
article.my_account {
    position: fixed;
    right: 0;
    width: 3%;
    bottom: 50%;
    min-width: 50px;
    z-index: 9999;
    top: 20%;
}

article.my_account ul.my_list {}

article.my_account ul.my_list li {
    position: relative;
}

article.my_account ul.my_list li a {
    display: block;
    background-color: #131313;
    padding: 15px;
}

article.my_account ul.my_list li:first-child a {
    border-top-left-radius: 8px;
    border-bottom: 2px solid #fff;
}



article.my_account ul.my_list li:last-child a {
    border-bottom-left-radius: 8px;
}

article.my_account ul.my_list li a:hover {}

article.my_account ul.my_list li a img {
    max-width: 30px;
    min-width: 20px;
}

article.my_account ul.my_list li span.total-quant {
    position: absolute;
    top: 0;
    right: 0px;
    z-index: 10;
    color: #fff;
    background-color: #d90000;
    padding: 1px 9px;
    border-radius: 50%;
    font-size: 12px;
    line-height: 2;
}


@media screen and (max-width:1000px) {
  .warp-1200 {
    padding: 0 15px;
  }
}

@media screen and (max-width:850px) {
  .warp-850 {
    padding: 100px 15px !important;
  }
}

/*=== 固定ナビゲーションヘッダー ===*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

@media screen and (max-width: 767px) {
.sctl_inner, .guide_inner, #primary{
    padding: 100px 0px 50px;
}
  /*==================================
  hamburgerメニュー
===================================*/
  div.hamburger {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999999;

    background-color: #DEEDFF;
    max-width: 0;
    padding-top: 35px;
    padding-bottom: 35px;
    width: 0;
    transition: all .5s;
    overflow: hidden;
    opacity: 0;
    height: 100%;
  }

  div.hamburger.active {
    width: 100vw;
    max-width: 650px;
    background-color: #DEEDFF;
    transition: all .5s;
    opacity: 1;
    overflow-y: auto;
  }

  .menu__hamburger__button {
    overflow: hidden;
    position: fixed;
    right: 1%;
    top: 1.5%;
    z-index: 9999999;
    /* background-color: #90C3FF; */
    border-radius: 10px;
  }

  .menu__hamburger__button .menu__hamburger {
    border-radius: 50px;
    width: 60px;
    text-align: center;
    padding: 15px;
    cursor: pointer;
    float: right;
  }

  .menu__hamburger__button .menu__line {
    display: block;
    /* width: 60%; */
    height: 2px;
    transition: all 0.2s;
    background-color: #000;
    line-height: 1.5;
    margin: 0 0 8px;
  }

  .menu__hamburger__button .menu__line:nth-child(3) {
    margin: 0px;
  }

  .menu__hamburger__button .menu__line.active:nth-of-type(1) {
    transform: translateY(9px) rotate(135deg);
    background-color: #fff;
  }

  .menu__hamburger__button .menu__line.active:nth-of-type(2) {
    opacity: 0;
  }

  .menu__hamburger__button .menu__line.active:nth-of-type(3) {
    transform: translateY(-10px) rotate(-135deg);
    background-color: #fff;
  }

  div.hamburger .hamburger__content {
    max-width: 350px;
    margin: 0 auto;
    display: none;
    opacity: 0;
  }

  div.hamburger .hamburger__content.active {
    display: block;
    opacity: 1;
  }

  .hamburger__menu {
    position: fixed;
    top: -180%;
    right: 0;
    /* bottom: 0; */
    left: 0;
    background-color: #000;
    opacity: 0;
    transition: 1s all;
    z-index: -1;
    /* display: none; */
    display: inherit;
  }

  .hamburger__menu.active {
    opacity: 1;
    top: 0;
    bottom: 0;
    z-index: 9999;
    transition: 1s all;
    /* display: block; */
  }

  .hamburger__menu__Inner {
    padding: 80px 27px;
  }

  .hamburger__menu__Inner .hamburger__menu__list {}

  .hamburger__menu__Inner .hamburger__menu__list li {
    /* border-bottom: 1px solid; */
    text-align: center;
    padding: 25px 15px;
    font-size: 18px;
  }

  .hamburger__menu__Inner .hamburger__menu__list li a {
    font-family: YuMincho, 'Yu Mincho', serif;
  }

  .hamburger__menu__Inner .hamburger__menu__list li a:hover {}
  /*******************************
ショップアイコン
*******************************/
    article.my_account {
        bottom: inherit;
        width: 100px;
        top: 0;
        right: inherit;
        min-width: 99px;
        background-color: #000;
        margin: 0;
    }

    article.my_account ul.my_list {
        display: flex;
    }

    article.my_account ul.my_list li {
    width: 50%;
}

    article.my_account ul.my_list li a {
        padding: 17px 15px;
    }

    article.my_account ul.my_list li:first-child a {
        border-bottom: 0;
        border-radius: 0;
    }

    article.my_account ul.my_list li:last-child a {
        border-radius: 0;
    }

    article.my_account ul.my_list li a:hover {}

    article.my_account ul.my_list li a img {
        vertical-align: middle;
    }

    article.my_account ul.my_list li span.total-quant {
        padding: 0 5px;
        line-height: 1.5;
    }
}

.pagetop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 15px;
}
.pagetop a {
    display: block;
    background-color: #ccc;
    text-align: center;
    color: #222;
    font-size: 12px;
    text-decoration: none;
    padding: 5px 10px;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}
.pagetop a:hover {
    display: block;
    background-color: #b2d1fb;
    text-align: center;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    padding:5px 10px;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}

.post-navigation{
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-top: 25px;
  border-top: 1px solid #eee;
}
.post-navigation .nav-prev{width: 50%;text-align: left;}
.post-navigation .nav-next{
    width: 50%;
    text-align: right;
}