@charset "UTF-8";
/*bootstrap対策*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: inherit;
  line-height: 1;
  color: inherit
}
p {
  margin: 0;
}
dl,
ol,
.ul {
  margin: 0;
}
dt,
.dd {
  margin: 0;
}
label,
.figure {
  margin: 0;
  padding: 0;
}
/****************************/
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
li,
a,
span,
address,
blockquote,
table,
tr,
th,
.td {
  /*transform: rotate(0.03deg);*/
}
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*overflow-x: hidden;*/
  /*横スクロールが出るのを隠すため*/
}
html {
  font-size: 62.5%;
  /*font-size: 0.390625vw*/
  /*期値を10pxとする場合：10/2560*100=0.396（表示させたい文字サイズ÷width×100*/
  /*transform: rotate(0.03deg);*/
}
html {
  scroll-padding-top: 70px;
  /* 固定ヘッダの高さ分 */
}
body {
  color: #000;
  font-size: 1.6rem;
  font-family: "Noto Sans", sans-serif;
  /*font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;*/
  line-height: 1;
  background: #f9f9f9;
}

/*iphone対策*/
button {
  appearance: none;
  -webkit-appearance: none;
  color: #000;
}





/*汎用*/
.inner {
  width: 80%;
  max-width: 120rem;
  margin: auto;
}
.buttonA {
  width: fit-content;
  min-width: 22rem;
  height: 6rem;
  background: #95c750;
  border-radius: 3rem;
  border: 0.1rem solid #000;
  position: relative;
  overflow: hidden;
}
.buttonA :is(a, span) {
  width: 100%;
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: inherit;
  text-decoration: none;
  position: relative;
  z-index: 2;
}
.buttonA::before {
  content: "";
  width: 100%;
  height: inherit;
  display: inline-block;
  background: #000;
  left: -100%;
  position: absolute;
}
.buttonA:hover::before {
  left: 0;
  transition: 0.5s;
}
.buttonA:hover :is(a, span) {
  color: #fff;
}
.titleA {
  display: flex;
  align-items: baseline;
  flex-direction: row-reverse;
  justify-content: start;
  gap: 1.5rem;
}
.titleA :is(h2, h3) {
  font-weight: bold;
}
.titleA p {
  font-size: 6.3rem;
  font-weight: 900;
  color: #f3ca1c;
  -webkit-text-stroke: 0.1rem #000;
}



