@charset "UTF-8";
/*--------------------------------------------------------------
Foundation
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, i, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, figure, figcaption,
button, input, textarea, select, i {
  border: 0;
  font-style: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 1.6rem;
  line-height: 1.5;
  background: #905C40;
  color: #000;
  overflow-x: hidden;
  overflow-y: scroll;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul, li {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

a:hover,
a:active,
a:focus {
  outline: 0;
}

a {
  backface-visibility: hidden;
  transition: .2s ease-in;
  transition-property: opacity, color, border, background, transform, box-shadow;
  opacity: 1;
  line-height: inherit;
}

img {
  vertical-align: middle;
}

img,
input[type="image"] {
  border: 0;
  height: auto;
  max-width: 100%;
}

input[type="submit"], input[type="button"], button {
  cursor: pointer;
  -webkit-appearance: none;
  border-radius: 0;
  font-size: inherit;
  letter-spacing: inherit;
  background: none;
}

strong {
  font-weight: bold;
}

a {
  text-decoration: none;
}

a:hover,
input[type="image"]:hover {
  opacity: 0.8;
}

main {
  overflow: hidden;
}

.m_ft {
  font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.ft_e {
  font-family: "Roboto Slab", serif;
}

.ft_r {
  font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
Component
--------------------------------------------------------------*/
.evt {
  visibility: hidden;
}

.evt.done {
  visibility: visible;
}

.c_anchor {
  position: absolute;
  width: 100%;
  left: 0;
  margin-top: -8rem;
}

@media screen and (max-width: 767px) {
  .c_anchor {
    margin-top: -6rem;
  }
}

.about_modal .ttl {
  text-align: center;
  color: #905C40;
  font-weight: bold;
  font-size: 3.6rem;
  letter-spacing: .05em;
  line-height: 1;
  padding-bottom: 1.5em;
  border-bottom: solid 1px #905C40;
  margin-bottom: 5rem;
}

@media screen and (max-width: 767px) {
  .about_modal .ttl {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
  }
}

.about_modal .box {
  background: #fff;
  border-radius: 1.2rem;
  border: solid 0.4rem #905C40;
}

@media screen and (max-width: 767px) {
  .about_modal .box {
    border-width: .3rem;
  }
}

.about_modal .row {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .about_modal .row {
    flex-direction: column;
    gap: .8rem;
  }
}

.about_modal .row p {
  font-size: 1.8rem;
  letter-spacing: .02em;
  line-height: 1.88;
}

@media screen and (min-width: 768px) {
  .about_modal .row p {
    font-weight: 500;
    width: 41.38%;
  }
}

@media screen and (max-width: 767px) {
  .about_modal .row p {
    padding: 1rem;
    font-size: 1.5rem;
    line-height: 1.73;
  }
}

@media screen and (min-width: 768px) {
  .about_modal .row figure {
    width: 55.1724%;
  }
}

.about_modal .row figure img {
  width: 100%;
  border-radius: .8rem;
}

.popup-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
  display: none;
}

.popup-modal .close {
  position: absolute;
  width: 6.6rem;
  top: 1.5rem;
  right: 1.5rem;
  cursor: pointer;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .popup-modal .close {
    width: 3.4rem;
    top: .8rem;
    right: .8rem;
  }
}

.popup-modal .wrap {
  display: flex;
  height: calc(100vh - 3rem);
  margin-top: 1.5rem;
}

.popup-modal .box {
  width: 128rem;
  max-width: calc(100% - 3rem);
  margin: auto;
  position: relative;
  background: #fff;
}

.popup-modal .scroll {
  padding: 5rem 5.6rem;
  overflow-y: auto;
  height: 100%;
  max-height: calc(100vh - 4rem);
}

@media screen and (max-width: 767px) {
  .popup-modal .scroll {
    padding: 4rem 1.2rem 2rem;
  }
}

body.show-modal {
  overflow-y: hidden;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  display: block;
  animation: fadeIn 1s;
}

@keyframes fadeOut {
  from {
    opacity: 1;
    display: block;
  }
  to {
    opacity: 0;
  }
}

