@charset "UTF-8";
/* ==========================================================================
 WebFont
============================================================================*/
/* ==========================================================================
 font-size変数
============================================================================*/
/* ==========================================================================
 line-height変数
============================================================================*/
/* ==========================================================================
 letter-spacing変数(今後作成中に追加する)
============================================================================*/
/* ==========================================================================
viewport指定
============================================================================*/
/* ==========================================================================
 Color Guide
============================================================================*/
/*変更210901*/
/*元々##f7f7f7*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
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;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

/*追記*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input,
select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  border-color: inherit;
  background: none transparent;
  background-clip: padding-box;
  color: inherit;
  font-size: inherit;
  vertical-align: middle;
}

/*
input::placeholder,
textarea::placeholder {
  color: $clr-font05;
}*/
input[type="text"][disabled] {
  border: solid 1px #f4f4f4;
  background-color: #ffffff;
}

select[disabled] {
  border: solid 1px #f4f4f4;
  background-color: #ffffff;
  opacity: 0.7;
}

input[type="radio"][disabled] {
  pointer-events: none;
  opacity: 0.3;
}

input[type="checkbox"][disabled] {
  pointer-events: none;
  opacity: 0.3;
}

select {
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

select:hover {
  opacity: 0.7;
}

select::-ms-expand {
  display: none;
}

input::-ms-clear {
  visibility: hidden;
}

input::-ms-reveal {
  visibility: hidden;
}

html {
  font-size: 62.5%;
  line-height: 1.9;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "メイリオ", "ヒラギノ角ゴ Pro W3", sans-serif;
  /*基本のテキストカラー設定*/
  color: #000000;
}

@media screen and (max-width: 899px) {
  html {
    line-height: 1.7;
  }
}

a {
  text-decoration: none;
  color: #222222;
  /*変更210901*/
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

a:visited {
  color: #222222;
}

a:hover {
  opacity: 0.7;
}

option,
optgroup {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "メイリオ", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 100%;
  width: 100%;
}

table,
tbody,
tr {
  width: 100%;
}

table {
  table-layout: fixed;
}

th,
td {
  vertical-align: top;
}

body {
  position: relative;
}

@media screen and (min-width: 900px), print {
  body {
    min-width: 1320px;
  }
}

@media screen and (min-width: 900px), print {
  body {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 899px) {
  body {
    font-size: 1.4rem;
    -webkit-text-size-adjust: 100%;
  }
}

body.l-kento {
  min-width: initial;
  width: auto;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  background: transparent;
}

img {
  display: block;
}

@media screen and (max-width: 899px) {
  img {
    width: 100%;
  }
}

body.is-modal-open {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 899px) {
  body.is-menu-open {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Arrows */
/**/
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  z-index: 100;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

body {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "メイリオ", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 10px;
  width: 100%;
}

body.is-menu-open {
  width: 100%;
  height: 100%;
  padding-bottom: 0px;
  position: fixed;
}

body.is-menu-open .main-visual,
body.is-menu-open .main {
  display: none;
}

body.is-menu-open .header__menu-open {
  display: block;
}

body.is-menu-open .hamburger-nav {
  display: block;
}

body.is-menu-open .footer {
  margin: auto;
}

.header {
  width: 100%;
  height: 70px;
  position: fixed;
  z-index: 100;
  background-color: #fff;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .header {
    height: 75px;
  }
}

@media screen and (max-width: 415px) {
  .header {
    height: 45px;
  }
}

.header .header__inner {
  max-width: 1080px;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 899px) {
  .header .header__inner {
    display: block;
    max-width: 600px;
  }
}

.header .header__inner .header__nav-title {
  width: 15%;
  height: 100%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .header .header__inner .header__nav-title {
    width: 20%;
    height: 100%;
    position: absolute;
    top: -7px;
    left: 41%;
  }
}

@media screen and (max-width: 415px) {
  .header .header__inner .header__nav-title {
    width: 30%;
    margin: auto;
    position: static;
    top: 0;
    left: 0;
  }
}

.header .header__inner .header__nav-title .header__title {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .header__inner .header__nav-title .header__title .header__title-link .header__title-image {
  width: 100%;
}

.header .header__inner .header__nav {
  width: 57%;
  height: 100%;
  margin-left: 25%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .header .header__inner .header__nav {
    width: 100%;
    padding-top: 6%;
    margin-left: 0;
  }
}

@media screen and (max-width: 415px) {
  .header .header__inner .header__nav {
    padding-top: 0;
    display: none;
  }
}

.header .header__inner .header__nav .header__nav-list {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header .header__inner .header__nav .header__nav-list .header__nav-item {
  position: relative;
  /*width: 100px;*/
  height: 100%;
  font-size: 1.3rem;
  /* @media screen and (max-width: 360px)*/
  /*
          &::after {
            position: absolute;
            bottom: 0;
            content: "";
            width: 0;
            transition: all 0.3s ease;
            border-bottom: 2px solid rgba(200, 200, 200, 0.8);
            display: block;
          }

          &:hover::after {
            width: 100%;
          }*/
}

@media screen and (max-width: 899px) {
  .header .header__inner .header__nav .header__nav-list .header__nav-item {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 415px) {
  .header .header__inner .header__nav .header__nav-list .header__nav-item {
    display: none;
  }
}

.header .header__inner .header__nav .header__nav-list .header__nav-item .header__nav-link {
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
  line-height: 70px;
  cursor: pointer;
}

@media screen and (max-width: 899px) {
  .header .header__inner .header__nav .header__nav-list .header__nav-item .header__nav-link {
    line-height: 45px;
  }
}

.header .header__inner .header__nav .header__nav-list .header__nav-item .header__sns-list {
  /*  position: absolute;
            top: 100%;
            left: -160px;
            width: 450px;
            background-color: rgba(255, 255, 255, 0.5);
            display: none;*/
}

.header .header__inner .header__nav .header__nav-list .header__nav-item .header__sns-list .header__sns-ulist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.header .header__inner .header__nav .header__nav-list .header__nav-item .header__sns-list .header__sns-ulist .header__sns-item {
  width: 100%;
  height: 70px;
}

@media screen and (max-width: 899px) {
  .header .header__inner .header__nav .header__nav-list .header__nav-item .header__sns-list .header__sns-ulist .header__sns-item {
    height: 45px;
  }
}

.header .header__inner .header__nav .header__nav-list .header__nav-item .header__sns-list .header__sns-ulist .header__sns-link {
  width: 100%;
  height: 100%;
  display: block;
  line-height: 70px;
  padding-left: 25px;
}

.header .header__inner .header__nav .header__nav-list .header__nav-item .header__sns-list .header__sns-ulist .header__sns-link.header__sns-link--twitter {
  background-image: url(../../images/sns/twitter.svg);
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center left 3px;
}

.header .header__inner .header__nav .header__nav-list .header__nav-item .header__sns-list .header__sns-ulist .header__sns-link.header__sns-link--instagram {
  background-image: url(../../images/sns/instagram.svg);
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center left 3px;
}

.header .header__inner .header__nav .header__nav-list .header__nav-item .header__sns-list .header__sns-ulist .header__sns-link.header__sns-link--facebook {
  background-image: url(../../images/sns/facebook.svg);
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center left 3px;
}

.header .header__inner .header__nav .header__nav-list .header__nav-item .header__sns-list .header__sns-ulist .header__sns-link.header__sns-link--note {
  background-image: url(../../images/sns/note.svg);
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center left 3px;
}

.header .header__inner .header__nav .header__nav-list .header__nav-item .header__sns-list .header__sns-ulist .header__sns-link.header__sns-link--youtube {
  background-image: url(../../images/sns/youtube.svg);
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center left 3px;
}

.header .header__inner .header__hamburger-menu-link {
  width: 100%;
  height: 100%;
  position: relative;
  display: none;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .header .header__inner .header__hamburger-menu-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
  }
}

.header .header__inner .header__hamburger-menu-link .header__hamburger-menu-line {
  display: block;
  width: 20px;
  height: 2px;
  position: absolute;
  background-color: black;
  top: -22px;
  right: 30px;
  margin: auto;
}

.header .header__inner .header__hamburger-menu-link .header__hamburger-menu-line.is-menu-open {
  background-color: transparent;
}

.header .header__inner .header__hamburger-menu-link .header__hamburger-menu-line::before, .header .header__inner .header__hamburger-menu-link .header__hamburger-menu-line::after {
  content: " ";
  display: block;
  width: 20px;
  height: 2px;
  position: absolute;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: black;
}

.header .header__inner .header__hamburger-menu-link .header__hamburger-menu-line::before {
  top: -6px;
}

.header .header__inner .header__hamburger-menu-link .header__hamburger-menu-line.is-menu-open::before {
  right: auto;
  top: -7px;
  left: 3px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header .header__inner .header__hamburger-menu-link .header__hamburger-menu-line::after {
  top: 6px;
}

.header .header__inner .header__hamburger-menu-link .header__hamburger-menu-line.is-menu-open::after {
  right: auto;
  top: 7px;
  left: 3px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.hamburger-nav {
  display: none;
  width: 100%;
  height: calc(100% - 50px);
}

.hamburger-nav .hamburger-nav__list {
  width: 100%;
  height: 100%;
  font-size: 1.8rem;
  padding-top: 45px;
}

.hamburger-nav .hamburger-nav__list .hamburger-nav__item {
  width: 100%;
  height: calc(95% / 8);
}

.hamburger-nav .hamburger-nav__list .hamburger-nav__item .hamburger-nav__sns-list {
  width: 250px;
  margin: 15% auto 0;
}

.hamburger-nav .hamburger-nav__list .hamburger-nav__item .hamburger-nav__sns-list .hamburger-nav__sns-ulist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.hamburger-nav .hamburger-nav__list .hamburger-nav__item .hamburger-nav__sns-list .hamburger-nav__sns-ulist .hamburger-nav__sns-item {
  width: 100%;
  height: 30px;
  padding-left: 10%;
}

.hamburger-nav .hamburger-nav__list .hamburger-nav__item .hamburger-nav__sns-list .hamburger-nav__sns-ulist .hamburger-nav__sns-item:nth-child(1) {
  padding-left: 0px;
}

.hamburger-nav .hamburger-nav__list .hamburger-nav__item .hamburger-nav__sns-list .hamburger-nav__sns-ulist .hamburger-nav__sns-link {
  width: 100%;
  height: 100%;
  display: block;
  line-height: 30px;
  padding-left: 25px;
}

.hamburger-nav .hamburger-nav__list .hamburger-nav__item .hamburger-nav__sns-list .hamburger-nav__sns-ulist .hamburger-nav__sns-link.hamburger-nav__sns-link--twitter {
  background-image: url(../../images/sns/twitter.svg);
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center left 3px;
}

.hamburger-nav .hamburger-nav__list .hamburger-nav__item .hamburger-nav__sns-list .hamburger-nav__sns-ulist .hamburger-nav__sns-link.hamburger-nav__sns-link--instagram {
  background-image: url(../../images/sns/instagram.svg);
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center left 3px;
}

.hamburger-nav .hamburger-nav__list .hamburger-nav__item .hamburger-nav__sns-list .hamburger-nav__sns-ulist .hamburger-nav__sns-link.hamburger-nav__sns-link--facebook {
  background-image: url(../../images/sns/facebook.svg);
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center left 0px;
}

.hamburger-nav .hamburger-nav__list .hamburger-nav__item .hamburger-nav__sns-list .hamburger-nav__sns-ulist .hamburger-nav__sns-link.hamburger-nav__sns-link--note {
  background-image: url(../../images/sns/note.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center left 0px;
}

.hamburger-nav .hamburger-nav__list .hamburger-nav__item .hamburger-nav__sns-list .hamburger-nav__sns-ulist .hamburger-nav__sns-link.hamburger-nav__sns-link--youtube {
  background-image: url(../../images/sns/youtube.svg);
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center left 0px;
}

.hamburger-nav .hamburger-nav__list .hamburger-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-visual {
  width: 100%;
  /*padding-top: 70px;*/
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .main-visual {
    padding-top: 0px;
  }
}

@media screen and (max-width: 415px) {
  .main-visual {
    /*
    height: 100vh;*/
    overflow: hidden;
    position: relative;
    margin-bottom: 15%;
  }
}

.main-visual .main-visual__image {
  width: 100%;
  /*
    @include sp-2 {
      width: auto;
      height: 80%;
      position: absolute;
      bottom: 120px;
      left: -70%;
    }

    @include sp(330px) {
      bottom: 70px;
      left: -50%;
    }
*/
}

.main-visual .main-visual__image.pc {
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .main-visual .main-visual__image.pc {
    display: none;
  }
}

.main-visual .main-visual__image.sp {
  display: none;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .main-visual .main-visual__image.sp {
    display: block;
  }
}

.main {
  margin: 0 auto;
}

.popup-topic .popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.popup-topic .popup.is-show {
  opacity: 1;
  visibility: visible;
}

.popup-topic .popup-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80%;
  max-width: 600px;
  padding: 50px;
  background-color: #fff;
  z-index: 2;
}

.popup-topic .close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}

.popup-topic .close-btn i {
  font-size: 20px;
  color: #333;
}

.popup-topic .black-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
  cursor: pointer;
}

.popup-topic .popup-text {
  text-align: center;
  margin-bottom: 5%;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "メイリオ", "ヒラギノ角ゴ Pro W3", sans-serif;
}

.popup-topic .popup-text .popup-title {
  font-size: 2.4rem;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .popup-topic .popup-text .popup-title {
    font-size: 1.7rem;
  }
}

.popup-topic .popup-text .popup-subtitle {
  font-size: 1.5rem;
}

.popup-topic .popup-image-wrap {
  width: 100%;
}

.popup-topic .popup-image-wrap .popup-image {
  width: 50%;
  margin: auto;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .popup-topic .popup-image-wrap .popup-image {
    width: 60%;
  }
}

@media screen and (max-width: 415px) {
  .popup-topic .popup-image-wrap .popup-image {
    width: 100%;
  }
}

.popup-topic .popup-btn {
  width: 22%;
  margin: 10% auto 0;
  text-align: center;
  font-size: 1.4rem;
  border: solid 1px;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .popup-topic .popup-btn {
    width: 30%;
    padding: 3% 0;
  }
}

@media screen and (max-width: 415px) {
  .popup-topic .popup-btn {
    width: 50%;
    padding: 5% 0;
  }
}

.issue-topic {
  max-width: 1080px;
  margin: 160px auto 0px;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .issue-topic {
    max-width: 600px;
    margin: 70px auto 0px;
  }
}

@media screen and (max-width: 415px) {
  .issue-topic {
    margin: 0px auto 0px;
  }
}

.issue-topic .issue-topic__contents {
  margin: 0 auto;
}

.issue-topic .issue-topic__contents .issue-topic__number {
  font-size: 2.4rem;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "游明朝体";
  text-align: center;
}

@media screen and (max-width: 899px) {
  .issue-topic .issue-topic__contents .issue-topic__number {
    font-size: 2rem;
  }
}

.issue-topic .issue-topic__contents .issue-topic__title {
  font-size: 2.1rem;
  font-weight: bold;
  text-align: center;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .issue-topic .issue-topic__contents .issue-topic__title {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 415px) {
  .issue-topic .issue-topic__contents .issue-topic__title {
    font-size: 1.6rem;
  }
}

.issue-topic .issue-topic__contents .issue-topic__sub-title {
  font-size: 1.6rem;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "游明朝体";
  text-align: center;
  font-weight: normal;
}

@media screen and (max-width: 899px) {
  .issue-topic .issue-topic__contents .issue-topic__sub-title {
    font-size: 1.4rem;
    margin-top: 10px;
  }
}

.issue-topic .issue-topic__contents .issue-topic__list {
  width: 50%;
  font-size: 1.5rem;
  margin: 35px auto 0;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .issue-topic .issue-topic__contents .issue-topic__list {
    width: 60%;
    font-size: 1.3rem;
    margin: 20px auto 0;
  }
}

@media screen and (max-width: 415px) {
  .issue-topic .issue-topic__contents .issue-topic__list {
    width: 85%;
  }
}

.issue-topic .issue-topic__contents .issue-topic__image-wrap {
  width: 100%;
}

.issue-topic .issue-topic__contents .issue-topic__image-wrap .issue-topic__image {
  width: 80%;
  margin: 50px auto 0;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .issue-topic .issue-topic__contents .issue-topic__image-wrap .issue-topic__image {
    margin: 35px auto 0;
  }
}

@media screen and (max-width: 415px) {
  .issue-topic .issue-topic__contents .issue-topic__image-wrap .issue-topic__image {
    width: 100vw;
  }
}

.issue-topic .issue-topic__contents .issue-topic__link {
  display: block;
  width: 150px;
  font-size: 1.4rem;
  border: black 1px solid;
  color: #000000;
  text-align: center;
  margin: 50px auto 0;
  padding: 5px 0;
}

.feature {
  width: 100%;
  margin: 200px 0 0 0;
  padding: 70px 0;
  background-color: #f4f4f4;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .feature {
    margin-top: 100px;
    padding: 40px 0 50px;
  }
}

@media screen and (max-width: 415px) {
  .feature {
    margin-top: 50px;
    padding: 30px 0 50px;
  }
}

.feature .feature__inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 899px) {
  .feature .feature__inner {
    max-width: 600px;
  }
}

.feature .feature__inner .feature__title {
  font-size: 2.8rem;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "游明朝体";
  font-weight: normal;
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 899px) {
  .feature .feature__inner .feature__title {
    font-size: 2.3rem;
  }
}

.feature .feature__inner .feature__contents {
  width: 80%;
  max-width: 1080px;
  margin: 0 auto;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .feature .feature__inner .feature__contents {
    width: 90%;
  }
}

@media screen and (max-width: 415px) {
  .feature .feature__inner .feature__contents {
    width: 100%;
  }
}

.feature .feature__inner .feature__contents .feature__product {
  width: calc(25% - 10px);
  text-align: center;
  margin: auto 10px;
}

.feature .feature__inner .feature__contents .feature__product .feature__product-figure {
  width: 100%;
  height: 380px;
  background-color: #d5d5d5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

@media screen and (max-width: 1699px) {
  .feature .feature__inner .feature__contents .feature__product .feature__product-figure {
    height: 380px;
  }
}

@media screen and (max-width: 1599px) {
  .feature .feature__inner .feature__contents .feature__product .feature__product-figure {
    height: 350px;
  }
}

@media screen and (max-width: 1499px) {
  .feature .feature__inner .feature__contents .feature__product .feature__product-figure {
    height: 330px;
  }
}

@media screen and (max-width: 1399px) {
  .feature .feature__inner .feature__contents .feature__product .feature__product-figure {
    height: 295px;
  }
}

@media screen and (max-width: 1099px) {
  .feature .feature__inner .feature__contents .feature__product .feature__product-figure {
    height: 280px;
  }
}

@media screen and (max-width: 899px) {
  .feature .feature__inner .feature__contents .feature__product .feature__product-figure {
    height: 170px;
  }
}

@media screen and (max-width: 414px) {
  .feature .feature__inner .feature__contents .feature__product .feature__product-figure {
    height: 240px;
  }
}

.feature .feature__inner .feature__contents .feature__product .feature__product-figure.feature__product-figure--story-bag {
  display: block;
}

.feature .feature__inner .feature__contents .feature__product .feature__product-image--story-bag {
  width: 95% !important;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .feature .feature__inner .feature__contents .feature__product .feature__product-image--story-bag {
    width: 70% !important;
  }
}

.feature .feature__inner .feature__contents .feature__product .feature__product-image--4set {
  width: 75% !important;
}

.feature .feature__inner .feature__contents .feature__product .feature__product-image {
  width: 60%;
  max-height: 400px;
  display: block;
  margin: 0 auto;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .feature .feature__inner .feature__contents .feature__product .feature__product-image {
    width: 42%;
  }
}

@media screen and (max-width: 899px) {
  .feature .feature__inner .feature__contents .feature__product .feature__product-image {
    width: 75%;
  }
}

@media screen and (max-width: 415px) {
  .feature .feature__inner .feature__contents .feature__product .feature__product-image {
    width: 60%;
  }
}

.feature .feature__inner .feature__contents .feature__product .pocketbook-s {
  width: 50%;
}

.feature .feature__inner .feature__contents .feature__product .feature__product-name {
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 899px) {
  .feature .feature__inner .feature__contents .feature__product .feature__product-name {
    font-size: 1.3rem;
    line-height: 1.7rem;
  }
}

.feature .feature__inner .feature__contents .feature__product .feature__product-price {
  font-size: 1.4rem;
}

@media screen and (max-width: 899px) {
  .feature .feature__inner .feature__contents .feature__product .feature__product-price {
    font-size: 1.3rem;
  }
}

.feature .feature__inner .feature__slide-button {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media screen and (max-width: 899px) {
  .feature .feature__inner .feature__slide-button {
    top: 35%;
  }
}

.feature .feature__inner .feature__prev-button {
  left: -40px;
  border-left: 1px solid #97999b;
  border-bottom: 1px solid #97999b;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .feature .feature__inner .feature__prev-button {
    display: none !important;
  }
}

.feature .feature__inner .feature__next-button {
  right: -40px;
  border-top: 1px solid #97999b;
  border-right: 1px solid #97999b;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .feature .feature__inner .feature__next-button {
    display: none !important;
  }
}

.stories {
  height: 790px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .stories {
    height: auto;
    margin: 110px auto 0px;
  }
}

@media screen and (max-width: 415px) {
  .stories {
    margin: 66px auto 0px;
  }
}

.stories .stories__article {
  max-width: 1080px;
  height: 100%;
  margin: 0 auto;
  position: relative;
  /* @media screen and (max-width: 360px)*/
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .stories .stories__article {
    max-width: 600px;
    height: 315px;
  }
}

@media screen and (max-width: 415px) {
  .stories .stories__article {
    max-width: 330px;
  }
}

.stories .stories__article .stories__title {
  font-size: 2.8rem;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "游明朝体";
  font-weight: normal;
  margin-left: 65%;
  padding-left: 6%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .stories .stories__article .stories__title {
    font-size: 2.3rem;
    padding-left: 0;
    margin-left: 55%;
  }
}

@media screen and (max-width: 415px) {
  .stories .stories__article .stories__title {
    margin-left: 0;
    padding-left: 0;
    text-align: center;
  }
}

@media screen and (min-width: 900px), print {
  .stories .stories__article {
    height: 460px;
    position: relative;
  }
  .stories .stories__article .stories__article-overwrap {
    position: absolute;
    width: 55%;
    top: 0;
  }
  .stories .stories__article .stories__article-overwrap .stories__article-image-wrap {
    width: 100%;
    position: relative;
  }
  .stories .stories__article .stories__article-overwrap .stories__article-image-wrap:before {
    content: "";
    display: block;
    padding-top: 85%;
  }
  .stories .stories__article .stories__article-overwrap .stories__article-image-wrap .stories__article-image {
    width: 100%;
    background-color: #f4f4f4;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .stories .stories__article .stories__article-overwrap .stories__article-image-wrap .stories__article-image .stories__article-picture {
    width: 75%;
    margin: auto;
  }
}

@media screen and (max-width: 899px) {
  .stories .stories__article {
    height: 100%;
    position: relative;
  }
  .stories .stories__article .stories__article-overwrap {
    position: absolute;
    width: 50%;
    top: 0;
  }
  .stories .stories__article .stories__article-overwrap .stories__article-image-wrap {
    width: 100%;
    position: relative;
  }
  .stories .stories__article .stories__article-overwrap .stories__article-image-wrap:before {
    content: "";
    display: block;
    padding-top: 85%;
  }
  .stories .stories__article .stories__article-overwrap .stories__article-image-wrap .stories__article-image {
    width: 100%;
    background-color: #f4f4f4;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .stories .stories__article .stories__article-overwrap .stories__article-image-wrap .stories__article-image .stories__article-picture {
    width: 80%;
    margin: auto;
  }
}

@media screen and (max-width: 415px) {
  .stories .stories__article {
    height: 100%;
  }
  .stories .stories__article .stories__article-overwrap {
    width: 100%;
    margin-top: 25px;
  }
  .stories .stories__article .stories__article-overwrap .stories__article-image-wrap {
    width: 90%;
    margin: auto;
    position: relative;
  }
  .stories .stories__article .stories__article-overwrap .stories__article-image-wrap:before {
    content: "";
    display: block;
    padding-top: 85%;
  }
  .stories .stories__article .stories__article-overwrap .stories__article-image-wrap .stories__article-image {
    width: 100%;
    margin-top: 30px;
    background-color: #f4f4f4;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .stories .stories__article .stories__article-overwrap .stories__article-image-wrap .stories__article-image .stories__article-picture {
    width: 75%;
    margin: auto;
  }
}

.stories .stories__article .stories__text-wrap {
  width: 55%;
  height: 405px;
  position: relative;
  margin-left: 45%;
  padding-left: 26%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .stories .stories__article .stories__text-wrap {
    width: 55%;
    height: auto;
    padding-left: 10%;
  }
}

@media screen and (max-width: 415px) {
  .stories .stories__article .stories__text-wrap {
    width: 90%;
    height: auto;
    margin: 260px auto 0;
    padding-left: 0;
  }
}

.stories .stories__article .stories__text-wrap .stories__sub-title {
  font-size: 2.1rem;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "游明朝体";
  font-weight: normal;
  line-height: 3rem;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .stories .stories__article .stories__text-wrap .stories__sub-title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

@media screen and (max-width: 415px) {
  .stories .stories__article .stories__text-wrap .stories__sub-title {
    font-size: 1.7rem;
    line-height: 2.5rem;
  }
}

.stories .stories__article .stories__text-wrap .stories__text {
  margin-top: 38px;
  line-height: 2.1rem;
  font-size: 1.3rem;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .stories .stories__article .stories__text-wrap .stories__text {
    margin-top: 12px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    overflow: hidden;
  }
}

@media screen and (max-width: 415px) {
  .stories .stories__article .stories__text-wrap .stories__text {
    display: block;
  }
}

.stories .stories__article .stories__text-wrap .about__link {
  width: 105px;
  position: absolute;
  right: 165px;
  bottom: 0;
  font-size: 1.4rem;
  text-align: center;
  padding: 4px 0;
  border: black 1px solid;
  color: #000000;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .stories .stories__article .stories__text-wrap .about__link {
    bottom: -50px;
  }
}

@media screen and (max-width: 415px) {
  .stories .stories__article .stories__text-wrap .about__link {
    left: 30%;
  }
}

.subscribe {
  background-color: #f4f4f4;
  /*margin-top: 155px;*/
  height: 790px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .subscribe {
    height: auto;
    margin-top: 200px;
    padding: 70px 0 70px;
  }
}

@media screen and (max-width: 415px) {
  .subscribe {
    margin-top: 150px;
    padding: 30px 0 260px;
  }
}

.subscribe .subscribe__article {
  max-width: 1080px;
  margin: auto;
  height: 460px;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .subscribe .subscribe__article {
    max-width: 600px;
    height: 315px;
  }
}

@media screen and (max-width: 415px) {
  .subscribe .subscribe__article {
    max-width: 330px;
  }
}

.subscribe .subscribe__article .subscribe__article-wrap {
  width: 100%;
  /* @media screen and (max-width: 360px)*/
}

.subscribe .subscribe__article .subscribe__article-wrap .subscribe__title-wrap {
  width: 30%;
  position: relative;
  /*margin-top: 63px;*/
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .subscribe .subscribe__article .subscribe__article-wrap .subscribe__title-wrap {
    width: 80%;
    margin-top: 0;
  }
}

@media screen and (max-width: 415px) {
  .subscribe .subscribe__article .subscribe__article-wrap .subscribe__title-wrap {
    width: auto;
  }
}

.subscribe .subscribe__article .subscribe__article-wrap .subscribe__title-wrap .subscribe__title {
  font-size: 2.8rem;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "游明朝体";
  font-weight: normal;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .subscribe .subscribe__article .subscribe__article-wrap .subscribe__title-wrap .subscribe__title {
    font-size: 2.3rem;
  }
}

@media screen and (max-width: 415px) {
  .subscribe .subscribe__article .subscribe__article-wrap .subscribe__title-wrap .subscribe__title {
    text-align: center;
  }
}

.subscribe .subscribe__article .subscribe__article-wrap .subscribe__title-wrap .subscribe__sub-title {
  font-size: 1.4rem;
  font-weight: normal;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .subscribe .subscribe__article .subscribe__article-wrap .subscribe__title-wrap .subscribe__sub-title {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 415px) {
  .subscribe .subscribe__article .subscribe__article-wrap .subscribe__title-wrap .subscribe__sub-title {
    text-align: center;
  }
}

@media screen and (min-width: 900px), print {
  .subscribe .subscribe__article .subscribe__article-wrap {
    height: 100%;
    position: relative;
  }
  .subscribe .subscribe__article .subscribe__article-wrap .subscribe__article-overwrap {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding-left: 50%;
    height: 100%;
  }
  .subscribe .subscribe__article .subscribe__article-wrap .subscribe__article-overwrap .subscribe__article-image-wrap {
    position: relative;
    height: 100%;
    /* @media screen and (max-width: 360px)*/
  }
}

@media screen and (min-width: 900px) and (max-width: 899px) {
  .subscribe .subscribe__article .subscribe__article-wrap .subscribe__article-overwrap .subscribe__article-image-wrap {
    width: 50%;
  }
}

@media screen and (min-width: 900px) and (max-width: 415px) {
  .subscribe .subscribe__article .subscribe__article-wrap .subscribe__article-overwrap .subscribe__article-image-wrap {
    width: 80%;
    margin: 100px auto 100px;
  }
}

@media screen and (min-width: 900px), print {
  .subscribe .subscribe__article .subscribe__article-wrap .subscribe__article-overwrap .subscribe__article-image-wrap:before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  .subscribe .subscribe__article .subscribe__article-wrap .subscribe__article-overwrap .subscribe__article-image-wrap .subscribe__article-image {
    width: 100%;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .subscribe .subscribe__article .subscribe__article-wrap .subscribe__article-overwrap .subscribe__article-image-wrap .subscribe__article-image .subscribe__article-picture {
    width: 75%;
    margin: auto;
  }
}

@media screen and (max-width: 899px) {
  .subscribe .subscribe__article .subscribe__article-wrap {
    height: auto;
    position: relative;
  }
  .subscribe .subscribe__article .subscribe__article-wrap .subscribe__article-overwrap {
    position: absolute;
    width: 100%;
    top: 0;
    padding-left: 50%;
  }
  .subscribe .subscribe__article .subscribe__article-wrap .subscribe__article-overwrap .subscribe__article-image-wrap {
    position: relative;
    width: 100%;
  }
  .subscribe .subscribe__article .subscribe__article-wrap .subscribe__article-overwrap .subscribe__article-image-wrap:before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  .subscribe .subscribe__article .subscribe__article-wrap .subscribe__article-overwrap .subscribe__article-image-wrap .subscribe__article-image {
    width: 100%;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .subscribe .subscribe__article .subscribe__article-wrap .subscribe__article-overwrap .subscribe__article-image-wrap .subscribe__article-image .subscribe__article-picture {
    width: 75%;
    margin: auto;
  }
}

@media screen and (max-width: 415px) {
  .subscribe .subscribe__article .subscribe__article-wrap {
    height: 540px;
    position: relative;
  }
  .subscribe .subscribe__article .subscribe__article-wrap .subscribe__article-overwrap {
    width: 100%;
    padding-left: 0;
    margin-top: 50px;
  }
  .subscribe .subscribe__article .subscribe__article-wrap .subscribe__article-overwrap .subscribe__article-image-wrap {
    position: relative;
    width: 90%;
    margin: 20px auto 30px;
  }
  .subscribe .subscribe__article .subscribe__article-wrap .subscribe__article-overwrap .subscribe__article-image-wrap:before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  .subscribe .subscribe__article .subscribe__article-wrap .subscribe__article-overwrap .subscribe__article-image-wrap .subscribe__article-image {
    width: 100%;
    height: 230px;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .subscribe .subscribe__article .subscribe__article-wrap .subscribe__article-overwrap .subscribe__article-image-wrap .subscribe__article-image .subscribe__article-picture {
    width: 75%;
    margin: auto;
  }
}

.subscribe .subscribe__article .subscribe__article-wrap .subscribe__text {
  margin-top: 20px;
  line-height: 2.1rem;
  width: 40%;
  font-size: 1.3rem;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .subscribe .subscribe__article .subscribe__article-wrap .subscribe__text {
    width: 45%;
  }
}

@media screen and (max-width: 899px) {
  .subscribe .subscribe__article .subscribe__article-wrap .subscribe__text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
  }
}

@media screen and (max-width: 415px) {
  .subscribe .subscribe__article .subscribe__article-wrap .subscribe__text {
    width: 90%;
    margin: 270px auto 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
  }
}

.subscribe .subscribe__article .subscribe__article-wrap .about__link {
  width: 140px;
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 1.4rem;
  text-align: center;
  padding: 4px 0;
  border: black 1px solid;
  color: #000000;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .subscribe .subscribe__article .subscribe__article-wrap .about__link {
    bottom: -110px;
  }
}

@media screen and (max-width: 415px) {
  .subscribe .subscribe__article .subscribe__article-wrap .about__link {
    left: 27%;
    bottom: 40px;
  }
}

.scenery-bookshelf {
  height: 790px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .scenery-bookshelf {
    height: auto;
    margin: 110px auto 0px;
  }
}

@media screen and (max-width: 415px) {
  .scenery-bookshelf {
    margin: 66px auto 0px;
  }
}

.scenery-bookshelf .scenery-bookshelf__article {
  max-width: 1080px;
  height: 100%;
  margin: 0 auto;
  position: relative;
  /* @media screen and (max-width: 360px)*/
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .scenery-bookshelf .scenery-bookshelf__article {
    max-width: 600px;
    height: 315px;
  }
}

@media screen and (max-width: 415px) {
  .scenery-bookshelf .scenery-bookshelf__article {
    max-width: 330px;
  }
}

.scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__title {
  font-size: 2.8rem;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "游明朝体";
  font-weight: normal;
  margin-left: 65%;
  padding-left: 10%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__title {
    font-size: 2.3rem;
    margin-left: 56%;
    padding-left: 0%;
  }
}

@media screen and (max-width: 415px) {
  .scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__title {
    text-align: center;
    margin-left: 0;
    padding-left: 0;
  }
}

.scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__sub-title {
  font-size: 1.4rem;
  font-weight: normal;
  margin-left: 65%;
  padding-left: 10%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__sub-title {
    font-size: 1.3rem;
    margin-left: 56%;
    padding-left: 0%;
  }
}

@media screen and (max-width: 415px) {
  .scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__sub-title {
    text-align: center;
    margin-left: 0;
    padding-left: 0;
  }
}

@media screen and (min-width: 900px), print {
  .scenery-bookshelf .scenery-bookshelf__article {
    height: 460px;
    position: relative;
  }
  .scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__article-overwrap {
    position: absolute;
    width: 100%;
    top: 0;
  }
  .scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__article-overwrap .scenery-bookshelf__article-image-wrap {
    width: 50%;
    position: relative;
  }
  .scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__article-overwrap .scenery-bookshelf__article-image-wrap:before {
    content: "";
    display: block;
    padding-top: 85%;
  }
  .scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__article-overwrap .scenery-bookshelf__article-image-wrap .scenery-bookshelf__article-image {
    width: 100%;
    background-color: #f4f4f4;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__article-overwrap .scenery-bookshelf__article-image-wrap .scenery-bookshelf__article-image .scenery-bookshelf__article-picture {
    width: 75%;
    margin: auto;
  }
}

@media screen and (max-width: 899px) {
  .scenery-bookshelf .scenery-bookshelf__article {
    height: 100%;
    position: relative;
  }
  .scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__article-overwrap {
    position: absolute;
    width: 50%;
    top: 0;
  }
  .scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__article-overwrap .scenery-bookshelf__article-image-wrap {
    width: 100%;
    position: relative;
  }
  .scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__article-overwrap .scenery-bookshelf__article-image-wrap:before {
    content: "";
    display: block;
    padding-top: 85%;
  }
  .scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__article-overwrap .scenery-bookshelf__article-image-wrap .scenery-bookshelf__article-image {
    width: 100%;
    background-color: #f4f4f4;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__article-overwrap .scenery-bookshelf__article-image-wrap .scenery-bookshelf__article-image .scenery-bookshelf__article-picture {
    width: 80%;
    margin: auto;
  }
}

@media screen and (max-width: 415px) {
  .scenery-bookshelf .scenery-bookshelf__article {
    height: 100%;
  }
  .scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__article-overwrap {
    width: 100%;
    margin-top: 45px;
  }
  .scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__article-overwrap .scenery-bookshelf__article-image-wrap {
    width: 90%;
    margin: auto;
    position: relative;
  }
  .scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__article-overwrap .scenery-bookshelf__article-image-wrap:before {
    content: "";
    display: block;
    padding-top: 85%;
  }
  .scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__article-overwrap .scenery-bookshelf__article-image-wrap .scenery-bookshelf__article-image {
    width: 100%;
    margin-top: 30px;
    background-color: #f4f4f4;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__article-overwrap .scenery-bookshelf__article-image-wrap .scenery-bookshelf__article-image .scenery-bookshelf__article-picture {
    width: 75%;
    margin: auto;
  }
}

.scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__text-wrap {
  width: 55%;
  position: relative;
  margin-left: 45%;
  padding-left: 30%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__text-wrap {
    width: 55%;
    height: auto;
    padding-left: 10%;
  }
}

@media screen and (max-width: 415px) {
  .scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__text-wrap {
    width: 90%;
    height: auto;
    margin: auto;
    padding-left: 0;
    margin-top: 265px;
  }
}

.scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__text-wrap .scenery-bookshelf__sub-title {
  font-size: 2.1rem;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "游明朝体";
  font-weight: normal;
  line-height: 3rem;
}

@media screen and (max-width: 899px) {
  .scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__text-wrap .scenery-bookshelf__sub-title {
    font-size: 1.6rem;
    line-height: 2.3rem;
  }
}

.scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__text-wrap .scenery-bookshelf__text {
  margin-top: 38px;
  line-height: 2.1rem;
  font-size: 1.3rem;
}

@media screen and (max-width: 899px) {
  .scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__text-wrap .scenery-bookshelf__text {
    margin-top: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
  }
}

.scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__text-wrap .about__link {
  width: 105px;
  position: absolute;
  right: 165px;
  bottom: -160px;
  font-size: 1.4rem;
  text-align: center;
  padding: 4px 0;
  border: black 1px solid;
  color: #000000;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__text-wrap .about__link {
    left: 18%;
    bottom: -70px;
  }
}

@media screen and (max-width: 415px) {
  .scenery-bookshelf .scenery-bookshelf__article .scenery-bookshelf__text-wrap .about__link {
    left: 30%;
    bottom: -70px;
  }
}

.neighbors {
  background-color: #f4f4f4;
  padding: 60px 0 115px;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .neighbors {
    margin-top: 180px;
    padding: 40px 0 90px;
  }
}

@media screen and (max-width: 415px) {
  .neighbors {
    margin-top: 150px;
    padding: 20px 0 40px;
  }
}

.neighbors .neighbors__article {
  max-width: 1080px;
  margin: 0 auto;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .neighbors .neighbors__article {
    max-width: 600px;
  }
}

@media screen and (max-width: 415px) {
  .neighbors .neighbors__article {
    max-width: 330px;
  }
}

.neighbors .neighbors__article .subscribe__article-title {
  font-size: 2.8rem;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "游明朝体";
  font-weight: normal;
  text-align: center;
}

@media screen and (max-width: 899px) {
  .neighbors .neighbors__article .subscribe__article-title {
    font-size: 2.3rem;
  }
}

.neighbors .neighbors__article .neighbors__article-prefectures {
  width: 54%;
  margin: 42px auto 23px;
  font-size: 1.2rem;
}

@media screen and (max-width: 899px) {
  .neighbors .neighbors__article .neighbors__article-prefectures {
    width: 70%;
    margin: 20px auto 23px;
  }
}

.neighbors .neighbors__article .neighbors__article-image {
  width: 100%;
}

.neighbors .neighbors__article .neighbors__article-image .neighbors__article-picture {
  width: 55%;
  margin: 0 auto;
}

@media screen and (max-width: 899px) {
  .neighbors .neighbors__article .neighbors__article-image .neighbors__article-picture {
    width: 80%;
  }
}

.neighbors .neighbors__article .about__link {
  width: 105px;
  display: block;
  margin: 3% auto 0;
  font-size: 1.4rem;
  text-align: center;
  padding: 4px 0;
  border: black 1px solid;
  color: #000000;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .neighbors .neighbors__article .about__link {
    bottom: -50px;
  }
}

@media screen and (max-width: 415px) {
  .neighbors .neighbors__article .about__link {
    left: 30%;
    margin: 10% auto 0;
  }
}

.footer {
  margin-top: 57px;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .footer {
    margin-top: 20px;
  }
}

.footer .footer__wrap {
  max-width: 1080px;
  margin: 0 auto;
}

@media screen and (max-width: 899px) {
  .footer .footer__wrap {
    max-width: 600px;
  }
}

.footer .footer__wrap .footer__article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .footer .footer__wrap .footer__article {
    display: none;
  }
}

.footer .footer__wrap .footer__article .footer__title .footer__image {
  width: 60%;
}

.footer .footer__wrap .footer__article .footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer .footer__wrap .footer__article .footer__nav .footer__nav-list {
  margin-right: 45%;
  font-size: 1.3rem;
}

.footer .footer__wrap .footer__article .footer__nav .footer__nav-list .footer__sns-ulist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer .footer__wrap .footer__article .footer__nav .footer__nav-list .footer__sns-ulist .footer__sns-item {
  margin-right: 10%;
}

.footer .footer__wrap .footer__article .footer__nav .footer__nav-list .footer__sns-ulist .footer__sns-item .footer__sns-image {
  width: 15px;
  height: auto;
}

.footer .footer__wrap .footer__article .footer__shop-wrap {
  position: absolute;
  top: 0;
  right: 2%;
  width: 100px;
  border: solid 1px black;
}

.footer .footer__wrap .footer__article .footer__shop-wrap .footer__shop {
  font-size: 1.3rem;
  text-align: center;
}

.footer .footer__wrap .footer__contents {
  margin: 30px 0;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .footer .footer__wrap .footer__contents {
    margin: 0 0 20px 0;
  }
}

.footer .footer__wrap .footer__contents .footer__contents-wrap {
  width: 285px;
  margin: 0 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .footer .footer__wrap .footer__contents .footer__contents-wrap {
    width: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: auto;
  }
}

.footer .footer__wrap .footer__contents .footer__contents-wrap .footer__privacy-policy {
  margin-right: 10%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .footer .footer__wrap .footer__contents .footer__contents-wrap .footer__privacy-policy {
    line-height: 20px;
  }
}

.footer .footer__wrap .footer__contents .footer__contents-wrap .footer__copy-right .footer__copy-right-text {
  font-size: 1.2rem;
}

.about {
  padding-top: 295px;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .about {
    padding-top: 200px;
  }
}

@media screen and (max-width: 415px) {
  .about {
    padding-top: 110px;
  }
}

.about .about__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid black;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .about .about__inner {
    max-width: 600px;
  }
}

@media screen and (max-width: 415px) {
  .about .about__inner {
    /*max-width: 330px;*/
    display: block;
    border-bottom: none;
  }
}

.about .about__inner .about__container {
  width: 23%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .about .about__inner .about__container {
    width: auto;
  }
}

.about .about__inner .about__container .about__container-title {
  width: 100%;
  font-size: 2.8rem;
  font-weight: normal;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "游明朝体";
  padding-bottom: 88px;
  border-bottom: 1px solid black;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .about .about__inner .about__container .about__container-title {
    font-size: 2.3rem;
    padding-bottom: 55px;
  }
}

@media screen and (max-width: 415px) {
  .about .about__inner .about__container .about__container-title {
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
  }
}

.about .about__inner .about__contents {
  width: 77%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .about .about__inner .about__contents {
    width: auto;
  }
}

.about .about__inner .about__contents .about__contents-title {
  margin-left: 10%;
  font-size: 2.8rem;
  font-weight: normal;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "游明朝体";
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .about .about__inner .about__contents .about__contents-title {
    font-size: 2.3rem;
  }
}

@media screen and (max-width: 415px) {
  .about .about__inner .about__contents .about__contents-title {
    margin-left: 0;
    margin-top: 27px;
    text-align: center;
  }
}

.about .about__inner .about__contents .about__contents-wrap {
  width: 100%;
  margin: 88px 0 117px;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .about .about__inner .about__contents .about__contents-wrap {
    margin: 55px 0 80px;
  }
}

@media screen and (max-width: 415px) {
  .about .about__inner .about__contents .about__contents-wrap {
    margin-top: 25px;
  }
}

.about .about__inner .about__contents .about__contents-wrap .about__contents-image {
  width: 80%;
  margin: auto;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .about .about__inner .about__contents .about__contents-wrap .about__contents-image {
    width: 100vw;
  }
}

.about .about__inner .about__contents .about__contents-wrap .about__contents-text {
  font-size: 2.1rem;
  font-weight: normal;
  line-height: 6rem;
  text-align: center;
  margin: 88px 0 56px;
}

@media screen and (max-width: 899px) {
  .about .about__inner .about__contents .about__contents-wrap .about__contents-text {
    font-size: 1.6rem;
    line-height: 4rem;
    margin: 50px 0 35px;
  }
}

.about .about__inner .about__contents .about__contents-wrap .about__contact-link {
  width: 105px;
  display: block;
  background-color: #ffffff;
  font-size: 1.4rem;
  color: #000000;
  padding: 4px 0;
  margin: auto;
  border: 1px solid black;
  text-align: center;
}

.magazine {
  padding-top: 295px;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .magazine {
    padding-top: 200px;
  }
}

@media screen and (max-width: 415px) {
  .magazine {
    padding-top: 110px;
  }
}

.magazine .magazine__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid black;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .magazine .magazine__inner {
    max-width: 600px;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 415px) {
  .magazine .magazine__inner {
    max-width: 330px;
    display: block;
    border-bottom: none;
  }
}

.magazine .magazine__inner .magazine__container {
  width: 27%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .magazine .magazine__inner .magazine__container {
    width: auto;
    text-align: center;
  }
}

.magazine .magazine__inner .magazine__container .magazine__container-title {
  width: 100%;
  font-size: 2.8rem;
  font-weight: normal;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "游明朝体";
  padding-bottom: 88px;
  border-bottom: 1px solid black;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .magazine .magazine__inner .magazine__container .magazine__container-title {
    font-size: 2.3rem;
    padding-bottom: 55px;
  }
}

@media screen and (max-width: 415px) {
  .magazine .magazine__inner .magazine__container .magazine__container-title {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.magazine .magazine__inner .magazine__container .magazine__container-list {
  margin-top: 15px;
}

.magazine .magazine__inner .magazine__container .magazine__container-list .magazine__container-definition-list {
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .magazine .magazine__inner .magazine__container .magazine__container-list .magazine__container-definition-list {
    display: none;
  }
}

.magazine .magazine__inner .magazine__container .magazine__container-list .magazine__container-definition-list .magazine__container-definition-team {
  float: left;
  font-size: 1.1rem;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "游明朝体";
  margin-right: 30px;
}

@media screen and (max-width: 899px) {
  .magazine .magazine__inner .magazine__container .magazine__container-list .magazine__container-definition-list .magazine__container-definition-team {
    float: none;
  }
}

.magazine .magazine__inner .magazine__container .magazine__container-list .magazine__container-definition-list .magazine__container-definition-description {
  font-size: 1.1rem;
}

@media screen and (max-width: 899px) {
  .magazine .magazine__inner .magazine__container .magazine__container-list .magazine__container-definition-list .magazine__container-definition-description {
    margin-bottom: 10px;
    font-size: 1rem;
  }
}

.magazine .magazine__inner .magazine__contents {
  width: 67%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .magazine .magazine__inner .magazine__contents {
    width: 73%;
  }
}

@media screen and (max-width: 415px) {
  .magazine .magazine__inner .magazine__contents {
    width: auto;
  }
}

.magazine .magazine__inner .magazine__contents .magazine__contents-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin: 140px 0 117px;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .magazine .magazine__inner .magazine__contents .magazine__contents-wrap:nth-child(2) {
    margin: 50px 0 0px;
  }
}

@media screen and (max-width: 899px) {
  .magazine .magazine__inner .magazine__contents .magazine__contents-wrap {
    margin: 95px 0 0px;
  }
}

@media screen and (max-width: 415px) {
  .magazine .magazine__inner .magazine__contents .magazine__contents-wrap {
    display: block;
    margin-top: 52px;
  }
}

.magazine .magazine__inner .magazine__contents .magazine__contents-wrap .magazine__contents-issue-wrap {
  margin-bottom: 100px;
}

.magazine .magazine__inner .magazine__contents .magazine__contents-wrap .magazine__contents-issue-wrap .magazine__contents-item .magazine__contents-image-wrap {
  position: relative;
}

.magazine .magazine__inner .magazine__contents .magazine__contents-wrap .magazine__contents-issue-wrap .magazine__contents-item .magazine__contents-image-wrap .magazine__contents-image {
  width: 80%;
  margin: auto;
}

.magazine .magazine__inner .magazine__contents .magazine__contents-wrap .magazine__contents-issue-wrap .magazine__contents-item .magazine__contents-image-wrap .magazine__link {
  display: block;
  border: 1px solid black;
  width: 105px;
  text-align: center;
  font-size: 1.4rem;
  padding: 5px 0 5px;
  position: absolute;
  bottom: -120px;
  left: 30%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .magazine .magazine__inner .magazine__contents .magazine__contents-wrap .magazine__contents-issue-wrap .magazine__contents-item .magazine__contents-image-wrap .magazine__link {
    width: 83px;
    padding: 3px 0 3px;
    left: 30px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 415px) {
  .magazine .magazine__inner .magazine__contents .magazine__contents-wrap .magazine__contents-issue-wrap .magazine__contents-item .magazine__contents-image-wrap .magazine__link {
    width: 100px;
    left: 35%;
    bottom: -110px;
    font-size: 1.4rem;
  }
}

.magazine .magazine__inner .magazine__contents .magazine__contents-wrap .magazine__contents-issue-wrap .magazine__contents-item .magazine__contents-text {
  font-size: 2.1rem;
  font-weight: normal;
  line-height: 6rem;
  text-align: center;
  margin: 88px 0 56px;
}

.magazine .magazine__inner .magazine__contents .magazine__contents-wrap .magazine__contents-issue-wrap .magazine__contents-item .magazine__contents-text-wrap {
  width: 80%;
  margin: 15px auto 0;
}

.magazine .magazine__inner .magazine__contents .magazine__contents-wrap .magazine__contents-issue-wrap .magazine__contents-item .magazine__contents-text-wrap .magazine__contents-issue {
  text-align: center;
  font-size: 1.3rem;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .magazine .magazine__inner .magazine__contents .magazine__contents-wrap .magazine__contents-issue-wrap .magazine__contents-item .magazine__contents-text-wrap .magazine__contents-issue {
    font-size: 1.4rem;
  }
}

.magazine .magazine__inner .magazine__contents .magazine__contents-wrap .magazine__contents-issue-wrap .magazine__contents-item .magazine__contents-text-wrap .magazine__contents-issue-title {
  text-align: center;
  font-size: 1.2rem;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .magazine .magazine__inner .magazine__contents .magazine__contents-wrap .magazine__contents-issue-wrap .magazine__contents-item .magazine__contents-text-wrap .magazine__contents-issue-title {
    font-size: 1.2rem;
    line-height: 1.7rem;
  }
}

@media screen and (max-width: 415px) {
  .magazine .magazine__inner .magazine__contents .magazine__contents-wrap .magazine__contents-issue-wrap .magazine__contents-item .magazine__contents-text-wrap .magazine__contents-issue-title {
    font-size: 1.4rem;
  }
}

.magazine .magazine__inner .magazine__contents .magazine__contents-wrap .magazine__contents-noimage {
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .magazine .magazine__inner .magazine__contents .magazine__contents-wrap .magazine__contents-noimage {
    display: none;
  }
}

.issue {
  padding-top: 295px;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .issue {
    padding-top: 200px;
  }
}

@media screen and (max-width: 415px) {
  .issue {
    padding-top: 110px;
  }
}

.issue .issue__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid black;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .issue .issue__inner {
    max-width: 600px;
  }
}

@media screen and (max-width: 415px) {
  .issue .issue__inner {
    max-width: 330px;
    display: block;
    border-bottom: none;
  }
}

@media screen and (max-width: 329px) {
  .issue .issue__inner {
    max-width: 280px;
  }
}

.issue .issue__inner .issue__container {
  width: 33%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .issue .issue__inner .issue__container {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 415px) {
  .issue .issue__inner .issue__container {
    width: auto;
    text-align: center;
    margin-bottom: 0;
  }
}

.issue .issue__inner .issue__container .issue__container-title {
  width: 100%;
  font-size: 2.8rem;
  font-weight: normal;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "游明朝体";
}

@media screen and (max-width: 899px) {
  .issue .issue__inner .issue__container .issue__container-title {
    font-size: 2.3rem;
  }
}

.issue .issue__inner .issue__container .issue__container-subtitle {
  font-size: 2.1rem;
}

@media screen and (max-width: 899px) {
  .issue .issue__inner .issue__container .issue__container-subtitle {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.issue .issue__inner .issue__container .issue__container-list {
  width: 88%;
  border-top: 1px solid;
  padding-top: 15px;
  margin-top: 50px;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .issue .issue__inner .issue__container .issue__container-list {
    margin-top: 16px;
  }
}

@media screen and (max-width: 415px) {
  .issue .issue__inner .issue__container .issue__container-list {
    display: none;
  }
}

.issue .issue__inner .issue__container .issue__container-list .issue__container-definition-list {
  margin-top: 14px;
}

.issue .issue__inner .issue__container .issue__container-list .issue__container-definition-list .issue__container-definition-team {
  float: left;
  font-size: 1rem;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "游明朝体";
  margin-right: 33px;
}

@media screen and (max-width: 899px) {
  .issue .issue__inner .issue__container .issue__container-list .issue__container-definition-list .issue__container-definition-team {
    float: none;
  }
}

.issue .issue__inner .issue__container .issue__container-list .issue__container-definition-list .issue__container-definition-description {
  font-size: 1rem;
}

.issue .issue__inner .issue__contents {
  width: 67%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .issue .issue__inner .issue__contents {
    width: 63%;
  }
}

@media screen and (max-width: 415px) {
  .issue .issue__inner .issue__contents {
    width: 100%;
  }
}

.issue .issue__inner .issue__contents .issue__contents-wrap {
  width: 100%;
  margin: 140px 0 117px;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .issue .issue__inner .issue__contents .issue__contents-wrap {
    margin-top: 93px;
  }
}

@media screen and (max-width: 415px) {
  .issue .issue__inner .issue__contents .issue__contents-wrap {
    margin-top: 45px;
  }
}

.issue .issue__inner .issue__contents .issue__contents-wrap .issue__contents-image {
  width: 80%;
  margin: auto;
}

@media screen and (max-width: 899px) {
  .issue .issue__inner .issue__contents .issue__contents-wrap .issue__contents-image {
    width: 100%;
  }
}

.issue .issue__inner .issue__contents .issue__contents-wrap .issue__image-list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.issue .issue__inner .issue__contents .issue__contents-wrap .issue__image-list-wrap .issue__contents-image-list {
  width: 100%;
}

.issue .issue__inner .issue__contents .issue__contents-wrap .issue__image-list-wrap .issue__contents-image-list .issue__contents-image-pic {
  width: 90%;
}

.issue .issue__inner .issue__contents .issue__contents-wrap .issue__contents-text-wrap {
  width: 80%;
  margin: 15px auto 0;
}

@media screen and (max-width: 899px) {
  .issue .issue__inner .issue__contents .issue__contents-wrap .issue__contents-text-wrap {
    width: 100%;
  }
}

.issue .issue__inner .issue__contents .issue__contents-wrap .issue__contents-text-wrap .issue__contents-text {
  font-weight: normal;
  margin-top: 45px;
  font-size: 1.3rem;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .issue .issue__inner .issue__contents .issue__contents-wrap .issue__contents-text-wrap .issue__contents-text {
    font-size: 1.4rem;
  }
}

.issue .issue__inner .issue__contents .issue__contents-wrap .issue__contents-text-wrap .issue__contents-link {
  display: block;
  border: 1px solid black;
  width: 150px;
  text-align: center;
  font-size: 1.4rem;
  padding: 5px 0 5px;
  margin-top: 58px;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .issue .issue__inner .issue__contents .issue__contents-wrap .issue__contents-text-wrap .issue__contents-link {
    margin: 45px auto 0;
  }
}

@media screen and (max-width: 415px) {
  .issue .issue__inner .issue__contents .issue__contents-wrap .issue__contents-text-wrap .issue__contents-link {
    margin: 45px auto 0;
  }
}

.stockist {
  padding-top: 295px;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .stockist {
    padding-top: 200px;
  }
}

@media screen and (max-width: 415px) {
  .stockist {
    padding-top: 110px;
  }
}

.stockist .stockist__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid black;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .stockist .stockist__inner {
    max-width: 600px;
  }
}

@media screen and (max-width: 415px) {
  .stockist .stockist__inner {
    max-width: 330px;
    display: block;
    border-bottom: none;
  }
}

.stockist .stockist__inner .stockist__container {
  width: 23%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .stockist .stockist__inner .stockist__container {
    width: auto;
  }
}

.stockist .stockist__inner .stockist__container .stockist__container-title {
  width: 100%;
  font-size: 2.8rem;
  font-weight: normal;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "游明朝体";
  padding-bottom: 88px;
  border-bottom: 1px solid black;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .stockist .stockist__inner .stockist__container .stockist__container-title {
    padding-bottom: 55px;
    font-size: 2.3rem;
  }
}

@media screen and (max-width: 415px) {
  .stockist .stockist__inner .stockist__container .stockist__container-title {
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
  }
}

.stockist .stockist__inner .stockist__container .stockist__container-prefectures {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.1rem;
  line-height: 2.5rem;
  margin-top: 15px;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .stockist .stockist__inner .stockist__container .stockist__container-prefectures {
    display: none;
  }
}

.stockist .stockist__inner .stockist__container .stockist__container-prefectures .stockist__container-prefectures-north {
  margin-right: 42px;
}

.stockist .stockist__inner .stockist__container .stockist__container-inquiry {
  width: 70%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid black;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .stockist .stockist__inner .stockist__container .stockist__container-inquiry {
    width: 100%;
  }
}

@media screen and (max-width: 415px) {
  .stockist .stockist__inner .stockist__container .stockist__container-inquiry {
    margin: 20px auto 0;
  }
}

.stockist .stockist__inner .stockist__container .stockist__container-inquiry .stockist__container-inquiry-text {
  font-size: 1.1rem;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .stockist .stockist__inner .stockist__container .stockist__container-inquiry .stockist__container-inquiry-text {
    text-align: center;
  }
}

.stockist .stockist__inner .stockist__container .stockist__container-inquiry .stockist__container-inquiry-link {
  font-size: 1.2rem;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .stockist .stockist__inner .stockist__container .stockist__container-inquiry .stockist__container-inquiry-link {
    text-align: center;
  }
}

.stockist .stockist__contents {
  width: 67%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .stockist .stockist__contents {
    width: 76%;
  }
}

@media screen and (max-width: 415px) {
  .stockist .stockist__contents {
    width: auto;
  }
}

.stockist .stockist__contents .stockist__contents-wrap {
  width: 100%;
  margin: 140px 0 117px;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .stockist .stockist__contents .stockist__contents-wrap {
    margin: 100px 0 117px;
  }
}

@media screen and (max-width: 415px) {
  .stockist .stockist__contents .stockist__contents-wrap {
    margin-top: 85px;
  }
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store {
  width: 70%;
  margin: auto;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store {
    width: 85%;
    text-align: center;
  }
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-team {
  width: 27%;
  font-size: 2rem;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-team {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 415px) {
  .stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-team {
    width: auto;
  }
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 70px;
  width: 100%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list {
    display: block;
  }
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list .stockist__contents-definition-description {
  font-size: 1.3rem;
  width: 63%;
  margin: auto;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list .stockist__contents-definition-description {
    width: 85%;
  }
}

@media screen and (max-width: 415px) {
  .stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list .stockist__contents-definition-description {
    width: auto;
    margin-top: 30px;
  }
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list .stockist__contents-definition-description .stockist__contents-list-item {
  line-height: 2.5rem;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #hokkaido {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #aomori {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #iwate {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #miyagi {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #akita {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #yamagata {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #fukushima {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #ibaraki {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #tochigi {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #gunma {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #saitama {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #chiba {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #tokyo {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #kanagawa {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #niigata {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #toyama {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #fukui {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #yamanashi {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #nagano {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #gifu {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #shizuoka {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #aichi {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #mie {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #shiga {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #kyoto {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #osaka {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #hyogo {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #nara {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #wakayama {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #tottori {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #shimane {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #okayama {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #hiroshima {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #tokushima {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #kagawa {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #ehime {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #kouchi {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #fukuoka {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #saga {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #nagasaki {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #kumamoto {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #ooita {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #miyazaki {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #kagoshima {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #okinawa {
  margin-top: -100px;
  padding-top: 100px;
}

.stockist .stockist__contents .stockist__contents-wrap .stockist__contents-store .stockist__contents-definition-list #taiwan {
  margin-top: -100px;
  padding-top: 100px;
}

.neighbors-list {
  padding-top: 295px;
  margin-bottom: 15%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .neighbors-list {
    padding-top: 200px;
    margin-bottom: 35%;
  }
}

@media screen and (max-width: 415px) {
  .neighbors-list {
    padding-top: 110px;
  }
}

.neighbors-list .neighbors-list__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #ffffff;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .neighbors-list .neighbors-list__inner {
    max-width: 600px;
  }
}

@media screen and (max-width: 415px) {
  .neighbors-list .neighbors-list__inner {
    max-width: 330px;
    display: block;
    border-bottom: none;
  }
}

@media screen and (max-width: 329px) {
  .neighbors-list .neighbors-list__inner {
    max-width: 280px;
  }
}

.neighbors-list .neighbors-list__inner .neighbors-list__container {
  width: 23%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .neighbors-list .neighbors-list__inner .neighbors-list__container {
    width: 23%;
  }
}

@media screen and (max-width: 415px) {
  .neighbors-list .neighbors-list__inner .neighbors-list__container {
    width: auto;
  }
}

.neighbors-list .neighbors-list__inner .neighbors-list__container .neighbors-list__container-title {
  width: 100%;
  font-size: 2.8rem;
  font-weight: normal;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "游明朝体";
  padding-bottom: 88px;
  border-bottom: 1px solid black;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .neighbors-list .neighbors-list__inner .neighbors-list__container .neighbors-list__container-title {
    font-size: 2.3rem;
    padding-bottom: 55px;
  }
}

@media screen and (max-width: 415px) {
  .neighbors-list .neighbors-list__inner .neighbors-list__container .neighbors-list__container-title {
    padding-bottom: 0;
    text-align: center;
    border-bottom: none;
  }
}

.neighbors-list .neighbors-list__inner .neighbors-list__contents {
  width: 67%;
  margin-top: 70px;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .neighbors-list .neighbors-list__inner .neighbors-list__contents {
    margin-top: 45px;
  }
}

@media screen and (max-width: 415px) {
  .neighbors-list .neighbors-list__inner .neighbors-list__contents {
    width: auto;
  }
}

.neighbors-list .neighbors-list__inner .neighbors-list__contents .neighbors-list__contents-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-top: 70px;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .neighbors-list .neighbors-list__inner .neighbors-list__contents .neighbors-list__contents-wrap {
    margin-top: 50px;
  }
}

@media screen and (max-width: 415px) {
  .neighbors-list .neighbors-list__inner .neighbors-list__contents .neighbors-list__contents-wrap {
    display: block;
  }
}

.neighbors-list .neighbors-list__inner .neighbors-list__contents .neighbors-list__contents-wrap .neighbors-list__contents-issue-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .neighbors-list .neighbors-list__inner .neighbors-list__contents .neighbors-list__contents-wrap .neighbors-list__contents-issue-wrap {
    display: block;
    width: 100%;
    margin-bottom: 50px;
  }
}

.neighbors-list .neighbors-list__inner .neighbors-list__contents .neighbors-list__contents-wrap .neighbors-list__contents-issue-wrap .neighbors-list__contents-image {
  width: 90%;
  margin: auto;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .neighbors-list .neighbors-list__inner .neighbors-list__contents .neighbors-list__contents-wrap .neighbors-list__contents-issue-wrap .neighbors-list__contents-image {
    width: 100%;
  }
}

.neighbors-list .neighbors-list__inner .neighbors-list__contents .neighbors-list__contents-wrap .neighbors-list__contents-issue-wrap .neighbors-list__contents-item {
  width: 45%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .neighbors-list .neighbors-list__inner .neighbors-list__contents .neighbors-list__contents-wrap .neighbors-list__contents-issue-wrap .neighbors-list__contents-item {
    width: 100%;
  }
}

.neighbors-list .neighbors-list__inner .neighbors-list__contents .neighbors-list__contents-wrap .neighbors-list__contents-issue-wrap .neighbors-list__contents-item .neighbors-list__contents-issue-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.neighbors-list .neighbors-list__inner .neighbors-list__contents .neighbors-list__contents-wrap .neighbors-list__contents-issue-wrap .neighbors-list__contents-item .neighbors-list__contents-issue-info .neighbors-list__contents-issue-prefectures {
  font-size: 1rem;
  border: 1px solid black;
  padding: 0 20px;
  line-height: 2rem;
}

@media screen and (max-width: 899px) {
  .neighbors-list .neighbors-list__inner .neighbors-list__contents .neighbors-list__contents-wrap .neighbors-list__contents-issue-wrap .neighbors-list__contents-item .neighbors-list__contents-issue-info .neighbors-list__contents-issue-prefectures {
    padding: 0 10px;
  }
}

.neighbors-list .neighbors-list__inner .neighbors-list__contents .neighbors-list__contents-wrap .neighbors-list__contents-issue-wrap .neighbors-list__contents-text {
  font-size: 2.1rem;
  font-weight: normal;
  line-height: 6rem;
  text-align: center;
  margin: 88px 0 56px;
}

.neighbors-list .neighbors-list__inner .neighbors-list__contents .neighbors-list__contents-wrap .neighbors-list__contents-issue-wrap .neighbors-list__contents-text-wrap {
  width: 90%;
  margin: 15px auto 0;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .neighbors-list .neighbors-list__inner .neighbors-list__contents .neighbors-list__contents-wrap .neighbors-list__contents-issue-wrap .neighbors-list__contents-text-wrap {
    width: auto;
    margin-bottom: 10%;
  }
}

.neighbors-list .neighbors-list__inner .neighbors-list__contents .neighbors-list__contents-wrap .neighbors-list__contents-issue-wrap .neighbors-list__contents-text-wrap .neighbors-list__contents-issue-title {
  margin-top: 5px;
  font-size: 1.6rem;
  font-weight: bold;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .neighbors-list .neighbors-list__inner .neighbors-list__contents .neighbors-list__contents-wrap .neighbors-list__contents-issue-wrap .neighbors-list__contents-text-wrap .neighbors-list__contents-issue-title {
    font-size: 1.3rem;
    line-height: 1.7rem;
  }
}

@media screen and (max-width: 415px) {
  .neighbors-list .neighbors-list__inner .neighbors-list__contents .neighbors-list__contents-wrap .neighbors-list__contents-issue-wrap .neighbors-list__contents-text-wrap .neighbors-list__contents-issue-title {
    width: auto;
    font-size: 1.4rem;
  }
}

.neighbors-list .neighbors-list__inner .neighbors-list__contents .neighbors-list__contents-wrap .neighbors-list__contents-issue-wrap .neighbors-list__contents-text-wrap .neighbors-list__contents-issue-text {
  margin-top: 10px;
  font-size: 1.3rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .neighbors-list .neighbors-list__inner .neighbors-list__contents .neighbors-list__contents-wrap .neighbors-list__contents-issue-wrap .neighbors-list__contents-text-wrap .neighbors-list__contents-issue-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    line-height: 1.7rem;
  }
}

@media screen and (max-width: 415px) {
  .neighbors-list .neighbors-list__inner .neighbors-list__contents .neighbors-list__contents-wrap .neighbors-list__contents-issue-wrap .neighbors-list__contents-text-wrap .neighbors-list__contents-issue-text {
    font-size: 1.3rem;
  }
}

.neighbors-list .neighbors-list__feature {
  display: none;
  background-color: #f4f4f4;
  padding: 50px 0 55px;
  margin-top: 135px;
}

@media screen and (max-width: 899px) {
  .neighbors-list .neighbors-list__feature {
    padding: 40px 0 45px;
  }
}

.neighbors-list .neighbors-list__feature .neighbors-list__feature-wrap {
  max-width: 1080px;
  margin: auto;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .neighbors-list .neighbors-list__feature .neighbors-list__feature-wrap {
    max-width: 600px;
  }
}

@media screen and (max-width: 415px) {
  .neighbors-list .neighbors-list__feature .neighbors-list__feature-wrap {
    max-width: 330px;
  }
}

.neighbors-list .neighbors-list__feature .neighbors-list__feature-wrap .neighbors-list__feature-title {
  font-size: 2.8rem;
  font-weight: normal;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "游明朝体";
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .neighbors-list .neighbors-list__feature .neighbors-list__feature-wrap .neighbors-list__feature-title {
    font-size: 2.3rem;
  }
}

@media screen and (max-width: 415px) {
  .neighbors-list .neighbors-list__feature .neighbors-list__feature-wrap .neighbors-list__feature-title {
    text-align: center;
  }
}

.neighbors-list .neighbors-list__feature .neighbors-list__feature-wrap .neighbors-list__feature-flex {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 70px;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .neighbors-list .neighbors-list__feature .neighbors-list__feature-wrap .neighbors-list__feature-flex {
    margin-top: 35px;
  }
}

@media screen and (max-width: 415px) {
  .neighbors-list .neighbors-list__feature .neighbors-list__feature-wrap .neighbors-list__feature-flex {
    display: block;
  }
}

.neighbors-list .neighbors-list__feature .neighbors-list__feature-wrap .neighbors-list__feature-flex .neighbors-list__feature-contents-wrap {
  width: 30%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .neighbors-list .neighbors-list__feature .neighbors-list__feature-wrap .neighbors-list__feature-flex .neighbors-list__feature-contents-wrap {
    width: auto;
    margin-bottom: 50px;
  }
}

.neighbors-list .neighbors-list__feature .neighbors-list__feature-wrap .neighbors-list__feature-flex .neighbors-list__feature-contents-wrap .neighbors-list__feature-image-wrap {
  width: 100%;
}

.neighbors-list .neighbors-list__feature .neighbors-list__feature-wrap .neighbors-list__feature-flex .neighbors-list__feature-contents-wrap .neighbors-list__feature-image-wrap .neighbors-list__feature-image {
  width: 100%;
}

.neighbors-list .neighbors-list__feature .neighbors-list__feature-wrap .neighbors-list__feature-flex .neighbors-list__feature-contents-wrap .neighbors-list__feature-text-wrap .neighbors-list__feature-issue-day {
  margin-top: 20px;
}

@media screen and (max-width: 899px) {
  .neighbors-list .neighbors-list__feature .neighbors-list__feature-wrap .neighbors-list__feature-flex .neighbors-list__feature-contents-wrap .neighbors-list__feature-text-wrap .neighbors-list__feature-issue-day {
    margin-top: 7px;
  }
}

.neighbors-list .neighbors-list__feature .neighbors-list__feature-wrap .neighbors-list__feature-flex .neighbors-list__feature-contents-wrap .neighbors-list__feature-text-wrap .neighbors-list__feature-issue-title {
  margin-top: 12px;
  font-size: 1.6rem;
  font-weight: bold;
}

.neighbors-list .neighbors-list__feature .neighbors-list__feature-wrap .neighbors-list__feature-flex .neighbors-list__feature-contents-wrap .neighbors-list__feature-text-wrap .neighbors-list__feature-issue-text {
  margin-top: 24px;
  font-size: 1.2rem;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .neighbors-list .neighbors-list__feature .neighbors-list__feature-wrap .neighbors-list__feature-flex .neighbors-list__feature-contents-wrap .neighbors-list__feature-text-wrap .neighbors-list__feature-issue-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    margin-top: 10px;
  }
}

@media screen and (max-width: 415px) {
  .neighbors-list .neighbors-list__feature .neighbors-list__feature-wrap .neighbors-list__feature-flex .neighbors-list__feature-contents-wrap .neighbors-list__feature-text-wrap .neighbors-list__feature-issue-text {
    display: none;
  }
}

.neighbors-topic {
  padding-top: 295px;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .neighbors-topic {
    padding-top: 200px;
  }
}

@media screen and (max-width: 415px) {
  .neighbors-topic {
    padding-top: 110px;
  }
}

.neighbors-topic .neighbors-topic__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid black;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .neighbors-topic .neighbors-topic__inner {
    max-width: 600px;
  }
}

@media screen and (max-width: 415px) {
  .neighbors-topic .neighbors-topic__inner {
    max-width: 330px;
    display: block;
  }
}

@media screen and (max-width: 329px) {
  .neighbors-topic .neighbors-topic__inner {
    max-width: 280px;
  }
}

.neighbors-topic .neighbors-topic__inner .neighbors-topic__container {
  width: 23%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .neighbors-topic .neighbors-topic__inner .neighbors-topic__container {
    width: auto;
  }
}

.neighbors-topic .neighbors-topic__inner .neighbors-topic__container .neighbors-topic__container-title {
  width: 100%;
  font-size: 2.8rem;
  font-weight: normal;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "游明朝体";
  padding-bottom: 88px;
  border-bottom: 1px solid black;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .neighbors-topic .neighbors-topic__inner .neighbors-topic__container .neighbors-topic__container-title {
    font-size: 2.3rem;
    padding-bottom: 55px;
  }
}

@media screen and (max-width: 415px) {
  .neighbors-topic .neighbors-topic__inner .neighbors-topic__container .neighbors-topic__container-title {
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
  }
}

.neighbors-topic .neighbors-topic__inner .neighbors-topic__contents {
  width: 67%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .neighbors-topic .neighbors-topic__inner .neighbors-topic__contents {
    width: 77%;
  }
}

@media screen and (max-width: 415px) {
  .neighbors-topic .neighbors-topic__inner .neighbors-topic__contents {
    width: 100%;
  }
}

.neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-top: 20px;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-title {
    font-size: 2rem;
  }
}

@media screen and (max-width: 415px) {
  .neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-title {
    font-size: 1.8rem;
  }
}

.neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap {
  width: 100%;
  margin: 140px auto 60px;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap {
    margin: 95px auto 117px;
  }
}

@media screen and (max-width: 415px) {
  .neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap {
    margin-top: 75px;
  }
}

.neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-image-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 899px) {
  .neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-image-wrap {
    display: block;
  }
}

.neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-image-wrap .neighbors-topic__contents-image-topic {
  width: 45%;
}

@media screen and (max-width: 899px) {
  .neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-image-wrap .neighbors-topic__contents-image-topic {
    width: 100%;
  }
}

.neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-image-wrap .neighbors-topic__contents-image-topic .neighbors-topic__contents-image-text {
  line-height: 1.5rem;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-image-wrap .neighbors-topic__contents-image-topic .neighbors-topic__contents-image-text {
    width: 80%;
    margin: 0px auto 20px;
  }
}

@media screen and (max-width: 415px) {
  .neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-image-wrap .neighbors-topic__contents-image-topic .neighbors-topic__contents-image-text {
    width: 100%;
  }
}

.neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-image-wrap .neighbors-topic__contents-image {
  margin: auto;
  width: 100%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-image-wrap .neighbors-topic__contents-image {
    width: 80%;
  }
}

@media screen and (max-width: 415px) {
  .neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-image-wrap .neighbors-topic__contents-image {
    width: 100%;
  }
}

.neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-issue-wrap {
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-issue-wrap {
    margin: 0 auto;
    width: 80%;
  }
}

@media screen and (max-width: 415px) {
  .neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-issue-wrap {
    width: 100%;
  }
}

.neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-issue-wrap .neighbors-topic__contents-issue-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}