/*header*/
.header {
  width: 100%;
  height: 12rem;
  padding: 0 3.64vw 0 13.54vw;
  /*7 26*/
  position: fixed;
  z-index: 9;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.header .logo {
  width: 10%;
  min-width: 16.5rem;
}
.header .logo img {
  width: 100%;
      filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.3));
}
.header .nav {
  width: 90%;
  height: 6rem;
  max-width: 111rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header .nav>.ul {
  width: 60%;
  height: inherit;
  background: #f4f4f4;
  border: 0.1rem solid #000;
  border-radius: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.header .nav>.ul>.li {
  list-style: none;
  text-align: center;
  flex-grow: 1;
}
.header .nav>.ul>.li>p :is(a, span) {
  display: grid;
  cursor: pointer;
  gap: 0.5rem;
}
.header .nav>.ul>.li:nth-of-type(1) {
  display: none;
}
.header .nav>.ul>.li:nth-of-type(3){
  position: relative;
}

.header .nav>.ul>.li:nth-of-type(3)::after{
  content: "";
  background: url(/system_panel/uploads/images/arrow.png) no-repeat;
  width: 1.6rem;
  height: 1.6rem;
  display: inline-block;
  position: absolute;
  right: 2rem;
  top: calc(50% - 0.8rem);
}
.header .nav>.ul>.li:nth-of-type(1) :is(a, span)::before {
  content: "Home";
  font-size: 2.3rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
}
.header .nav>.ul>.li:nth-of-type(2) :is(a, span)::before {
  content: "About";
  font-size: 2.3rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
}
.header .nav>.ul>.li:nth-of-type(3)>p :is(a, span)::before {
  content: "Service";
  font-size: 2.3rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
}
.header .nav>.ul>.li:nth-of-type(4) :is(a, span)::before {
  content: "Works";
  font-size: 2.3rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
}
.header .nav>.ul>.li:nth-of-type(5) :is(a, span)::before {
  content: "Shop";
  font-size: 2.3rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
}
.header .nav .li {
  font-size: 1.3rem;
  list-style: none;
  position: relative;
}
.header .nav .li a {
  color: inherit;
}

.header .nav>.ul>.li>.ul {
  width: 100%;
  display: none;
}
.header .nav>.ul>.li:hover>.ul {
  display: block;
  position: absolute;
}
.header .nav>.ul>.li>.ul>.li {
  font-size: initial;
  background: #f4f4f4;
  width: 100%;
  height: 4.6rem;
  border-radius: 2.3rem;
  border: 0.1rem solid #000;
}
.header .nav>.ul>.li>.ul>.li p {
  width: 100%;
  height: inherit;
}
.header .nav>.ul>.li>.ul>.li a {
  width: 100%;
  height: inherit;
  display: grid;
  align-items: center;
  text-align: center;
}
.header .nav {
  display: flex;
}
.header .nav .contact {
  width: fit-content;
  min-width: 22rem;
  height: 6rem;
  background: #95c750;
  border-radius: 3rem;
  border: 0.1rem solid #000;
  position: relative;
  overflow: hidden;
}
.header .nav .contact :is(a, span) {
  width: 100%;
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: inherit;
  text-decoration: none;
  position: relative;
  z-index: 2;
}
.header .nav .contact::before {
  content: "";
  width: 100%;
  height: inherit;
  display: inline-block;
  background: #000;
  left: -100%;
  position: absolute;
}
.header .nav .contact:hover::before {
  left: 0;
  transition: 0.5s;
}
.header .nav .contact:hover :is(a, span) {
  color: #fff;
}
.header .nav .goonet {
  width: 10.41vw;
  /*20*/
  height: inherit;
  border-radius: 3rem;
  background: #fff;
  border: 0.1rem solid #000;
}
.header .nav .goonet a {
  display: grid;
  width: 100%;
  height: inherit;
  align-items: center;
  justify-content: center;
  padding: 0 1em;
}
.header .nav .goonet a img {
  width: 100%;
}








/*main*/
.maintitle {
  width: 100%;
  height: 26.5rem;
  padding: 20rem 13.54vw 2.5rem;
  /*25*/
  border-bottom: 0.1rem solid #000;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 3rem;
}
.maintitle h2 {
  background: #90c31f;
  width: fit-content;
  height: 3.6rem;
  border-radius: 1.8rem;
  display: grid;
  align-items: center;
  padding: 0 2em;
  color: #fff;
}
.maintitle p {
  font-size: 6.3rem;
  font-weight: bold;
  color: #90c31f;
}




/*footer*/
.footer {
  padding: 0 0 4rem;
  background: url(/system_panel/uploads/images/footer_bg.jpg);
  position: relative;
}
.footer * {
  color: #fff;
}
.footer .inner {}
#wrapper .footer .inner .window {
  margin: 0 auto;
  transform: initial;
}
.footer .inner .window {
  width: 100%;
  background: #95c750;
  border-radius: 1rem;
  padding: 3rem 4.16vw;
  /*8*/
  margin: 0 auto -20rem;
  z-index: 2;
  transform: translate(0, -20rem);
}
.footer .inner .window .col2 {
  display: flex;
}
.footer .inner .window .col2 .left {
  width: 38%;
}
.footer .inner .window .col2 .left .titleA {
  display: grid;
}
.footer .inner .window .col2 .left .titleA h3 {
  color: initial;
  grid-row: 2/3;
}
.footer .inner .window .col2 .right {
  width: 62%;
}
.footer .inner .window .col2 .right * {
  color: initial;
}
.footer .inner .window .col2 .right .dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 0.5rem;
  width: 100%;
  min-height: 7rem;
  padding: 0 2.08vw;
  /*4*/
}
.footer .inner .window .col2 .right .dl:not(:last-of-type) {
  margin: 0 0 1rem;
}
.footer .inner .window .col2 .right .dl.tel .dd {
  font-size: 1.4rem;
  text-align: center;
}
.footer .inner .window .col2 .right .dl.tel .dd a {
  font-size: 3.5rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.5rem;
}
.footer .inner .window .col2 .right .dl.tel .dd a::before {
  content: "";
  background: url(/system_panel/uploads/images/icon_tel.png) no-repeat;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-block;
}
.footer .inner .window .col2 .right .dl.mail .dd p {
  width: 100%;
  min-height: 4rem;
  background: #95c750;
  border-radius: 2rem;
}
.footer .inner .window .col2 .right .dl.mail .dd p a {
  width: 100%;
  min-height: inherit;
  padding: 0 3em;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.footer .inner .window .col2 .right .dl.mail .dd p a::before {
  content: "";
  background: url(/system_panel/uploads/images/icon_mail.png) no-repeat;
  width: 1.8rem;
  height: 1.3rem;
  display: inline-block;
}
.footer .inner .window .col2 .right .dl.line .dd {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.footer .inner .window .col2 .right .dl.line img {
  max-width: 6rem;
}

.footer .marquee {
  font-size: 8rem;
  line-height: 1;
  width: 100%;
  height: 9.5rem;
  overflow: hidden;
  position: relative;
}
.footer .marquee p {
  font-size: 9.5rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 900;
  color: #9aa5a2;
  line-height: 1 !important;
  /*color: #dbcfcf;*/
  white-space: pre;
  display: block;
  position: absolute;
  animation: marquee 15s linear infinite;
  z-index: 2;
  /*animation-duration:2s;
  animation-timing-function:ease-in;
  animation-delay:1s;
  animation-iteration-count:3;
  animation-direction:alternate;
  animation-fill-mode:forwards;
  animation-play-state:running;*/
}
@keyframes marquee {
  0% {
    transform: translateX(30%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.footer .inner>.col2 {
  display: flex;
  margin: 0 auto 8rem;
}
.footer .inner>.col2 .left {
  width: 60%;
}
.footer .inner>.col2 .left .logo {
  margin: 0 0 2rem;
}
.footer .inner>.col2 .left p {
  line-height: 2.75;
}
.footer .inner>.col2 .left .link {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.footer .inner>.col2 .left .link .goonet {
  width: 10.41vw;
  /*20*/
  height: 6rem;
  border-radius: 3rem;
  background: #fff;
  border: 0.1rem solid #000;
}
.footer .inner>.col2 .left .link .goonet a {
  display: grid;
  width: 100%;
  height: inherit;
  align-items: center;
  justify-content: center;
}
.footer .inner>.col2 .left .link .icon {
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 1.65rem;
  border: 0.1rem solid #000;
}
.footer .inner>.col2 .left .link .icon.insta {
  background: #f9df6f;
}
.footer .inner>.col2 .left .link .icon.line {
  background: #b1d87b;
}
.footer .inner>.col2 .left .link .icon a {
  width: inherit;
  height: inherit;
  display: grid;
  align-items: center;
  justify-content: center;
}
.footer .inner>.col2 .right {
  width: 40%;
  display: flex;
  position: relative;
}
.footer .inner>.col2 .right .ul {
  width: 50%;
}
.footer .inner>.col2 .right .li {
  line-height: 3.125;
  list-style: none;
}
.footer .inner>.col2 .right .contact {
  width: 10.41vw;
  /*20*/
  height: 6rem;
  border-radius: 3rem;
  background: #95c750;
  border: 0.1rem solid #000;
  position: absolute;
  right: 6rem;
  bottom: 0;
}
.footer .inner>.col2 .right .contact a {
  display: flex;
  width: 100%;
  height: inherit;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #fff;
}








/*ページ遷移時のフェードイン効果*/
html {
  animation: fadein 3s forwards;
}
@keyframes fadein {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}




/*スムーススクロール*/
html {
  /*scroll-behavior: smooth;※smoooothでの使用は不可*/
}




/*-----ハンバーガーメニュー-----*/
.navToggle {
  display: none;
}




/*pagetopボタン用*/
.pagetop {
  position: absolute;
  bottom: 0;
  right: 7.29vw;
  /*14*/
  color: #fff;
  width: 9.375vw;
  z-index: 4;
}
.pagetop a {
  width: inherit;
  height: inherit;
  display: inline-grid;
  place-items: center;
  color: #fff;
}
.pagetop a img {
  width: 100%;
}




/*.headerSwitch用*/
/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
.header {}
.header.scroll-nav {}
/* 「scroll-navクラス」がヘッダーについたときに、ロゴとナビゲーションの文字を黒にする */
.header.scroll-nav :is(.logo, .ul .li a) {}










/*ゆらゆら*/
[class^="sway"] {
  animation: sway 3s ease-in-out infinite alternate;
  transition: 1.5s ease-in-out;
}
[class^="sway"] img {
  width: 100%;
}

@keyframes sway {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}




/*アコーディオン*/
.aco2 {
  display: none;
  /*初期状態で開いておく場合はinitialに変更*/
}
#wrapper .aco2 {
  display: initial;
  /*初期状態で開いておく場合はinitialに変更*/
}
.aco-open {
  position: relative;
}
.aco-open::after {
  /* 閉じている時 */
  content: "×";
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 5rem;
  color: #b6e0c2;
}
.aco-open.active::after {
  /* 開いている時 */
  content: "＋";
  font-size: 5rem;
  color: #b6e0c2;
  top: 1.5rem;
}


/*========= 流れるテキストslideAnime ===============*/
/*全共通*/
.slide-in {
  overflow: hidden;
  display: inline-block;
}
.slide-in_inner {
  display: inline-block;
}
/*左右のアニメーション*/
.leftAnime {
  opacity: 0;
  /*事前に透過0にして消しておく*/
}
.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}




/*wow.js（animate.cssのスクロールのタイミングに発動させるライブラリ）用*/
.box {
  animation-fill-mode: forwards;
}




/*animate.cssの追加css*/
.animate__delay-1s {
  animation-delay: calc(var(--animate-delay)*0.5) !important;
}
.animate__delay-2s {
  animation-delay: calc(var(--animate-delay)*1) !important;
}
.animate__delay-3s {
  animation-delay: calc(var(--animate-delay)*1.5) !important;
}
.animate__delay-4s {
  animation-delay: calc(var(--animate-delay)*2) !important;
}
.animate__delay-5s {
  animation-delay: calc(var(--animate-delay)*2.5) !important;
}
.animate__delay-6s {
  animation-delay: calc(var(--animate-delay)*3) !important;
}

@media screen and (min-width:1025px) and ( max-width:1500px) {
.header {
    width: 100%;
    height: 12rem;
    padding: 0 4vw 0 4vw;
  }
}