@charset "UTF-8";
/* --------------------------------------------------------------- */
/* このCSSファイルはSCSSにより吐き出されたものになります。
/* ですので、このCSSを単体で触られてしまうと、今後の運用に支障が出てしまいます。
/* もしも触る必要が出た場合は、オスモの担当さんを介してなど
/* 該当箇所について担当制作会社へご報告が届きますようご配慮いただけると助かります。
/* お手数をおかけしますが、何卒よろしくお願いいたします。
/* --------------------------------------------------------------- */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.6vw;
  }
}
@media (max-width: 1000px) {
  html {
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1400px) {
  html,
  :root {
    font-size: 100px;
    font-size: 1.07vw;
  }
  body {
    min-width: 1200px;
    overflow: hidden;
  }
}
@media (min-width: 768px), print {
  body {
    min-width: 1000px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 3.13vw;
  }
}
/* pcの電話番号発信対応 */
@media screen and (min-width: 768px), print {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    -webkit-text-decoration-skip-ink: inherit;
            text-decoration-skip-ink: inherit;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px), print {
  a:hover {
    opacity: 0.8;
  }
}

html {
  overflow-y: scroll;
}

body {
  color: rgb(26, 26, 26);
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  body {
    padding-top: 14.69vw;
    overflow-wrap: break-word;
  }
}
@media screen and (max-width: 1400px) {
  body {
    word-wrap: break-word;
    word-break: break-all;
  }
}

@media screen and (max-width: 767px) {
  .u-hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 768px), print {
  .u-hidden-pc {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

@font-face {
  font-family: "nsans_jp_r";
  src: url("../fonts/nsans_jp_r.woff2") format("woff2"), url("../fonts/nsans_jp_r.otf") format("opentype"), url("../fonts/nsans_jp_r.ttf") format("truetype");
}
@font-face {
  font-family: "nsans_jp_m";
  src: url("../fonts/nsans_jp_m.woff2") format("woff2"), url("../fonts/nsans_jp_m.otf") format("opentype"), url("../fonts/nsans_jp_m.ttf") format("truetype");
}
@font-face {
  font-family: "nsans_jp_b";
  src: url("../fonts/nsans_jp_b.woff2") format("woff2"), url("../fonts/nsans_jp_b.otf") format("opentype"), url("../fonts/nsans_jp_b.ttf") format("truetype");
}
@font-face {
  font-family: "poppins_r";
  src: url("../fonts/Poppins-Regular.woff2") format("woff2"), url("../fonts/Poppins-Regular.otf") format("opentype"), url("../fonts/Poppins-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "hiramin";
  src: url("../fonts/hira_min_w3.woff2") format("woff2"), url("../fonts/hira_min_w3.otf") format("opentype"), url("../fonts/hira_min_w3.ttf") format("truetype");
}
#stage {
  position: relative;
  overflow: hidden;
}

.g-wrapper {
  overflow: hidden;
}

@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  body .p-faq__items {
    min-width: 1000px;
    width: 1000px;
    margin: 0 auto;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  body .ankerlink {
    width: 1000px;
  }
  body.is-product-page .g-container {
    overflow: hidden;
    width: 1000px;
    margin: 0 auto;
  }
  footer {
    overflow: hidden;
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  list-style: none;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 2;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

@media (min-width: 768px) {
  img {
    -webkit-backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
  }
}
/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

.l-case {
  padding: 4.375rem 0;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-case {
    padding: 14vw 0 7.03vw 0;
  }
}

.l-footer {
  position: relative;
}

.l-inner {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 7.03vw;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .l-inner {
    max-width: 1000px;
  }
}

.l-main {
  overflow: hidden;
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .l-main {
    min-width: 1200px;
    overflow: hidden;
  }
}

#p-topicpath {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media screen and (min-width: 768px), print {
  #p-topicpath {
    top: 1.5625rem;
    max-width: 1000px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: right;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow-x: auto;
  }
}
@media screen and (max-width: 767px) {
  #p-topicpath {
    white-space: nowrap;
    position: relative;
    z-index: 1;
    top: 0;
  }
}

#p-topicpath > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: auto;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (min-width: 768px), print {
  #p-topicpath > ul {
    white-space: nowrap;
    margin-left: auto;
    margin-right: 0;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
  }
}
@media screen and (max-width: 767px) {
  #p-topicpath > ul {
    padding: 3.13vw 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 0 7.03vw;
  }
}

#p-topicpath > ul > li {
  margin-right: 0.625rem;
  position: relative;
  font-size: 0.75rem;
}

#p-topicpath > ul > li,
#p-topicpath > ul > li > a {
  color: #666666;
}

#p-topicpath > ul > li + li {
  padding-left: 1.25rem;
}

#p-topicpath > ul > li + li:before {
  content: ">";
  position: absolute;
  margin: auto;
  display: block;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
}

.c-btn {
  text-align: center;
}

.c-btn > a,
.c-btn > span {
  display: inline-block;
  color: #007e41;
  min-width: 18.75rem;
  text-align: center;
  font-size: 1rem;
  padding: 0.9375rem 0;
  position: relative;
  border: 1px solid #afd6ba;
}
@media screen and (max-width: 767px) {
  .c-btn > a,
  .c-btn > span {
    display: block;
    min-width: 0;
    padding: 3.91vw 0;
    margin: 0 5.47vw;
    font-size: 3.75vw;
    line-height: 1.4;
  }
}

.c-btn a:before,
.c-btn a:after,
.c-btn > span:before,
.c-btn > span:after {
  content: "";
  right: 1.25rem;
  position: absolute;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
}

.c-btn a:before,
.c-btn > span:before {
  background: #007e41;
  width: 1rem;
  height: 0.0625rem;
  top: 50%;
}
@media screen and (max-width: 767px) {
  .c-btn a:before,
  .c-btn > span:before {
    width: 0.75rem;
  }
}

.c-btn a:after,
.c-btn > span:after {
  width: 0.75rem;
  height: 0.75rem;
  border-top: 1px solid #007e41;
  border-right: 1px solid #007e41;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: calc(50% - 0.375rem);
}
@media screen and (max-width: 767px) {
  .c-btn a:after,
  .c-btn > span:after {
    width: 2vw;
    height: 2vw;
    top: calc(50% - 0.25rem);
  }
}

.c-contact a {
  color: #ffffff;
  background-color: #007e41;
  border: 1px solid #59a25b;
  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: 767px) {
  .p-header__btn-container {
    margin-top: 7.81vw;
  }
}

.p-header__btn-container .c-contact {
  top: -12.5rem;
}

.p-header__btn-container .c-contact a {
  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;
  background-color: #003A59;
  border: none;
}
@media screen and (min-width: 768px), print {
  .p-header__btn-container .c-contact a {
    width: 11.125rem;
    min-width: 200px;
    height: 6.2rem;
    font-size: 13px;
  }
}

.p-header__btn-container .c-contact a::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(../../assets/images/common/icon_mail01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  .p-header__btn-container .c-contact a::before {
    width: 5.5vw;
    height: 5.5vw;
    margin-top: 0.2vw;
    margin-right: 3vw;
  }
}
@media screen and (max-width: 767px) {
  .p-header__btn-container .c-showroom a {
    display: block;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .p-header__btn-container .c-contact a, .p-header__btn-container .c-showroom a {
    font-size: 4.38vw;
    padding: 3.13vw 0;
    margin-bottom: 3.91vw;
  }
}

.c-mail {
  background: -webkit-gradient(linear, left top, left bottom, from(#feeb71), to(#fadb0d));
  background: linear-gradient(to bottom, #feeb71, #fadb0d);
  max-width: 32.5rem;
  width: 100%;
  padding: 1rem 0;
  border-radius: 5px;
  position: relative;
  display: inline-block;
}

.c-mail::before {
  content: "";
  display: block;
  border: 1px solid #fff;
  position: absolute;
  top: 0.3125rem;
  left: 0.3125rem;
  bottom: 0.3125rem;
  right: 0.3125rem;
  border-radius: 5px;
}

.c-section__sub-title {
  color: #59a25b;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .c-section__sub-title {
    font-size: 4.69vw;
    margin-bottom: 3.13vw;
  }
}

.c-section__title {
  margin-top: 5.625rem;
  z-index: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-section__title {
    margin-top: 10.94vw;
  }
}

.c-section__title-ja {
  position: relative;
  font-size: 1.375rem;
  text-align: center;
  line-height: 1.15;
  z-index: 0;
  text-align: left;
  margin-bottom: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .c-section__title-ja {
    font-size: 5.31vw;
    margin-bottom: 7.81vw;
  }
}

.c-section__title-ja::before {
  content: "";
  background-size: contain;
  margin-right: 0.625rem;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .c-section__title-ja::before {
    margin-right: 3.13vw;
  }
}

.c-section__title-en {
  font-size: 3.75rem;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  color: #F3F4F9;
  line-height: 0.9;
  font-family: "din-m";
  font-weight: 400;
  font-style: normal;
  width: 100%;
  /*font-family: $second-font-family;*/
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-section__title-en {
    font-size: 10vw;
  }
}

.c-showroom a {
  color: #4d8b56;
  background-color: #fff;
  border: 1px solid #59a25b;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-author {
  border: 1px solid #59a25b;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  margin: 4.375rem 0 2.5rem;
}

.p-author__inner {
  padding: 2.1875rem 1.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
@media screen and (max-width: 767px) {
  .p-author__inner {
    padding: 7.03vw;
  }
}

.p-author__title {
  font-weight: 700;
  font-size: 1.3125rem;
  top: -0.625rem;
  left: 2.5rem;
  color: #007e41;
  padding: 0 0.9375rem;
  line-height: 1.1;
  background-color: #FFFFFF;
  position: absolute;
}

.p-author__image > a {
  display: block;
}
@media screen and (min-width: 768px), print {
  .p-author__image > a {
    width: 8.75rem;
    height: 8.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-author__image > a {
    width: 21.56vw;
    height: 21.56vw;
  }
}

.p-author__image img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  border-radius: 8.75rem;
}

.p-author__job {
  font-size: 0.75rem;
  line-height: 1.4;
  margin-bottom: 0.625rem;
}

.p-author__name {
  margin-bottom: 0.625rem;
  font-size: 1.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-author__name {
    font-size: 3.8vw;
  }
}

.p-author__text {
  font-size: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-author__text {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-top: 3.13vw;
  }
}

@media screen and (min-width: 768px), print {
  .p-author__name-container {
    width: calc(100% - 8.75rem - 3.125rem);
  }
}
@media screen and (max-width: 767px) {
  .p-author__name-container {
    width: calc(100% - 21.56vw - 7.03vw);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-case-catalog {
  padding: 4.375rem 0 5rem;
  background: rgb(0, 51, 0);
  background: linear-gradient(45deg, rgb(0, 51, 0) 0%, rgb(0, 126, 65) 100%);
}
@media screen and (max-width: 767px) {
  .p-case-catalog {
    padding: 7.03vw 0;
  }
}

.p-case-catalog__secTitle {
  color: #fff;
  font-size: 1.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-case-catalog__secTitle {
    font-size: 4vw;
  }
}

@media screen and (min-width: 768px), print {
  .p-case-catalog__secTitle br {
    display: none;
  }
}

@media screen and (min-width: 768px), print {
  .p-case-catalog__secTitle br {
    display: none;
  }
}

.p-case-catalog__subtitle {
  color: #fff;
  font-size: 2.125rem;
  text-align: center;
  margin: 0.625rem 0 3.125rem;
  font-family: "hiramin";
}
@media screen and (max-width: 767px) {
  .p-case-catalog__subtitle {
    font-size: 6.25vw;
    margin-bottom: 7.03vw;
    line-height: 1.5;
  }
}

#fenster .p-case-catalog__secTitle {
  text-align: left;
  font-family: "hiramin";
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px), print {
  #fenster .p-case-catalog__secTitle {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  #fenster .p-case-catalog__secTitle {
    font-size: 5vw;
    line-height: 1.6;
  }
}

#fenster .p-case-catalog__secTitle br {
  display: block;
}

@media screen and (min-width: 768px), print {
  #warema .p-case-catalog__subtitle br {
    display: none;
  }
}

@media screen and (min-width: 768px), print {
  #osmoholz .p-case-catalog__subtitle br {
    display: none;
  }
}

#fenster .p-case-catalog .c-btn {
  text-align: left;
}
@media screen and (min-width: 768px), print {
  #fenster .p-case-catalog .c-btn {
    margin-top: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  #fenster .p-case-catalog .c-btn {
    margin-top: 4vw;
  }
}