.fadeOut {
  display: none;
  animation: fadeOut .8s;
}

/*--------------------------------------------------------------
Utility
--------------------------------------------------------------*/
.u_wrap {
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .u_inner {
    width: 128rem;
    max-width: calc(100% - 4rem);
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .u_inner {
    margin: 0 1.5rem;
  }
}

html {
  font-size: 10px;
}

@media screen and (min-width: 768px) and (max-width: 1140px) {
  html {
    font-size: calc(100vw * 10 / 1140);
  }
}

@media screen and (max-width: 390px) {
  html {
    font-size: calc(100vw * 10 / 390);
  }
}

.u_clearfix:after,
.u_clearfix > li:after {
  height: 0;
  visibility: hidden;
  content: ".";
  display: block;
  clear: both;
}

* html .u_clearfix,
* html .u_clearfix > li {
  zoom: 1;
}

* + html .u_clearfix,
* + html .u_clearfix li {
  zoom: 1;
}

.u_switch_img {
  opacity: 1;
}

.u_relative {
  position: relative;
}

@media screen and (min-width: 768px) {
  .u_visible_sp {
    display: none;
  }
  .u_tel {
    pointer-events: none;
    cursor: default;
  }
  .u_tel:hover {
    opacity: 1;
  }
}

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

/*--------------------------------------------------------------
Layout/PageBase
--------------------------------------------------------------*/
#header {
  position: fixed;
  background: #905C40;
  width: 100%;
  top: 0;
  z-index: 66;
  height: 8rem;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 767px) {
  #header {
    height: 6rem;
    padding: 0 1.5rem;
  }
}

.h_ttl {
  color: #fff;
  font-weight: bold;
  font-size: 2.4rem;
  letter-spacing: .03em;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .h_ttl {
    position: absolute;
    left: 50%;
    translate: -50% 0;
  }
}

@media screen and (max-width: 767px) {
  .h_ttl {
    font-size: 1.6rem;
    padding-bottom: .4em;
  }
}

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

@media screen and (min-width: 768px) {
  .h_nav {
    display: flex;
    font-size: 1.8rem;
    gap: 1.5em;
  }
  .h_nav a {
    letter-spacing: .02em;
    color: #fff;
    font-weight: 600;
  }
}

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

.h_logo img {
  width: 9.6rem;
}

#footer {
  background: #805034;
  padding: 7rem 0 8rem;
  color: #fff;
}

@media screen and (max-width: 767px) {
  #footer {
    padding: 3rem 0 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .f_logo {
    margin-bottom: 6rem;
  }
}

.f_logo img {
  width: 19.5rem;
}

@media screen and (max-width: 767px) {
  .f_logo img {
    width: 11.2rem;
  }
}

.f_sns {
  display: flex;
  gap: 2.2em;
  font-size: 1rem;
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .f_sns {
    margin: 3rem 0 4.5rem;
    flex-direction: row;
  }
}

.f_sns .mail img {
  width: 1.9em;
}

.f_sns .fb img {
  width: 1.1em;
}

.f_sns .insta img {
  width: 1.9em;
}

.f_sns .yt img {
  width: 2.1em;
}

@media screen and (min-width: 900px) {
  .f_info {
    width: 62rem;
  }
}

@media screen and (min-width: 768px) {
  .f_info {
    width: 51.5rem;
    margin-left: 3rem;
  }
}

.f_info dt {
  font-weight: bold;
  letter-spacing: .02em;
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: .8em;
}

@media screen and (max-width: 767px) {
  .f_info dt {
    font-size: 1.8rem;
    margin-bottom: 1.3em;
  }
}

.f_info dd {
  font-size: 1.5rem;
  letter-spacing: .04em;
  line-height: 1.86;
}

@media screen and (max-width: 767px) {
  .f_info dd {
    font-size: 1.4rem;
  }
}

.f_copy {
  color: #B4A398;
  font-weight: 300;
  letter-spacing: .04em;
  font-size: 1.2rem;
}

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

.f_row {
  display: flex;
  justify-content: space-between;
}

.f_row .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .f_row {
    flex-direction: column;
    padding: 0 1rem;
  }
}

