@charset "UTF-8";
/* 機能とパーツごとに分けたscssファイルをcssファイルにコンパイル */
/* function
------------------------------------------------ */
/* setting
------------------------------------------------ */
/* スマホ：~519px
　 タブレット：520px~959px
　 パソコン：960px~ */
html {
  /* ルートのフォントサイズを10pxに設定 */
  font-size: 62.5%;
}

body {
  /* bodyの基本サイズを設定 */
  /* 14px at 375px viewport → 16px at 1400px viewport */
  font-size: clamp(1.4rem, 1.3268rem + 0.1951vw, 1.6rem);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  text-align: justify;
  letter-spacing: 0.05em;
  line-height: 1.8125;
}

/* foundation
------------------------------------------------ */
/*!
 * ress.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

*, :after, :before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

hr {
  overflow: visible;
  height: 0;
  color: inherit;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

input {
  border-radius: 0;
}

[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
  color: inherit;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

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

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  white-space: normal;
  max-width: 100%;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

html {
  overflow-x: hidden;
}

body {
  background-image: url(../images/common/bg_body.png);
  background-size: 100% auto;
  background-repeat: repeat;
}
@media screen and (max-width: 959px) {
  body {
    background-size: cover;
  }
}
body {
  /* 印刷禁止 */
}

a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
}

button:hover {
  opacity: 0.8;
}