.p-case-catalog__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-case-catalog__btnTitle {
  color: #fff;
  text-align: center;
  font-size: 1.375rem;
}
@media screen and (min-width: 768px), print {
  .p-case-catalog__btnTitle {
    padding-top: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-case-catalog__btnTitle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 4.72vw;
  }
}

.p-case-catalog__item a.case .p-case-catalog__btnTitle {
  padding: 3.125rem 0 1.875rem;
  line-height: 1.4;
}
@media screen and (min-width: 768px), print {
  .p-case-catalog__item a.case .p-case-catalog__btnTitle {
    max-width: 33%;
  }
}
@media screen and (max-width: 767px) {
  .p-case-catalog__item a.case .p-case-catalog__btnTitle {
    text-align: left;
    padding: 7.03vw 0;
  }
}

@media screen and (max-width: 767px) {
  .p-case-catalog__item a.catalog .p-case-catalog__btnTitle {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .p-case-catalog__item a.case .c-btn > span:before,
  .p-case-catalog__item a.case .c-btn > span:after {
    right: 3vw;
  }
}

.p-case-catalog__item a.catalog .p-case-catalog__btnTitle::before {
  content: "";
  margin: 0 auto 0.625rem;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 4.25rem;
  height: 2.5rem;
  background-image: url("../images/warema/icon_book01.svg");
}
@media screen and (max-width: 767px) {
  .p-case-catalog__item a.catalog .p-case-catalog__btnTitle::before {
    width: 10vw;
    height: 7vw;
    margin: 0 4vw 0 0;
  }
}

.p-case-catalog .c-btn > span {
  background-color: #fff;
  color: #007e41;
  padding: 0.3125rem 0;
  font-family: "nsans_jp_m";
}
@media screen and (min-width: 768px), print {
  .p-case-catalog .c-btn > span {
    min-width: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .p-case-catalog .c-btn > span {
    margin: 0 auto;
    margin-right: calc(50% + 7.03vw);
    padding-right: 4vw;
  }
}

@media screen and (max-width: 767px) {
  #osmocolor .p-case-catalog .c-btn > span {
    margin: 0 auto;
    margin-right: 0;
    padding-right: 4vw;
  }
}

@media screen and (min-width: 768px), print {
  .p-case-catalog .c-btn {
    width: 33%;
    padding-bottom: 1.25rem;
  }
}

.p-case-catalog .p-case-catalog__item a.catalog {
  border: 1px solid #fff;
  width: 100%;
}
@media screen and (min-width: 768px), print {
  .p-case-catalog .p-case-catalog__item a.catalog {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-case-catalog .p-case-catalog__item a.catalog {
    padding: 7.03vw;
  }
}

.p-case-catalog .p-case-catalog__item a.catalog .c-btn {
  margin: 1.25rem auto 0 auto;
}
@media screen and (min-width: 768px), print {
  .p-case-catalog .p-case-catalog__item a.catalog .c-btn {
    width: 13.125rem;
  }
}

.p-case-catalog .p-case-catalog__item a.catalog .c-btn > span {
  min-width: 13.125rem;
}
@media screen and (max-width: 767px) {
  .p-case-catalog .p-case-catalog__item a.catalog .c-btn > span {
    margin: 0 auto;
  }
}

.p-case-catalog__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 768px), print {
  .p-case-catalog__item {
    width: 62%;
  }
}
@media screen and (max-width: 767px) {
  .p-case-catalog__item {
    width: 100%;
  }
}

.p-case-catalog__item + .p-case-catalog__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px), print {
  .p-case-catalog__item + .p-case-catalog__item {
    width: 36%;
  }
}
@media screen and (max-width: 767px) {
  .p-case-catalog__item + .p-case-catalog__item {
    margin-top: 7.03vw;
  }
}

.p-case-catalog__item a {
  display: block;
}

.p-case-catalog__item a.case {
  background-color: rgba(26, 26, 26, 0.4);
  position: relative;
}
@media screen and (min-width: 768px), print {
  .p-case-catalog__item a.case {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-case-catalog__item a.case {
    padding: 0 7.03vw 7.03vw;
    z-index: 0;
  }
}

@media screen and (min-width: 768px), print {
  .p-case-catalog__item a.case.osmocolor {
    padding-left: 3%;
  }
}
.bnr_osmocolor_sample {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .bnr_osmocolor_sample {
    margin-top: 7.03vw;
  }
}

#fenster .p-case-catalog__item a.case {
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  #fenster .p-case-catalog__item a.case {
    padding: 0;
  }
}

.p-case-catalog__item a.case::after {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  content: "";
  margin: auto;
  display: block;
  background-image: url("../images/warema/pic_case01.png");
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 768px), print {
  .p-case-catalog__item a.case::after {
    width: 66%;
  }
}
@media screen and (max-width: 767px) {
  .p-case-catalog__item a.case::after {
    width: 50%;
    z-index: -1;
  }
}

#osmoholz .p-case-catalog__item a.case::after {
  background-image: url("../images/common/pic_cta-osmoholz01.png");
  bottom: -3.75rem;
  right: -0.625rem;
  margin: 0;
  background-size: contain;
}
@media screen and (min-width: 768px), print {
  #osmoholz .p-case-catalog__item a.case::after {
    width: 23.125rem;
    height: 12.5rem;
  }
}
@media screen and (max-width: 767px) {
  #osmoholz .p-case-catalog__item a.case::after {
    background-size: contain;
    width: 56.6vw;
    height: 37.74vw;
    margin: auto;
    top: 0;
    bottom: 0;
  }
}

.p-case-catalog__item a.case.osmocolor::after {
  width: 72%;
  margin: 0;
  top: -1.4375rem;
  right: 0.3125rem;
  background-image: url("../images/common/pic_cta-osmocolor01a.png");
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-case-catalog__item a.case.osmocolor::after {
    width: 56.6vw;
    width: 50vw;
    margin: 0;
    top: -2.8125rem;
  }
}

#fenster .p-case-catalog {
  position: relative;
  z-index: 0;
}

#fenster .p-case-catalog::before {
  background-image: url("../images/common/bg_case-catalog-fenster01.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  content: "";
  position: absolute;
  margin: auto;
  display: block;
  top: 0;
  right: 0;
  height: 100%;
  width: 60%;
}
@media screen and (max-width: 767px) {
  #fenster .p-case-catalog::before {
    background-image: url("../images/common/bg_case-catalog-fenster01_sp.png");
    width: 100%;
  }
}

#fenster .p-case-catalog__item a.case::after {
  background-image: none;
}

.p-case {
  background-color: #4d8b56;
}

.p-case__head {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-case__head {
    padding: 0 7.03vw;
  }
}

.p-case__title {
  color: #367c40;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-case__title {
    font-size: 4.0625vw;
  }
}

.p-case__title::before {
  content: "CASE";
  display: block;
  color: rgba(238, 238, 238, 0.5);
  font-size: 3.75rem;
  font-family: "hiramin";
  position: absolute;
  top: -2.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  width: 95%;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-case__title::before {
    font-size: 10vw;
  }
}

.p-case__subtitle {
  font-size: 2.125rem;
  color: #fff;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  margin-top: 0.3125rem;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-case__subtitle {
    font-size: 6.71875vw;
  }
}

.p-case__subtitle::after {
  content: "";
  width: 60%;
  height: 0.0625rem;
  background-color: #6eb6e4;
  display: block;
  margin-top: 1.25rem;
  margin-left: auto;
  margin-right: auto;
}

.p-case__items {
  margin-top: 3.75rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-case__items {
    margin-top: 7.03vw;
  }
}

.p-case__item {
  max-width: 25%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-case__item {
    max-width: 50%;
  }
  .p-case__item:nth-child(3), .p-case__item:nth-child(4) {
    display: none;
  }
}

.p-case__img {
  width: 100%;
  position: relative;
}

.p-case__img::before {
  content: "";
  display: block;
  padding-top: 77.777777%;
}

.p-case__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-case__name {
  font-size: 0.9375rem;
  color: #fff;
  text-align: center;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-case__name {
    font-size: 2.34375vw;
  }
}

.p-case__name span {
  font-size: 0.9375rem;
  color: #fff;
  text-align: center;
  margin-top: 0rem;
  display: block;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-case__name span {
    font-size: 2.34375vw;
  }
}

.p-case__btn {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-case__btn {
    padding: 0 7.03vw;
  }
}

.p-case__btn a {
  color: #fff;
}

.p-case__btn.c-btn > a::before {
  background: #ffffff;
}

.p-case__btn.c-btn > a::after {
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}

.p-case__btn.c-btn > a::before {
  height: 2px;
}

.p-cat-nav__title {
  color: #59a25b;
  font-size: 1rem;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-cat-nav__title {
    margin: 0 7.03vw 1.56vw;
  }
}

@media screen and (max-width: 767px) {
  .p-cat-nav__title.single {
    margin: 0 0 1.56vw;
  }
}

@media screen and (max-width: 767px) {
  .p-cat-nav__wrap {
    overflow-x: auto;
    margin: 6.25vw 7.03vw 7.03vw;
  }
}

@media screen and (max-width: 767px) {
  .p-cat-nav__wrap.single {
    overflow-x: auto;
    margin: 0 7.03vw 0;
  }
}

@media screen and (max-width: 767px) {
  .p-cat-nav__title.single + .p-cat-nav__wrap.single {
    margin: 0 0 7.03vw;
  }
}
.p-cat-nav {
  background-color: #e3ebe2;
  padding: 0.625rem 0.625rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  margin-bottom: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-cat-nav {
    white-space: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    overflow: hidden;
    margin-bottom: 0;
  }
}
.p-cat-nav > li {
  margin-bottom: 0.625rem;
  margin-right: 0.625rem;
}
.p-cat-nav > li > a {
  background-color: #fff;
  padding: 0.125rem 0.9375rem 0.1875rem;
  font-size: 0.875rem;
  border-radius: 1.875rem;
  color: #739a6b;
  font-weight: 700;
  display: block;
}
.p-cat-nav > li.active > a {
  background-color: #739a6b;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-cat-nav__wrap.single .p-cat-nav {
    margin-left: 0;
  }
}

body.category .p-cat-nav {
  margin-bottom: 5.9375rem;
}

.p-magazine-sidebar .p-cat-nav {
  padding: 0.9375rem 0.625rem;
  display: block;
}
.p-magazine-sidebar .p-cat-nav > li {
  margin-bottom: 0.625rem;
}
.p-magazine-sidebar .p-cat-nav > li:last-child {
  margin-bottom: 0;
}
.p-magazine-sidebar .p-cat-nav > li > a {
  display: block;
  width: 100%;
}