/*--------------------------------------------------------------
Project
--------------------------------------------------------------*/
.tree_mv {
  margin: 8rem 0rem 8rem;
/*  background: #fff;*/
  position: relative;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .tree_mv {
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .tree_mv {
    margin: 6rem 0 2.5rem;
    text-align: center;
  }
}

.tree_mv .row {
  display: flex;
}

@media screen and (min-width: 768px) {
  .tree_mv .row {
    width: 138rem;
    align-items: center;
    justify-content: space-between;
    max-width: calc(100% - 10rem);
    margin: 0 auto;
    height: 100%;
  }
}

@media screen and (max-width: 767px) {
  .tree_mv .row {
    flex-direction: column;
  }
}

.tree_mv figure {
  /*padding-right: 7rem;
  max-width: calc(100% - 40rem);*/
  width:100%;
}

/*.tree_mv figure img {
  width: 67.1rem;
}*/

/*@media screen and (max-width: 767px) {
  .tree_mv figure {
    display: none;
  }
}*/

.tree_mv p {
  font-size: 2.4rem;
  margin-bottom: 1.5em;
}

@media screen and (max-width: 767px) {
  .tree_mv p {
    font-size: 1.3rem;
  }
}

.tree_mv .ttl {
  font-size: 4rem;
}

@media screen and (max-width: 767px) {
  .tree_mv .ttl {
    font-size: 2.1rem;
  }
}

.tree_mv .about {
  margin-top: 12.5rem;
}

@media screen and (min-width: 768px) {
  .tree_mv .about {
    margin-top: 3rem;
    position: absolute;
    bottom: 5rem;
  }
}

.tree_mv .about a {
  background: #1E986D;
  text-align: center;
  color: #fff;
  line-height: 5.9rem;
  font-size: 1.8rem;
  display: block;
  letter-spacing: .03em;
}

@media screen and (max-width: 767px) {
  .tree_mv .about a {
    font-size: 1.5rem;
    border-radius: .8rem;
    line-height: 5.4rem;
    letter-spacing: .05em;
    background: #1E986D url(assets/images/tree_icon_arrow.svg) no-repeat calc(100% - 1em) center/2rem;
  }
}

@media screen and (min-width: 768px) {
  .tree_mv .about a {
    width: 30.7rem;
  }
}

.tree_list {
  margin-bottom: 22.5rem;
}

@media screen and (max-width: 767px) {
  .tree_list {
    margin-bottom: 14.5rem;
  }
}

.tree_list .ttl {
  text-align: center;
  color: #fff;
  font-size: 4rem;
  letter-spacing: .02em;
  font-weight: 600;
  margin-bottom: 1em;
  font-family: "Roboto Slab", serif;
}

@media screen and (max-width: 767px) {
  .tree_list .ttl {
    font-size: 2.4rem;
    margin-bottom: .6em;
  }
}

.tree_list dl {
  overflow: hidden;
  margin-bottom: .4rem;
  border-bottom: solid 1px #fff;
}

.tree_list dt {
  font-weight: bold;
  background: url(assets/images/tree_icon_plus.svg) no-repeat calc(100% - 1.55em) center/3.9rem;
  font-size: 2.4rem;
  letter-spacing: .05em;
  padding: 1.835em 4.5em;
  position: relative;
  cursor: pointer;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .tree_list dt {
    padding: 2rem 2em 3.4rem 0;
    font-size: 2rem;
    background-position: right center;
    background-size: 2.4rem;
  }
}

.tree_list dt.open {
  background-color: #905C40;
  background-image: url(assets/images/tree_icon_minus.svg);
  color: #fff;
}

.tree_list dt.open + dd {
  display: block;
}

@media screen and (min-width: 768px) {
  .tree_list dt {
    padding-left: 24.7rem;
  }
  .tree_list dt i {
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    left: 3.8rem;
  }
}

.tree_list dt i {
  font-size: 2.1rem;
  letter-spacing: .02em;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
}

.tree_list dt i:first-letter {
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .tree_list dt i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: .8em;
  }
}

