/***** -- var -- *****/
:root {
  --base: 8px;
  --font-size-xxl: calc(8px * 3);
  --font-size-xl: calc(8px * 2.5);
  --font-size-lg: calc(8px * 2.25);
  --font-size-md: calc(8px * 2);
  --font-size-sm: calc(8px * 1.75);
  --font-size-xs: calc(8px * 1.5);
  --font-size-xxs: calc(8px * 1.25);
  --inner-margin: 40px;
  --inner-max-width: 1120px;
  --inner-max-width-lg: 960px;
  --inner-max-width-md: 800px;
  --inner-max-width-sm: 640px;
  --color-1st: #453a31;
}
@media screen and (max-width: 1200px) {
  :root {
    --base: 0.82vw;
    --font-size-xxl: calc(0.82vw * 3);
    --font-size-xl: calc(0.82vw * 2.5);
    --font-size-lg: calc(0.82vw * 2.25);
    --font-size-md: calc(0.82vw * 2);
    --font-size-sm: calc(0.82vw * 1.75);
    --font-size-xs: calc(0.82vw * 1.5);
    --font-size-xxs: calc(0.82vw * 1.25);
    --inner-margin: 3.27vw;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --base: 1.25vw;
    --font-size-xxl: calc(1.25vw * 3);
    --font-size-xl: calc(1.25vw * 2.5);
    --font-size-lg: calc(1.25vw * 2.25);
    --font-size-md: calc(1.25vw * 2);
    --font-size-sm: calc(1.25vw * 1.75);
    --font-size-xs: calc(1.25vw * 1.5);
    --font-size-xxs: calc(1.25vw * 1.25);
    --inner-margin: 3.75vw;
  }
}
@media screen and (max-width: 480px) {
  :root {
    --base: 1.50vw;
    --font-size-xxl: calc(1.50vw * 3);
    --font-size-xl: calc(1.50vw * 2.5);
    --font-size-lg: calc(1.50vw * 2.25);
    --font-size-md: calc(1.50vw * 2);
    --font-size-sm: calc(1.50vw * 1.75);
    --font-size-xs: calc(1.50vw * 1.5);
    --font-size-xxs: calc(1.50vw * 1.25);
    --inner-margin: 4.00vw;
  }
}

/***** -- reset -- *****/
.is-renewal h1, .is-renewal h2, .is-renewal h3, .is-renewal h4, .is-renewal h5, .is-renewal h6, .is-renewal p, .is-renewal figure, .is-renewal dl, .is-renewal ol, .is-renewal ul, .is-renewal address {
  margin: 0;
  padding: 0;
}


body {font-size: var(--font-size-md);}
a {text-decoration: none;}

/***** -- wordpress -- *****/
img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
} 