@media screen and (max-width: 899px) {
  .neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-issue-wrap .neighbors-topic__contents-issue-info {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-issue-wrap .neighbors-topic__contents-issue-info .neighbors-topic__contents-issue-day {
  font-size: 1.2rem;
  margin-right: 30px;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-issue-wrap .neighbors-topic__contents-issue-info .neighbors-topic__contents-issue-day {
    font-size: 1.2rem;
  }
}

.neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-issue-wrap .neighbors-topic__contents-issue-info .neighbors-topic__contents-issue-prefectures {
  font-size: 1.2rem;
  border: 1px solid black;
  padding: 0 20px;
  line-height: 2rem;
}

.neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-issue-wrap .neighbors-topic__contents-text {
  font-weight: normal;
  font-size: 1.3rem;
  margin: 50px 0 50px;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-issue-wrap .neighbors-topic__contents-text {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 899px) {
  .neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-issue-wrap .neighbors-topic__contents-text {
    margin: 20px 0 20px;
  }
}

.neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-issue-wrap .neighbors-topic__contents-image-caption {
  text-align: center;
}

.neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-issue-wrap .neighbors-topic__contents-shop-wrap {
  margin-top: 5%;
}

@media screen and (max-width: 899px) {
  .neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-issue-wrap .neighbors-topic__contents-shop-wrap {
    margin-top: 10%;
  }
}

.neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-issue-wrap .neighbors-topic__contents-shop-wrap .neighbors-topic__contents-shop {
  font-size: 1.3rem;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "游明朝体";
}

.neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-issue-wrap .neighbors-topic__contents-shop-wrap .neighbors-topic__contents-shop-name {
  font-size: 1.5rem;
}

.neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-issue-wrap .neighbors-topic__contents-shop-wrap .neighbors-topic__contents-shop-hp {
  font-size: 1.3rem;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-issue-wrap .neighbors-topic__contents-shop-wrap .neighbors-topic__contents-shop-hp {
    font-size: 1.2rem;
  }
}

.neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-issue-wrap .neighbors-topic__contents-shop-wrap .neighbors-topic__contents-shop-insta {
  font-size: 1.3rem;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-issue-wrap .neighbors-topic__contents-shop-wrap .neighbors-topic__contents-shop-insta {
    font-size: 1.2rem;
  }
}

.neighbors-topic .neighbors-topic__inner .neighbors-topic__contents .neighbors-topic__contents-wrap .neighbors-topic__contents-issue-wrap .neighbors-topic__contents-credit-wrap {
  margin-top: 3%;
}

.stories-topic {
  padding-top: 295px;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .stories-topic {
    padding-top: 200px;
  }
}

@media screen and (max-width: 415px) {
  .stories-topic {
    padding-top: 110px;
  }
}

.stories-topic .stories-topic__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid black;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .stories-topic .stories-topic__inner {
    max-width: 600px;
  }
}

@media screen and (max-width: 415px) {
  .stories-topic .stories-topic__inner {
    max-width: 330px;
    display: block;
    border-bottom: none;
  }
}

@media screen and (max-width: 329px) {
  .stories-topic .stories-topic__inner {
    max-width: 280px;
  }
}

.stories-topic .stories-topic__inner .stories-topic__container {
  width: 23%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .stories-topic .stories-topic__inner .stories-topic__container {
    width: 100%;
  }
}

.stories-topic .stories-topic__inner .stories-topic__container .stories-topic__container-title {
  width: 100%;
  font-size: 2.8rem;
  font-weight: normal;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "游明朝体";
  padding-bottom: 88px;
  border-bottom: 1px solid black;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .stories-topic .stories-topic__inner .stories-topic__container .stories-topic__container-title {
    font-size: 2.3rem;
    padding-bottom: 55px;
  }
}

@media screen and (max-width: 415px) {
  .stories-topic .stories-topic__inner .stories-topic__container .stories-topic__container-title {
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
  }
}

.stories-topic .stories-topic__inner .stories-topic__contents {
  width: 60%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .stories-topic .stories-topic__inner .stories-topic__contents {
    width: 100%;
  }
}

.stories-topic .stories-topic__inner .stories-topic__contents .stories-topic__contents-wrap {
  width: 100%;
  margin: 140px auto 100px;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .stories-topic .stories-topic__inner .stories-topic__contents .stories-topic__contents-wrap {
    margin: 95px auto 0px;
  }
}

@media screen and (max-width: 415px) {
  .stories-topic .stories-topic__inner .stories-topic__contents .stories-topic__contents-wrap {
    margin-top: 56px;
  }
}

.stories-topic .stories-topic__inner .stories-topic__contents .stories-topic__contents-wrap .stories-topic__contents-issue-day {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.stories-topic .stories-topic__inner .stories-topic__contents .stories-topic__contents-wrap .stories-topic__contents-title {
  font-size: 2.1rem;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "游明朝体";
  font-weight: bold;
  margin-top: 20px;
  line-height: 3rem;
}

@media screen and (max-width: 899px) {
  .stories-topic .stories-topic__inner .stories-topic__contents .stories-topic__contents-wrap .stories-topic__contents-title {
    font-size: 1.7rem;
  }
}

.stories-topic .stories-topic__inner .stories-topic__contents .stories-topic__contents-wrap .stories-topic__contents-item {
  margin-top: 10%;
}

.stories-topic .stories-topic__inner .stories-topic__contents .stories-topic__contents-wrap .stories-topic__contents-item .stories-topic__contents-item-title {
  font-size: 1.5rem;
  margin-top: 2%;
}

.stories-topic .stories-topic__inner .stories-topic__contents .stories-topic__contents-wrap .stories-topic__contents-border {
  border-top: 1px dashed black;
  border-bottom: 1px dashed black;
  width: 100%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .stories-topic .stories-topic__inner .stories-topic__contents .stories-topic__contents-wrap .stories-topic__contents-border {
    width: 100%;
  }
}

@media screen and (max-width: 415px) {
  .stories-topic .stories-topic__inner .stories-topic__contents .stories-topic__contents-wrap .stories-topic__contents-border {
    width: 100%;
  }
}

.stories-topic .stories-topic__inner .stories-topic__contents .stories-topic__contents-wrap .stories-topic__contents-image {
  margin: auto;
  width: 100%;
}

.stories-topic .stories-topic__inner .stories-topic__contents .stories-topic__contents-wrap .stories-topic__contents-text {
  font-weight: normal;
  font-size: 1.3rem;
  margin: 30px 0 30px;
}

@media screen and (max-width: 899px) {
  .stories-topic .stories-topic__inner .stories-topic__contents .stories-topic__contents-wrap .stories-topic__contents-text {
    margin: 15px 0 15px;
  }
}

.stories-topic .stories-topic__inner .stories-topic__contents .stories-topic__contents-wrap .stories-topic__contents-unordered-list .stories-topic__contents-list {
  font-size: 1.3rem;
}

.scenery-bookshelf-topic {
  padding-top: 295px;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .scenery-bookshelf-topic {
    padding-top: 200px;
  }
}

@media screen and (max-width: 415px) {
  .scenery-bookshelf-topic {
    padding: 110px 0 100px;
  }
}

.scenery-bookshelf-topic .scenery-bookshelf-topic__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid black;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .scenery-bookshelf-topic .scenery-bookshelf-topic__inner {
    max-width: 600px;
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 415px) {
  .scenery-bookshelf-topic .scenery-bookshelf-topic__inner {
    max-width: 330px;
    display: block;
    border-bottom: none;
  }
}

@media screen and (max-width: 329px) {
  .scenery-bookshelf-topic .scenery-bookshelf-topic__inner {
    max-width: 280px;
  }
}

.scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__container {
  width: 23%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__container {
    width: 100%;
  }
}

.scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__container .scenery-bookshelf-topic__container-title {
  width: 100%;
  font-size: 2.8rem;
  font-weight: normal;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "游明朝体";
  padding-bottom: 88px;
  border-bottom: 1px solid black;
  line-height: 3rem;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__container .scenery-bookshelf-topic__container-title {
    font-size: 2.3rem;
    padding-bottom: 45px;
  }
}

@media screen and (max-width: 415px) {
  .scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__container .scenery-bookshelf-topic__container-title {
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
  }
}

.scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__container .scenery-bookshelf-topic__container-list {
  margin-top: 15px;
}

.scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__container .scenery-bookshelf-topic__container-list .scenery-bookshelf-topic__container-unordered-list {
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__container .scenery-bookshelf-topic__container-list .scenery-bookshelf-topic__container-unordered-list {
    display: none;
  }
}

.scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__container .scenery-bookshelf-topic__container-list .scenery-bookshelf-topic__container-unordered-list .scenery-bookshelf-topic__container-definition-team {
  float: left;
  font-size: 1.1rem;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "游明朝体";
  margin-right: 30px;
}

@media screen and (max-width: 899px) {
  .scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__container .scenery-bookshelf-topic__container-list .scenery-bookshelf-topic__container-unordered-list .scenery-bookshelf-topic__container-definition-team {
    float: none;
  }
}

.scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__container .scenery-bookshelf-topic__container-list .scenery-bookshelf-topic__container-unordered-list .scenery-bookshelf-topic__container-definition-description {
  font-size: 1.1rem;
}

@media screen and (max-width: 899px) {
  .scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__container .scenery-bookshelf-topic__container-list .scenery-bookshelf-topic__container-unordered-list .scenery-bookshelf-topic__container-definition-description {
    margin-bottom: 10px;
    font-size: 1rem;
  }
}

.scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__contents {
  width: 67%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__contents {
    width: 100%;
  }
}

.scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__contents .scenery-bookshelf-topic__contents-wrap {
  width: 100%;
  margin: 140px auto 100px;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__contents .scenery-bookshelf-topic__contents-wrap {
    margin: 95px auto 0px;
  }
}

@media screen and (max-width: 415px) {
  .scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__contents .scenery-bookshelf-topic__contents-wrap {
    margin-top: 56px;
  }
}

.scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__contents .scenery-bookshelf-topic__contents-wrap .scenery-bookshelf-topic__contents-about {
  font-size: 1.5rem;
}

.scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__contents .scenery-bookshelf-topic__contents-wrap .scenery-bookshelf-topic__contents-title {
  font-size: 2.1rem;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "游明朝体";
  font-weight: bold;
  margin-top: 20px;
}

@media screen and (max-width: 899px) {
  .scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__contents .scenery-bookshelf-topic__contents-wrap .scenery-bookshelf-topic__contents-title {
    font-size: 1.7rem;
  }
}

.scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__contents .scenery-bookshelf-topic__contents-wrap .scenery-bookshelf-topic__contents-text {
  font-size: 1.3rem;
}

.scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__contents .scenery-bookshelf-topic__contents-wrap .scenery-bookshelf-topic__goods-detail {
  width: 100%;
  height: auto;
  margin-top: 50px;
}

.scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__contents .scenery-bookshelf-topic__contents-wrap .scenery-bookshelf-topic__goods-detail .scenery-bookshelf-topic__goods-title {
  font-size: 1.7rem;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__contents .scenery-bookshelf-topic__contents-wrap .scenery-bookshelf-topic__goods-detail .scenery-bookshelf-topic__goods-title {
    font-size: 1.5rem;
  }
}

.scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__contents .scenery-bookshelf-topic__contents-wrap .scenery-bookshelf-topic__goods-detail .scenery-bookshelf-topic__goods-image-wrap {
  width: 100%;
  height: 500px;
  position: relative;
  margin: 0 auto;
  display: block;
  overflow: hidden;
  cursor: pointer;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__contents .scenery-bookshelf-topic__contents-wrap .scenery-bookshelf-topic__goods-detail .scenery-bookshelf-topic__goods-image-wrap {
    height: 270px;
  }
}

@media screen and (max-width: 415px) {
  .scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__contents .scenery-bookshelf-topic__contents-wrap .scenery-bookshelf-topic__goods-detail .scenery-bookshelf-topic__goods-image-wrap {
    height: 250px;
  }
}

.scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__contents .scenery-bookshelf-topic__contents-wrap .scenery-bookshelf-topic__goods-detail .scenery-bookshelf-topic__goods-image-wrap .scenery-bookshelf-topic__goods-image {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  display: block;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__contents .scenery-bookshelf-topic__contents-wrap .scenery-bookshelf-topic__goods-detail .scenery-bookshelf-topic__goods-image-wrap:hover
.scenery-bookshelf-topic__goods-image:nth-of-type(2) {
  opacity: 0;
}

.scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__contents .scenery-bookshelf-topic__contents-wrap .scenery-bookshelf-topic__goods-detail .scenery-bookshelf-topic__goods-unordered-list {
  margin-top: 20px;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__contents .scenery-bookshelf-topic__contents-wrap .scenery-bookshelf-topic__goods-detail .scenery-bookshelf-topic__goods-unordered-list {
    margin-top: 5px;
  }
}

.scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__contents .scenery-bookshelf-topic__contents-wrap .scenery-bookshelf-topic__goods-detail .scenery-bookshelf-topic__goods-unordered-list .scenery-bookshelf-topic__goods-list {
  font-size: 1.3rem;
}

.scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__contents .scenery-bookshelf-topic__contents-wrap .scenery-bookshelf-topic__contents-text {
  font-weight: normal;
  font-size: 1.3rem;
  margin: 30px 0 0;
}

@media screen and (max-width: 899px) {
  .scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__contents .scenery-bookshelf-topic__contents-wrap .scenery-bookshelf-topic__contents-text {
    margin: 15px 0 15px;
  }
}

.scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__contents .scenery-bookshelf-topic__contents-wrap .scenery-bookshelf-topic__link {
  display: block;
  border: 1px solid black;
  width: 105px;
  text-align: center;
  font-size: 1.4rem;
  padding: 5px 0 5px;
  margin-top: 20px;
}

.scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__contents .scenery-bookshelf-topic__contents-wrap #book-end {
  margin-top: -100px;
  padding-top: 100px;
}

.scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__contents .scenery-bookshelf-topic__contents-wrap #rock-end {
  margin-top: -100px;
  padding-top: 100px;
}

.scenery-bookshelf-topic .scenery-bookshelf-topic__inner .scenery-bookshelf-topic__contents .scenery-bookshelf-topic__contents-wrap #bookonthewall {
  margin-top: -100px;
  padding-top: 100px;
}

.privacy {
  padding-top: 295px;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .privacy {
    padding-top: 200px;
  }
}

@media screen and (max-width: 415px) {
  .privacy {
    padding-top: 110px;
  }
}

.privacy .privacy__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid black;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .privacy .privacy__inner {
    max-width: 600px;
  }
}