#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20000;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

#cboxWrapper {
  max-width: none;
  position: absolute;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft,
#cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
}

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay,
#cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

#colorbox,
#cboxContent,
#cboxLoadedContent {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

#cboxOverlay {
  background: #000;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.is-case #colorbox {
  outline: 0;
  overflow-y: auto !important;
  padding: 50px;
  margin-left: -4% 0 0 -50px;
}

#cboxTopLeft {
  width: 14px;
  height: 14px;
  background: url(/assets/img/global/colorbox/controls.png) no-repeat 0 0;
}

#cboxTopCenter {
  height: 14px;
  background: url(/assets/img/global/colorbox/border.png) repeat-x top left;
}

#cboxTopRight {
  width: 14px;
  height: 14px;
  background: url(/assets/img/global/colorbox/controls.png) no-repeat -36px 0;
}

#cboxBottomLeft {
  width: 14px;
  height: 43px;
  background: url(/assets/img/global/colorbox/controls.png) no-repeat 0 -32px;
}

#cboxBottomCenter {
  height: 43px;
  background: url(/assets/img/global/colorbox/border.png) repeat-x bottom left;
}

#cboxBottomRight {
  width: 14px;
  height: 43px;
  background: url(/assets/img/global/colorbox/controls.png) no-repeat -36px -32px;
}

#cboxMiddleLeft {
  width: 14px;
  background: url(/assets/img/global/colorbox/controls.png) repeat-y -175px 0;
}

#cboxMiddleRight {
  width: 14px;
  background: url(/assets/img/global/colorbox/controls.png) repeat-y -211px 0;
}

#cboxContent {
  overflow: visible;
}

.cboxIframe {
  background: #fff;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxLoadedContent {
  margin-bottom: 0;
}

#cboxLoadingOverlay {
  background: url(/assets/img/global/colorbox/loading_background.png) no-repeat center center;
}

#cboxLoadingGraphic {
  background: url(/assets/img/global/colorbox/loading.gif) no-repeat center center;
}

#cboxTitle {
  line-height: 1.5;
  left: 0;
  text-align: left;
  width: 100%;
  font-weight: bold;
  color: #7C7C7C;
  margin-top: 15px;
}

#cboxCurrent {
  position: absolute;
  bottom: -25px;
  left: 58px;
  font-weight: bold;
  color: #7C7C7C;
}

#cboxPrevious,
#cboxNext,
#cboxSlideshow,
#cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  position: absolute;
  bottom: -29px;
  background: url(/assets/img/global/colorbox/controls.png) no-repeat 0px 0px;
  width: 23px;
  height: 23px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
  outline: 0;
}

#cboxPrevious {
  left: 0px;
  background-position: -51px -25px;
}

#cboxPrevious:hover {
  background-position: -51px 0px;
}

#cboxNext {
  left: 27px;
  background-position: -75px -25px;
}

#cboxNext:hover {
  background-position: -75px 0px;
}

#cboxClose {
  right: 0;
  background-position: -100px -25px;
}

#cboxClose:hover {
  background-position: -100px 0px;
}

.cboxSlideshow_on #cboxSlideshow {
  background-position: -125px 0px;
  right: 27px;
}

.cboxSlideshow_on #cboxSlideshow:hover {
  background-position: -150px 0px;
}

.cboxSlideshow_off #cboxSlideshow {
  background-position: -150px -25px;
  right: 27px;
}

.cboxSlideshow_off #cboxSlideshow:hover {
  background-position: -125px 0px;
}

#cboxCurrent,
#cboxMiddleLeft,
#cboxTopCenter,
#cboxMiddleRight,
#cboxBottomLeft,
#cboxBottomCenter,
#cboxBottomRight,
#cboxTopLeft,
#cboxTopRight {
  display: none !important;
}

#colorbox,
#cboxOverlay,
#cboxWrapper {
  overflow: visible;
}

#cboxPrevious,
#cboxPrevious:hover {
  top: 50%;
  bottom: auto;
  left: -60px;
  width: 54px;
  height: 75px;
  background: url(/assets/img/global/colorbox/arrow-01.png) no-repeat center/100% auto;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

#cboxNext,
#cboxNext:hover {
  width: 54px;
  height: 75px;
  background: url(/assets/img/global/colorbox/arrow-01.png) no-repeat center/100% auto;
  top: 50%;
  bottom: auto;
  right: -60px;
  left: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#cboxClose,
#cboxClose:hover {
  width: 28px;
  height: 28px;
  top: 0;
  right: -50px;
  background: url(/assets/img/global/colorbox/icon-close.png) no-repeat center/100% auto;
}

.fixed .contents_header {
  display: none;
}

.modal_scroll {
  width: 100%;
  height: 100%;
  position: relative;
}

@media screen and (max-width: 767px) {
  #colorbox {
    padding: 12vw 0;
    margin: 0;
  }
  .is-case #colorbox {
    padding: 14vw 0 20vw;
    margin-left: -20% 0 0 0;
  }
}
@media screen and (min-width: 768px), print {
  .p-magazine-sidebar {
    width: 22%;
  }
}
@media screen and (max-width: 767px) {
  .p-magazine-sidebar {
    padding-bottom: 7.03vw;
  }
}

.p-magazine-sidebar__items {
  margin-bottom: 2.8125rem;
}

.p-magazine-sidebar__title {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  line-height: 1.3;
  color: #59a25b;
  position: relative;
}