/***** -- fonts -- *****/
/* Noto Sans JP */
@font-face {
  font-display: swap;
  font-family: 'FOT-SeuratProN-EB';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('../fonts/FOT-SeuratProN-EB.woff2') format('woff2');
}
.u-fFamily--01 {
  font-family: ab-yurumin, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.u-fFamily--02 {
  font-family: 'FOT-SeuratProN-EB', sans-serif;
}
.u-tA--center {text-align: center;}
.u-w100p {width: 100%!important;}
.u-mT0 {margin-top: 0!important;}
.u-mT1 {margin-top: calc(var(--base) * 1)!important;}
.u-mT2 {margin-top: calc(var(--base) * 2)!important;}
.u-mT3 {margin-top: calc(var(--base) * 3)!important;}
.u-mT4 {margin-top: calc(var(--base) * 4)!important;}
.u-mT5 {margin-top: calc(var(--base) * 5)!important;}
.u-mT6 {margin-top: calc(var(--base) * 6)!important;}
.u-mT7 {margin-top: calc(var(--base) * 7)!important;}
.u-mT8 {margin-top: calc(var(--base) * 8)!important;}
.u-mT9 {margin-top: calc(var(--base) * 9)!important;}
.u-mB0 {margin-bottom: 0!important;}
.u-mB1 {margin-bottom: calc(var(--base) * 1)!important;}
.u-mB2 {margin-bottom: calc(var(--base) * 2)!important;}
.u-mB3 {margin-bottom: calc(var(--base) * 3)!important;}
.u-mB4 {margin-bottom: calc(var(--base) * 4)!important;}
.u-mB5 {margin-bottom: calc(var(--base) * 5)!important;}
.u-mB6 {margin-bottom: calc(var(--base) * 6)!important;}
.u-mB7 {margin-bottom: calc(var(--base) * 7)!important;}
.u-mB8 {margin-bottom: calc(var(--base) * 8)!important;}
.u-mB9 {margin-bottom: calc(var(--base) * 9)!important;}


/***** -- component -- *****/
/* inner */
.c-inner {
  position: relative;
  max-width: var(--inner-max-width);
  width: calc(100% - (var(--inner-margin) * 2));
  margin-left: auto;
  margin-right: auto;
}
.c-inner--max {
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.c-inner, .c-inner--sm, .c-inner--md, .c-inner--lg {
  position: relative;
  width: calc(100% - (var(--inner-margin) * 2));
  margin-left: auto;
  margin-right: auto;
}
.c-inner--max {
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.c-inner {max-width: var(--inner-max-width);}
.c-inner--lg {max-width: var(--inner-max-width-lg);}
.c-inner--md {max-width: var(--inner-max-width-md);}
.c-inner--sm {max-width: var(--inner-max-width-sm);}
/* btn */
.c-btn {
  position: relative;
  font-size: 24px;
  text-decoration: none;
  background-color: #fff;
  border: 2px solid transparent;
  border-radius: 1em;
  padding: .25em 2.75em .25em 2em;
}
.c-btn::after {
  display: block;
  position: absolute;
  right: 1em;
  top: 50%;
  font-family: 'Material Symbols Outlined';
  font-size: inherit;
  line-height: 1;
  transform: translate(0,-50%);
  transition: all .2s ease;
  content: "\e5e1";
}
.c-btn:hover::after {right: .75em;}
.c-btn--01 {
  color: #253f2a;
  border-color: #253f2a;
}
.c-btn--01:hover {
  color: #fff;
  background-color: #253f2a;
}
.c-btn--02 {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
}
.c-btn--02:hover {
  color: #fff;
  background-color: #453a31;
  border-color: #453a31;
}
.c-btn--03 {
  color: #453a31;
  background-color: transparent;
  border-color: #453a31;
}
.c-btn--03:hover {
  color: #fff;
  background-color: #453a31;
}
.c-btn--contact {
  color: #fff;
  background-color: #a5d770;
  border-color: #a5d770;
}
.c-btn--contact::after {content: "\e158";}
.c-btn--contact:hover {
  color: #a5d770;
  background-color: #fff;
}
/* flex */
.c-flex {
  display: flex;
  position: relative;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
.c-flex > * {
  display: block;
  position: relative;
  max-width: 100%;
}
.c-flex--center {justify-content: center;}
.c-flex--right  {justify-content: flex-end;}
.c-flex--middle {align-items: center;}
.c-flex--bottom {align-items: flex-end;}
/* hover */
.c-hover, .c-hover::before, .c-hover::after {transition: all .2s ease;}
.c-hover--fade:hover {opacity: .5;}
/* ellipsis */
.c-ellipsis {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.c-ellipsis--1 {-webkit-line-clamp: 1;}
.c-ellipsis--2 {-webkit-line-clamp: 2;}
.c-ellipsis--3 {-webkit-line-clamp: 3;}
/* trim */
.c-trim {position: relative;}
.c-trim::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  content: '';
}
.c-trim img, .c-trim source {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.c-trim[trim-ratio="4x3"] img, .c-trim[trim-ratio="4x3"] source {aspect-ratio: 4/3;}
.c-trim[trim-ratio="3x2"] img, .c-trim[trim-ratio="3x2"] source {aspect-ratio: 3/2;}
.c-trim[trim-ratio="ogp"] img, .c-trim[trim-ratio="ogp"] source {aspect-ratio: 1200/630;}
.c-trim[trim-ratio="mov"] img, .c-trim[trim-ratio="mov"] source {aspect-ratio: 16/9;}
/* movie */
.c-movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.c-movie iframe, .c-movie video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%!important;
  height: 100%!important;
}
@media screen and (max-width: 1200px) {
  /* btn */
  .c-btn {font-size: 2.5vw;}
}
@media screen and (max-width: 767px) {
  /* btn */
  .c-btn {font-size: 3.13vw;}
}
@media screen and (max-width: 480px) {
  /* btn */
  .c-btn {font-size: 4.1vw;}
}




/***** -- project -- *****/
/* hero */
#hero .p-hero {
  position: relative;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
#hero .p-hero::before {
  display: block;
  padding-top: 640px;
  content: '';
}
#hero .p-hero::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/top/dots.png);
  background-position: 0 0;
  background-repeat: repeat;
  opacity: .5;
  content: '';
}
.p-hero-title {
  display: grid;
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  color: #fff;
  font-family: ab-yurumin, sans-serif;
  font-weight: 400;
  font-size: 52px;
  font-style: normal;
  text-align: center;
  transform: translateY(-50%);
  gap: 0.6em;
  z-index: 1;
}
.p-hero-title span {display: block;}
/* headline */
.p-headline--01 {
  color: #453a31;
  font-family: 'FOT-SeuratProN-EB', sans-serif;
  font-size: 2.8rem;
  text-align: center;
  line-height: 1.6;
}
/* floatBanner */
.p-floatBanner {
  position: fixed;
  right: 0;
  bottom: 8px;
  z-index: 1030;
}
.p-floatBanner > .c-flex {
  flex-direction: column;
  gap: 4px;
}
.p-floatBanner > .c-flex > * {
  width: 144px;
  transform: translateX(16px);
  transition: all 0.25s ease;
}
.p-floatBanner > .c-flex > *:hover {
  transform: translateX(8px);
  transform-origin: right center;
}
.p-floatBanner img {width: 100%;}
/* banner */
#banner {
  padding: calc(var(--base) * 6) 0;
  background-color: #fff;
}
#banner .p-lead p {line-height: 1.6;}
#banner .p-content > .c-flex > * {
  width: 50%;
  max-width: 300px;
}
#banner .p-content img {width: 100%;}
/* footer */
#footer {
  padding: 4em 0 2em;
  background-color: #453a31;
}
.p-footer-company {
  text-align: center;
  margin-top: 2em;
}
.p-footer-company-logo {display: block;}
.p-footer-company-logo img {width: 160px;}
.p-footer-company address {
  color: #fff;
  font-size: var(--font-size-sm);
  text-align: center;
  margin-top: 1em;
}
.p-footer-copy {
  text-align: center;
  margin-top: 2em;
}
.p-footer-copy p {
  font-size: var(--font-size-xs);
  color: #fff;
}
/* newsCategory */
.p-newsCategory > .c-flex {gap: .5em .5em;}
.p-newsCategory > .c-flex > * {
  font-size: calc(var(--base) * 2.15);
  color: #fff;
  padding: .25em 1em .25em 1em;
  background-color: #a5d770;
  border-radius: 1em;
  cursor: pointer;
}
.p-newsCategory > .c-flex > *.is-active {background-color: var(--color-1st) !important;}
/* newsList */
.p-newsList > .c-flex {gap: 1em 1em;}
.p-newsList > .c-flex > * {
  width: calc((100% - (1em * 2)) / 3);
  border: 1px solid #ccc;
  background-image: url(../img/casestudy/bg_casestudy_item.png);
  background-position: left top;
  background-repeat: repeat;
  border: 5px solid #706359;
  border-radius: 3em;
  overflow: hidden;
}
.p-newsList > .c-flex > *:hover {border-color: #a5d770;}
.p-newsList figure {
  background-color: #fff;
  border-radius: 0 0 3em 3em;
  overflow: hidden;
}
.p-newsList-content {padding: calc(var(--base) * 2.5) calc(var(--base) * 2) calc(var(--base) * 5);}
.p-newsList-content-time {
  color: var(--color-1st);
  font-size: calc(var(--base)* 2);
  font-weight: 700;
}
.p-newsList-content-title {
  height: calc(1em * 1.6 * 3);
  color: var(--color-1st);
  font-size: calc(var(--base)* 2.5);
  font-weight: 700;
  margin-top: .5em;
  line-height: 1.6;
}
.p-newsList-tag {
  position: absolute;
  right: 16px;
  top: 8px;
  padding: .25em .75em .25em .75em;
  background-color: #a5d770;
  border-radius: 1em;
  z-index: 1;
}
[news_category_001] .p-newsList-tag,
.p-newsCategory [js-news-tag="news_category_001"],
.p-meta-category[news_category_001] {background-color: #a52a2a !important;}
[news_category_002] .p-newsList-tag,
.p-newsCategory [js-news-tag="news_category_002"],
.p-meta-category[news_category_002] {background-color: #4169e1 !important;}
[news_category_003] .p-newsList-tag,
.p-newsCategory [js-news-tag="news_category_003"],
.p-meta-category[news_category_003] {background-color: #228b22 !important;}
[news_category_004] .p-newsList-tag,
.p-newsCategory [js-news-tag="news_category_004"],
.p-meta-category[news_category_004] {background-color: #87cefa !important;}
[news_category_005] .p-newsList-tag,
.p-newsCategory [js-news-tag="news_category_005"],
.p-meta-category[news_category_005] {background-color: #00fa9a !important;}
[news_category_006] .p-newsList-tag,
.p-newsCategory [js-news-tag="news_category_006"],
.p-meta-category[news_category_006] {background-color: #ff8c00 !important;}
[news_category_007] .p-newsList-tag,
.p-newsCategory [js-news-tag="news_category_007"],
.p-meta-category[news_category_007] {background-color: #ba55d3 !important;}
[news_category_008] .p-newsList-tag,
.p-newsCategory [js-news-tag="news_category_008"],
.p-meta-category[news_category_008] {background-color: #778899 !important;}
[news_category_009] .p-newsList-tag,
.p-newsCategory [js-news-tag="news_category_009"],
.p-meta-category[news_category_009] {background-color: #ffd700 !important;}
[news_category_010] .p-newsList-tag,
.p-newsCategory [js-news-tag="news_category_010"],
.p-meta-category[news_category_010] {background-color: #ffb6c1 !important;}
.p-newsList-tag p {
  font-size: calc(var(--base)* 1.5);
  color: #fff;
}
/* casestudyList */
.p-casestudyList > .c-flex {gap: 1em 1em;}
.p-casestudyList > .c-flex > * {
  width: calc((100% - (1em * 2)) / 3);
  background-image: url(../img/casestudy/bg_casestudy_item.png);
  background-position: left top;
  background-repeat: repeat;
  border: 5px solid #706359;
  border-radius: 3em;
  overflow: hidden;
}
.p-casestudyList > .c-flex > *:hover {border-color: #a5d770;}
.p-casestudyList figure {
  background-color: #fff;
  border-radius: 0 0 3em 3em;
  overflow: hidden;
}
.p-casestudyList-content {padding: calc(var(--base) * 2.5) calc(var(--base) * 2) calc(var(--base) * 5);}
.p-casestudyList-content > .c-flex > *:nth-child(1) {width: 27%;}
.p-casestudyList-content > .c-flex > *:nth-child(2) {
  flex: 1;
  padding-left: 1em;
}
.p-casestudyList-content figure {border-radius: 50%;}
.p-casestudyList-content-pref {
  color: var(--color-1st);
  font-size: calc(var(--base)* 2);
  font-weight: 700;
}
.p-casestudyList-content-name {
  color: var(--color-1st);
  font-size: calc(var(--base)* 2.25);
  font-weight: 700;
  line-height: 1.6;
}
.p-casestudyList-content-title {
  height: calc(1em * 1.6 * 2);
  color: var(--color-1st);
  font-size: calc(var(--base)* 2.5);
  line-height: 1.6;
}
.p-casestudyList-ambassador {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 56px;
  background-color: transparent !important;
  z-index: 1;
}
/* casestudyTag */
.p-casestudyTag > .c-flex {gap: .5em .5em;}
.p-casestudyTag > .c-flex > * {
  font-size: calc(var(--base) * 2.25);
  color: #fff;
  padding: .25em 1em .25em 1em;
  background-color: #a5d770;
  border-radius: 1em;
  cursor: pointer;
}
.p-casestudyTag > .c-flex > *.is-active {background-color: var(--color-1st);}
/* m-post */
.m-post > * {margin-top: 1.2em!important;}
.m-post > *:first-child {margin-top: 0!important;}
.m-post p {font-size: var(--font-size-lg);}
.m-post h2 {
  font-size: var(--font-size-xl);
  color: #fff;
  margin-top: 2.4em!important;
  padding: .6em .8em;
  background-color: var(--color-1st);
  border-radius: 4px;
}
.m-post h3 {
  font-size: var(--font-size-xl);
  margin-top: 1.8em!important;
  padding: .4em .8em .4em;
  border-bottom: 1px solid var(--color-1st);
}
.m-post h4 {
  font-size: var(--font-size-lg);
  color: var(--color-1st);
  margin-top: 1.4em!important;
  padding: .2em .4em;
}
.m-post a {
  display: inline-block;
  position: relative;
  text-decoration: underline;
}
.m-post a:hover {text-decoration: none;}
.m-post figure {
  text-align: center;
  /*
  margin-top: 1.65em!important;
  */
}
.m-post figure a {text-decoration: none;}
.m-post figure a:hover {opacity: .8;}
.m-post figure a::after {display: none;}
.m-post img {
  display: block;
  /*
  margin: 2em auto;
  */
}
.m-post ul, .m-post ol {
  margin-top: .8em!important;
  padding: 0 0 0 2em;
}
.m-post ul.is-none {list-style-type: none;}
.m-post ul.is-square {list-style-type: square;}
.m-post ul > *, .m-post ol > * {
  margin-top: .4em;
  padding-left: .4em;
}
.m-post ul > *:first-child, .m-post ol > *:first-child {margin-top: 0;}

@media screen and (max-width: 1200px) {
  /* hero */
  .p-hero-title {font-size: 4.33vw;}
  /* headline */
  .p-headline--01 {font-size: 4vw;}
  /* newsList */
  .p-newsList-tag {
    right: 4%;
    top: 4%;
  }
  /* casestudyList */
  .p-casestudyList-ambassador {
    right: 1vw;
    top: 1vw;
    width: 5.71vw;
  }
}
@media screen and (max-width: 767px) {
  /* hero */
  #hero .p-hero::before {padding-top: 75%;}
  .p-hero-title {font-size: 5.21vw;}
  /* headline */
  .p-headline--01 {font-size: 6.25vw;}
  /* newsList */
  .p-newsList {
    width: 75%;
    margin: auto;
  }
  .p-newsList > .c-flex > * {width: 100%;}
  /* casestudyList */
  .p-casestudyList > .c-flex > * {width: 75%;}
  .p-casestudyList-ambassador {width: 8.75vw;}
  /* floatBanner */
  .p-floatBanner > .c-flex > * {width: 120px;}
}
@media screen and (max-width: 480px) {
  /* hero */
  .p-hero-title {font-size: 7.18vw;}
  /* newsList */
  .p-newsList {width: 80%;}
  .p-newsList > .c-flex > * {width: 100%;}
  /* casestudyList */
  .p-casestudyList > .c-flex > * {width: 80%;}
  .p-casestudyList-ambassador {width: 13vw;}
  /* floatBanner */
  .p-floatBanner > .c-flex > * {
    width: 96px;
    transform: translateX(8px);
  }
  .p-floatBanner > .c-flex > *:hover {transform: translateX(1px);}
}