@media screen and (max-width: 415px) {
  .privacy .privacy__inner {
    display: block;
    border-bottom: none;
  }
}

.privacy .privacy__inner .privacy__container {
  width: 23%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .privacy .privacy__inner .privacy__container {
    width: auto;
  }
}

.privacy .privacy__inner .privacy__container .privacy__container-title {
  width: 100%;
  font-size: 2.8rem;
  font-weight: normal;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "游明朝体";
  padding-bottom: 88px;
  border-bottom: 1px solid black;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .privacy .privacy__inner .privacy__container .privacy__container-title {
    font-size: 2.3rem;
    padding-bottom: 34px;
    line-height: 3rem;
  }
}

@media screen and (max-width: 415px) {
  .privacy .privacy__inner .privacy__container .privacy__container-title {
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
  }
}

.privacy .privacy__inner .privacy__contents {
  width: 76%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .privacy .privacy__inner .privacy__contents {
    width: auto;
  }
}

.privacy .privacy__inner .privacy__contents .privacy__contents-title {
  margin-left: 10%;
  font-size: 2.8rem;
  font-weight: normal;
  font-family: "YuMincho", "Yu Mincho", "游明朝", "游明朝体";
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .privacy .privacy__inner .privacy__contents .privacy__contents-title {
    font-size: 2.3rem;
  }
}