.tree_list dt em {
  font-size: 4rem;
  letter-spacing: 0;
  margin-left: .65em;
  vertical-align: -.15em;
  font-family: "Roboto Slab", serif;
  border-bottom: solid .125em #fff;
}

@media screen and (max-width: 767px) {
  .tree_list dt em {
    font-size: 2.4rem;
    vertical-align: 0;
    margin-left: .5em;
  }
}

.tree_list dd {
  display: none;
  margin: .8rem 0 6rem;
}

@media screen and (max-width: 767px) {
  .tree_list dd {
    margin: .8rem 0 3rem;
  }
}

.tree_list .story {
  font-weight: bold;
  letter-spacing: .05em;
  position: relative;
  font-size: 2.8rem;
  margin-bottom: .7em;
}

@media screen and (max-width: 767px) {
  .tree_list .story {
    font-size: 2.4rem;
  }
}

.tree_list .story em {
  font-size: 2.1rem;
  letter-spacing: .02em;
  display: block;
  font-family: "Roboto Slab", serif;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: .4em;
  color: #905C40;
  margin-bottom: 1.2em;
}

@media screen and (max-width: 767px) {
  .tree_list .story em {
    font-size: 1.8rem;
  }
}

.tree_list .story i {
  background: url(assets/images/tree_icon_pin.svg) no-repeat left center/1.3rem;
  padding-left: 1.5em;
  letter-spacing: .05em;
  font-size: 1.5rem;
  display: block;
  margin-top: 1.1em;
}

@media screen and (min-width: 768px) {
  .tree_list .story i {
    position: absolute;
    right: 0;
    bottom: .4em;
  }
}

.tree_list figure {
  padding: 1rem;
}

@media screen and (min-width: 768px) {
  .tree_list figure {
    width: 39.0625%;
    display: flex;
    align-items: center;
  }
}

.tree_list figure img {
  border-radius: .8rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .tree_list .desc {
    width: 56.640625%;
    padding: 4.5rem 5.5rem 4.5rem 4.5rem;
  }
}

@media screen and (max-width: 767px) {
  .tree_list .desc {
    padding: 1rem 2rem 2rem;
  }
}

.tree_list a {
  background: #fff;
  border-radius: 1.2rem;
  margin-bottom: 2rem;
  position: relative;
  display: flex;
  overflow: hidden;
  box-shadow: 0 0.6rem 0 rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 767px) {
  .tree_list a {
    margin-bottom: 1.5rem;
    flex-direction: column;
  }
}

.tree_list a p {
  line-height: 1.75;
  letter-spacing: .04em;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .tree_list a p {
    font-size: 1.5rem;
  }
}

.tree_list .btn {
  background: #1E986D url(assets/images/tree_icon_arrow.svg) no-repeat 50%/2rem;
}

@media screen and (min-width: 768px) {
  .tree_list .btn {
    color: transparent;
    width: 4.296875%;
  }
}

@media screen and (max-width: 767px) {
  .tree_list .btn {
    color: #fff;
    font-size: 1.5rem;
    letter-spacing: .05em;
    padding-left: 2rem;
    font-weight: 500;
    line-height: 5.5rem;
    background-position: calc(100% - 1em) center;
  }
}

.tree_story {
  margin: 9rem 0 6rem;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .tree_story {
    width: 90rem;
    margin: 17.5rem auto 13rem;
  }
}

.tree_story figure {
  padding: 1.5rem;
  background: #fff;
  border-radius: 1.2rem;
}

@media screen and (max-width: 767px) {
  .tree_story figure {
    border-radius: .8rem;
    padding: .9rem;
  }
}

.tree_story figure img {
  border-radius: .8rem;
}

@media screen and (max-width: 767px) {
  .tree_story figure img {
    border-radius: .6rem;
  }
}

.tree_story .ttl {
  font-weight: bold;
  letter-spacing: .05em;
  position: relative;
  font-size: 4rem;
  margin-bottom: 6rem;
  text-align: center;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .tree_story .ttl {
    font-size: 2.4rem;
    text-align: left;
    margin-bottom: 2.5rem;
    padding: 0 .9rem;
  }
}