.p-magazine-sidebar__title::before {
  content: "";
  width: 0.8125rem;
  height: 0.8125rem;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.p-magazine-sidebar__title.recommend,
.p-magazine-sidebar__title.category {
  padding-left: 1.5625rem;
}

.p-magazine-sidebar__title.recommend::before {
  background-image: url(../../assets/images/common/icon_star01.svg);
}

.p-magazine-sidebar__title.category::before {
  background-image: url(../../assets/images/common/icon_menu01.svg);
}

.p-magazine-sidebar__image {
  margin-bottom: 0.625rem;
}

.p-magazine-sidebar__image > a {
  height: 8.75rem;
}

.p-magazine-sidebar .p-magazine-catlist {
  margin-bottom: 0.625rem;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.p-magazine-sidebar .p-magazine-catlist li > a {
  padding: 0.3125rem 0.9375rem;
  line-height: 1.1;
}

.p-magazine-sidebar__catch {
  color: #3f7534;
  line-height: 1.6;
  margin-bottom: 0.9375rem !important;
  font-weight: 700;
}
@media screen and (min-width: 768px), print {
  .p-magazine-sidebar__catch {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-magazine-sidebar__catch {
    font-size: 4.06vw;
  }
}

.p-magazine-sidebar__subtitle {
  margin-bottom: 0.9375rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px), print {
  .p-magazine-sidebar__subtitle {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-magazine-sidebar__subtitle {
    font-size: 3.13vw;
  }
}

.p-magazine-sidebar__date {
  text-align: right;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #999;
}
@media screen and (min-width: 768px), print {
  .p-magazine-sidebar__date {
    font-size: 0.8125rem;
  }
}

@media screen and (max-width: 767px) {
  .p-magazine-sidebar .p-magazine-sidebar__title.category, .p-magazine-sidebar .p-cat-nav {
    display: none;
  }
}

.p-magazine-sidebar__item + .p-magazine-sidebar__item {
  margin-top: 1.25rem;
  padding-top: 1.5625rem;
  border-top: 1px solid #ccc;
}

@media screen and (min-width: 768px), print {
  .p-contents {
    width: 74%;
  }
}
@media screen and (max-width: 767px) {
  .p-contents {
    width: 100%;
  }
}

@media screen and (min-width: 768px), print {
  .p-contents__container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .p-contents__container {
    width: 81.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contents__container {
    padding: 4.69vw 7.03vw 0;
  }
}

@media screen and (max-width: 767px) {
  .p-cta-area {
    padding: 7.81vw;
  }
}

.p-cta__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.p-cta-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-cta-list > li {
  -ms-flex-preferred-size: 33.333%;
      flex-basis: 33.333%;
}

.p-cta-showroom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2.8125rem 0 4.0625rem;
  font-family: "nsans_jp_m";
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .p-cta-showroom {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .p-cta-showroom {
    margin-bottom: 7.03vw;
    padding-bottom: 0;
  }
}

.p-cta-showroom__icon {
  -ms-flex-preferred-size: 7.625rem;
      flex-basis: 7.625rem;
}
@media screen and (min-width: 768px), print {
  .p-cta-showroom__icon {
    margin-right: 1.875rem;
  }
}

.p-cta-showroom__icon img {
  width: 33vw;
  margin: 0 auto;
}

.p-cta-showroom__title {
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  font-family: "hiramin";
}
@media screen and (max-width: 767px) {
  .p-cta-showroom__title {
    font-size: 6.92vw;
    text-align: center;
    margin: 4vw 0;
  }
}

@media screen and (max-width: 767px) {
  .p-cta-showroom__text {
    text-align: center;
  }
}

@media screen and (min-width: 768px), print {
  .p-cta-showroom__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 41.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta-showroom__box {
    width: 100%;
  }
}

@media screen and (min-width: 768px), print {
  .p-cta-showroom .c-btn {
    -ms-flex-preferred-size: 21.25rem;
        flex-basis: 21.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta-showroom .c-btn {
    margin-top: 7.03vw;
    width: 100%;
  }
}

.p-cta-showroom .c-btn > a {
  color: #ffffff;
  background-color: #007e41;
  border: none;
  width: 100%;
  font-size: 0.9375rem;
  padding: 0.9375rem 1.875rem;
  text-align: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-cta-showroom .c-btn > a {
    margin: 0;
  }
}

.p-cta-showroom .c-btn > a::before {
  background: #ffffff;
}

.p-cta-showroom .c-btn > a::after {
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}

.p-cta-showroom .c-btn > a::before {
  height: 2px;
}

@media screen and (min-width: 768px), print {
  .p-cta-showroom__inner {
    width: 25.625rem;
  }
}

body.is-building-warema .p-main .p-cta-showroom__title {
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  body.is-building-warema .p-main .p-cta-showroom__title {
    margin: 4vw 0;
  }
}

.p-diy {
  padding: 8.75rem 0;
  background-image: url("../images/common/bg_diy01.png");
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-diy {
    padding: 12.5vw 0;
  }
}

@media screen and (max-width: 767px) {
  .p-diy__subtitle img {
    width: 60.15625vw;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px), print {
  .p-diy__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px), print {
  .p-diy__item {
    width: 53%;
  }
}

@media screen and (min-width: 768px), print {
  .p-diy__item + .p-diy__item {
    width: 40%;
  }
}

.p-diy__subtitle:after {
  content: "";
  margin: 1.875rem auto 0 auto;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../images/common/img_dot-line01.png");
  width: 100%;
  height: 0.5rem;
}

.p-diy__bnrTitleBox {
  position: relative;
  margin-bottom: 0.625rem;
  padding-left: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-diy__bnrTitleBox {
    padding-left: 10vw;
  }
}

.p-diy__bnrColor {
  background: #fff;
}

.p-diy__bnrColor + .p-diy__bnrTitleBox {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-diy__bnrColor + .p-diy__bnrTitleBox {
    margin-top: 7.03vw;
  }
}

.p-diy__bnrTitleBox::before {
  content: "";
  position: absolute;
  margin: auto;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../images/common/icon_paint01.svg");
  width: 3.4375rem;
  height: 3.4375rem;
  left: 0;
  top: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-diy__bnrTitleBox::before {
    width: 10vw;
    height: 10vw;
  }
}

.p-diy__bnrTitleBox dt {
  font-size: 1.1875rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-diy__bnrTitleBox dt {
    font-size: 4.0625vw;
    line-height: 1.6;
    letter-spacing: -0.03em;
  }
}

.p-diy__bnrTitleBox dd {
  margin-left: 0.625rem;
}

@media screen and (min-width: 768px), print {
  .p-diy__lead {
    margin: 3.75rem 0;
  }
}
@media screen and (max-width: 767px) {
  .p-diy__lead {
    margin: 7.03vw 0;
  }
}

.p-diy .c-btn {
  text-align: right;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-diy .c-btn {
    margin-top: 7.03vw;
  }
}

.p-diy .c-btn a {
  color: #ffffff;
  background-color: #007e41;
  margin: 0;
}
@media screen and (min-width: 768px), print {
  .p-diy .c-btn a {
    margin-left: auto;
  }
}

.p-diy .c-btn a:before {
  background: #fff;
}

.p-diy .c-btn a:after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

@media screen and (min-width: 768px), print {
  .p-diy__bnrOnline.sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .p-diy__bnrOnline.pc {
    display: none;
  }
}

.p-diy__bnrOnline.sp {
  margin-top: 7.03vw;
}

.faq_wrap iframe {
  height: calc(84vh - 166px);
  margin: 0 0 3.125rem;
}

.p-faq {
  padding: 8.75rem 0;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding: 7.03vw 0;
  }
}
.p-faq iframe {
  height: 500px;
  margin: 3.125rem 0;
}

@media screen and (max-width: 767px) {
  body#osmoholz .p-faq, body#osmocolor .p-faq {
    padding: 14vw 0 7.03vw 0;
  }
}
.p-faq__secTitle {
  text-align: center;
  font-size: 2.375rem;
  line-height: 1.4;
  font-weight: 700;
  margin-top: 0.3125rem;
  color: #000;
  z-index: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-faq__secTitle {
    position: relative;
    z-index: 1;
    font-size: 6.5625vw;
  }
}

.p-faq__secTitle:after {
  content: "";
  margin: auto;
  display: block;
  width: 28.125rem;
  height: 0.0625rem;
  background: rgb(41, 169, 224);
  background: linear-gradient(45deg, rgb(41, 169, 224) 0%, rgb(0, 206, 65) 100%);
  margin: 0 auto;
  left: 0;
  right: 0;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-faq__secTitle:after {
    width: 85.9375vw;
  }
}

.p-faq__secTitle::before {
  content: "Q&A";
  display: block;
  color: #eaeaea;
  font-size: 3.75rem;
  font-family: "hiramin";
  position: absolute;
  top: -5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  width: 95%;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-faq__secTitle::before {
    line-height: 0.8;
    font-size: 10vw;
    top: -3.90625vw;
  }
}

.p-faq__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-faq__items {
    display: block;
    margin-top: 5.46875vw;
  }
}

.p-faq__item {
  width: 44%;
  margin-bottom: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-faq__item {
    width: 100%;
    margin-bottom: 9.375vw;
  }
}

.p-faq__item a {
  color: #007e41;
  text-decoration: underline;
}

.p-faq__title {
  color: #007e41;
  font-size: 1.375rem;
  font-weight: 700;
  border: 1px solid #007e41;
  padding: 0.9375rem;
  position: relative;
  border-radius: 0.3125rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-faq__title {
    font-size: 4.0625vw;
  }
}

.p-faq__title:before,
.p-faq__title:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.75rem 1rem 0 1rem;
  content: "";
  position: absolute;
  margin: auto;
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.p-faq__title:before {
  border-color: #007e41 transparent transparent transparent;
  bottom: -0.75rem;
}

.p-faq__title:after {
  border-color: #fff transparent transparent transparent;
  bottom: -0.625rem;
}

.p-faq__aIcon {
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  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;
  width: 3.75rem;
}
@media screen and (min-width: 768px), print {
  .p-faq__aIcon {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-faq__aIcon {
    font-size: 4.375vw;
    width: 9.53125vw;
  }
}

.p-faq__aIcon:before {
  content: "";
  position: absolute;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../images/fenster/bg_a01.svg");
  width: 3.1875rem;
  height: 4.125rem;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-faq__aIcon:before {
    width: 9.53125vw;
    height: 8.4375vw;
  }
}

.p-faq__aTitle {
  color: #444444;
  font-weight: 700;
}
@media screen and (min-width: 768px), print {
  .p-faq__aTitle {
    margin-left: 3.4375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-faq__aTitle {
    width: calc(100% - 9.53125vw - 3.90625vw);
    margin-left: 3.90625vw;
  }
}

.p-faq__boxA {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1.25rem 0;
  position: relative;
  max-height: 7em;
  overflow-y: hidden;
  overflow-x: visible;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .p-faq__boxA {
    margin-bottom: 0;
    padding-bottom: 0;
    max-height: 15vw;
  }
}

.p-faq__boxA::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 40%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0)), color-stop(20%, rgba(255, 255, 255, 0.7)), color-stop(80%, rgb(255, 255, 255)));
  background: linear-gradient(rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.7) 20%, rgb(255, 255, 255) 80%);
}

.p-faq__item.open .p-faq__boxA::before {
  display: none;
}

.p-faq__item.open .p-faq__boxA {
  max-height: 100%;
}

.p-faq_moreBtn {
  text-align: right;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-faq_moreBtn {
    margin-top: 1vw;
  }
}

.p-faq_moreBtn span {
  color: #007e41;
  position: relative;
  padding-right: 1.875rem;
  cursor: pointer;
}

.p-faq_moreBtn span:after {
  content: "";
  position: absolute;
  margin: auto;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url(../images/fenster/icon_arrow01.svg);
  width: 0.9375rem;
  height: 0.9375rem;
  top: 0;
  bottom: 0;
  right: 0;
}

.p-faq__item.open .p-faq_moreBtn span:after {
  content: "";
  width: 0.6875rem;
  height: 0.6875rem;
  border: 2px solid;
  background: none;
  border-color: transparent transparent #4d8b56 #4d8b56;
  -webkit-transform: rotate(45deg);
  transform: rotate(135deg);
  top: 50%;
}

.p-faq__btn {
  text-align: right;
}

.p-faq__btn a {
  color: #007e41;
}

.p-faq__btn a:after {
  content: ">";
  margin-left: 0.625rem;
}

.faq_wrap {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .faq_wrap {
    margin-top: 10.67vw;
    margin-top: 0;
  }
}

.faq_wrap {
  overflow: hidden;
}

.box_search {
  width: 1200px;
  margin: 44px auto 50px;
}
@media screen and (max-width: 767px) {
  .box_search {
    width: 92%;
    margin: 5vw auto 10vw;
  }
}
.box_search ::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.box_search ::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.box_search :-ms-input-placeholder {
  color: #999;
}
.box_search input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.box_search input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.box_search form {
  background: pink;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.box_search dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.box_search dl dt {
  color: #007e41;
  font-size: 22px;
  font-weight: 700;
  line-height: 50px;
}
.box_search dl dd {
  font-size: 16px;
}
.box_search dl dd input[type=text] {
  width: 700px;
  height: 50px;
  padding: 0 30px;
  letter-spacing: 0.16em;
  font-size: 16px;
  background: #f5f5f5;
  font-family: "Noto Sans JP", "Roboto", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, sans-serif;
}
.box_search dl dd button {
  width: 170px;
  background: #007e41;
  padding: 0;
  margin: 0;
  color: #fff;
}
.box_search dl dd button .fas {
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .box_search dl {
    display: block;
  }
  .box_search dl dt {
    font-size: 4.8vw;
    line-height: 50px;
  }
  .box_search dl dd {
    font-size: 2.1333333333vw;
  }
  .box_search dl dd input[type=text] {
    width: calc(100% - 11vw);
    height: 11vw;
    padding: 0 4%;
    letter-spacing: 0.16em;
  }
  .box_search dl dd button {
    width: 11vw;
    font-size: 0;
  }
  .box_search dl dd button .fas {
    margin-right: 0;
    font-size: 5.0666666667vw;
  }
}

#faq_search .box_title {
  margin: 38px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#faq_search .box_title .tit_search {
  margin-left: -0.5em;
  font-size: 28px;
  letter-spacing: -0.02em;
}
#faq_search .box_title .count {
  color: #007e41;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #faq_search .box_title {
    margin: 8vw auto 5vw;
    display: block;
  }
  #faq_search .box_title .tit_search {
    font-size: 4.8vw;
  }
  #faq_search .box_title .count {
    font-size: 4vw;
  }
}
#faq_search .box_search {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  #faq_search .box_search {
    width: 100%;
    margin-bottom: 16vw;
  }
}

.p-fixed-cta {
  position: fixed;
  top: 37.5rem;
  right: 0;
  z-index: 1;
  max-width: 10rem;
  width: 100%;
  z-index: 10;
  font-family: "nsans_jp_m";
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  top: 50vh;
}
.p-fixed-cta.osmocolor {
  width: 10vw;
  max-width: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-fixed-cta, .p-fixed-cta.osmocolor {
    display: none;
  }
}

.p-fixed-cta__item.request {
  background-color: #007e41;
  color: #fff;
}
.p-fixed-cta__item a {
  text-align: center;
  display: block;
  padding: 0.8125rem;
}
.p-fixed-cta__item.sample {
  margin: 0.9375rem 0;
}
.p-fixed-cta__item.sample a {
  padding: 0;
}
.p-fixed-cta__item.showroom {
  margin: 0.9375rem 0;
}
.p-fixed-cta__item.showroom a {
  font-size: 0.875rem;
  color: #007e41;
  border: 1px solid #a0cfb8;
  background-color: #fff;
}
.p-fixed-cta__item.tel {
  background-color: #f2f2f2;
  text-align: center;
  color: #007e41;
  padding: 0.9375rem 0;
}
.p-fixed-cta__item.tel p {
  font-size: 0.75rem;
  display: inline-block;
  margin-bottom: 0;
}
.p-fixed-cta__item.tel p::after {
  content: "";
  width: 80%;
  height: 1px;
  background-color: #a0cfb8;
  display: block;
  margin: auto;
}
.p-fixed-cta__item.tel span {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-right: 0.375rem;
}
.p-fixed-cta__item.tel a {
  font-size: 1.125rem;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  padding: 0.5rem 0;
}

/* --------------------------------------------------- */
/* 右のfollorバナーエリア
/* --------------------------------------------------- */
.p-flow {
  margin: 5rem 0;
}

.l-footer {
  background-color: #f2f2f2;
  overflow: hidden;
  font-family: "nsans_jp_m";
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-bottom: 15.63vw;
  }
}

.p-footer__container {
  position: relative;
}
@media screen and (min-width: 768px), print {
  .p-footer__container {
    width: 62.5rem;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 2.1875rem 0 4.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__container {
    padding: 10.94vw 0 7.81vw;
    text-align: center;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .p-footer__container {
    width: 1000px;
  }
}

.p-footer__logo {
  -ms-flex-preferred-size: 17.5rem;
      flex-basis: 17.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    margin-bottom: 3.91vw;
  }
}

@media screen and (min-width: 768px), print {
  .p-footer__logo-image {
    max-width: 15.625rem;
    margin: 0 auto 0.625rem 0;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__logo-image {
    width: 54.69vw;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__logo .p-copy {
    display: none;
  }
}

@media screen and (min-width: 768px), print {
  .p-footer__navi-container .p-copy {
    display: none;
  }
}

.p-footer__navi-container {
  -ms-flex-preferred-size: calc(100% - 17.5rem);
      flex-basis: calc(100% - 17.5rem);
}

.p-footer__navi-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 2.1875rem 0 1.875rem 0;
}
.p-footer__navi-list li {
  margin-right: 1.25rem;
}
.p-footer__navi-list li > a {
  font-size: 0.8125rem;
}
.p-footer__navi-list li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .p-footer__navi-list {
    display: none;
  }
}

.p-footer__snslist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__snslist {
    margin: 3.13vw 0 0;
  }
}
.p-footer__snslist li {
  -ms-flex-preferred-size: 1.5625rem;
      flex-basis: 1.5625rem;
  height: 1.5625rem;
  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: 767px) {
  .p-footer__snslist li {
    -ms-flex-preferred-size: 5.31vw;
        flex-basis: 5.31vw;
    height: 5.31vw;
  }
}
.p-footer__snslist li + li {
  margin-left: 1.25rem;
}

