@charset "UTF-8";
/*==========================================
color
===========================================*/
.c-bg--key {
  background-color: #f7f6ef;
}

.c-bg--accent {
  background-color: #007f41;
}

.c-bg--gray {
  background-color: #eeebe5;
}

.c-bg--white {
  background-color: white;
}

.c-bg--texture {
  background: url(../images/texture.png) repeat;
}

/*==========================================
global
===========================================*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif, "Lucida Grande", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, Helvetica, Verdana, Arial, Helvetica;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  /*overflow-x: hidden;*/
  overflow-wrap: break-word;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

a {
  color: inherit;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: top;
}

video {
  max-width: 100%;
  height: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, sans-serif;
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
  /*border: 1px solid $color-table;*/
}

th,
td {
  padding: 4px 6px;
  text-align: left;
  vertical-align: top;
  /*border: 1px solid $color-table;*/
}

/*==========================================
setting
===========================================*/
/*==========================================
btn
===========================================*/
.c-btn {
  width: 100%;
  height: auto;
  color: white;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 5px;
  background: #edd30d;
  font-size: 5.0666666667vw;
  font-weight: 500;
  line-height: 1.3157894737;
  text-align: center;
  -webkit-appearance: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 30;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .c-btn {
    height: 100px;
    padding: 2rem;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.6666666667;
    justify-content: flex-start;
  }
}
.c-btn:not(:disabled) {
  cursor: pointer;
}
.c-btn:hover, .c-btn:focus {
  outline: none;
  box-shadow: 0px 5px 26px 0px rgba(160, 130, 0, 0.6);
  transform: translateY(-5px);
}
.c-btn::-moz-foucus-inner {
  padding: 0;
  border: none;
}

/*==========================================
title
===========================================*/
.c-heading {
  font-size: 5.3333333333vw;
  font-weight: 500;
  line-height: 1.625;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  padding: 3rem 0;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-heading {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.6666666667;
    padding: 3rem 0;
    letter-spacing: 0.2rem;
  }
}

.c-heading__sideline {
  position: relative;
  display: inline-block;
  padding: 0 20%;
}
.c-heading__sideline:before, .c-heading__sideline:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 16%;
  height: 2px;
  background-color: #f7f6ef;
}
@media screen and (min-width: 768px) {
  .c-heading__sideline:before, .c-heading__sideline:after {
    width: 26%;
  }
}
.c-heading__sideline:before {
  left: 0;
}
.c-heading__sideline:after {
  right: 0;
}
.c-heading__inner {
  display: inline-block;
  padding: 5px 10px;
  position: relative;
  z-index: 20;
}
.c-heading__linePop {
  width: 90%;
  display: block;
  margin: 0 auto;
  padding: 0 1em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-heading__linePop {
    padding: 1.5rem;
  }
}
.c-heading__linePop:before, .c-heading__linePop:after {
  content: "";
  width: 3px;
  height: 100%;
  background: black;
  position: absolute;
  bottom: 0;
  transform: rotate(35deg);
}
.c-heading__linePop:after {
  left: 0;
}
.c-heading__linePop:before {
  right: 0;
}

.c-title__line {
  width: 100%;
  position: relative;
  padding: 0 4rem;
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .c-title__line {
    padding: 0 4rem;
  }
}
.c-title__line:before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #007f41;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}
.c-title__line-pop {
  display: inline-block;
  background: #f7f6ef;
  padding: 0 2rem;
  font-size: 5.6vw;
  font-weight: 500;
  line-height: 1.3333333333;
  text-align: center;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .c-title__line-pop {
    padding: 3rem 5rem;
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.2857142857;
  }
}
.c-title__line-pop:before, .c-title__line-pop:after {
  content: "";
  width: 3px;
  height: 100%;
  background: #007f41;
  position: absolute;
  bottom: 0;
}
.c-title__line-pop:after {
  transform: rotate(35deg);
  left: -0.1rem;
}
.c-title__line-pop:before {
  transform: rotate(35deg);
  right: -0.3rem;
}
.c-title__line--white {
  color: #f7f6ef;
}
.c-title__line--white:before {
  background-color: #f7f6ef;
}
.c-title__line--white .c-title__line-pop {
  position: relative;
  display: block;
  background: none;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .c-title__line--white .c-title__line-pop {
    display: inline-block;
  }
}
.c-title__line--white .c-title__line-pop:before, .c-title__line--white .c-title__line-pop:after {
  background: #f7f6ef;
}
.c-title__line--white .c-title__line-bg {
  display: inline-block;
  overflow: hidden;
  padding: 0 3rem;
}
.c-title__line--white .c-title__line-bg:after {
  content: " ";
  display: block;
  background: url(../images/title_line-pop_bg_sp.jpg) repeat-y center right;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .c-title__line--white .c-title__line-bg:after {
    background: url(../images/biophilic_middle.jpg) repeat-y center center;
    background-size: auto;
  }
}
@media screen and (min-width: 768px) {
  .c-title__line--white .c-title__line-bg:after {
    background-size: auto;
  }
}
@media screen and (min-width: 1060px) {
  .c-title__line--white .c-title__line-bg:after {
    background-size: auto;
  }
}
@media (min-width: 1921px) {
  .c-title__line--white .c-title__line-bg:after {
    background-size: auto;
  }
}
@media screen and (min-width: 1060px) {
  .c-title__line--white .hashtag {
    top: 35%;
  }
}