@media screen and (max-width: 415px) {
  .privacy .privacy__inner .privacy__contents .privacy__contents-title {
    font-size: 2rem;
    margin-left: 0;
    margin-top: 27px;
    text-align: center;
  }
}

.privacy .privacy__inner .privacy__contents .privacy__contents-wrap {
  margin: 88px 0px 0px 10%;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 899px) {
  .privacy .privacy__inner .privacy__contents .privacy__contents-wrap {
    width: 80%;
    margin: 55px auto 80px;
  }
}

@media screen and (max-width: 415px) {
  .privacy .privacy__inner .privacy__contents .privacy__contents-wrap {
    margin-top: 25px;
  }
}

.privacy .privacy__inner .privacy__contents .privacy__contents-wrap .privacy__article {
  margin-top: 30px;
}

.privacy .privacy__inner .privacy__contents .privacy__contents-wrap .privacy__article:nth-child(9) {
  margin-bottom: 100px;
}

.privacy .privacy__inner .privacy__contents .privacy__contents-wrap .privacy__article .privacy__article-title {
  font-size: 2.2rem;
  font-weight: normal;
  /* @media screen and (max-width: 360px)*/
}

@media screen and (max-width: 415px) {
  .privacy .privacy__inner .privacy__contents .privacy__contents-wrap .privacy__article .privacy__article-title {
    font-size: 1.8rem;
  }
}