.tree_story .ttl em {
  font-size: 2.8rem;
  letter-spacing: .02em;
  display: block;
  font-family: "Roboto Slab", serif;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: .4em;
  margin-bottom: 1.5em;
}

@media screen and (max-width: 767px) {
  .tree_story .ttl em {
    font-size: 1.8rem;
  }
}

.tree_story .ttl i {
  background: url(assets/images/tree_icon_pin_w.svg) no-repeat left center/1.5rem;
  padding-left: 1.3em;
  letter-spacing: .05em;
  font-size: 2.1rem;
  display: inline-block;
  margin-top: 3em;
}

@media screen and (max-width: 767px) {
  .tree_story .ttl i {
    background-size: 1.3rem;
    margin-top: 1.1em;
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .tree_story .ttl i {
    position: relative;
  }
  .tree_story .ttl i:before, .tree_story .ttl i:after {
    content: '';
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    width: 50vw;
    background: #fff;
    height: 1px;
    margin-left: 1.5em;
  }
  .tree_story .ttl i:before {
    transform: translate(-100%, -50%);
    margin-left: -2.7em;
  }
}

.tree_story .body {
  padding: 4.5rem 3rem 6rem;
}

@media screen and (max-width: 767px) {
  .tree_story .body {
    padding: 2.5rem .9rem 4rem;
  }
}

.tree_story p {
  font-size: 1.8rem;
  letter-spacing: .02em;
  line-height: 1.88;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .tree_story p {
    font-size: 1.5rem;
    line-height: 1.71;
  }
}

.tree_story .pager {
  border-top: solid 1px #fff;
  display: flex;
  justify-content: space-between;
  padding: 3rem 1rem 0;
}

@media screen and (max-width: 767px) {
  .tree_story .pager {
    padding: 1.5rem 0 0;
  }
}

.tree_story .pager a {
  display: block;
  background: url(assets/images/icon_tree_prev.svg) no-repeat left center/2rem;
  padding: 0 1.4em;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: .02em;
}

@media screen and (max-width: 767px) {
  .tree_story .pager a {
    font-size: 2rem;
    background-size: 1.8rem;
    padding: 0 1.5em;
  }
}

.tree_story .next a {
  background-image: url(assets/images/icon_tree_next.svg);
  background-position: right center;
}

.tree_other {
  margin-bottom: 11rem;
}

@media screen and (max-width: 767px) {
  .tree_other {
    margin-bottom: 4rem;
  }
}

.tree_other .ttl {
  font-size: 3.2rem;
  margin-bottom: 1.25em;
}

@media screen and (max-width: 767px) {
  .tree_other .ttl {
    font-size: 2.4rem;
    margin-bottom: 1.7em;
  }
}

.magazine-modal {
  transition: all 1s;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
}

.magazine-modal.active {
  opacity: 1;
  visibility: visible;
}

.magazine-modal .modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.magazine-modal .modal-content {
  position: absolute;
  top: calc(50% - 283px);
  left: calc(50% - 516px);
  background-color: #f2f1ed;
  width: 100%;
  max-width: 1032px;
  height: 100%;
  max-height: 526px;
  z-index: 2;
  text-align: center;
  padding: 132px 50px 0;
}

.magazine-modal .modal-content h2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 15px;
}

.magazine-modal .modal-content p {
  font-size: 16px;
  margin-bottom: 60px;
  line-height: 2;
}

.magazine-modal .modal-content iframe {
  max-width: 560px;
  width: 100%;
  height: 72px;
  border: 0;
}

.magazine-modal .modal-content .close {
  position: absolute;
  top: 20px;
  right: 20px;
}

@media screen and (max-width: 1032px) {
  .magazine-modal .modal-content {
    max-width: 100%;
    left: 0;
  }
}

@media screen and (max-width: 768px) {
  .magazine-modal {
    z-index: 10001;
  }
  .magazine-modal .modal-content {
    top: 0;
    max-height: 100%;
    padding: 190px 25px 0;
  }
  .magazine-modal .modal-content h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .magazine-modal .modal-content p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 2;
    text-align: left;
  }
}

.modal_open {
  cursor: pointer;
}

/*# sourceMappingURL=troubled_tree.css.map */