.c-title__block {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 1rem;
  background: #f7f6ef;
  border: 2px solid black;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-title__block {
    padding: 3.4rem;
  }
}
.c-title__block:before {
  content: " ";
  display: block;
  background-image: url(../images/circle_bg.png), url(../images/circle_bg.png), url(../images/circle_bg.png), url(../images/circle_bg.png);
  background-position: top 10px left 10px, top 10px right 10px, bottom 10px left 10px, bottom 10px right 10px;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.c-title__block:after {
  content: " ";
  display: block;
  background: rgba(239, 211, 58, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: -2;
}
.c-title__block-inner {
  position: relative;
  z-index: 10;
}

.c-title__round {
  width: 40%;
  min-width: 300px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  top: -50px;
  z-index: 0;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
}
.c-title__round:before {
  content: "";
  width: 2px;
  height: 50px;
  background: black;
  transform: rotate(35deg);
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -40px;
  z-index: -1;
}
.c-title__round:after {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid black;
  background: #f7f6ef;
  border-radius: 100px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.c-title__round-inner {
  display: block;
  width: 100%;
  padding: 1.5rem 1rem;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .c-title__round-inner {
    padding: 2.4rem 7rem;
  }
}
.c-title__round-inner:before {
  content: " ";
  display: block;
  background: #f7f6ef;
  width: 20px;
  height: 2px;
  border-radius: 100px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  z-index: 1;
}
.c-title__round-inner:after {
  content: " ";
  display: block;
  background: rgba(73, 199, 134, 0.6);
  width: 100%;
  height: 100%;
  border-radius: 100px;
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 9;
}
.c-title__round-text {
  display: block;
  position: relative;
  z-index: 20;
}

/*==========================================
setting
===========================================*/
/*==========================================
layout
===========================================*/
.l-wrapper {
  width: 100%;
  overflow: hidden;
}

.l-inner {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 1200px;
  height: inherit;
  padding-right: 4vw;
  padding-left: 4vw;
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding-right: 2.4rem;
    padding-left: 2.4rem;
  }
}
@media (min-width: 1300px) {
  .l-inner {
    padding: 0;
  }
}
.l-inner--narrow {
  max-width: 1060px;
}
.l-inner--middle {
  max-width: 1300px;
}
.l-inner--wide {
  max-width: 1400px;
}
.l-inner--full {
  padding-right: 4vw;
  padding-left: 4vw;
  max-width: 100%;
}

/* header.css */
/*==========================================
hero
===========================================*/
.p-hero {
  width: 100%;
  min-height: 170.6666666667vw;
  position: relative;
  z-index: 0;
  background: url(../images/hero_img_sp.jpg) no-repeat center top;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-hero {
    min-height: 850px;
    background: url(../images/hero_img.jpg) no-repeat center top;
    background-size: auto;
  }
}
.p-hero:after {
  content: " ";
  display: block;
  background: url(../images/hero_tree_Sp.png) repeat-x center bottom;
  background-size: contain;
  width: 100%;
  height: 195px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-hero:after {
    background: url(../images/hero_tree.png) repeat-x center bottom;
    background-size: contain;
  }
}
.p-hero__frame {
  position: absolute;
  top: 13.3333333333vw;
  left: 0;
  right: 0;
  margin: auto;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .p-hero__frame {
    position: relative;
    top: inherit;
    left: inherit;
    right: inherit;
    margin: 0 auto;
    width: 100%;
    max-width: 1146px;
    padding-top: 8rem;
  }
}
.p-hero__heading {
  text-align: left;
  font-size: 6vw;
  font-weight: 600;
  line-height: 1.3333333333;
  margin-bottom: 3rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-hero__heading {
    margin-bottom: 6rem;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.2rem;
  }
}
.p-hero__heading .tree {
  font-size: 120%;
  color: #b45e14;
}
.p-hero__heading .small {
  font-size: 90%;
}
@media screen and (min-width: 768px) {
  .p-hero__body {
    margin-left: 120px;
    margin-right: 60px;
  }
}
.p-hero__word-block {
  display: block;
}
.p-hero__word-block:last-child {
  position: relative;
  left: 20vw;
}
@media screen and (min-width: 768px) {
  .p-hero__word-block:last-child {
    left: 130px;
  }
}
.p-hero__word-inner {
  display: inline-block;
  background: white;
  box-shadow: 20px 15px 0px 0px rgba(36, 97, 0, 0.64);
  padding: 1rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-hero__word-inner {
    padding: 1.5rem 3rem;
    box-shadow: 32px 30px 0px 0px rgba(36, 97, 0, 0.64);
  }
}
.p-hero__figure-wrap {
  margin-bottom: 2rem;
}
@media (min-width: 600px) {
  .p-hero__figure-wrap {
    max-width: 480px;
  }
}
@media screen and (min-width: 768px) {
  .p-hero__figure-wrap {
    margin-bottom: 3rem;
  }
}
.p-hero__caption p {
  text-align: left;
  font-size: 3.7333333333vw;
  font-weight: 500;
  line-height: 1.7857142857;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0px 5px 4.86px rgba(0, 0, 0, 0.45);
}
@media screen and (min-width: 768px) {
  .p-hero__caption p {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.6666666667;
    margin-bottom: 2rem;
  }
}
.p-hero__caption p.reference {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  text-shadow: none;
  margin-bottom: 1rem;
}
.p-hero__btn-wrap {
  display: flex;
  justify-content: flex-end;
}
.p-hero__catalog-btn {
  margin-bottom: 1.8rem;
  width: 100%;
  padding: 1rem;
  color: black;
}
.p-hero__catalog-btn:before {
  content: " ";
  display: inline-block;
  background: url(../images/catalog_icon.png) no-repeat center center;
  background-size: contain;
  width: 68px;
  height: 68px;
  position: relative;
  margin-right: 1rem;
}
@media screen and (min-width: 768px) {
  .p-hero__catalog-btn:before {
    width: 20%;
    background-position: left center;
  }
}
@media screen and (min-width: 768px) {
  .p-hero__catalog-btn {
    padding-left: 2.6666666667vw;
    max-width: 470px;
  }
  .p-hero__catalog-btn:hover, .p-hero__catalog-btn:focus {
    box-shadow: 0px 5px 26px 0px rgba(160, 130, 0, 0.6);
    transform: translateY(-5px);
  }
}

.c-anchor__wrap {
  width: 100%;
  padding-top: 2rem;
  text-align: center;
  margin-bottom: 5.7rem;
}
@media screen and (min-width: 768px) {
  .c-anchor__wrap {
    padding-top: 1rem;
  }
}
.c-anchor__menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  grid-gap: 10px;
}
@media screen and (min-width: 768px) {
  .c-anchor__menu {
    flex-wrap: nowrap;
    grid-gap: 20px;
  }
}
.c-anchor__item {
  display: flex;
  font-family: YakuHanJP;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.3333333333;
  text-align: center;
  width: calc((100% - 10px) / 2);
  overflow: hidden;
  padding-bottom: 2rem;
  position: relative;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .c-anchor__item {
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1.3846153846;
    width: 33.3333333333%;
    padding-bottom: 5rem;
  }
}
.c-anchor__item .small {
  font-size: 3.3333333333vw;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .c-anchor__item .small {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.1111111111;
  }
}
.c-anchor__item:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 50vw 0 50vw;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .c-anchor__item:after {
    border-width: 80px 50vw 0 50vw;
  }
}
@media screen and (min-width: 1060px) {
  .c-anchor__item:after {
    border-width: 130px 40vw 0 40vw;
  }
}
.c-anchor__item:before {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 15px 0 15px;
  border-color: #ffffff transparent transparent transparent;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  margin: auto;
  z-index: 11;
}
@media screen and (min-width: 768px) {
  .c-anchor__item:before {
    border-width: 15px 20px 0 20px;
    bottom: 2rem;
  }
}
.c-anchor__item a {
  text-decoration: none;
  display: block;
  width: 100%;
  position: relative;
  color: white;
  transition: all 0.3s;
}
.c-anchor__item:hover {
  opacity: 0.7;
}
.c-anchor__item:nth-child(1) a {
  background: #b39b68;
}
.c-anchor__item:nth-child(1):after {
  border-color: #b39b68 transparent transparent transparent;
}
.c-anchor__item:nth-child(2) a {
  background: #edb60d;
}
.c-anchor__item:nth-child(2):after {
  border-color: #edb60d transparent transparent transparent;
}
.c-anchor__item:nth-child(3) a {
  background: #9cb4a7;
}
.c-anchor__item:nth-child(3):after {
  border-color: #9cb4a7 transparent transparent transparent;
}
.c-anchor__caption {
  display: block;
  background: #12904f;
  color: white;
  font-size: 3.7333333333vw;
  font-weight: 500;
  line-height: 1.3571428571;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .c-anchor__caption {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.1111111111;
    padding: 2rem;
  }
}
.c-anchor__label {
  display: block;
  padding: 1rem 0.5rem 1.5rem;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .c-anchor__label {
    padding: 1.5rem;
  }
}

/* footer.scss */
.l-footer {
  background: none;
}

.p-footer__nav {
  width: 100%;
  display: flex;
  padding-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-footer__nav {
    width: 550px;
    margin: 0 auto;
  }
}
.p-footer__nav li {
  flex: auto;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-footer__nav li {
    width: 50%;
  }
}

.p-footer__nav li:last-child a {
  border-right: 1px solid #fff;
}
.p-footer__nav li a {
  display: block;
  border-left: 1px solid #fff;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  width: 100%;
  text-decoration: none;
}
.p-footer__nav li a:hover {
  color: #fff;
  text-decoration: underline;
}

.p-footer p {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  padding-bottom: 10px;
  line-height: 1.6;
  padding: 0 10px 10px;
  font-size: 1.4rem;
  text-align: center;
}
.p-footer__address {
  text-align: left;
  padding: 2rem 0;
}
@media screen and (min-width: 768px) {
  .p-footer__address {
    padding: 2.5rem 0;
  }
}