.privacy .privacy__inner .privacy__contents .privacy__contents-wrap .privacy__article .privacy__article-text {
  font-size: 1.3rem;
  font-weight: normal;
}

@media screen and (max-width: 899px) {
  .privacy .privacy__inner .privacy__contents .privacy__contents-wrap .privacy__article .privacy__article-text {
    font-size: 1.3rem;
    line-height: 2rem;
    margin: 10px 0 35px;
  }
}

@media screen and (max-width: 899px) {
  .privacy .privacy__inner .privacy__contents .privacy__contents-wrap .privacy__article .privacy__article-text {
    margin: 10px 0 20px;
  }
}

.privacy .privacy__inner .privacy__contents .privacy__contents-wrap .privacy__article .privacy__article-list {
  font-size: 1.3rem;
  margin-top: 20px;
  padding-left: 2%;
}

@media screen and (max-width: 899px) {
  .privacy .privacy__inner .privacy__contents .privacy__contents-wrap .privacy__article .privacy__article-list {
    padding-left: 5%;
  }
}

.privacy .privacy__inner .privacy__contents .privacy__contents-wrap .privacy__article .privacy__article-list .privacy__article-item-al {
  list-style-type: lower-alpha;
}

.privacy .privacy__inner .privacy__contents .privacy__contents-wrap .privacy__article .privacy__article-list .privacy__article-item-nm {
  list-style-type: decimal;
}

.privacy .privacy__inner .privacy__contents .privacy__contents-wrap .privacy__article .privacy__article-list .privacy__article-item-dot {
  list-style-type: disc;
}
/*# sourceMappingURL=style.css.map */