.p-copy {
  text-align: center;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .p-copy {
    margin-top: 3.13vw;
    font-size: 2.5vw;
  }
}

.p-footer__tel-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-footer__tel-container {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__tel-container .p-tel__inner {
    margin: 0 7.03vw 3.91vw;
  }
}

.p-footer__tel-container .p-time__inner {
  margin: 0 1.25rem 0 0.625rem;
  padding: 0.625rem 0.3125rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-footer__tel-container .p-time__inner {
    margin: 3.91vw 7.03vw;
    padding: 0 0;
  }
}

.p-footer__btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-footer__btn-container {
    display: block;
    margin: 0 7.03vw;
  }
}

@media screen and (min-width: 768px), print {
  .p-footer__btn-container .c-contact {
    margin-right: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__btn-container .c-contact {
    margin-bottom: 3.91vw;
  }
}

.p-footer__btn-container .c-contact > a,
.p-footer__btn-container .c-showroom > a {
  width: 11.25rem;
  padding: 0.9375rem;
  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;
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-footer__btn-container .c-contact > a,
  .p-footer__btn-container .c-showroom > a {
    width: 100%;
    padding: 0 3.13vw;
    font-size: 3.75vw;
    height: 15.63vw;
  }
}

.p-footer__navi-container .p-tel__box .p-tel__text {
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__navi-container .p-tel__box .p-tel__text {
    font-size: 4.06vw;
  }
}

.p-footer__navi-container .p-tel__box .p-tel > a {
  font-size: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__navi-container .p-tel__box .p-tel > a {
    font-size: 4.38vw;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__logo .p-tel__box .p-tel {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__logo .p-tel__inner {
    margin: 7.81vw 7.03vw;
  }
}

/**********************************/
/* ハンバーガーメニューSP用 */
/**********************************/
@media screen and (min-width: 768px), print {
  .p-hamburger {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-hamburger {
    width: 15.63vw;
    height: 15.63vw;
    background-color: #FFF;
    right: 0;
    z-index: 3500;
    position: absolute;
    top: 0;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .p-hamburger.active {
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .p-hamburger.active::before {
    content: "CLOSE";
    font-size: 3.13vw;
    color: #4d8b56;
    margin-left: calc(-40% - 1.56vw);
  }
}

.p-hamburger span,
.p-hamburger span::before,
.p-hamburger span::after {
  cursor: pointer;
  border-radius: 0.01rem;
  height: 2px;
  background: #4D8B56;
  position: absolute;
  display: block;
  top: 0;
  margin: auto;
  bottom: 0;
  left: 0;
  right: 0;
}

.p-hamburger span::before,
.p-hamburger span::after {
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

@media screen and (max-width: 767px) {
  .p-hamburger span {
    width: 40%;
  }
}

.p-hamburger span::before,
.p-hamburger span::after {
  content: "";
  width: 100%;
}

.p-hamburger span::before {
  top: -3.91vw;
}

.p-hamburger span::after {
  bottom: -3.91vw;
}

/* ナビ開いてる時のバツボタン */
@media screen and (max-width: 767px) {
  .p-hamburger.active span::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-hamburger.active span::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    bottom: 0;
  }
}

.p-hamburger.active span {
  background-color: transparent;
}

.p-header {
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 999;
  font-family: "nsans_jp_m";
  /*overflow: hidden;*/
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-header {
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .p-header {
    position: relative;
  }
}
@media screen and (min-width: 768px), print {
  .p-header {
    position: static;
    top: -12.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    height: 0;
    position: absolute;
    top: 0;
    z-index: 999;
    width: 100%;
    background-color: #f2f2f2;
    -webkit-transition: opacity 0.3s ease, overflow 0.3s ease;
    transition: opacity 0.3s ease, overflow 0.3s ease;
    opacity: 0;
    overflow: hidden;
  }
}

@media screen and (max-width: 767px) {
  .p-header__nav.active {
    opacity: 1;
    height: 100vh;
    overflow: auto;
    padding: 13.28vw 6.25vw 0;
  }
}

.p-header__container {
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px), print {
  .p-header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .p-header__container {
    max-width: none;
    max-width: 1200px;
  }
}

@media screen and (min-width: 768px), print {
  .p-header__inner {
    height: 6.2rem;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .p-header__inner {
    position: relative;
  }
}

@media screen and (min-width: 768px), print {
  .p-header__btn-container {
    margin-left: 2vw;
  }
}
@media screen and (min-width: 768px), print {
  .p-header__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.p-header__item > span {
  display: none;
}

.p-header__item > span:after {
  content: "";
  position: absolute;
  margin: auto;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.5625rem 0.5625rem 0 0.5625rem;
  border-color: #fff transparent transparent transparent;
  right: 7.81vw;
  top: 0;
  bottom: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media screen and (min-width: 768px), print {
  .p-header__item span + ul {
    display: none;
  }
}
@media screen and (min-width: 768px), print {
  .p-header__item:hover ul {
    display: -ms-grid;
    display: grid;
    z-index: 999;
  }
}

@media screen and (min-width: 768px), print {
  .p-header__item ul {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 6.2rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0.625rem 1fr 0.625rem 1fr 0.625rem 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    -webkit-column-gap: 0.625rem;
       -moz-column-gap: 0.625rem;
            column-gap: 0.625rem;
    row-gap: 0.625rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
    padding: 3.125rem 0;
    width: 62.5rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-header__item ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    margin-bottom: 5.47vw;
  }
}
@media screen and (min-width: 768px), print {
  .p-header__item ul > li {
    padding: 0.625rem;
    background-color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .p-header__item ul > li {
    -ms-flex-preferred-size: 49.1%;
        flex-basis: 49.1%;
    margin-right: 1.8%;
    margin-bottom: 1.56vw;
  }
}
@media screen and (max-width: 767px) {
  .p-header__item ul > li:nth-child(2n) {
    margin-right: 0;
  }
}
.p-header__item ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px), print {
  .p-header__item ul > li > a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .p-header__item ul > li > a {
    padding: 1.56vw;
    background-color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
}

@media screen and (min-width: 768px), print {
  .p-header__item ul:before {
    width: 100vw;
    height: 100%;
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    background-color: #f2f2f2;
    content: "";
    z-index: -1;
  }
}

@media screen and (min-width: 768px), print {
  .p-header__item-img {
    width: 5.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-header__item-img {
    -ms-flex-preferred-size: 14.06vw;
        flex-basis: 14.06vw;
  }
}

@media screen and (max-width: 767px) {
  .p-header__item-img img {
    -o-object-fit: contain;
       object-fit: contain;
    height: 100%;
  }
}

@media screen and (min-width: 768px), print {
  .p-header__item-title {
    font-size: 0.875rem;
    -ms-flex-preferred-size: calc(100% - 5.625rem - 0.625rem);
        flex-basis: calc(100% - 5.625rem - 0.625rem);
  }
}
@media screen and (max-width: 767px) {
  .p-header__item-title {
    -ms-flex-preferred-size: calc(100% - 14.06vw);
        flex-basis: calc(100% - 14.06vw);
    margin-left: 2.34vw;
    font-size: 3.44vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 1.6;
  }
}

@media screen and (min-width: 768px), print {
  .p-header .c-showroom {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 45.31vw;
    height: 15.63vw;
    margin-left: 3.13vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 40.9375vw;
    height: 15.625vw;
  }
}
.p-header__logo a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px), print {
  .p-header__logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 6.2rem;
  }
}
@media screen and (min-width: 768px), print {
  .p-header__logo a img {
    width: 15rem;
    margin-left: 1.25rem;
  }
}

@media screen and (min-width: 768px), print {
  .p-header__item + .p-header__item {
    margin-left: 1vw;
  }
}

@media screen and (max-width: 767px) {
  .p-header__item {
    border-bottom: 1px solid #cccccc;
  }
}

.p-header__item > a {
  color: #000;
  display: block;
}
@media screen and (min-width: 768px), print {
  .p-header__item > a {
    font-size: 0.875rem;
    height: 6.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .p-header__item > a {
    font-size: 4.38vw;
    padding: 3.13vw 0;
    position: relative;
  }
}
.p-header__item > a:before {
  background: #4d8b56;
  width: 0.75rem;
  height: 0.0625rem;
  top: 50%;
}
.p-header__item > a::after {
  width: 0.625rem;
  height: 0.625rem;
  border-top: 1px solid #4d8b56;
  border-right: 1px solid #4d8b56;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: calc(50% - 0.3125rem);
}

@media screen and (max-width: 767px) {
  .p-header__item.product > a {
    color: #4d8b56;
    padding: 0 0 2.34vw 0;
    margin-bottom: 3.91vw;
    border-bottom: 1px solid #4d8b56;
  }
}
.p-header__item.product > a:before, .p-header__item.product > a::after {
  display: none;
}

@media screen and (min-width: 768px), print {
  .p-header__tel-container {
    margin: 0 0 0 2vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (max-width: 767px) {
  .p-tel__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px), print {
  .p-tel__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .p-tel__box {
    background-color: #ffffff;
    text-align: center;
    -ms-flex-preferred-size: 41.88vw;
        flex-basis: 41.88vw;
    padding: 2.34vw 2.34vw 3.13vw;
  }
}

@media screen and (min-width: 768px), print {
  .p-tel__box + .p-tel__box {
    margin-top: 0.3125rem;
  }
}

.p-tel__box .p-tel__text {
  color: #007e41;
  border-bottom: 1px solid #b4d8be;
}
@media screen and (min-width: 768px), print {
  .p-tel__box .p-tel__text {
    font-size: 0.75rem;
    margin-right: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-tel__box .p-tel__text {
    display: inline-block;
    font-size: 4.06vw;
    margin-bottom: 1.56vw;
    padding-bottom: 0.78vw;
    line-height: 1.6;
  }
}

.p-tel__box .p-tel {
  color: #007e41;
  font-size: 1.1875rem;
  line-height: 1.2;
}

.p-tel__box .p-tel::before {
  content: "";
  background-image: url(../images/common/icon_tel01.svg);
  width: 1rem;
  height: 1rem;
  margin-right: 0.625rem;
}

.p-tel__box .p-tel a {
  line-height: 0.9;
}
@media screen and (max-width: 767px) {
  .p-tel__box .p-tel a {
    font-size: 4.38vw;
  }
}

@media screen and (min-width: 768px), print {
  .p-time__inner {
    padding: 0.3125rem;
    border: 1px solid #b4d8be;
    text-align: center;
    font-size: 0.8125rem;
    margin: 0 1.25rem 0 0.625rem;
    color: #007e41;
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  .p-time__inner {
    text-align: center;
    padding: 3.13vw 0 6.25vw;
    font-size: 3.44vw;
    color: #4d8b56;
  }
}

.p-magazine {
  padding: 5.625rem 0 2.8125rem 0;
}
@media screen and (max-width: 767px) {
  .p-magazine {
    padding: 10.94vw 0;
  }
}

.p-magazine__catname {
  background-color: #edf2ec;
  padding: 0.625rem 1.5625rem;
  color: #007e41;
  margin-bottom: 2.1875rem;
}

.p-magazine__container {
  width: 1000px;
  margin: 0 auto;
}

@media screen and (min-width: 768px), print {
  .p-magazine__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 3.4375rem;
  }
}

@media screen and (max-width: 767px) {
  body#column .p-magazine__top .l-inner,
  body#fenster .p-magazine__top .l-inner {
    padding: 0 0;
  }
}

body#column .p-magazine__top .p-magazine__wrap,
body#fenster .p-magazine__top .p-magazine__wrap {
  padding-bottom: 3.75rem;
  margin-bottom: 3.125rem;
  border-bottom: 1px solid #e9e9e9;
}
@media screen and (max-width: 767px) {
  body#column .p-magazine__top .p-magazine__wrap,
  body#fenster .p-magazine__top .p-magazine__wrap {
    margin: 0 7.03vw;
    padding: 4.69vw 0;
  }
}

@media screen and (max-width: 767px) {
  body#column .p-magazine__top .c-section__sub-title,
  body#fenster .p-magazine__top .c-section__sub-title {
    margin: 0 7.03vw 3.13vw;
  }
}

.p-magazine__img {
  -ms-flex-preferred-size: 38%;
      flex-basis: 38%;
}

.p-magazine__img > a {
  height: 17.8125rem;
  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: 767px) {
  .p-magazine__img > a {
    height: 64.38vw;
  }
}

.p-magazine__list .p-magazine__img > a {
  height: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-magazine__list .p-magazine__img > a {
    height: 26.56vw;
  }
}

body#column .p-magazine__list .p-magazine__img > a,
body#fenster .p-magazine__list .p-magazine__img > a {
  height: 12.5rem;
}

.p-magazine__img > a img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

@media screen and (min-width: 768px), print {
  .p-magazine__box {
    -ms-flex-preferred-size: calc(62% - 2.1875rem);
        flex-basis: calc(62% - 2.1875rem);
  }
}
@media screen and (max-width: 767px) {
  .p-magazine__box {
    margin-top: 3.13vw;
  }
}

.p-magazine__list .p-magazine__box {
  -ms-flex-preferred-size: calc(62% - 1.25rem);
      flex-basis: calc(62% - 1.25rem);
}

.p-magazine-catlist-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-magazine__list .p-magazine-catlist-wrap {
  margin-bottom: 0.9375rem;
}

.p-magazine-catlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-magazine-catlist li {
  margin: 0 0.625rem 0.625rem 0;
}
@media screen and (max-width: 767px) {
  .p-magazine-catlist li {
    margin: 0 0.78vw 0.78vw 0;
  }
}
.p-magazine-catlist li > a {
  color: #59a25b;
  font-size: 0.8125rem;
  padding: 0.3125rem 0.9375rem;
  border: 1px solid #c6ddcf;
  border-radius: 1.5625rem;
  display: block;
  line-height: 1.4;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-magazine-catlist li > a {
    font-size: 2.81vw;
  }
}

@media screen and (min-width: 768px), print {
  .p-magazine__list .p-magazine-catlist li > a {
    font-size: 0.75rem;
    padding: 0.1875rem 0.625rem;
  }
}

.p-magazine__date {
  font-size: 0.8125rem;
}

.p-magazine__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-magazine__title {
    margin-top: 3.13vw;
    font-size: 4.38vw;
  }
}

body#column .p-magazine__title,
body#fenster .p-magazine__title {
  font-size: 1.375rem;
}

.p-magazine__list .p-magazine__title {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-magazine__list .p-magazine__title {
    font-size: 3.75vw;
  }
}

.p-magazine__text {
  font-size: 0.8125rem;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-magazine__text {
    margin-top: 3.13vw;
    font-size: 2.81vw;
  }
}

body#column .p-magazine__list .p-magazine__title,
body#fenster .p-magazine__list .p-magazine__title {
  font-size: 1.125rem;
  margin-bottom: 0.9375rem;
}

body#column .p-magazine__list .p-magazine__text,
body#fenster .p-magazine__list .p-magazine__text {
  font-size: 0.75rem;
  margin-bottom: 1.25rem;
}

.p-magazine__label {
  font-size: 0.8125rem;
  margin-top: 1.5625rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-magazine__label {
    margin-top: 3.13vw;
  }
}
.p-magazine__label a {
  background-color: #f2f2f2;
  padding: 0.3125rem 3.125rem 0.3125rem 1.25rem;
  display: inline-block;
  text-align: center;
  position: relative;
  font-size: 0.8125rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-magazine__label a {
    font-size: 3.13vw;
    padding: 1.56vw 10.94vw;
  }
}
.p-magazine__label a:before, .p-magazine__label a::after {
  content: "";
  right: 1.25rem;
  position: absolute;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
}
.p-magazine__label a:before {
  background: #444444;
  width: 0.75rem;
  height: 0.0625rem;
  top: 50%;
}
.p-magazine__label a::after {
  width: 0.625rem;
  height: 0.625rem;
  border-top: 1px solid #444444;
  border-right: 1px solid #444444;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: calc(50% - 0.3125rem);
}

@media screen and (max-width: 767px) {
  .p-magazine__list .p-magazine__label {
    text-align: right;
  }
}

.p-magazine__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-magazine__list {
    margin-top: 7.81vw;
  }
}
@media screen and (min-width: 768px), print {
  .p-magazine__list > li {
    -ms-flex-preferred-size: calc(50% - 1.875rem);
        flex-basis: calc(50% - 1.875rem);
    margin-right: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-magazine__list > li {
    -ms-flex-preferred-size: 47%;
        flex-basis: 47%;
  }
}
@media screen and (min-width: 768px), print {
  .p-magazine__list > li:nth-child(2n) {
    margin-right: 0;
    margin-left: auto;
  }
}

body#column .p-magazine__list,
body#fenster .p-magazine__list {
  display: block;
}
body#column .p-magazine__list > li,
body#fenster .p-magazine__list > li {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  body#column .p-magazine__list > li,
  body#fenster .p-magazine__list > li {
    padding: 4.69vw 0;
  }
}

.p-magazine .c-section__title-ja::before {
  display: none;
}

.p-magazine .c-section__title-ja::after {
  content: "";
  position: absolute;
  margin: auto;
  display: block;
  background-color: #f2f2f2;
  right: 0;
}
@media screen and (min-width: 768px), print {
  .p-magazine .c-section__title-ja::after {
    width: 80.8%;
    height: 0.0625rem;
    bottom: 0.125rem;
  }
}

/**********************************/
/* right */
/**********************************/
.p-mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgb(255, 232, 83);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 232, 83)), color-stop(50%, rgb(255, 203, 33)), to(rgb(255, 166, 0)));
  background: linear-gradient(180deg, rgb(255, 232, 83) 0%, rgb(255, 203, 33) 50%, rgb(255, 166, 0) 100%);
  width: 12.5rem;
  width: 13.8888888889vw;
  padding: 1rem 0;
  border-radius: 5px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-mail span:last-child {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-main {
  position: relative;
}
@media screen and (max-width: 767px) {
  #building-warema .p-main {
    padding-top: 0;
  }
}