img {
  font-size: 0;
  vertical-align: bottom;
  max-width: 100%;
  /* PCの右クリック禁止 */
  /* SPの長押し禁止 */
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.br-pc {
  display: block;
}
@media screen and (max-width: 959px) {
  .br-pc {
    display: none;
  }
}

.br-tab {
  display: none;
}
@media screen and (max-width: 959px) {
  .br-tab {
    display: block;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 519px) {
  .br-sp {
    display: block;
  }
}

.nonbr-tab {
  display: block;
}
@media screen and (max-width: 959px) {
  .nonbr-tab {
    display: none;
  }
}

.nonbr-sp {
  display: block;
}
@media screen and (max-width: 519px) {
  .nonbr-sp {
    display: none;
  }
}

.link-disable {
  pointer-events: none;
  background-color: #aaa !important;
}

@media screen and (max-width: 519px) {
  .sptop {
    overflow: hidden;
  }
}

.space-sp {
  display: none;
}
@media screen and (max-width: 519px) {
  .space-sp {
    display: inline-block;
  }
}

.anchor {
  margin-top: -10rem;
  padding-top: 10rem;
}
@media screen and (max-width: 519px) {
  .anchor {
    margin-top: -2rem;
    padding-top: 2rem;
  }
}

/* layout
------------------------------------------------ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
}

/*　上に上がる動き　*/
.l-header.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes UpAnime {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
/*　下に下がる動き　*/
.l-header.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.l-inner {
  margin: 0 auto;
  max-width: 120rem;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1240px) {
  .l-inner {
    padding: 0 2rem;
  }
}
.l-inner--1020 {
  max-width: 1020px;
}

.l-main {
  margin-top: 12.3rem;
}
@media screen and (max-width: 959px) {
  .l-main {
    margin-top: 18.2vw;
  }
}
@media screen and (max-width: 519px) {
  .l-main {
    margin-top: 5.6rem;
  }
}

.l-footer {
  margin-top: 5rem;
}
@media screen and (max-width: 959px) {
  .l-footer {
    margin-top: 0;
  }
}
@media screen and (max-width: 519px) {
  .l-footer {
    margin-top: 3rem;
  }
}

/* component
------------------------------------------------ */
.c-header__hamburger {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  aspect-ratio: 1;
  width: 5.6rem;
  height: auto;
  cursor: pointer;
  background-color: #8dc21f;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
@media screen and (max-width: 519px) {
  .c-header__hamburger {
    display: block;
  }
}

.c-header__hamburger-border {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 2.5rem;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.c-header__hamburger-border--top {
  top: calc(50% - 7.5px);
}

.c-header__hamburger-border--bottom {
  top: calc(50% + 7.5px);
}

.c-header__hamburger--open .c-header__hamburger-border--top {
  top: calc(50% - 7.5px + 7.5px);
  -webkit-transform: translate(-50%, -50%) rotate(-225deg);
          transform: translate(-50%, -50%) rotate(-225deg);
}
.c-header__hamburger--open .c-header__hamburger-border--middle {
  opacity: 0;
}
.c-header__hamburger--open .c-header__hamburger-border--bottom {
  top: calc(50% + 7.5px - 7.5px);
  -webkit-transform: translate(-50%, -50%) rotate(225deg);
          transform: translate(-50%, -50%) rotate(225deg);
}

.c-header__insta-sp {
  display: none;
  position: absolute;
  top: 7rem;
  right: 1.6rem;
  width: 2.4rem;
}
@media screen and (max-width: 519px) {
  .c-header__insta-sp {
    display: block;
  }
}

.c-header__drawer-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100lvh;
  background-color: transparent;
  opacity: 0.5;
  z-index: 40;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.c-header__drawer-modal--open {
  display: block;
}

.c-header__drawer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 40;
  padding: 2.4rem;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  color: white;
  background-color: #8dc21f;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0;
  visibility: hidden;
}
.c-header__drawer::-webkit-scrollbar {
  width: 0.5rem;
}
.c-header__drawer::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}
.c-header__drawer::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 30px;
}

.c-header__drawer--open {
  opacity: 1;
  visibility: visible;
}

.c-header__drawer-logo {
  width: 80%;
}

.c-header__drawer-menus {
  padding-top: 2rem;
  padding-left: 4.5rem;
}

.c-header__drawer-menu {
  display: block;
  margin-top: 2.2rem;
  font-size: 5.5vw;
  font-weight: 500;
  line-height: 1;
}
.c-header__drawer-menu small {
  display: block;
  font-size: 0.8em;
  font-weight: 400;
  line-height: 1.7;
}

.c-global {
  width: 100%;
  border-bottom: solid 1px #b5b5b6;
}

.c-global__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media screen and (max-width: 519px) {
  .c-global__container {
    margin-left: -2rem;
    width: calc(100% + 4rem);
  }
}

.c-global__menu {
  aspect-ratio: 3/1;
  width: 25%;
  height: auto;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  font-size: clamp(1.25rem, 1.0488rem + 0.5366vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  background-color: white;
  background-image: url(../images/common/bg_global.png);
  background-size: contain;
}
@media screen and (max-width: 519px) {
  .c-global__menu {
    aspect-ratio: 1.6;
    letter-spacing: 0;
  }
}
.c-global__menu small {
  display: block;
  font-size: 0.72em;
  font-weight: bold;
  letter-spacing: 0;
}
.c-global__menu:hover {
  opacity: 1;
  background-image: url(../images/common/bg_global_active.png);
}

.c-head01 {
  margin: 0 auto 0;
  font-size: clamp(1.5rem, 1.2073rem + 0.7805vw, 2.3rem);
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.25;
}
.c-head01 em {
  display: block;
  font-style: normal;
  color: #009844;
  font-size: 2.5em;
}

.c-btn {
  display: block;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 0;
}
.c-btn::after {
  content: "";
  display: inline-block;
  margin-left: 1.6rem;
  aspect-ratio: 1;
  width: 4vw;
  max-width: 4.3rem;
  height: auto;
  vertical-align: middle;
  background-image: url(../images/common/btn.png);
  background-size: contain;
}
@media screen and (max-width: 519px) {
  .c-btn::after {
    margin: 0 0 0.5rem 1rem;
    width: 14vw;
  }
}

.c-footer {
  margin-top: 12rem;
}
@media screen and (max-width: 519px) {
  .c-footer {
    margin-top: 7rem;
  }
}

.c-footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
  .c-footer__container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem 3rem;
  }
}

.c-footer__main {
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .c-footer__main {
    width: 70%;
  }
}
@media screen and (max-width: 519px) {
  .c-footer__main {
    width: 100%;
  }
}

.c-footer__title img {
  width: 100%;
}
.c-footer__title span {
  display: block;
  margin-top: 1.5rem;
  color: white;
  text-align: center;
  background-color: black;
  letter-spacing: 0.025em;
}

.c-footer__address {
  margin-top: 1.5rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 959px) {
  .c-footer__address {
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
  }
}
.c-footer__tels {
  text-align: right;
  line-height: 1.2;
}

.c-footer__tel {
  font-size: clamp(3rem, 2.4512rem + 1.4634vw, 4.5rem);
  font-weight: bold;
}
.c-footer__tel small {
  font-size: 0.7em;
}

.c-footer__fax {
  display: block;
  font-size: clamp(2.5rem, 2.3171rem + 0.4878vw, 3rem);
  font-weight: bold;
}
.c-footer__fax small {
  font-size: 0.7em;
}

.c-footer__line {
  position: relative;
  font-size: 1.4rem;
  letter-spacing: 0;
}
@media screen and (max-width: 519px) {
  .c-footer__line {
    margin-top: 7rem;
  }
}

.c-footer__line-icon {
  display: block;
  margin: 0 auto 0.8rem;
  width: 7vw;
  max-width: 8rem;
}
@media screen and (max-width: 519px) {
  .c-footer__line-icon {
    width: 14vw;
  }
}

.c-footer__line-ok {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, -67%);
          transform: translate(-50%, -67%);
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .c-footer__line-ok {
    -webkit-transform: translate(-20%, -20%);
            transform: translate(-20%, -20%);
    width: 35%;
  }
}
@media screen and (max-width: 519px) {
  .c-footer__line-ok {
    -webkit-transform: translate(-20%, -67%);
            transform: translate(-20%, -67%);
    width: 40%;
  }
}