p.p-footer__copyright {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

/*==========================================
Utility
===========================================*/
/*==========================================
hidden
===========================================*/
@media screen and (min-width: 1060px) {
  .u-hidden-pc {
    display: none;
  }
}

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

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

/*==========================================
movie
===========================================*/
.c-movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: white;
  z-index: 50;
}
@media screen and (min-width: 480px) {
  .c-movie {
    padding-top: 53%;
  }
}
.c-movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/*==========================================
flexbox
===========================================*/
@media screen and (min-width: 768px) {
  .flexbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.u-float-left {
  float: left;
}

.u-float-right {
  float: right;
}

.u-overflow {
  overflow: hidden;
}

/*==========================================
text
===========================================*/
.number {
  font-family: "Roboto", sans-serif;
  font-size: 110%;
}

.u-red {
  color: #a40035;
}

.u-blue {
  color: #0358b0;
}

.u-pink {
  color: pink;
}

.u-black {
  color: black;
}

.u-white {
  color: white;
}

.u-yellow {
  color: #e8d77c;
}

.u-bold {
  font-weight: 700;
}
.u-bold--s {
  font-weight: 500;
}
.u-bold--l {
  font-weight: 900;
}

.u-marker--red {
  background: linear-gradient(transparent 80%, rgba(196, 0, 75, 0.28) 80%);
}
.u-marker--yellow {
  background: linear-gradient(transparent 70%, #ffff00 70%);
}
.u-marker--blue {
  background: linear-gradient(transparent 80%, rgba(0, 78, 255, 0.25) 80%);
}

.u-center,
p.u-center {
  text-align: center;
}

.u-right {
  text-align: right;
}

.u-left {
  text-align: right;
}

.u-font--s01 {
  font-size: 90%;
}
.u-font--s02 {
  font-size: 80%;
}
.u-font--s03 {
  font-size: 70%;
}
.u-font--l01 {
  font-size: 110%;
}
.u-font--l02 {
  font-size: 120%;
}
.u-font--l03 {
  font-size: 130%;
}

.u-underline {
  border-bottom: 1px solid #000;
}
.u-underline--red {
  border-bottom: 1px solid red;
}

.u-text-left {
  text-align: left;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-text-justify {
  text-align-last: justify;
  text-justify: inter-character;
}

.u-japanease {
  overflow: hidden;
  writing-mode: vertical-rl;
}

.u-word-break {
  word-break: break-all;
}

.u-white-space {
  white-space: nowrap;
}

.u-marker--yellow {
  background: linear-gradient(to bottom, rgba(255, 255, 72, 0.8) 60%, rgba(255, 255, 72, 0.8) 60%, rgba(255, 255, 72, 0.8) 100%);
}

/*==========================================
setting
===========================================*/
.p-letter p {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
  padding-bottom: 2rem;
  letter-spacing: 0.2rem;
}
@media screen and (min-width: 768px) {
  .p-letter p {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2;
    padding-bottom: 2rem;
  }
}
.p-letter p br {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-letter p br {
    display: inline;
  }
}
.p-letter__heading {
  padding-bottom: 3rem;
  font-size: 4.5333333333vw;
  font-weight: 500;
  line-height: 1.3529411765;
}
@media screen and (min-width: 768px) {
  .p-letter__heading {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.5;
  }
}
.p-letter__block {
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-letter__block {
    margin-bottom: 10rem;
  }
}
.p-letter__block--narrow {
  margin-left: 3rem;
  margin-right: 3rem;
}

.c-box {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.8);
}
.c-box__thumb {
  width: 100%;
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-box__thumb {
    width: 50%;
    margin-right: 4rem;
    margin-bottom: 1rem;
    float: right;
  }
}
.c-box__body {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-box__body {
    /*width: 40%;*/
  }
}
.c-box p:last-child {
  padding-bottom: 0;
}

@media screen and (min-width: 768px) {
  .c-list__wrap {
    text-align: center;
  }
}

.c-list {
  display: inline-block;
  margin-bottom: 2rem;
}
.c-list li {
  padding-left: 1rem;
  text-align: left;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.3684210526;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-list li {
    padding-left: 2rem;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.6363636364;
  }
}
.c-list li:after {
  content: " ";
  display: block;
  background: black;
  border-radius: 100%;
  width: 6px;
  height: 6px;
  position: absolute;
  left: 0;
  top: 10px;
}
@media screen and (min-width: 768px) {
  .c-list li:after {
    top: 15px;
  }
}

.c-list-square {
  display: flex;
  flex-direction: column;
  grid-gap: 1rem;
  margin-bottom: 2rem;
}
.c-list-square li {
  background: white;
  padding: 1rem;
  padding-left: 2rem;
  text-align: left;
  font-size: 4.8vw;
  font-weight: 400;
  line-height: 1.5555555556;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-list-square li {
    padding-left: 3rem;
    font-size: 2.3rem;
    font-weight: 400;
    line-height: 1.5652173913;
  }
}
.c-list-square li:after {
  content: " ";
  display: block;
  background: #007f41;
  width: 14px;
  height: 14px;
  position: absolute;
  left: -7px;
  top: 26px;
}
.c-list-square li .no {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.5333333333;
}

/*==========================================
p-trouble
===========================================*/
.p-trouble {
  padding-bottom: 5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-trouble {
    padding-bottom: 15rem;
  }
}
.p-trouble:after {
  content: " ";
  display: block;
  background: #f7f6ef;
  width: 100%;
  height: 5rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -2;
}
.p-trouble__inner {
  position: relative;
}
.p-trouble__inner:after {
  content: " ";
  display: block;
  background: url(../images/tree01.png) repeat right;
  background-size: contain;
  width: 150px;
  height: 150px;
  position: absolute;
  left: 0;
  bottom: -3rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-trouble__inner:after {
    width: 264px;
    height: 351px;
    bottom: -13rem;
  }
}
.p-trouble__inner:before {
  content: " ";
  display: block;
  background: url(../images/tree02.png) repeat left;
  background-size: contain;
  width: 150px;
  height: 150px;
  position: absolute;
  right: 0;
  bottom: -3rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-trouble__inner:before {
    width: 264px;
    height: 351px;
    bottom: -13rem;
  }
}
.p-trouble__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  grid-gap: 10px;
  font-size: 4.8vw;
  font-weight: 500;
  line-height: 1.3888888889;
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 600px) {
  .p-trouble__list {
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.8181818182;
  }
}
@media screen and (min-width: 768px) {
  .p-trouble__list {
    flex-wrap: nowrap;
    grid-gap: 20px;
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1.5384615385;
    margin-bottom: 10rem;
  }
}
.p-trouble__item {
  width: calc((100% - 10px) / 2);
  position: relative;
  display: flex;
  flex-direction: row;
}
@media (min-width: 600px) {
  .p-trouble__item {
    margin-top: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .p-trouble__item {
    width: 33.3333333333%;
  }
}
.p-trouble__item:after {
  content: " ";
  display: block;
  width: 100%;
  padding-top: 80%;
  background: #f1f2f2;
  transform: rotate(-5deg) skew(5deg, 5deg);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: -2;
}
.p-trouble__thumb {
  text-align: left;
  margin-top: 10rem;
  padding-left: 2rem;
  position: relative;
  z-index: 10;
}
.p-trouble__thumb img {
  width: 70%;
}
@media screen and (min-width: 768px) {
  .p-trouble__thumb img {
    width: auto;
  }
}
.p-trouble__pop {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40vw;
  height: 40vw;
  position: absolute;
  right: calc(50% - 25vw);
  top: -5vw;
}
@media screen and (min-width: 768px) {
  .p-trouble__pop {
    width: 232px;
    height: 232px;
    right: 0;
    top: -5rem;
  }
}
@media screen and (min-width: 1060px) {
  .p-trouble__pop {
    top: -2rem;
  }
}
.p-trouble__pop:before {
  content: " ";
  display: block;
  background: url(../images/pop.png) repeat;
  background-size: contain;
  width: 40vw;
  height: 40vw;
  position: absolute;
  left: 0;
  right: calc(50% - 25vw);
  top: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-trouble__pop:before {
    width: 232px;
    height: 232px;
    bottom: 0;
  }
}
.p-trouble__pop:after {
  content: " ";
  display: block;
  background: #007f41;
  width: 40px;
  height: 1px;
  position: absolute;
  left: 45%;
  bottom: 10px;
  transform: rotate(-50deg);
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-trouble__pop:after {
    width: 70px;
    left: inherit;
    right: calc(50% - 20px);
    bottom: 10px;
    transform: rotate(-50deg);
  }
}
@media screen and (min-width: 1060px) {
  .p-trouble__pop:after {
    right: calc(50% + 20px);
    bottom: 20px;
  }
}
.p-trouble__heading {
  font-size: 5.0666666667vw;
  font-weight: 500;
  line-height: 1.2105263158;
}
@media screen and (min-width: 768px) {
  .p-trouble__heading {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.2857142857;
  }
}
.p-trouble__heading .large {
  font-size: 6.6666666667vw;
  font-weight: 500;
  line-height: 1.1;
}
@media screen and (min-width: 768px) {
  .p-trouble__heading .large {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.125;
  }
}
.p-trouble__caption {
  text-align: center;
  font-size: 4.2666666667vw;
  font-weight: 500;
  line-height: 1.6875;
}
@media screen and (min-width: 768px) {
  .p-trouble__caption {
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 2;
  }
}

.dashed {
  border-bottom: 3px dashed #c5d8c7;
  padding-bottom: 1rem;
}

.point {
  display: inline-block;
  position: relative;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .point {
    margin-top: 1.5rem;
  }
}

.point:after {
  content: "";
  display: block;
  position: absolute;
  top: -1rem;
  left: 0;
  right: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #007f41;
}

.tree {
  color: #007f41;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1.2222222222;
}

.hashtag {
  font-family: "Caveat", cursive;
  width: 25rem;
  position: absolute;
  left: 0;
  top: -35%;
  text-align: left;
  transform: translateY(-50%);
  margin: auto;
  font-size: 7.7333333333vw;
  font-weight: 500;
  line-height: 1.0172413793;
  color: #007f41;
}
@media screen and (min-width: 768px) {
  .hashtag {
    font-size: 4.8rem;
    font-weight: 500;
    line-height: 1.0208333333;
    left: -30rem;
    bottom: inherit;
    top: 35%;
    text-align: right;
  }
}
@media screen and (min-width: 1060px) {
  .hashtag {
    top: 30%;
  }
}

.c-title__line--white .hashtag {
  color: #f7f6ef;
}

/*==========================================
p-flooring
===========================================*/
.p-flooring {
  position: relative;
  padding-top: 6rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-flooring {
    padding-top: 8rem;
  }
}
.p-flooring__heading {
  font-size: 5.3333333333vw;
  font-weight: 400;
  line-height: 1.625;
  padding: 0 3rem;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-flooring__heading {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.8333333333;
  }
}
.p-flooring__wrap {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-flooring__wrap {
    margin-top: 10rem;
  }
}
.p-flooring__block {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
  z-index: 10;
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .p-flooring__block {
    flex-direction: row;
    padding-bottom: 10rem;
  }
}
@media screen and (min-width: 768px) {
  .p-flooring__block:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.p-flooring__block:nth-child(1) .p-flooring__thumb:after {
  content: " ";
  display: block;
  background: url(../images/wood_bg01.jpg) repeat;
  width: 300px;
  height: 120%;
  position: absolute;
  left: -150px;
  top: -10%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-flooring__block:nth-child(1) .p-flooring__thumb:after {
    height: 80%;
  }
}
@media screen and (min-width: 1060px) {
  .p-flooring__block:nth-child(1) .p-flooring__thumb:after {
    height: 140%;
  }
}
.p-flooring__block:nth-child(2) .p-flooring__thumb:after {
  content: " ";
  display: block;
  background: url(../images/wood_bg02.jpg) repeat;
  width: 300px;
  height: 100%;
  position: absolute;
  right: -150px;
  top: -10%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-flooring__block:nth-child(2) .p-flooring__thumb:after {
    height: 80%;
  }
}
@media screen and (min-width: 1060px) {
  .p-flooring__block:nth-child(2) .p-flooring__thumb:after {
    height: 130%;
  }
}
.p-flooring__thumb {
  width: 100%;
  margin-bottom: 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-flooring__thumb {
    width: 52.380952381%;
    text-align: right;
  }
}
@media screen and (min-width: 768px) {
  .p-flooring__block:nth-child(3) .p-flooring__thumb {
    width: 41.6666666667%;
  }
}
.p-flooring__body {
  flex: 1;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-flooring__body {
    padding-left: 10rem;
  }
}
.p-flooring__block:nth-child(even) .p-flooring__body {
  justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .p-flooring__block:nth-child(even) .p-flooring__body {
    padding-left: 0;
    padding-right: 10rem;
  }
}
@media screen and (min-width: 768px) {
  .p-flooring__block:nth-child(even) .p-flooring__thumb {
    text-align: left;
  }
}
.p-flooring__inner {
  width: 100%;
  max-width: 560px;
}
.p-flooring__inner p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.2666666667;
}
@media screen and (min-width: 768px) {
  .p-flooring__inner p {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.25;
  }
}

/*==========================================
p-reason
===========================================*/
.p-reason {
  padding-top: 5rem;
  padding-bottom: 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-reason {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.p-reason__wrap {
  padding: 0 1rem;
  margin-top: 4.4rem;
}
@media screen and (min-width: 768px) {
  .p-reason__wrap {
    padding: 0;
    margin-top: 10.4rem;
  }
}
.p-reason__block {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  column-gap: 2rem;
  background: white;
  padding: 4.5rem 2.4rem 2rem;
  margin-bottom: 5rem;
  border-left: 6px solid #d2e0d4;
}
@media screen and (min-width: 768px) {
  .p-reason__block {
    grid-template-rows: auto auto;
    grid-template-columns: auto auto;
    column-gap: 2.7rem;
    padding: 6.4rem 3.4rem 3.4rem 5.4rem;
    margin-bottom: 7rem;
  }
}
.p-reason__heading {
  grid-column: 1/2;
  grid-row: 1/2;
  font-size: 4.8vw;
  font-weight: 500;
  line-height: 1.2777777778;
  margin-bottom: 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-reason__heading {
    grid-column: 1/2;
    grid-row: 1/2;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.5;
  }
}
.p-reason__body {
  grid-column: 1/2;
  grid-row: 3/4;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .p-reason__body {
    grid-column: 1/2;
    grid-row: 2/3;
    padding: 0;
  }
}
.p-reason__body p:last-child {
  padding-bottom: 0;
}
.p-reason__thumb {
  grid-column: 1/2;
  grid-row: 2/3;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-reason__thumb {
    grid-column: 2/3;
    grid-row: 1/3;
  }
}
.p-reason__label {
  position: relative;
  font-family: "Caveat", cursive;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  color: #007f41;
  display: block;
  position: absolute;
  top: -8.5rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-reason__label {
    font-size: 3.6rem;
    font-weight: 500;
    line-height: 1;
    top: -9.5rem;
  }
}
.p-reason__label .no {
  font-size: 4.8rem;
  font-weight: 300;
  line-height: 1;
}
.p-reason__label:after, .p-reason__label:before {
  content: " ";
  display: block;
  background: #007f41;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2rem;
  margin: auto;
  transform: rotate(-3deg);
}
.p-reason__label:after {
  bottom: -0.7rem;
}

/*==========================================
p-offer
===========================================*/
.p-offer--01 {
  background: url(../images/offer_bg01_sp.jpg) no-repeat center top;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-offer--01 {
    background: url(../images/offer_bg01.jpg) no-repeat center center;
    background-size: cover;
  }
}
.p-offer--01 .p-offer__btn-wrap {
  background: url(../images/offer_bg01_sp_brush.png) no-repeat center top;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-offer--01 .p-offer__btn-wrap {
    background: none;
  }
}
.p-offer--02 {
  background: #f7f6ef;
  position: relative;
}
.p-offer--02:after {
  content: " ";
  display: block;
  background: #f7f6ef;
  background: url(../images/offer_plant.png) no-repeat bottom left;
  background-size: contain;
  width: 50%;
  height: 60%;
  position: absolute;
  left: 0;
  top: -10%;
}
@media screen and (min-width: 768px) {
  .p-offer--02:after {
    width: 336px;
    height: 461px;
  }
}
.p-offer--02 .p-offer__catch p {
  text-shadow: 2px 2px 10px #fff, -2px 2px 10px #fff, 2px -2px 10px #fff, -2px -2px 10px #fff;
}
.p-offer--03 {
  background: #f7f6ef url(../images/offer_bg03_sp.jpg) no-repeat center top;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-offer--03 {
    background: #f7f6ef url(../images/offer_bg03.jpg) no-repeat center top;
    background-size: cover;
  }
}
.p-offer--03 .p-offer__catch p {
  text-shadow: 2px 2px 10px #fff, -2px 2px 10px #fff, 2px -2px 10px #fff, -2px -2px 10px #fff;
}
.p-offer--04 {
  background: url(../images/offer_bg04_sp.jpg) no-repeat center top;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-offer--04 {
    background: url(../images/offer_bg04.jpg) no-repeat center center;
    background-size: cover;
  }
}
.p-offer--04 .p-offer__btn-wrap {
  background: url(../images/offer_bg04_sp_brush.png) no-repeat center top;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-offer--04 .p-offer__btn-wrap {
    background: none;
  }
}
.p-offer__inner {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-offer__inner {
    flex-direction: row;
  }
}
.p-offer__catch {
  width: 100%;
  height: 53.3333333333vw;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-offer__catch {
    width: 52.9761904762%;
    height: auto;
    justify-content: center;
    padding: 0 2rem;
  }
}
@media screen and (min-width: 1060px) {
  .p-offer__catch {
    padding-right: 4rem;
  }
}
.p-offer__catch p {
  font-size: 5.3333333333vw;
  font-weight: 500;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-offer__catch p {
    font-size: 3.4666666667vw;
    font-weight: 500;
    line-height: 1.7692307692;
  }
}
@media screen and (min-width: 1060px) {
  .p-offer__catch p {
    font-size: 3.6rem;
    font-weight: 500;
    line-height: 1.6666666667;
  }
}
.p-offer__btn-wrap {
  width: 100%;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-offer__btn-wrap {
    flex: 1;
    padding: 6rem 3rem;
  }
}
.p-offer__btn-wrap-inner {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}
.p-offer__heading {
  font-size: 4.2666666667vw;
  font-weight: 500;
  line-height: 1.4375;
  text-align: center;
  margin-bottom: 1.2rem;
}
@media screen and (min-width: 768px) {
  .p-offer__heading {
    font-size: 1.8666666667vw;
    font-weight: 500;
    line-height: 1.8571428571;
    margin-bottom: 3.2rem;
  }
}
@media screen and (min-width: 1060px) {
  .p-offer__heading {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.5;
  }
}
.p-offer__tel {
  text-align: center;
  font-size: 5.6vw;
  font-weight: 500;
  line-height: 1.1538461538;
  font-family: "Poppins", cursive;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-offer__tel {
    font-size: 3.3333333333vw;
    font-weight: 500;
    line-height: 1.8;
  }
}
@media screen and (min-width: 1060px) {
  .p-offer__tel {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.9;
  }
}
.p-offer__day {
  text-align: center;
  font-size: 3.7333333333vw;
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .p-offer__day {
    font-size: 1.4666666667vw;
    font-weight: 500;
    line-height: 1.6363636364;
  }
}
@media screen and (min-width: 1060px) {
  .p-offer__day {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.25;
  }
}
.p-offer__web-btn {
  margin-bottom: 1.8rem;
  width: 100%;
  background: #32b16c;
}
.p-offer__web-btn:before {
  content: " ";
  display: inline-block;
  background: url(../images/send_icon.png) no-repeat center center;
  background-size: contain;
  width: 68px;
  height: 68px;
  position: relative;
  margin-right: 1rem;
}
@media screen and (min-width: 768px) {
  .p-offer__web-btn:before {
    width: 20%;
    background-position: left center;
  }
}
@media screen and (min-width: 768px) {
  .p-offer__web-btn {
    padding-left: 2.6666666667vw;
  }
  .p-offer__web-btn:hover, .p-offer__web-btn:focus {
    outline: none;
    box-shadow: 0px 5px 26px 0px rgba(36, 116, 63, 0.6);
    transform: translateY(-5px);
  }
}

.p-offer__web-btn--yellow {
  background: #edd30d;
  color: black;
}
.p-offer__web-btn--yellow:before {
  background: url(../images/send_icon_yellow.png) no-repeat center center;
}
@media screen and (min-width: 768px) {
  .p-offer__web-btn--yellow:hover, .p-offer__web-btn--yellow:focus {
    box-shadow: 0px 5px 26px 0px rgba(160, 130, 0, 0.6);
  }
}

/*==========================================
p-biophilic
===========================================*/
.p-biophilic {
  padding-top: 10rem;
  background-image: url(../images/biophilic_top_sp.jpg), url(../images/biophilic_middle_sp.jpg);
  background-repeat: no-repeat, repeat-y;
  background-position: right top, right top;
  background-size: contain, contain;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-biophilic {
    background-image: url(../images/biophilic_top.jpg), url(../images/biophilic_middle.jpg);
    background-repeat: no-repeat, repeat-y;
    background-position: center top, center top;
    background-size: contain, contain;
    padding-top: 12rem;
  }
}
.p-biophilic__heading {
  text-align: center;
  font-size: 5.0666666667vw;
  font-weight: 400;
  line-height: 1.4736842105;
  letter-spacing: 0.2rem;
}
@media screen and (min-width: 768px) {
  .p-biophilic__heading {
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.5;
  }
}
.p-biophilic .emphasis {
  font-weight: 600;
  background: linear-gradient(180deg, rgba(253, 207, 65, 0) 80%, rgba(253, 207, 65, 0.7) 80%);
}
.p-biophilic__block {
  background: #f7f6ef;
  margin-top: 10rem;
}
.p-biophilic__block-heading {
  width: 110%;
  text-align: center;
  font-size: 4.5333333333vw;
  font-weight: 400;
  line-height: 1.3529411765;
  position: relative;
  top: -30px;
  left: -5%;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-biophilic__block-heading {
    width: 100%;
    top: -50px;
    left: 0;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.5;
  }
}
.p-biophilic__block-heading .large {
  font-size: 5.4666666667vw;
  font-weight: 700;
  line-height: 1.1219512195;
}
@media screen and (min-width: 768px) {
  .p-biophilic__block-heading .large {
    font-size: 3.1rem;
    font-weight: 700;
    line-height: 1.1612903226;
  }
}
.p-biophilic__block-inner {
  padding: 0 2rem 3rem;
}
@media screen and (min-width: 768px) {
  .p-biophilic__block-inner {
    padding: 0 3rem 3rem;
  }
}
@media screen and (min-width: 1060px) {
  .p-biophilic__block-inner {
    padding: 0 10rem 9rem;
  }
}
.p-biophilic__row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1060px) {
  .p-biophilic__row {
    flex-direction: row-reverse;
    margin-bottom: 4rem;
  }
}
.p-biophilic__data {
  width: 100%;
}
@media (min-width: 600px) {
  .p-biophilic__data {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1060px) {
  .p-biophilic__data {
    width: 45%;
    padding-left: 1rem;
  }
}
.p-biophilic__figure {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-biophilic__figure {
    max-width: 480px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1060px) {
  .p-biophilic__figure {
    width: 50%;
    min-width: 480px;
    margin: 0;
  }
}
.p-biophilic__figure-list {
  display: flex;
  grid-gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-biophilic__figure-list {
    grid-gap: 15px;
  }
}
.p-biophilic__figure-list li {
  width: 33.3333333333%;
  text-align: center;
  position: relative;
  padding-top: 4rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-biophilic__figure-list li {
    min-height: 150px;
  }
}
.p-biophilic__figure-list li:after {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
.p-biophilic__figure-list li:nth-child(1):before {
  background: #edb60d;
}
.p-biophilic__figure-list li:nth-child(1):after {
  background: url(../images/house_yellow.png) no-repeat center top;
}
.p-biophilic__figure-list li:nth-child(2):before {
  background: #12904f;
}
.p-biophilic__figure-list li:nth-child(2):after {
  background: url(../images/house_green.png) no-repeat center top;
}
.p-biophilic__figure-list li:nth-child(3):before {
  background: #53c1df;
}
.p-biophilic__figure-list li:nth-child(3):after {
  background: url(../images/house_blue.png) no-repeat center top;
}
.p-biophilic__figure-list .c-house {
  font-size: 4.1333333333vw;
  font-weight: 500;
  line-height: 0.9032258065;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 10;
  padding: 0.5rem 0.5rem 1.5rem;
}
@media (min-width: 600px) {
  .p-biophilic__figure-list .c-house {
    font-size: 2.1rem;
    font-weight: 400;
    line-height: 1.3333333333;
    padding: 0.5rem 0.5rem;
  }
}
.p-biophilic__figure-list .percent {
  font-family: "Poppins", cursive;
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 7.7333333333vw;
  font-weight: 500;
  line-height: 0.4827586207;
}
@media (min-width: 600px) {
  .p-biophilic__figure-list .percent {
    font-size: 4.8rem;
    font-weight: 500;
    line-height: 0.5833333333;
  }
}
.p-biophilic__figure-list .percent .small {
  font-size: 4.5333333333vw;
  font-weight: 500;
  line-height: 0.8235294118;
}
@media (min-width: 600px) {
  .p-biophilic__figure-list .percent .small {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.1666666667;
  }
}
.p-biophilic p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-biophilic p {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2;
    margin-bottom: 3rem;
  }
}
.p-biophilic__answer p {
  text-align: center;
  margin-top: 4rem;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.6363636364;
}

.wave_line {
  position: relative;
  display: block;
}
@media screen and (min-width: 768px) {
  .wave_line {
    display: inline-block;
  }
}
.wave_line:after {
  content: " ";
  display: block;
  background: url(../images/wave_line.png) repeat-x;
  width: 100%;
  height: 8px;
  position: absolute;
  left: 0;
  bottom: -1.2rem;
}

.p-biophilic__data-list li:nth-child(1):after {
  background: #edb60d;
}
.p-biophilic__data-list li:nth-child(2):after {
  background: #12904f;
}
.p-biophilic__data-list li:nth-child(3):after {
  background: #53c1df;
}

.p-biophilic__list-wrap {
  display: flex;
  flex-direction: column;
  grid-gap: 10%;
}
@media (min-width: 600px) {
  .p-biophilic__list-wrap {
    flex-direction: row;
    grid-gap: 1.5rem;
  }
}
@media (min-width: 900px) {
  .p-biophilic__list-wrap {
    margin-top: 10rem;
  }
}
.p-biophilic__list-item {
  width: 80%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-biophilic__list-item {
    width: 33.3333333333%;
    margin: 0;
  }
}
.p-biophilic__list-thumb {
  position: relative;
  text-align: center;
  width: 200px;
  margin: 4rem auto;
}
@media (min-width: 600px) {
  .p-biophilic__list-thumb {
    width: 90%;
  }
}
@media screen and (min-width: 768px) {
  .p-biophilic__list-thumb {
    margin-bottom: 10rem;
  }
}
.p-biophilic__list-thumb:before {
  content: " ";
  display: block;
  width: 100%;
  padding-top: 100%;
  border: 2px solid black;
  background: #f7f6ef;
  border-radius: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}
.p-biophilic__list-thumb:after {
  content: " ";
  display: block;
  width: 100%;
  padding-top: 100%;
  border-radius: 100%;
  position: absolute;
  left: 0;
  right: -20px;
  top: 0;
  bottom: -20px;
  margin: auto;
}
.p-biophilic__list-thumb img {
  position: relative;
  z-index: 10;
}
.p-biophilic__list-item:nth-child(1) .p-biophilic__list-thumb:after {
  background: rgba(241, 197, 61, 0.3);
}
.p-biophilic__list-item:nth-child(2) .p-biophilic__list-thumb:after {
  background: rgba(50, 177, 108, 0.3);
}
.p-biophilic__list-item:nth-child(3) .p-biophilic__list-thumb:after {
  background: rgba(116, 204, 226, 0.3);
}
.p-biophilic__list-label {
  position: relative;
  z-index: 10;
  font-size: 6.6666666667vw;
  font-weight: 500;
  line-height: 1.02;
  text-align: center;
  margin-bottom: 1rem;
}
@media (min-width: 600px) {
  .p-biophilic__list-label {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
  }
}
.p-biophilic__result p {
  text-align: center;
  font-size: 5.3333333333vw;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 3rem;
}
@media (min-width: 600px) {
  .p-biophilic__result p {
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.5;
  }
}
.p-biophilic__result p .large {
  font-size: 6vw;
  font-weight: 500;
  line-height: 1.3333333333;
}
@media (min-width: 600px) {
  .p-biophilic__result p .large {
    font-size: 2.7rem;
    font-weight: 500;
    line-height: 1.3333333333;
  }
}

/*==========================================
p-biophilic-example
===========================================*/
.p-biophilic-example {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-image: url(../images/biophilic_middle_sp.jpg), url(../images/biophilic_bottom_sp.jpg);
  background-repeat: repeat-y, no-repeat;
  background-position: right top, right bottom;
  background-size: contain, contain;
}
@media screen and (min-width: 768px) {
  .p-biophilic-example {
    background: url(../images/biophilic_bottom.jpg) no-repeat center top;
    background-size: cover;
    padding-top: 10rem;
    padding-bottom: 8rem;
    position: relative;
  }
  .p-biophilic-example:after {
    content: " ";
    display: block;
    background: url(../images/biophilic_middle.jpg) repeat-y center center;
    background-size: cover;
    width: 100%;
    height: 30%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-biophilic-example:after {
    background-size: auto;
  }
}
@media screen and (min-width: 768px) and (min-width: 1060px) {
  .p-biophilic-example:after {
    background-size: auto;
  }
}
@media screen and (min-width: 768px) and (min-width: 1680px) {
  .p-biophilic-example:after {
    background-size: cover;
  }
}
.p-biophilic-example__wrap {
  background: #f7f6ef;
  margin-bottom: 5rem;
  padding: 2rem 0;
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .p-biophilic-example__wrap {
    margin-bottom: 13rem;
    padding: 8rem 0 7rem;
  }
}
.p-biophilic-example__list {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-biophilic-example__list {
    flex-direction: row;
  }
}
.p-biophilic-example__list:after {
  content: " ";
  display: block;
  background: #f7f6ef;
  background: url(../images/arrow.png) repeat;
  background-size: contain;
  width: 79.0666666667vw;
  height: 16.2666666667vw;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20vw;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-biophilic-example__list:after {
    width: 593px;
    height: 122px;
    bottom: -150px;
  }
}
.p-biophilic-example__list img {
  width: 90%;
}
@media screen and (min-width: 768px) {
  .p-biophilic-example__list img {
    width: auto;
  }
}

.p-biophilic__box {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-biophilic__box {
    flex-direction: row;
  }
}
.p-biophilic__box-thumb {
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-biophilic__box-thumb {
    margin-bottom: 0;
    width: 50%;
  }
}
.p-biophilic__box-heading {
  font-size: 4.5333333333vw;
  font-weight: 500;
  line-height: 1.3529411765;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .p-biophilic__box-heading {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.5;
  }
}
.p-biophilic__box-body {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-biophilic__box-body {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
.p-biophilic__box-inner {
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .p-biophilic__box-inner {
    width: 83.3333333333%;
  }
}
.p-biophilic__box p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-biophilic__box p {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.8181818182;
    padding-bottom: 5rem;
  }
}
.p-biophilic__box p:last-child {
  padding-bottom: 0;
}

/*==========================================
p-osmo
===========================================*/
.p-osmo {
  background: url(../images/osmo_bg_sp.jpg) repeat-y center top;
  background-size: contain;
  position: relative;
  z-index: 0;
  padding-top: 5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-osmo {
    background: url(../images/osmo_bg.jpg) no-repeat center top;
    padding-top: 8rem;
    background-size: auto 100%;
  }
}
.p-osmo__wrap {
  background: url(../images/osmo_brush_sp.png) no-repeat center top 90px;
  position: relative;
  padding: 0 1vw;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-osmo__wrap {
    background: url(../images/osmo_brush.png) no-repeat center top 90px;
    padding: 0;
    padding-bottom: 8rem;
  }
}
.p-osmo__heading {
  font-size: 6.6666666667vw;
  font-weight: 400;
  line-height: 1.3;
  background: none;
  margin-right: 4vw;
  margin-left: 4vw;
}
@media screen and (min-width: 768px) {
  .p-osmo__heading {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.5714285714;
    margin: 0 auto;
  }
}
.p-osmo__heading:after {
  background: rgba(250, 222, 6, 0.9);
}
.p-osmo__inner {
  max-width: 1240px;
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-osmo__inner {
    padding-top: 8rem;
  }
}
.p-osmo__block {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
  z-index: 10;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .p-osmo__block {
    flex-direction: row;
    margin-bottom: 8rem;
  }
  .p-osmo__block:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.p-osmo__thumb {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-osmo__thumb {
    width: 50%;
  }
}
.p-osmo__img01 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-osmo__img01 {
    height: 100%;
    margin-right: 10rem;
    padding-bottom: 0;
  }
}
.p-osmo__img01 img {
  width: 90%;
}
@media screen and (min-width: 768px) {
  .p-osmo__img01 img {
    width: auto;
  }
}
.p-osmo__img02 {
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-osmo__img02 {
    height: 100%;
  }
}
.p-osmo__img02:after {
  content: " ";
  display: block;
  background: url(../images/osmo_thumb02.png) no-repeat;
  background-size: contain;
  width: 98vw;
  height: 40vw;
  position: relative;
  left: -4vw;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-osmo__img02:after {
    width: 722px;
    height: 340px;
    position: absolute;
    left: 10rem;
  }
}
.p-osmo__img03 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-osmo__img03 {
    height: 100%;
    padding-bottom: 0;
  }
}
.p-osmo__img03 img {
  width: 70%;
}
@media screen and (min-width: 768px) {
  .p-osmo__img03 img {
    width: auto;
  }
}
.p-osmo__img04 {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.p-osmo__title {
  font-size: 4.8vw;
  font-weight: 500;
  line-height: 1.2777777778;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-osmo__title {
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1.3846153846;
  }
}
.p-osmo__title .small {
  font-size: 4.2666666667vw;
  font-weight: 500;
  line-height: 1.4375;
}
@media screen and (min-width: 768px) {
  .p-osmo__title .small {
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.6363636364;
  }
}
.p-osmo__body {
  width: 100%;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.81);
}
@media screen and (min-width: 768px) {
  .p-osmo__body {
    width: 50%;
    padding: 5rem;
  }
}
.p-osmo__body p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-osmo__body p {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.25;
  }
}
.p-osmo__body p:last-child {
  padding-bottom: 0;
}
.p-osmo__logo {
  position: relative;
  height: 40px;
}
.p-osmo__logo img {
  position: absolute;
  right: 0;
  bottom: 0;
}
.p-osmo__block-center {
  width: 100%;
  margin: 0 auto;
  margin-top: 3rem;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.8);
}
@media screen and (min-width: 768px) {
  .p-osmo__block-center {
    width: 90%;
    margin-top: 8rem;
    padding: 5rem;
  }
}
.p-osmo__block-center-heading {
  text-align: center;
  font-size: 4.9333333333vw;
  font-weight: 400;
  line-height: 1.2432432432;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .p-osmo__block-center-heading {
    font-size: 2.7rem;
    font-weight: 400;
    line-height: 1.3333333333;
  }
}
.p-osmo__block-center-heading .large {
  font-size: 5.8666666667vw;
  font-weight: 500;
  line-height: 1.0454545455;
}
@media screen and (min-width: 768px) {
  .p-osmo__block-center-heading .large {
    font-size: 3.4rem;
    font-weight: 500;
    line-height: 1.0588235294;
  }
}
.p-osmo__block-center-row {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .p-osmo__block-center-row {
    flex-direction: row-reverse;
  }
}
.p-osmo__block-center-thumb {
  flex: 1;
}
.p-osmo__block-center-body {
  width: 100%;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .p-osmo__block-center-body {
    width: 60.2409638554%;
  }
}

/*==========================================
p-warema
===========================================*/
.p-warema {
  padding-top: 64vw;
  padding-bottom: 5rem;
  background: url(../images/warema_bg_sp.jpg) no-repeat center top;
  background-size: 100% auto;
}
@media screen and (min-width: 768px) {
  .p-warema {
    padding-top: 20rem;
    background: url(../images/warema_bg.jpg) no-repeat left top;
    height: 878px;
  }
}
@media screen and (min-width: 1060px) {
  .p-warema {
    background-position: center;
  }
}
.p-warema__inner {
  display: flex;
  justify-content: flex-end;
}
.p-warema__block {
  width: 730px;
  background: rgba(255, 255, 255, 0.9);
}
.p-warema__body {
  max-width: 580px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
}
.p-warema__body p:last-child {
  padding-bottom: 0;
}
.p-warema__heading {
  font-size: 7.3333333333vw;
  font-weight: 500;
  line-height: 1.0909090909;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-warema__heading {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 3rem;
  }
}
.p-warema .p-warema__label {
  display: block;
  font-size: 4.8vw;
  font-weight: 500;
  line-height: 1.1111111111;
  text-align: center;
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-warema .p-warema__label {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
  }
}
.p-warema .p-warema__catch {
  font-size: 5.3333333333vw;
  font-weight: 500;
  line-height: 1.25;
  padding-bottom: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-warema .p-warema__catch {
    font-size: 2.7rem;
    font-weight: 500;
    line-height: 1.4814814815;
    text-align: left;
  }
}

/*==========================================
p-blind
===========================================*/
.p-blind {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-blind {
    padding-top: 10rem;
    padding-bottom: 8rem;
  }
}
.p-blind__heading {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-blind__heading {
    margin-bottom: 5rem;
  }
}
.p-blind__heading-inner {
  display: inline-block;
  position: relative;
}
.p-blind__heading-inner:after {
  content: " ";
  display: block;
  background: #8c1c21;
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.p-blind__block {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  column-gap: 2rem;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .p-blind__block {
    grid-template-rows: auto auto;
    grid-template-columns: auto auto;
    column-gap: 2.7rem;
    margin-bottom: 7rem;
  }
}
.p-blind__title {
  grid-column: 1/2;
  grid-row: 1/2;
  font-size: 4.8vw;
  font-weight: 500;
  line-height: 1.2777777778;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .p-blind__title {
    grid-column: 1/2;
    grid-row: 1/2;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.6666666667;
  }
}
@media screen and (min-width: 1060px) {
  .p-blind__title {
    line-height: 2;
  }
}
.p-blind__body {
  grid-column: 1/2;
  grid-row: 3/4;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .p-blind__body {
    grid-column: 1/2;
    grid-row: 2/3;
    padding: 0;
  }
}
.p-blind__thumb {
  grid-column: 1/2;
  grid-row: 2/3;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-blind__thumb {
    grid-column: 2/3;
    grid-row: 1/3;
  }
}
.p-blind__title-inner {
  position: relative;
  display: block;
  padding-bottom: 1.2rem;
  text-align: right;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-blind__title-inner {
    display: inline;
    text-align: left;
  }
}
.p-blind__label {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.1875;
  margin-bottom: 2rem;
  color: #b7b5a6;
  display: inline;
  position: relative;
  float: left;
}
@media screen and (min-width: 768px) {
  .p-blind__label {
    font-size: 3.8rem;
    font-weight: 400;
    line-height: 1;
    margin-right: 2rem;
    margin-bottom: 0;
  }
}
.p-blind__label:after {
  content: "";
  width: 2px;
  height: 150%;
  background: #8c1c21;
  position: absolute;
  right: 0px;
  bottom: -30%;
  transform: rotate(35deg);
}
.p-blind__label .no {
  font-size: 5.2rem;
  font-weight: 300;
  line-height: 1.0576923077;
  font-style: italic;
  padding-left: 1rem;
  padding-right: 2rem;
}
@media screen and (min-width: 768px) {
  .p-blind__label .no {
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1;
  }
}
.p-blind__box {
  background: #f7f6ef;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 3rem;
  margin-bottom: 6rem;
}
.p-blind__box-body {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-blind__box-body {
    padding: 4rem 0;
  }
}
.p-blind__box p:last-child {
  padding-bottom: 0;
}
.p-blind__box-thumb {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 2rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-blind__box-thumb {
    width: 45%;
    margin-right: 4rem;
    margin-bottom: 1rem;
    float: right;
  }
}
.p-blind__box-heading {
  font-size: 5.0666666667vw;
  font-weight: 500;
  line-height: 1.4736842105;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .p-blind__box-heading {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.5;
  }
}
.p-blind__result p {
  text-align: center;
  font-size: 4.5333333333vw;
  font-weight: 400;
  line-height: 1.6470588235;
}
@media screen and (min-width: 768px) {
  .p-blind__result p {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.44;
  }
}
.p-blind__result p .emphasise {
  font-size: 5.3333333333vw;
  font-weight: 600;
  line-height: 1.65;
}
@media screen and (min-width: 768px) {
  .p-blind__result p .emphasise {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.5333333333;
  }
}

/*==========================================
p-informaiton
===========================================*/
.p-information {
  padding-top: 5rem;
  padding-bottom: 5rem;
  /*********** table ***********/
}
@media screen and (min-width: 768px) {
  .p-information {
    padding-top: 10rem;
    padding-bottom: 5rem;
  }
}
.p-information__inner {
  max-width: 930px;
}
.p-information__heading {
  width: 98%;
  position: relative;
  margin-bottom: 2rem;
  margin-left: 2%;
}
@media screen and (min-width: 768px) {
  .p-information__heading {
    margin-bottom: 5rem;
  }
}
.p-information__heading:before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #d5d3c3;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}
.p-information__heading-inner {
  display: inline-block;
  background: white;
  padding: 1rem 2rem;
  font-size: 4.5333333333vw;
  font-weight: 500;
  line-height: 1.3529411765;
  text-align: center;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-information__heading-inner {
    padding: 1.5rem 4rem;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.5;
  }
}
.p-information__heading-inner:before, .p-information__heading-inner:after {
  content: "";
  width: 3px;
  height: 100%;
  background: #d5d3c3;
  position: absolute;
  bottom: 0;
}
.p-information__heading-inner:after {
  transform: rotate(35deg);
  left: 0;
}
.p-information__heading-inner:before {
  transform: rotate(35deg);
  right: -0.3rem;
}
.p-information__table {
  border-spacing: 0;
  border-collapse: separate;
  width: 100%;
  margin: 2rem auto;
}
@media screen and (min-width: 768px) {
  .p-information__table {
    margin-bottom: 5rem;
  }
}
.p-information__table th,
.p-information__table td {
  padding: 0.5rem 0.3rem;
  padding-left: 1rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7142857143;
  text-align: left;
  vertical-align: top;
  border-bottom: 5px solid white;
}
@media screen and (min-width: 768px) {
  .p-information__table th,
.p-information__table td {
    padding: 0.3rem;
    padding-left: 3rem;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.875;
  }
}
.p-information__table th {
  background: #efede0;
}
.p-information__table td {
  background: #f7f6ef;
}
.p-information__table tr:nth-child(1) th {
  width: 28%;
}
@media screen and (min-width: 768px) {
  .p-information__table tr:nth-child(1) th {
    width: 26%;
  }
}

/*==========================================
contact
===========================================*/
.p-contact__block {
  width: 100%;
  height: 500px;
  text-align: center;
}

p.reference {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.5384615385;
}

.to-top {
  display: block;
  width: 3rem;
  height: 3rem;
  position: fixed;
  bottom: 3.25rem;
  right: 0;
  z-index: 100;
}
@media screen and (min-width: 480px) {
  .to-top {
    width: 4rem;
    height: 4rem;
  }
}

.to-top a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  background-color: rgba(0, 127, 65, 0.7);
}
@media screen and (min-width: 480px) {
  .to-top a {
    transition: all 0.3s;
  }
}

@media screen and (min-width: 480px) {
  .to-top a:hover {
    background-color: #007f41;
  }

  .to-top a:hover img {
    animation: top-arrow 1.1s;
    animation-iteration-count: infinite;
  }

  .to-top a.hover {
    background-color: #367ea6;
  }

  .to-top a.hover img {
    animation: top-arrow 1.1s;
    animation-iteration-count: infinite;
  }
}
.to-top img {
  max-width: 34px;
  position: absolute;
  margin: 0;
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateY(0) translateX(-50%);
}

.to-top span {
  font-size: 1rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateY(0) translateX(-50%);
  bottom: 0;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 480px) {
  .to-top span {
    font-size: 1.5rem;
  }
}