.p-more {
  background-color: #f5f5f6;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px), print {
  .p-more {
    background-image: url("../images/warema/bg_more01.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
  }
}

@media screen and (max-width: 767px) {
  .p-more::before {
    background-image: url("../images/warema/bg_more01_sp.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    width: 100%;
    height: 100%;
    content: "";
    margin: auto;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}

.p-more a {
  display: block;
  padding: 8.125rem 0;
}
@media screen and (max-width: 767px) {
  .p-more a {
    padding: 7.03vw 0;
  }
}

.p-more__secTitle {
  font-size: 2rem;
  color: #007e41;
  font-family: "hiramin";
  letter-spacing: -0.03em;
}
@media screen and (min-width: 768px), print {
  .p-more__secTitle {
    margin-left: 60%;
  }
}
@media screen and (max-width: 767px) {
  .p-more__secTitle {
    font-size: 5.6vw;
    text-align: left;
    margin-left: 56%;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px), print {
  .p-more__secTitle br {
    display: none;
  }
}

.p-more .c-btn {
  text-align: left;
}
@media screen and (min-width: 768px), print {
  .p-more .c-btn {
    margin: 1.25rem 0 0 60%;
  }
}
@media screen and (max-width: 767px) {
  .p-more .c-btn {
    margin-top: 4vw;
    margin-left: 56%;
  }
}

@media screen and (min-width: 768px), print {
  .p-more .c-btn br {
    display: none;
  }
}

.p-more .c-btn span {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-more .c-btn span {
    margin: 0;
    min-width: auto;
    padding-bottom: 9vw;
  }
}

@media screen and (max-width: 767px) {
  .p-more .c-btn span::before {
    top: auto;
    bottom: 4vw;
    left: calc(50% - 2vw);
  }
}

@media screen and (max-width: 767px) {
  .p-more .c-btn span::after {
    top: auto;
    bottom: 3.5vw;
    left: calc(50% - 0.25rem);
  }
}

@media screen and (min-width: 768px), print {
  .p-pagenav {
    margin-top: 3.125rem;
    margin-bottom: 7.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-pagenav {
    margin-top: 0.625rem;
    margin-bottom: 2.5rem;
  }
}

body.category .p-pagenav {
  margin-bottom: 5rem;
}

.wp-pagenavi,
.p-pagenav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi,
  .p-pagenav__list {
    padding: 0 7.81vw;
  }
}

.p-pagenav__list-item a,
.p-pagenav__list-item span {
  font-size: 1.125rem;
  padding: 0.3125rem 0.625rem;
  margin: 0 0.3125rem;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .p-pagenav__list-item a,
  .p-pagenav__list-item span {
    font-size: 4.06vw;
    margin: 0 1vw;
    padding: 0.5vw 1vw;
  }
}

.p-pagenav__list-item span {
  color: #007e41;
}

.p-pagenav__list-item a {
  color: #999999;
}

.p-pagenav__list-item a.prev {
  padding-left: 0;
  padding-right: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-pagenav__list-item a.prev {
    padding-right: 2vw;
  }
}

.p-pagenav__list-item a.next {
  padding-right: 0;
  padding-left: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-pagenav__list-item a.next {
    padding-left: 2vw;
  }
}

.p-pagenav__list-item span.current {
  background-color: #FFF;
}

.p-pagenav .prevpostslink, .p-pagenav .nextpostslink {
  color: #272727;
  position: relative;
}
.p-pagenav .prevpostslink:before, .p-pagenav .prevpostslink::after, .p-pagenav .nextpostslink:before, .p-pagenav .nextpostslink::after {
  content: "";
  position: absolute;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
}
.p-pagenav .prevpostslink:before, .p-pagenav .nextpostslink:before {
  background: #444444;
  width: 0.75rem;
  height: 0.0625rem;
  top: 50%;
}
.p-pagenav .prevpostslink::after, .p-pagenav .nextpostslink::after {
  width: 0.625rem;
  height: 0.625rem;
  top: calc(50% - 0.3125rem);
}

.p-pagenav .nextpostslink:before, .p-pagenav .nextpostslink::after {
  right: -1.25rem;
}
.p-pagenav .nextpostslink::after {
  border-top: 1px solid #444444;
  border-right: 1px solid #444444;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.p-pagenav .prevpostslink:before, .p-pagenav .prevpostslink::after {
  left: -1.25rem;
}
.p-pagenav .prevpostslink::after {
  border-top: 1px solid #444444;
  border-right: 1px solid #444444;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}

#p-pagetop {
  position: fixed;
  display: none;
  z-index: 999;
}
@media screen and (min-width: 768px), print {
  #p-pagetop {
    right: 0;
    bottom: 0;
  }
}

#p-pagetop a {
  display: block;
  background-color: #1A1A1A;
}
@media screen and (min-width: 768px), print {
  #p-pagetop a {
    width: 4.375rem;
    height: 4.375rem;
  }
}

#p-pagetop a:before {
  content: "";
  position: absolute;
  margin: auto;
  display: block;
  border: 2px solid;
  border-color: #fff #fff transparent transparent;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 0;
  left: 0;
  right: 0;
}
@media screen and (min-width: 768px), print {
  #p-pagetop a:before {
    width: 1rem;
    height: 1rem;
    top: 1.125rem;
  }
}