.c-footer__menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 4rem;
  width: 100%;
}
@media screen and (max-width: 959px) {
  .c-footer__menus {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 519px) {
  .c-footer__menus {
    margin-top: 1.5rem;
  }
}

.c-footer__menu {
  padding: 0 2.3rem;
  line-height: 1;
  letter-spacing: 0.2em;
  border-left: solid 1px black;
}
@media screen and (max-width: 959px) {
  .c-footer__menu {
    padding: 0 2vw;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 640px) {
  .c-footer__menu {
    margin: 1.5rem 0 0;
    width: 50%;
    text-align: center;
    line-height: 1.3;
  }
}
@media screen and (max-width: 640px) {
  .c-footer__menu:nth-child(2n) {
    border-right: solid 1px black;
  }
}
.c-footer__menu:last-child {
  border-right: solid 1px black;
}

.c-footer__copyright {
  margin-top: 3rem;
  padding: 1.7rem 1rem;
  font-size: clamp(1rem, 0.8902rem + 0.2927vw, 1.3rem);
  background-color: #009844;
  color: white;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 519px) {
  .c-footer__copyright {
    letter-spacing: 0;
  }
}

.c-news {
  margin-top: 4.5rem;
  padding: 1.5rem 5rem 4rem;
  background-color: #fff;
  border: 0.5rem solid #8dc21f;
}
@media screen and (max-width: 519px) {
  .c-news {
    padding: 1.5rem 2rem 4rem;
  }
}

.c-news__item {
  padding: 2.5rem 5rem;
  border-bottom: 0.1rem solid #b5b5b6;
}
@media screen and (max-width: 519px) {
  .c-news__item {
    padding: 2.5rem 1rem;
  }
}
.c-news__item a {
  display: block;
  position: relative;
}
.c-news__item h3 {
  margin-top: 0.8rem;
  font-size: 1em;
  font-weight: inherit;
}

/* project
------------------------------------------------ */
.p-top-mv {
  position: relative;
  aspect-ratio: 1400/650;
  width: 100%;
  height: auto;
  background-image: url(../images/top/mv.jpg);
  background-size: 100% auto;
}
@media screen and (max-width: 519px) {
  .p-top-mv {
    aspect-ratio: 1;
    background-size: cover;
  }
}

.p-top-mv__header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  aspect-ratio: 1400/135;
  width: 100%;
  height: auto;
  -ms-flex-line-pack: center;
      align-content: center;
  background-image: url(../images/common/bg_header.png);
  background-size: 100% auto;
}
@media screen and (max-width: 519px) {
  .p-top-mv__header {
    aspect-ratio: auto;
    height: 5.6rem;
    background-size: auto 100%;
  }
}
.p-top-mv__header img {
  width: 40%;
}
@media screen and (max-width: 519px) {
  .p-top-mv__header img {
    width: 60%;
  }
}

.p-top-mv__copy {
  position: absolute;
  top: calc(50% + 70px);
  left: 50%;
  z-index: 25;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 70%;
  max-width: 94rem;
}
@media screen and (max-width: 1400px) {
  .p-top-mv__copy {
    top: 58%;
  }
}
@media screen and (max-width: 519px) {
  .p-top-mv__copy {
    width: 80%;
  }
}

.p-top-mv__hoken {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 15;
  width: auto;
  height: 46%;
}
@media screen and (max-width: 519px) {
  .p-top-mv__hoken {
    height: 33%;
  }
}

.p-top-mv__chara01,
.p-top-mv__chara02,
.p-top-mv__chara03,
.p-top-mv__chara04 {
  position: absolute;
  top: 0%;
  right: 3%;
  z-index: 20;
  width: auto;
  height: 60%;
}
@media screen and (max-width: 519px) {
  .p-top-mv__chara01,
  .p-top-mv__chara02,
  .p-top-mv__chara03,
  .p-top-mv__chara04 {
    top: 10%;
    height: 45%;
  }
}

.p-top-mv__chara02 {
  top: 18%;
  right: auto;
  left: 3%;
  height: 41%;
}
@media screen and (max-width: 519px) {
  .p-top-mv__chara02 {
    height: 30%;
  }
}

.p-top-mv__chara03 {
  top: auto;
  bottom: 0.5%;
  right: auto;
  left: 3%;
  height: 34%;
}
@media screen and (max-width: 519px) {
  .p-top-mv__chara03 {
    height: 25%;
  }
}

.p-top-mv__chara04 {
  top: auto;
  bottom: 0.5%;
  right: auto;
  left: 24%;
  height: 26%;
}
@media screen and (max-width: 519px) {
  .p-top-mv__chara04 {
    left: 30%;
    height: 25%;
  }
}

.p-top-news__container {
  position: relative;
  padding: 8rem 0 12rem;
}
@media screen and (max-width: 519px) {
  .p-top-news__container {
    padding: 5rem 0 8rem;
  }
}

.p-top-news__btn {
  margin-top: 4rem;
}

.p-top-news__line {
  position: absolute;
  top: 3.5rem;
  right: -8rem;
  width: 25vw;
  max-width: 25rem;
}
@media screen and (max-width: 1160px) {
  .p-top-news__line {
    right: 0;
  }
}
@media screen and (max-width: 519px) {
  .p-top-news__line {
    display: block;
    position: initial;
    margin: 5rem auto 0;
    width: 70%;
    max-width: none;
  }
}

.p-top-greet {
  padding: 5rem 0;
  text-align: center;
  letter-spacing: 0.1em;
  background-image: url(../images/top/area.jpg);
  background-size: cover;
}

.p-top-greet__home {
  width: clamp(12rem, 20%, 21rem);
}

.p-top-greet__head {
  margin-top: 0.5rem;
  font-size: clamp(2.5rem, 2.1341rem + 0.9756vw, 3.5rem);
  color: #009844;
}

.p-top-greet__text {
  margin: 3rem auto 0;
  max-width: 90rem;
}
@media screen and (max-width: 519px) {
  .p-top-greet__text {
    text-align: justify;
  }
}

.p-top-map {
  margin-top: 10rem;
}
@media screen and (max-width: 519px) {
  .p-top-map {
    margin-top: 7rem;
  }
}
.p-top-map iframe {
  aspect-ratio: 2;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 519px) {
  .p-top-map iframe {
    aspect-ratio: 1;
  }
}

/* utility
------------------------------------------------ */
/* external
------------------------------------------------ *//*# sourceMappingURL=style.css.map */