@media screen and (min-width: 768px), print {
  .p-post-eyecatch {
    margin-bottom: 2.5rem;
  }
}
@media screen and (min-width: 768px), print {
  .p-post-eyecatch {
    margin-bottom: 6.25vw;
  }
}
@media screen and (min-width: 768px), print {
  .p-post-eyecatch figure {
    height: 30.9375rem;
  }
}
.p-post-eyecatch img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}

.p-post__post-title {
  color: #272727;
  font-weight: 700;
}
@media screen and (min-width: 768px), print {
  .p-post__post-title {
    font-size: 1.75rem;
    margin-bottom: 2.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-post__post-title {
    font-size: 5.31vw;
    margin-bottom: 6.25vw;
  }
}

.p-post-meta_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0.625rem;
}

.p-post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .post-content {
    padding: 7.81vw 0;
  }
}
.post-content iframe {
  width: 100%;
  display: block;
}
@media screen and (min-width: 768px), print {
  .post-content iframe {
    margin: 0.5rem auto;
    height: 30rem;
  }
}
@media screen and (max-width: 767px) {
  .post-content iframe {
    margin: 3.13vw 0;
    height: 49vw;
  }
}
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  color: #221815;
  font-weight: 700;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}
@media screen and (min-width: 768px), print {
  .post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
    margin: 1.875rem 0;
  }
}
@media screen and (max-width: 767px) {
  .post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
    margin: 7.81vw 0 4vw;
  }
}
.post-content p + h1, .post-content p + h2, .post-content p + h3, .post-content p + h4, .post-content p + h5 {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .post-content p + h1, .post-content p + h2, .post-content p + h3, .post-content p + h4, .post-content p + h5 {
    margin-top: 2.5rem;
  }
}
@media screen and (min-width: 768px), print {
  .post-content h1 {
    font-size: 1.75rem;
  }
}
.post-content h2 {
  min-height: 5rem;
  padding: 0.875rem 0 0.875rem 1.25rem;
  background: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-left: 0.625rem solid #007e41;
  font-size: 1.625rem;
}
@media screen and (max-width: 767px) {
  .post-content h2 {
    font-size: 1.125rem;
    min-height: 5rem;
    border-left: 0.5rem solid #007e41;
    padding: 0.875rem 0 0.875rem 1rem;
  }
}
.post-content h3 {
  padding-bottom: 0.625rem;
  border-bottom: 3px solid #007e41;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .post-content h3 {
    padding-bottom: 0.5rem;
    font-size: 1.125rem;
    border-bottom: 2px solid #007e41;
  }
}
.post-content h4 {
  margin: 1.875rem 0 1.25rem;
  padding: 0.5625rem 0 0.5625rem 1rem;
  background: #f5f5f5;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  position: relative;
  font-size: 1.375rem;
}
.post-content h4::before {
  content: "";
  display: block;
  width: 0.375rem;
  height: 70%;
  background: #007e41;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .post-content h4 {
    padding: 0.375rem 0 0.28125rem 0.75rem;
    font-size: 1rem;
  }
  .post-content h4::before {
    width: 0.25rem;
    height: 70%;
  }
}
.post-content h5 {
  padding-left: 1.875rem;
  font-size: 1.25rem;
  position: relative;
}
.post-content h5::before {
  content: "";
  display: block;
  width: 1.1875rem;
  height: 1.1875rem;
  border: 0.3125rem solid #007e41;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .post-content h5 {
    padding-left: 1.25rem;
    font-size: 0.875rem;
  }
  .post-content h5::before {
    width: 0.9375rem;
    height: 0.9375rem;
    border: 0.3125rem solid #007e41;
  }
}
.post-content h6 {
  font-size: 1rem;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .post-content h6 {
    font-size: 5.07vw;
    margin: 3.13vw 0 0;
  }
}
.post-content h1:first-child, .post-content h2:first-child, .post-content h3:first-child, .post-content h4:first-child, .post-content h5:first-child, .post-content h6:first-child, .post-content p:first-child, .post-content ul:first-child, .post-content ol:first-child {
  margin-top: 0;
}
@media screen and (min-width: 768px), print {
  .post-content table ul {
    margin: 0.9375rem 0;
  }
}
@media screen and (max-width: 767px) {
  .post-content table ul {
    margin: 3.13vw 0;
  }
}
@media screen and (min-width: 768px), print {
  .post-content ul {
    margin: 1.875rem 0;
  }
}
@media screen and (max-width: 767px) {
  .post-content ul {
    margin: 3.13vw 0;
  }
}
.post-content ul > li {
  position: relative;
  padding: 0 0 0 0.9375rem;
}
.post-content ul > li + li {
  margin-top: 0.15rem;
}
.post-content ul > li:before {
  display: block;
  background-color: #007e41;
  border-radius: 50%;
  content: "";
  vertical-align: bottom;
  position: absolute;
  left: 0;
  width: 0.625rem;
  height: 0.625rem;
  top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .post-content ul > li:before {
    width: 1.8vw;
    height: 1.8vw;
    top: 2.5vw;
  }
}
.post-content ol {
  counter-reset: number;
}
@media screen and (min-width: 768px), print {
  .post-content ol {
    margin: 1.875rem 0;
  }
}
@media screen and (max-width: 767px) {
  .post-content ol {
    margin: 3.13vw 0;
  }
}
.post-content ol > li {
  position: relative;
  padding: 0 0 0 1.25rem;
  font-weight: 700;
}
.post-content ol li:before {
  counter-increment: number;
  content: counter(number) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #007e41;
}
.post-content table {
  border-collapse: collapse;
  border-spacing: 0px 0px;
  width: 100%;
  margin: 3.125rem 0;
}
.post-content table:last-child {
  margin-bottom: 0;
}
.post-content table th,
.post-content table td {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 0.01rem solid #FFF;
}
@media screen and (min-width: 768px), print {
  .post-content table th,
  .post-content table td {
    padding: 0.15rem 0.25rem;
  }
}
@media screen and (max-width: 767px) {
  .post-content table th,
  .post-content table td {
    padding: 3vw 6vw;
  }
}
.post-content table th + th,
.post-content table td + td {
  border-left: 2px solid #fff;
}
.post-content table th {
  background-color: #007e41;
  font-weight: normal;
  color: #FFFFFF;
  text-align: left;
}
@media screen and (min-width: 768px), print {
  .post-content table th {
    width: 15.625rem;
    padding: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .post-content table th th {
    padding: 3vw 6vw;
  }
}
.post-content table th.letter-spacing {
  letter-spacing: 1em;
}
.post-content table td {
  background-color: #F9F9F9;
}
@media screen and (min-width: 768px), print {
  .post-content table td {
    padding: 1.5625rem;
  }
}
.post-content blockquote {
  position: relative;
  border: 1px solid #59a25b;
}
@media screen and (min-width: 768px), print {
  .post-content blockquote {
    margin: 1.875rem 0;
    padding: 1.875rem 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .post-content blockquote {
    -webkit-margin-before: auto;
    -webkit-margin-after: auto;
    -webkit-margin-start: auto;
    -webkit-margin-end: auto;
    padding: 7.81vw;
    margin: 3.13vw 0;
  }
}
.post-content blockquote p:first-child {
  margin-top: 0;
}
.post-content blockquote p:last-child {
  margin-bottom: 0;
}
.post-content code {
  display: block;
  word-wrap: break-word;
  word-break: break-all;
  overflow-y: hidden;
  background-color: #f0f0f0;
  border-left: 0.05rem solid #575858;
  padding: 3.125rem;
  overflow-x: auto;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
@media screen and (min-width: 768px), print {
  .post-content code {
    margin: 1.875rem 0;
    padding: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .post-content code {
    margin: 3.13vw 0;
    padding: 7.81vw;
  }
}

@media screen and (min-width: 768px), print {
  .post-content img {
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }
  .post-content .aligncenter {
    margin: 1.5625rem auto;
    display: block;
  }
  .post-content .alignright {
    float: right;
    margin: 0 0 3.125rem 3.125rem;
  }
  .post-content .alignleft {
    float: left;
    margin: 0 3.125rem 3.125rem 0;
  }
  .wp-caption {
    margin: 0.5rem 0;
    text-align: center;
  }
  .wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
  }
  .wp-caption .wp-caption-text {
    padding: 0.05rem 0 0;
  }
}
.post-content .alignright,
.post-content .alignleft {
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .post-content .alignright,
  .post-content .alignleft {
    float: none;
    display: block;
    margin: 3.13vw auto;
  }
}
.post-content p + p {
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .post-content p + p {
    margin-top: 3.13vw;
  }
}
.post-content img {
  width: auto;
}

@media screen and (max-width: 767px) {
  .post-content p img {
    margin: 0;
  }
  .post-content img {
    margin: 3.13vw 0;
  }
  .post-content .aligncenter {
    margin-top: 3.13vw;
    margin-bottom: 3.13vw;
  }
  .wp-caption {
    max-width: 96%;
    text-align: center;
  }
  .wp-caption.alignnone {
    margin: 2vw 3.13vw 3.13vw 0;
  }
  .wp-caption.alignleft {
    margin: 2vw 3.13vw 3.13vw 0;
  }
  .wp-caption.alignright {
    margin: 3.13vw 0 3.13vw 3.13vw;
  }
  .wp-caption img {
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
  }
  .wp-caption .wp-caption-text {
    padding: 3.13vw 0 0;
  }
}
#ez-toc-container {
  position: relative;
  border: 1px solid #739a6b;
  padding: 0 2.75rem;
  margin-bottom: 2.8125rem;
}
@media screen and (max-width: 767px) {
  #ez-toc-container {
    margin-top: 8.59vw;
    padding: 0 4.69vw;
  }
}

.ez-toc-title {
  font-weight: 700;
  font-size: 1.3125rem;
  top: -0.8125rem;
  left: 2.75rem;
  color: #007e41;
  padding: 0 0.9375rem;
  line-height: 1.1;
  background-color: #FFF;
  position: absolute;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 767px) {
  .ez-toc-title {
    left: 1.56vw;
  }
}

ul.ez-toc-list {
  margin: 0;
  padding: 1.875rem 0;
}
@media screen and (max-width: 767px) {
  ul.ez-toc-list {
    padding: 4vw 0 5vw;
  }
}
ul.ez-toc-list ul {
  margin: 0;
}
ul.ez-toc-list li {
  font-weight: 700;
  position: relative;
}
ul.ez-toc-list li::before {
  content: none;
}
ul.ez-toc-list li a {
  color: #444;
}
ul.ez-toc-list li a::before {
  content: "";
  display: block;
  background-color: #007e41;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.75rem;
}
@media screen and (max-width: 767px) {
  ul.ez-toc-list li a {
    font-size: 0.875rem;
  }
}
ul.ez-toc-list li.ez-toc-heading-level-2 {
  margin-top: 0.9375rem;
  padding-left: 1.25rem;
}
ul.ez-toc-list li.ez-toc-heading-level-2 > a {
  font-size: 1.125rem;
  color: #007e41;
}
ul.ez-toc-list li.ez-toc-heading-level-2 > a:before {
  width: 0.625rem;
  height: 0.625rem;
  top: 0.875rem;
}
@media screen and (max-width: 767px) {
  ul.ez-toc-list li.ez-toc-heading-level-2 > a {
    font-size: 1rem;
  }
}
ul.ez-toc-list li.ez-toc-heading-level-3 {
  margin-left: 0.3125rem;
}
ul.ez-toc-list li.ez-toc-heading-level-3 a:before {
  width: 0.5rem;
  height: 0.5rem;
  top: 0.8125rem;
}
@media screen and (max-width: 767px) {
  ul.ez-toc-list li.ez-toc-heading-level-3 {
    margin-left: 0;
  }
}
ul.ez-toc-list li.ez-toc-heading-level-4 a:before {
  width: 0.375rem;
  height: 0.375rem;
  top: 0.875rem;
}
ul.ez-toc-list li.ez-toc-heading-level-5 a:before {
  width: 0.25rem;
  height: 0.25rem;
  top: 0.9375rem;
}
@media screen and (min-width: 768px), print {
  .p-relation {
    margin-bottom: 4.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-relation {
    margin-bottom: 11.72vw;
  }
}

.p-relation .c-section__sub-title {
  line-height: 1.4;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-relation .c-section__sub-title::after {
  content: "";
  width: 53.75rem;
  height: 1px;
  background-color: #e9e9e9;
  margin-left: auto;
}

.p-relation__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-relation__item {
  -ms-flex-preferred-size: 13.75rem;
      flex-basis: 13.75rem;
  margin-right: 1.875rem;
}

.p-relation__item:nth-child(4n) {
  margin-right: 0;
}

.p-relation__title {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  line-height: 1.3;
  color: #59a25b;
  position: relative;
}

.p-relation__title::before {
  content: "";
  width: 0.8125rem;
  height: 0.8125rem;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.p-relation__title.recommend,
.p-relation__title.category {
  padding-left: 1.5625rem;
}

.p-relation__title.recommend::before {
  background-image: url(../../assets/images/common/icon_star01.svg);
}

.p-relation__title.category::before {
  background-image: url(../../assets/images/common/icon_menu01.svg);
}

.p-relation__image {
  margin-bottom: 0.625rem;
}

.p-relation__image > a {
  height: 8.75rem;
}

.p-relation .p-magazine-catlist {
  margin-bottom: 0.625rem;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.p-relation .p-magazine-catlist li > a {
  padding: 0.3125rem 0.9375rem;
  line-height: 1.1;
}

.p-relation__subtitle {
  margin-bottom: 0.9375rem;
  line-height: 1.6;
  font-size: 0.9375rem;
  font-weight: 700;
}

.p-relation__date {
  text-align: right;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.p-sidebar {
  width: calc(100% - 63.125rem);
}

.p-main .swiper-button-prev,
.p-main .swiper-button-next {
  background: none;
  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;
  width: 1.4375rem;
  height: 1.4375rem;
  background-color: #4d8b56;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-main .swiper-button-prev,
  .p-main .swiper-button-next {
    width: 5.16vw;
    height: 5.16vw;
  }
}

.p-main .swiper-button-prev::before,
.p-main .swiper-button-next::before {
  content: "";
  width: 0.4375rem;
  height: 0.4375rem;
  border: 1px solid;
}

.p-main .swiper-button-prev::before {
  border-color: transparent transparent #FFFFFF #FFFFFF;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 0.21875rem;
}

.p-main .swiper-button-next::before {
  border-color: #FFFFFF #FFFFFF transparent transparent;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-right: 0.21875rem;
}

.p-main .swiper-pagination-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-main .swiper-button-prev,
.p-main .swiper-button-next,
.p-main .swiper-pagination {
  position: static;
  margin: 0;
}

.p-main .swiper-pagination {
  margin: 0 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-main .swiper-pagination {
    margin: 0 3.13vw;
  }
}

@media screen and (max-width: 767px) {
  .p-main .swiper-pagination-bullet {
    width: 1.56vw;
    height: 1.56vw;
  }
}

.p-main .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-main .swiper-pagination-bullet + .swiper-pagination-bullet {
    margin-left: 3.13vw;
  }
}

.p-main .swiper-pagination-bullet-active {
  background: #4d8b56;
}

.p-sns {
  font-size: 1rem;
  font-weight: bold;
  padding: 1.25rem 1.5625rem;
  background-color: #edf2ec;
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 768px), print {
  .p-sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-sns__title {
  font-size: 1rem;
  font-weight: bold;
  color: #59a25b;
}
@media screen and (max-width: 767px) {
  .p-sns__title {
    margin-bottom: 2.34vw;
  }
}

.p-sns__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (min-width: 768px), print {
  .p-sns__icon {
    -ms-flex-preferred-size: 30.625rem;
        flex-basis: 30.625rem;
    margin-left: 1.875rem;
  }
}

@media screen and (min-width: 768px), print {
  .p-sns__icon > li {
    -ms-flex-preferred-size: 3.25rem;
        flex-basis: 3.25rem;
    height: 3.25rem;
    margin-right: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-sns__icon > li {
    -ms-flex-preferred-size: 10.31vw;
        flex-basis: 10.31vw;
    height: 10.31vw;
    margin-right: 4.69vw;
  }
}

.p-sub-menu {
  background-color: #037359;
  top: -12.5rem;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .p-sub-menu {
    display: block;
    position: absolute;
    top: 15.625vw;
    width: 100%;
  }
}

@media screen and (min-width: 768px), print {
  .p-header, .p-sub-menu, .p-header__btn-container .c-contact {
    -webkit-transition: all 0.5s 0s ease;
    transition: all 0.5s 0s ease;
  }
}
.p-header.fixed, .p-sub-menu.fixed,
.p-header__btn-container .c-contact.fixed {
  position: fixed;
  top: 0;
  right: 0;
  display: block;
}

.p-header.fixed, .p-sub-menu.fixed {
  left: 0;
}

@media screen and (max-width: 767px) {
  .p-sub-menu.fixed {
    z-index: 9999;
  }
  .js-hamburger.active + .p-sub-menu.fixed {
    display: none;
  }
  .p-header__nav.active .c-contact.fixed {
    position: relative;
  }
}
@media screen and (min-width: 768px), print {
  .p-header__btn-container .c-contact.fixed {
    z-index: 999;
    width: 11.125rem;
    min-width: 200px;
    height: 4.2rem;
    left: auto;
    padding-top: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .p-header__btn-container .c-contact.fixed a {
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 768px), print {
  .p-sub-menu__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1210px;
    width: 98%;
    margin: 0 auto;
    padding: 1.4rem 0;
  }
}
@media screen and (max-width: 767px) {
  .p-sub-menu__head {
    -webkit-transition: all 0.5s 0s ease;
    transition: all 0.5s 0s ease;
  }
}

@media screen and (max-width: 767px) {
  .p-sub-menu__logo {
    display: none;
  }
}

@media screen and (min-width: 768px), print {
  .p-sub-menu__logo img {
    width: 14.375rem;
  }
}

.p-sub-menu__title {
  color: #fff;
  text-align: center;
  background-color: #037359;
  position: relative;
}
@media screen and (min-width: 768px), print {
  .p-sub-menu__title {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-sub-menu__title {
    font-size: 3.4375vw;
    /*padding: 2vw 0;*/
    height: 10.94vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0 !important;
  }
}

/*.p-sub-menu__title::after {
  content: "";
  display: block;
  position: absolute;
  top: 45%;
  width: rem(15);
  height: rem(15);
  right: 7.03vw;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}*/
.p-sub-menu__title::after {
  content: "";
  width: 1.25rem;
  height: 1.5rem;
  position: absolute;
  top: 30%;
  right: 7.03vw;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-image: url(../images/fenster/icon_arrow02.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.p-sub-menu__title.open::after {
  content: "";
  display: block;
  background: none;
  top: 60%;
  width: 0.9375rem;
  height: 0.9375rem;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
}

@media screen and (min-width: 768px), print {
  .p-product_header__list {
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-product_header__list {
    display: none;
  }
}

@media screen and (min-width: 768px), print {
  .p-sub-menu_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .p-sub-menu_items {
    background-color: #005d57;
    padding: 7.03vw;
  }
}

@media screen and (min-width: 768px), print {
  .p-sub-menu_items li + li {
    margin-left: 0.625rem;
    padding-left: 0.625rem;
    border-left: 1px solid #fff;
  }
}
@media screen and (max-width: 767px) {
  .p-sub-menu_items li + li {
    margin-top: 2vw;
  }
}

.p-sub-menu_items a {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-sub-menu_items a {
    display: block;
    border: 1px solid #3f8581;
    padding: 2vw 7.03vw;
    font-size: 3.75vw;
  }
}

.p-tab__inner {
  position: relative;
}

.p-tab__title {
  position: relative;
}

.p-tab__title__text {
  position: relative;
}

.p-tab__title__img {
  position: relative;
}

.p-tag_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-tag_title {
  color: #59a25b;
}

.p-tag_list > li > a {
  display: block;
  line-height: 1.6;
}

.p-contents .p-post-meta .p-tag_list > li > a {
  color: #59a25b;
  border-bottom: 1px solid #59a25b;
  line-height: 1.3;
  display: block;
}

.p-tag_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-tag_list > li {
  margin-right: 0.9375rem;
}

@media screen and (min-width: 768px), print {
  .p-tagcloud {
    margin-bottom: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-tagcloud {
    margin-bottom: 11.72vw;
  }
}

.p-tagcloud .c-section__sub-title {
  line-height: 1.4;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-tagcloud .c-section__sub-title span,
.p-relation .c-section__sub-title span {
  background-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .p-tagcloud .c-section__sub-title span,
  .p-relation .c-section__sub-title span {
    padding-right: 6.25vw;
  }
}

.p-tagcloud .c-section__sub-title::after {
  content: "";
  width: 53.75rem;
  height: 1px;
  background-color: #e9e9e9;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .p-tagcloud .c-section__sub-title::after,
  .p-relation .c-section__sub-title::after {
    position: absolute;
    z-index: -1;
  }
}

.p-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#p-visual {
  overflow: hidden;
  position: relative;
}

.p-visual__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px), print {
  .p-visual__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 70px 0 45px;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .p-visual__inner {
    width: 81.25rem;
  }
}

#p-visual h1 {
  color: #000000;
  position: relative;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  line-height: 1.1;
}
@media screen and (min-width: 768px), print {
  #p-visual h1 {
    font-size: 2.1875rem;
  }
}
@media screen and (max-width: 767px) {
  #p-visual h1 {
    font-size: 7.81vw;
    text-align: center;
    padding: 10.94vw;
  }
}

#p-visual h1:before {
  display: block;
  position: absolute;
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #eeeeee;
  z-index: -1;
}
@media screen and (min-width: 768px), print {
  #p-visual h1:before {
    left: 0;
    top: -2.1875rem;
    font-size: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  #p-visual h1:before {
    font-size: 10.94vw;
    left: 0;
    right: 0;
    top: 3.13vw;
  }
}

#p-visual h1:after {
  content: "";
  width: 80.8%;
  height: 1px;
  right: 0;
  top: 0.9375rem;
  position: absolute;
  background-color: #e9e9e9;
  z-index: -1;
}