@charset "UTF-8";
/*===============================================================

	style.css
	mobile first

===============================================================*/
@import url(destyle.css);
/* position系　*/
@-webkit-keyframes sdb {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s, transform 1s;
}

.fade.active {
  opacity: 1;
  transform: translateY(0px);
}

/*===============================================================

	before-shape　mixin

===============================================================*/
/*===============================================================

	index.html

===============================================================*/
/* 右上流体shape */
div.top-main-right {
  width: 300px;
  height: 300px;
  background-color: #EAD644;
  animation-name: topmainrotate;
  animation-duration: 30s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  position: absolute;
  z-index: -10;
  top: -200px;
  right: -130px;
}
@media screen and (min-width: 768px) {
  div.top-main-right {
    width: 400px;
    height: 400px;
    top: -250px;
    right: -170px;
  }
  div.top-main-right::before {
    content: "";
    width: 400px;
    height: 400px;
    animation-name: topmainrotate;
    animation-duration: 30s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    position: absolute;
    border: 1px solid #FFBC67;
    top: 10px;
    bs-right: 10px;
    z-index: -10;
  }
}
@media screen and (min-width: 1025px) {
  div.top-main-right {
    width: 530px;
    height: 470px;
    right: -200px;
    top: -100px;
  }
  div.top-main-right::before {
    width: 530px;
    height: 470px;
  }
}

div.shape-section2-top-left {
  width: 200px;
  height: 200px;
  background-color: #EAD644;
  animation-name: secondrotate;
  animation-duration: 30s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  position: absolute;
  top: -150px;
  left: -100px;
  z-index: -9;
}
@media screen and (min-width: 768px) {
  div.shape-section2-top-left {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -100px;
  }
  div.shape-section2-top-left::before {
    content: "";
    width: 300px;
    height: 300px;
    animation-name: secondrotate;
    animation-duration: 30s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    position: absolute;
    border: 1px solid #FFBC67;
    top: 10px;
    bs-left: 10px;
    z-index: -8;
  }
}

/*流体shape*/
div.shape-section2-bottom-right {
  width: 200px;
  height: 200px;
  background-color: #EAD644;
  animation-name: thirdrotate;
  animation-duration: 30s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  position: absolute;
  bottom: 100px;
  right: -90px;
  z-index: -9;
}
@media screen and (min-width: 768px) {
  div.shape-section2-bottom-right {
    width: 500px;
    height: 395px;
    bottom: -100px;
    right: -250px;
  }
  div.shape-section2-bottom-right::before {
    content: "";
    width: 500px;
    height: 395px;
    animation-name: thirdrotate;
    animation-duration: 30s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    position: absolute;
    border: 1px solid #FFBC67;
    top: 10px;
    bs-right: 10px;
  }
}

div.shape-section2-bottom-left-green {
  width: 200px;
  height: 180px;
  background-color: #CADD45;
  animation-name: fourthrotate;
  animation-duration: 30s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  position: absolute;
  top: -35px;
  left: -100px;
  z-index: -100;
}
@media screen and (min-width: 768px) {
  div.shape-section2-bottom-left-green {
    width: 240px;
    height: 200px;
  }
  div.shape-section2-bottom-left-green::before {
    content: "";
    width: 240px;
    height: 200px;
    animation-name: fourthrotate;
    animation-duration: 30s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    position: absolute;
    border: 1px solid #60DB45;
    top: 10px;
    bs-left: 10px;
  }
}
@media screen and (min-width: 1025px) {
  div.shape-section2-bottom-left-green {
    top: -200px;
    left: 300px;
  }
  div.shape-section2-bottom-left-green::before {
    top: 10px;
    left: 10px;
  }
}

div.shape-section2-bottom-left-yellow {
  width: 200px;
  height: 250px;
  background-color: #EAD644;
  animation-name: fourthrotate;
  animation-duration: 30s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  position: absolute;
  bottom: -60px;
  left: 325px;
  z-index: -8;
}
@media screen and (min-width: 768px) {
  div.shape-section2-bottom-left-yellow {
    width: 530px;
    height: 530px;
    bottom: -400px;
    left: -190px;
  }
  div.shape-section2-bottom-left-yellow::before {
    content: "";
    width: 530px;
    height: 530px;
    animation-name: fourthrotate;
    animation-duration: 30s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    position: absolute;
    border: 1px solid #f2ca44;
    top: 10px;
    bs-left: 10px;
  }
}

/*========================
ニュースリリースにかかる流体　
.shape-section4-top-right
===========================*/
div.shape-section4-top-right {
  width: 200px;
  height: 200px;
  background-color: #EAD644;
  animation-name: fifthrotate;
  animation-duration: 30s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  position: absolute;
  animation-duration: 40s;
  top: -100px;
  right: -70px;
  z-index: -200;
}
@media screen and (min-width: 768px) {
  div.shape-section4-top-right {
    width: 385px;
    height: 385px;
    top: 0;
    right: 0;
  }
  div.shape-section4-top-right::before {
    content: "";
    width: 385px;
    height: 385px;
    animation-name: fifthrotate;
    animation-duration: 30s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    position: absolute;
    border: 1px solid #FFBC67;
    top: 10px;
    bs-right: 10px;
  }
}

/*========================
ニュースリリースにかかる流体　
.shape-section4-bottom-left-green
===========================*/
div.shape-section4-bottom-left-green {
  width: 200px;
  height: 200px;
  background-color: #CADD45;
  animation-name: newsrotate;
  animation-duration: 30s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  position: absolute;
  bottom: -200px;
  left: -100px;
  z-index: -8;
}
@media screen and (min-width: 768px) {
  div.shape-section4-bottom-left-green {
    width: 410px;
    height: 400px;
    bottom: -350px;
    left: -200px;
  }
  div.shape-section4-bottom-left-green::before {
    content: "";
    width: 410px;
    height: 410px;
    animation-name: newsrotate;
    animation-duration: 30s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    position: absolute;
    border: 1px solid #60DB45;
    top: 10px;
    bs-left: 10px;
  }
}
@media screen and (min-width: 1025px) {
  div.shape-section4-bottom-left-green {
    bottom: -100px;
    left: -100px;
  }
}

section.section5::before {
  content: "";
  width: 200px;
  height: 200px;
  background-color: #FFF8D1;
  animation-name: contactrotate;
  animation-duration: 30s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  position: absolute;
  animation-duration: 40s;
  top: 60px;
  right: 10%;
  z-index: -8;
}
@media screen and (min-width: 768px) {
  section.section5::before {
    width: 500px;
    height: 400px;
  }
  section.section5:after {
    content: "";
    width: 500px;
    height: 400px;
    animation-name: contactrotate;
    animation-duration: 30s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    position: absolute;
    border: 1px solid #f2ca44;
    top: 10px;
    bs-right: 10px;
    top: 70px;
    right: 8%;
  }
}

/*===============================================================

	about.html

===============================================================*/
div.shape-box {
  position: relative;
  z-index: -1;
}

/*プロフィールの右下*/
div.shape-ceo-bottom-right {
  width: 200px;
  height: 200px;
  background-color: #FFF8D1;
  animation-name: thirdrotate;
  animation-duration: 30s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  position: absolute;
  bottom: -100px;
  right: -90px;
  z-index: -9;
}
@media screen and (min-width: 768px) {
  div.shape-ceo-bottom-right {
    width: 500px;
    height: 395px;
    right: -250px;
  }
  div.shape-ceo-bottom-right::before {
    content: "";
    width: 500px;
    height: 395px;
    animation-name: thirdrotate;
    animation-duration: 30s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    position: absolute;
    border: 1px solid #f2ca44;
    top: 10px;
    bs-right: 10px;
  }
}
@media screen and (min-width: 1025px) {
  div.shape-ceo-bottom-right {
    width: 500px;
    height: 600px;
    bottom: -350px;
  }
  div.shape-ceo-bottom-right::before {
    width: 500px;
    height: 600px;
  }
}

/*interview01 左上 */
div.shape-interview01-top-left {
  width: 300px;
  height: 300px;
  background-color: #EAD644;
  animation-name: secondrotate;
  animation-duration: 30s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  position: absolute;
  top: -50px;
  left: -100px;
}
@media screen and (min-width: 768px) {
  div.shape-interview01-top-left {
    width: 500px;
    height: 500px;
    top: -50px;
  }
  div.shape-interview01-top-left::before {
    content: "";
    width: 500px;
    height: 500px;
    animation-name: secondrotate;
    animation-duration: 30s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    position: absolute;
    border: 1px solid #FFBC67;
    top: 10px;
    bs-left: 10px;
    top: -10px;
  }
}

/*interview02 右側緑 */
div.shape-interview02-bottom-right-green {
  width: 300px;
  height: 200px;
  background-color: #CADD45;
  animation-name: newsrotate;
  animation-duration: 30s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  position: absolute;
  bottom: 0px;
  right: -100px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  div.shape-interview02-bottom-right-green {
    width: 410px;
    height: 350px;
    bottom: 0px;
    right: -300px;
  }
  div.shape-interview02-bottom-right-green::before {
    content: "";
    width: 410px;
    height: 350px;
    animation-name: newsrotate;
    animation-duration: 30s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    position: absolute;
    border: 1px solid #60DB45;
    top: 10px;
    bs-right: 10px;
  }
}

div.shape-interview03-top-left-yellow {
  width: 400px;
  height: 500px;
  background-color: #FFF8D1;
  animation-name: contentonerotate;
  animation-duration: 30s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  position: absolute;
  bottom: -550px;
  left: -100px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  div.shape-interview03-top-left-yellow {
    width: 700px;
    height: 650px;
    bottom: -600px;
    left: -150px;
  }
  div.shape-interview03-top-left-yellow::before {
    content: "";
    width: 700px;
    height: 700px;
    animation-name: contentonerotate;
    animation-duration: 30s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    position: absolute;
    border: 1px solid #f2ca44;
    top: 10px;
    bs-left: 10px;
  }
}

/*一番下*/
div.shape-interview06-bottom-right-main {
  width: 400px;
  height: 400px;
  background-color: #EAD644;
  animation-name: thirdrotate;
  animation-duration: 30s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  position: absolute;
  bottom: -100px;
  right: -100px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  div.shape-interview06-bottom-right-main {
    width: 500px;
    height: 500px;
    bottom: 0px;
    right: -300px;
  }
  div.shape-interview06-bottom-right-main::before {
    content: "";
    width: 500px;
    height: 500px;
    animation-name: thirdrotate;
    animation-duration: 30s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    position: absolute;
    border: 1px solid #FFBC67;
    top: 10px;
    bs-right: 10px;
  }
}

/*===============================================================

	keyframe

===============================================================*/
@keyframes topmainrotate {
  0%, 100% {
    border-radius: 60% 40% 72% 28%/84% 43% 57% 16%;
  }
  14% {
    border-radius: 60% 40% 60% 40%/49% 43% 57% 51%;
  }
  28% {
    border-radius: 40% 60% 26% 74%/49% 43% 57% 51%;
  }
  42% {
    border-radius: 40% 60% 65% 35%/49% 43% 57% 51%;
  }
  56% {
    border-radius: 71% 29% 65% 35%/26% 58% 42% 74%;
  }
  70% {
    border-radius: 89% 11% 82% 18%/30% 20% 80% 70%;
  }
  84% {
    border-radius: 66% 34% 82% 18%/59% 31% 69% 41%;
  }
}
@keyframes secondrotate {
  0%, 100% {
    border-radius: 41% 59% 47% 53%/59% 43% 57% 41%;
  }
  14% {
    border-radius: 56% 44% 68% 32%/59% 26% 74% 41%;
  }
  28% {
    border-radius: 74% 26% 80% 20%/23% 55% 45% 77%;
  }
  42% {
    border-radius: 87% 13% 65% 35%/54% 82% 18% 46%;
  }
  56% {
    border-radius: 43% 57% 33% 67%/54% 82% 18% 46%;
  }
  70% {
    border-radius: 22% 78% 33% 67%/90% 31% 69% 10%;
  }
  84% {
    border-radius: 22% 78% 59% 41%/53% 31% 69% 47%;
  }
}
@keyframes thirdrotate {
  0%, 100% {
    border-radius: 80% 20% 64% 36%/46% 30% 70% 54%;
  }
  14% {
    border-radius: 92% 8% 75% 25%/68% 12% 88% 32%;
  }
  28% {
    border-radius: 57% 43% 88% 12%/31% 12% 88% 69%;
  }
  42% {
    border-radius: 25% 75% 35% 65%/14% 54% 46% 86%;
  }
  56% {
    border-radius: 70% 30% 20% 80%/57% 86% 14% 43%;
  }
  70% {
    border-radius: 70% 30% 76% 24%/34% 56% 44% 66%;
  }
  84% {
    border-radius: 83% 17% 88% 12%/16% 84% 16% 84%;
  }
}
@keyframes fourthrotate {
  0%, 100% {
    border-radius: 52% 48% 55% 45%/45% 48% 52% 55%;
  }
  14% {
    border-radius: 52% 48% 29% 71%/29% 48% 52% 71%;
  }
  28% {
    border-radius: 27% 73% 21% 79%/73% 32% 68% 27%;
  }
  42% {
    border-radius: 48% 52% 57% 43%/43% 32% 68% 57%;
  }
  56% {
    border-radius: 72% 28% 39% 61%/67% 52% 48% 33%;
  }
  70% {
    border-radius: 52% 48% 29% 71%/29% 48% 52% 71%;
  }
  84% {
    border-radius: 72% 28% 39% 61%/25% 52% 48% 75%;
  }
}
@keyframes contentonerotate {
  0%, 100% {
    border-radius: 46% 54% 36% 64%/38% 29% 71% 62%;
  }
  14% {
    border-radius: 51% 49% 43% 57%/42% 34% 66% 58%;
  }
  28% {
    border-radius: 63% 37% 52% 48%/35% 43% 57% 65%;
  }
  42% {
    border-radius: 68% 32% 60% 40%/28% 51% 49% 72%;
  }
  56% {
    border-radius: 35% 65% 23% 77%/79% 33% 67% 21%;
  }
  70% {
    border-radius: 28% 72% 40% 60%/60% 22% 78% 40%;
  }
  84% {
    border-radius: 49% 51% 53% 47%/44% 42% 58% 56%;
  }
}
@keyframes fifthrotate {
  0%, 100% {
    border-radius: 52% 48% 55% 45%/45% 48% 52% 55%;
  }
  14% {
    border-radius: 52% 48% 29% 71%/29% 48% 52% 71%;
  }
  28% {
    border-radius: 27% 73% 21% 79%/73% 32% 68% 27%;
  }
  42% {
    border-radius: 48% 52% 57% 43%/43% 32% 68% 57%;
  }
  56% {
    border-radius: 72% 28% 39% 61%/67% 52% 48% 33%;
  }
  70% {
    border-radius: 52% 48% 29% 71%/29% 48% 52% 71%;
  }
  84% {
    border-radius: 72% 28% 39% 61%/25% 52% 48% 75%;
  }
}
@keyframes newsrotate {
  0%, 100% {
    border-radius: 52% 48% 55% 45%/45% 48% 52% 55%;
  }
  14% {
    border-radius: 52% 48% 29% 71%/29% 48% 52% 71%;
  }
  28% {
    border-radius: 27% 73% 21% 79%/73% 32% 68% 27%;
  }
  42% {
    border-radius: 48% 52% 57% 43%/43% 32% 68% 57%;
  }
  56% {
    border-radius: 72% 28% 39% 61%/67% 52% 48% 33%;
  }
  70% {
    border-radius: 52% 48% 29% 71%/29% 48% 52% 71%;
  }
  84% {
    border-radius: 72% 28% 39% 61%/25% 52% 48% 75%;
  }
}
@keyframes contactrotate {
  0%, 100% {
    border-radius: 80% 20% 64% 36%/46% 30% 70% 54%;
  }
  14% {
    border-radius: 92% 8% 75% 25%/68% 12% 88% 32%;
  }
  28% {
    border-radius: 57% 43% 88% 12%/31% 12% 88% 69%;
  }
  42% {
    border-radius: 25% 75% 35% 65%/14% 54% 46% 86%;
  }
  56% {
    border-radius: 70% 30% 20% 80%/57% 86% 14% 43%;
  }
  70% {
    border-radius: 70% 30% 76% 24%/34% 56% 44% 66%;
  }
  84% {
    border-radius: 83% 17% 88% 12%/16% 84% 16% 84%;
  }
}
/*===============================================================

	button css

===============================================================*/
div.cs {
  width: 90%;
  height: auto;
  display: block;
  border-radius: 40px;
  border: 3px solid #808080;
  line-height: 2em;
  text-align: center;
  padding: 1vh;
  margin: 5vh auto;
}

.link {
  width: 90%;
  height: auto;
  position: relative;
  margin: 0 auto;
}
.link .link-a {
  display: block;
  border-radius: 40px;
  background: rgb(234, 214, 68);
  background: linear-gradient(90deg, rgb(234, 214, 68) 0%, rgb(243, 224, 83) 35%, rgb(255, 240, 130) 100%);
  text-transform: uppercase;
  line-height: 2em;
  text-align: center;
  padding: 10px;
  margin: 10vh auto 0 auto;
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  z-index: 1;
  box-shadow: 1px 1px #EAD644;
}
.link .link-a:hover span {
  transform: translateY(0) scale(3);
}
.link .link-a a {
  display: block;
  width: 100%;
  height: 100%;
}
.link .link-a a:after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
  position: absolute;
  top: 22px;
  right: 15px;
}
.link .link-a span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: #EAD644;
  transform: translateY(65%);
  border-radius: 50%;
  left: calc((var(--n) - 1) * 25%);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}
.link .link-a span:nth-child(2) {
  --n: 1;
}
.link .link-a span:nth-child(3) {
  --n: 2;
}
.link .link-a span:nth-child(4) {
  --n: 3;
}
.link .link-a span:nth-child(5) {
  --n: 4;
}

.memo-link-a {
  width: 90%;
  height: auto;
  position: relative;
  margin: 0 auto;
}
.memo-link-a .link-a {
  display: block;
  border-radius: 40px;
  text-transform: uppercase;
  line-height: 2em;
  text-align: center;
  padding: 10px;
  margin: 10vh auto 0 auto;
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  z-index: 1;
  box-shadow: 1px 1px #EAD644;
}
.memo-link-a .link-a a {
  display: block;
  width: 100%;
  height: 100%;
}
.memo-link-a .link-a a:after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
  position: absolute;
  top: 22px;
  right: 15px;
}
.memo-link-a .link-a span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: #EAD644;
  transform: translateY(65%);
  border-radius: 50%;
  left: calc((var(--n) - 1) * 25%);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}
.memo-link-a .link-a span:nth-child(2) {
  --n: 1;
}
.memo-link-a .link-a span:nth-child(3) {
  --n: 2;
}
.memo-link-a .link-a span:nth-child(4) {
  --n: 3;
}
.memo-link-a .link-a span:nth-child(5) {
  --n: 4;
}
.memo-link-a .link-a:hover span {
  transform: translateY(0) scale(3);
}

/*===============================================================

	SNS　link

===============================================================*/
a.instagram-link {
  display: block;
  width: 70px;
  height: 70px;
  background-image: url("../img/instagram-icon.png");
  background-size: 70px auto;
  border-radius: 50%;
  background-position: center;
}

a.youtube-link {
  display: block;
  width: 70px;
  height: 70px;
  background-image: url("../img/youtube.png");
  background-size: 100px auto;
  border-radius: 50%;
  background-position: center;
  margin-left: 10px;
}

a.line-link {
  display: block;
  width: 70px;
  height: 70px;
  background-image: url("../img/LINE_Brand_icon.png");
  background-size: 70px auto;
  border-radius: 50%;
  background-position: center;
  margin-left: 10px;
}

div.contact-line {
  display: block;
  width: 175px;
  height: 40px;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  z-index: 9999;
  background-color: #02C755;
  color: #fff;
  text-align: center;
  line-height: 40px;
  border-radius: 10px 0 0 0px;
  position: fixed;
  bottom: 0px;
  right: 0px;
}
div.contact-line a {
  display: block;
  width: 175px;
  height: 40px;
}

#splash {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #FFF8D1;
  text-align: center;
  color: #fff;
}

#splash_text {
  width: 200px;
  height: 100px;
  margin: 0 auto;
  margin-top: 40vh;
}

header {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 245, 0.8);
  padding-top: 30px;
  position: sticky;
  top: -30px;
  z-index: 9000;
}
header div.header-inner {
  width: 100%;
  height: 70px;
  position: sticky;
  top: 0;
  /* タブレットまで使用 */
}
header div.header-inner h1.mainlogo {
  width: 100%;
  height: 70px;
  text-align: center;
  font-size: 25px;
  font-family: "游明朝体", "Yu Mincho", YuMincho;
  display: block;
  line-height: 1.5em;
  font-weight: bold;
  line-height: 70px;
  position: relative;
  z-index: 9999;
}
header div.header-inner h1.mainlogo a {
  width: 211px;
  height: 70px;
  display: block;
  background: no-repeat url(../assets/kigoromo_clear.png) center;
  background-size: contain;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  header div.header-inner {
    clear: both;
  }
  header div.header-inner h1.mainlogo {
    width: 400px;
    float: left;
    font-size: 30px;
  }
}
@media screen and (min-width: 1025px) {
  header div.header-inner h1.mainlogo a {
    width: 253px;
  }
}
header div.header-inner div.openbtn1 {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 99999; /*ボタンを最前面に*/
  cursor: pointer;
  width: 50px;
  height: 50px;
}
header div.header-inner div.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  width: 45%;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
}
header div.header-inner div.openbtn1 span:nth-of-type(1) {
  top: 15px;
}
header div.header-inner div.openbtn1 span:nth-of-type(2) {
  top: 23px;
}
header div.header-inner div.openbtn1 span:nth-of-type(3) {
  top: 31px;
}
header div.header-inner div.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
header div.header-inner div.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}
header div.header-inner div.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
@media screen and (min-width: 1025px) {
  header div.header-inner div.openbtn1 {
    display: none !important;
  }
}
header div.header-inner nav#g-nav {
  display: none;
}
header div.header-inner nav#g-nav ul {
  width: 100%;
  height: auto;
  margin-top: 0;
  opacity: 0;
  z-index: 999;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header div.header-inner nav#g-nav.panelactive {
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100vh;
  display: block !important;
}
header div.header-inner nav#g-nav.panelactive ul {
  opacity: 1;
}
header div.header-inner nav#g-nav.panelactive ul li {
  width: 60%;
  height: 4em;
  line-height: 4em;
  margin: 0 auto;
}
header div.header-inner nav#g-nav.panelactive ul li a {
  width: 100%;
  height: 4em;
  letter-spacing: 0.1em;
  font-size: 16px;
}
header div.header-inner nav#g-nav.panelactive ul li.produce {
  height: auto;
}
header div.header-inner nav#g-nav.panelactive ul li ol {
  width: 100vw;
  background-color: #e6dfbc;
  margin: 0 calc(50% - 50vw);
  margin-top: -0.5em;
}
header div.header-inner nav#g-nav.panelactive ul li ol li {
  width: 60%;
  height: 2em;
  text-align: left;
  line-height: 2em;
  margin: 0 auto;
  white-space: nowrap;
}
header div.header-inner nav#g-nav.panelactive ul li ol li::before {
  content: "┣";
  color: #808080;
  margin-right: 0.5em;
}
header div.header-inner nav#g-nav.panelactive ul li ol li:last-child::before {
  content: "┗";
}
@media screen and (min-width: 1025px) {
  header div.header-inner nav#g-nav {
    width: 60%;
    height: 70px;
    padding-right: 1.5em;
    float: right;
    display: block !important;
  }
  header div.header-inner nav#g-nav ul {
    position: static;
    transform: none;
    width: 100%;
    height: auto;
    opacity: 1;
    z-index: 9001;
    display: flex;
    justify-content: flex-end;
  }
  header div.header-inner nav#g-nav ul li {
    height: 70px;
    font-size: 16px;
    text-align: center;
    line-height: 70px;
    padding-right: 1em;
    padding-left: 1em;
    font-size: 14px;
  }
  header div.header-inner nav#g-nav ul li.produce {
    width: 100px !important;
  }
  header div.header-inner nav#g-nav ul li a {
    width: 100%;
    height: 70px;
    display: inline-block;
  }
  header div.header-inner nav#g-nav ul li a:hover {
    cursor: pointer;
    background: no-repeat url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22produce%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2226.062275mm%22%20height%3D%2225.183776mm%22%20viewBox%3D%220%200%2073.877316%2071.387083%22%3E%20%3Cpath%20d%3D%22m62.514178%2C16.419445C101.652191%2C56.824508%2C29.263645%2C89.392622%2C2.510342%2C60.164174c-10.325909-11.281232%2C14.58294-27.690698%2C13.936355-42.970486-.904742-21.380069%2C23.432531-24.141979%2C46.067481-.774243Z%22%20fill%3D%22%23f5dd45%22%2F%3E%3C%2Fsvg%3E") center;
    background-size: 70px 70px;
    opacity: 1;
  }
  header div.header-inner nav#g-nav ul li.home {
    width: 110px;
  }
  header div.header-inner nav#g-nav ul li.about {
    width: 200px;
  }
  header div.header-inner nav#g-nav ul li ol {
    display: none;
  }
}
header div.header-inner .circle-bg {
  position: fixed;
  z-index: 0;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #FFF8D1;
  opacity: 1;
  /*丸のスタート位置と形状*/
  transform: scale(0); /*scaleをはじめは0に*/
  right: -50px;
  top: -50px;
  transition: all 0.6s; /*0.6秒かけてアニメーション*/
}
@media screen and (min-width: 1025px) {
  header div.header-inner .circle-bg {
    display: none;
  }
}
header div.header-inner .circle-bg.circleactive {
  transform: scale(50); /*クラスが付与されたらscaleを拡大*/
}

body {
  background-color: #EAD644 !important;
  font-size: 18px;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro";
  overflow-x: hidden;
}
body div.wrap1 {
  overflow: hidden;
  background-color: #FFFFF5;
  position: relative;
  top: -100px;
  padding-top: 100px;
  padding-bottom: -100px;
}
body div.wrap1 div.wrap {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1000;
}
body div.wrap1 div.wrap section p {
  line-height: 1.5em;
  margin-bottom: 1em;
  font-size: 18px;
}
@media screen and (min-width: 1025px) {
  body div.wrap1 div.wrap section p {
    font-size: 16px;
  }
}

.pc_only {
  display: none;
}

br.br_pc {
  display: none;
}

br.br_tab {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp_only {
    display: none !important;
  }
  .pc_only {
    display: block !important;
  }
  br.sp_br {
    display: none !important;
  }
  br.br_pc {
    display: block !important;
  }
  br.br_tab {
    display: block !important;
  }
}
@media screen and (min-width: 1025px) {
  .sp_only {
    display: none !important;
  }
  br.sp_br {
    display: none !important;
  }
  br.sptab_br {
    display: none !important;
  }
}
div.container {
  width: 100%;
  height: 100%;
}

h2 {
  font-size: 25px;
  font-family: "游明朝体", "Yu Mincho", YuMincho;
  display: block;
  line-height: 1.5em;
  margin: 0 auto;
  position: relative;
}
h2:after {
  z-index: -1;
  transform: rotate(10deg);
}

div.comment {
  margin: 0 auto;
}

div.top-p {
  padding-top: 50px;
}
@media screen and (min-width: 1025px) {
  div.top-p {
    padding-top: 100px;
  }
}

div.container {
  margin-bottom: 40px;
}
div.container section.section1 {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
div.container section.section1 div.svg__container {
  width: 100%;
  height: 100%;
  position: relative;
  color: #fff;
}
div.container section.section1 div.svg__container:before {
  content: "できるできないじゃない。";
  font-family: ta-oonishi, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  position: absolute;
  top: 42px;
  right: 9px;
  color: #fff !important;
}
div.container section.section1 div.svg__container:after {
  white-space: pre;
  content: "今、やりたいことをする。";
  font-family: ta-oonishi, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 25px;
  position: absolute;
  top: 65px;
  right: 5px;
  color: #fff !important;
}
div.container section.section1 div.svg__container div.sp_only {
  display: block;
}
div.container section.section1 div.svg__container img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  div.container section.section1 {
    width: 90%;
    height: 100%;
  }
  div.container section.section1 div.svg__container:before {
    top: 53px;
    right: 33px;
    font-size: 25px;
  }
  div.container section.section1 div.svg__container:after {
    top: 87px;
    right: 22px;
    font-size: 40px;
  }
}
@media screen and (min-width: 1025px) {
  div.container section.section1 .sp-only {
    display: none !important;
  }
  div.container section.section1 div.svg__container {
    width: 100%;
    height: 100%;
  }
  div.container section.section1 div.svg__container:before {
    font-size: 35px;
    top: 80px;
  }
  div.container section.section1 div.svg__container:after {
    font-size: 55px;
    top: 121px;
  }
}

div.section2_bg {
  background: no-repeat url(../img/bg_section2.jpg) center;
  background-position: 50% 100px;
  position: relative;
  z-index: -8;
}

div.section2 {
  width: 100ha;
}
div.section2 div.container {
  padding-top: 50px;
}
div.section2 div.container section.section2_inner {
  position: relative;
  z-index: 0;
}
div.section2 div.container section.section2_inner h2 {
  width: 325px;
  height: 100%;
}
div.section2 div.container section.section2_inner h2:after {
  content: "";
  width: 240px;
  height: 123px;
  background: no-repeat url(../img/bg_about.png) center;
  position: absolute;
  top: -75%;
  left: 35%;
}
div.section2 div.container section.section2_inner div.comment {
  width: 90%;
  height: 100%;
  margin-top: 5vh;
}
@media screen and (min-width: 1025px) {
  div.section2 {
    margin-bottom: 220px;
  }
  div.section2 div.container {
    padding-top: 110px;
  }
  div.section2 div.container section.section2_inner {
    padding: 0;
  }
  div.section2 div.container section.section2_inner h2 {
    width: 530px;
    font-size: 40px;
  }
  div.section2 div.container section.section2_inner h2::after {
    left: -20%;
    top: -55%;
    transform: rotate(-20deg);
  }
  div.section2 div.container section.section2_inner div.comment {
    width: 750px;
    margin-top: 5vh;
  }
  div.section2 div.container section.section2_inner div.comment link {
    width: 40%;
  }
}

div.section3_bg {
  background: no-repeat url(../img/bg_section3.jpg) center;
  position: relative;
  z-index: -999;
  width: 100%;
  height: auto;
  padding-top: 70px;
}

section.inside1 {
  position: relative;
  z-index: 0;
}
section.inside1 h2 {
  width: 375px;
  height: auto;
  margin-bottom: 50px !important;
}
section.inside1 h2:after {
  content: "";
  width: 193px;
  height: 123px;
  background: no-repeat url(../img/bg_produce.png) top center;
  position: absolute;
  top: -65px;
  left: 200px;
  transform: rotate(10deg);
  z-index: -1;
}
section.inside1 div.comment {
  width: 240px;
}

section.inside2 {
  width: 265px;
  height: auto;
  margin: 0 auto;
  margin-top: 100px;
}
section.inside2 p {
  width: 100%;
  font-size: 18px;
  line-height: 2em;
}
section.inside2 div.scroll {
  width: 20%;
  height: 100px;
  display: block;
  margin: 0 auto;
  text-align: center;
  padding: 1vh auto 5vh auto;
  position: relative;
  padding-top: 80px;
  margin-bottom: 130px;
}
section.inside2 div.scroll p {
  font-weight: bold;
  font-size: 14px;
}
section.inside2 div.scroll span {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -12px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}
section.inside2 div.scroll span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
section.inside2 div.scroll span:nth-of-type(2) {
  top: 16px;
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}
section.inside2 div.scroll span:nth-of-type(3) {
  top: 32px;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
@media screen and (min-width: 768px) {
  section.inside2 {
    width: 460px !important;
  }
  section.inside2 div.scroll {
    margin-bottom: 300px;
  }
}

div.section3_list_container {
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: relative;
}
div.section3_list_container section.section3_list section.p-content {
  margin-bottom: 100px;
}
div.section3_list_container section.section3_list section.p-content:first-child {
  margin-top: auto;
}
div.section3_list_container section.section3_list section.p-content div.comment {
  width: 85%;
  height: auto;
  position: relative;
  z-index: 0;
}
div.section3_list_container section.section3_list section.p-content div.comment:before {
  content: "";
  display: block;
  position: absolute;
  top: -15px;
  z-index: -1;
}
div.section3_list_container section.section3_list section.p-content div.comment h3 {
  width: 100%;
  height: auto;
  font-family: "游明朝体", "Yu Mincho", YuMincho;
  display: block;
  font-weight: bold;
  font-size: 40px;
  margin-bottom: 5vh;
  position: relative;
}
div.section3_list_container section.section3_list section.p-content div.comment h3:after {
  font-size: 16px;
  position: absolute;
  bottom: -20px;
  left: 0;
}
div.section3_list_container section.section3_list section.p-content div.comment h3.sp_h_ft {
  font-size: 35px;
}
div.section3_list_container section.section3_list section.p-content div.comment h3.sp_h_ft span.font-sz-small {
  font-size: 21px;
}
div.section3_list_container section.section3_list section.p-content div.comment div.sns-link {
  width: 360px;
  height: 70px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  margin-top: 30px;
  margin-left: 10px;
}
div.section3_list_container section.section3_list section.p-content div.content-bg-shape {
  margin-top: 30px;
  position: relative;
}
div.section3_list_container section.section3_list section.p-content div.content-bg-shape:after {
  content: "";
  width: 550px;
  height: 500px;
  display: block;
  background: #FFF8D1; /*背景色*/
  animation: contentonerotate 40s ease 0s infinite; /*アニメーションの設定*/
  z-index: -8;
  position: absolute;
}
div.section3_list_container section.section3_list section.content1 {
  margin-bottom: 120px;
}
div.section3_list_container section.section3_list section.content1 .comment:before {
  background: no-repeat url(../img/bg_produce1.png);
  width: 48px;
  height: 96px;
  left: -30px;
}
div.section3_list_container section.section3_list section.content1 .comment h3:after {
  content: "フリーリー";
}
div.section3_list_container section.section3_list section.content1 .content-bg-shape:before {
  content: "";
  width: 262px;
  height: 261px;
  background: no-repeat url(../img/freely_logo.png);
  position: absolute;
  bottom: -100px;
  right: 0;
  z-index: 1;
  border-radius: 55px;
  box-shadow: 35px 50px 30px -50px #cacab9;
}
div.section3_list_container section.section3_list section.content1 .content-bg-shape:after {
  top: -50px;
}
div.section3_list_container section.section3_list section.content2 .comment:before {
  background: no-repeat url(../img/bg_produce2.png);
  width: 82px;
  height: 93px;
  left: -30px;
}
div.section3_list_container section.section3_list section.content2 .comment div.link:before {
  content: "※外部サイトへリンクしています。";
  width: 100%;
  text-align: center;
  font-size: small;
  position: absolute;
  bottom: -20px;
  left: 3%;
}
div.section3_list_container section.section3_list section.content2 .content-bg-shape:after {
  top: -40px;
}
div.section3_list_container section.section3_list section.content2 .content-bg-shape img {
  width: 500px;
  height: 500px;
}
div.section3_list_container section.section3_list section.content3 .comment:before {
  background: no-repeat url(../img/bg_produce3.png);
  width: 79px;
  height: 97px;
  left: -30px;
}
div.section3_list_container section.section3_list section.content3 .comment h3:after {
  content: "-ルティエ-";
  position: static !important;
  margin-left: 0.5em;
}
div.section3_list_container section.section3_list section.content3 .comment div.sns-link {
  width: 180px !important;
  margin: 0 auto;
  margin-left: auto !important;
}
div.section3_list_container section.section3_list section.content3 .comment div.sns-link a.lutie-sale {
  position: relative;
}
div.section3_list_container section.section3_list section.content3 .comment div.sns-link a.lutie-sale:after {
  content: "";
  width: 37px;
  height: 105px;
  background: no-repeat url(../img/line-sale.png);
  background-size: contain;
  position: absolute;
  top: -15px;
  left: -35px;
}
div.section3_list_container section.section3_list section.content3 .comment div.sns-link a.lutie-agency {
  position: relative;
  margin-left: 30px;
}
div.section3_list_container section.section3_list section.content3 .comment div.sns-link a.lutie-agency:after {
  content: "";
  width: 35px;
  height: 112px;
  background: no-repeat url(../img/line-agency.png);
  background-size: contain;
  position: absolute;
  top: -15px;
  right: -35px;
}
div.section3_list_container section.section3_list section.content3 .content-bg-shape {
  width: 450px;
  margin: 50px auto;
}
div.section3_list_container section.section3_list section.content3 .content-bg-shape:after {
  top: -50px;
}
div.section3_list_container section.section3_list section.content3 .content-bg-shape img {
  width: 450px;
}
div.section3_list_container section.section3_list section.content4 .comment:before {
  background: no-repeat url(../img/bg_produce3.png);
  width: 83px;
  height: 105px;
  left: -30px;
}
div.section3_list_container section.section3_list section.content4 .content-bg-shape:after {
  top: 0;
}
div.section3_list_container section.section3_list section.content4 .content-bg-shape img {
  width: 550px;
  height: auto;
}
div.section3_list_container section.section3_list section.content5 .comment:before {
  background: no-repeat url(../img/bg_produce4.png);
  width: 82px;
  height: 151px;
  left: -30px;
}
div.section3_list_container section.section3_list section.content5 .content-bg-shape:after {
  top: 0;
}
div.section3_list_container section.section3_list section.content5 .content-bg-shape img {
  width: 500px;
  height: auto;
}
@media screen and (min-width: 768px) {
  div.section3_list_container {
    width: 80%;
  }
  div.section3_list_container section.section3_list section.p-content {
    display: flex;
    height: 650px;
  }
  div.section3_list_container section.section3_list section.p-content div.comment {
    width: 40%;
    margin-top: 50px;
  }
  div.section3_list_container section.section3_list section.p-content div.comment div.sns-link {
    margin-left: 10px !important;
  }
  div.section3_list_container section.section3_list section.p-content div.comment div.sns-link:before {
    left: -30px;
  }
  div.section3_list_container section.section3_list section.p-content div.comment div.link, div.section3_list_container section.section3_list section.p-content div.comment div.cs {
    width: 260px;
    margin-left: 0;
  }
  div.section3_list_container section.section3_list section.p-content div.content-bg-shape {
    width: 60%;
  }
  div.section3_list_container section.section3_list .content1 .content-bg-shape:before {
    bottom: 0px !important;
  }
  div.section3_list_container section.section3_list .content3 .sns-link {
    margin-left: 30px !important;
  }
  div.section3_list_container section.section3_list .content3 .content-bg-shape:after {
    top: -110px !important;
  }
  div.section3_list_container section.section3_list .content4 .content-bg-shape img {
    width: 550px;
    height: auto;
  }
}
@media screen and (min-width: 1025px) {
  div.section3_list_container section.section3_list section.content1, div.section3_list_container section.section3_list section.content3, div.section3_list_container section.section3_list section.content5 {
    margin-left: 17.5%;
  }
  div.section3_list_container section.content1 div.content-bg-shape:before {
    bottom: 0px !important;
    right: 120px !important;
  }
  div.section3_list_container section.content1 div.content-bg-shape:after {
    right: 50px;
  }
  div.section3_list_container section.content4 div.content-bg-shape:after {
    right: -20px !important;
  }
}

div.section4_bg {
  background: no-repeat url(../img/bg_section4.jpg) center;
  width: 100%;
  height: auto;
  padding-top: 150px;
  position: relative;
  z-index: -300;
}
div.section4_bg section.section4 {
  width: 95%;
  margin: 0 auto;
}
div.section4_bg section.section4 h2 {
  width: 325px;
  height: 65px;
  font-size: 40px;
  font-family: "游明朝体", "Yu Mincho", YuMincho;
  display: block;
  line-height: 1.5em;
  font-weight: bold;
  margin: 0 auto;
  z-index: 500;
}
div.section4_bg section.section4 h2:after {
  content: "";
  background: no-repeat url(../img/bg_news.png) top center;
  width: 363px;
  height: 74px;
  position: absolute;
  top: -60%;
  left: 0;
  transform: rotate(10deg);
  z-index: -1;
}
div.section4_bg section.section4 p {
  line-height: 2em;
  text-align: center;
}
div.section4_bg section.section4 ul {
  margin-top: 9vh;
}
div.section4_bg section.section4 ul li {
  border-bottom: 3px #E8E4D3 dashed;
}
div.section4_bg section.section4 ul li div {
  box-sizing: border-box;
}
div.section4_bg section.section4 ul li div.date {
  width: 15%;
  padding: 10px 0;
}
div.section4_bg section.section4 ul li div.newslink {
  width: 90%;
  padding-bottom: 10px;
  padding-left: 10px;
}
div.section4_bg section.section4 div.link .link-a {
  width: 100%;
  border: 3px solid #EAD644;
}
div.section4_bg section.section4 div.link:after {
  content: "";
  display: block;
  width: 96%;
  height: 3em;
  border-bottom: 3px #EAD644 solid;
  border-right: 3px #EAD644 solid;
  border-bottom-right-radius: 35px;
  position: absolute;
  bottom: -15%;
  right: -3%;
}
@media screen and (min-width: 768px) {
  div.section4_bg {
    padding-top: 100px;
  }
  div.section4_bg section.section4 h2 {
    width: 350px;
  }
  div.section4_bg section.section4 h2:after {
    left: -45%;
    transform: rotate(-20deg);
  }
  div.section4_bg section.section4 ul li {
    width: auto;
    display: flex;
    height: 75px;
  }
  div.section4_bg section.section4 ul li div.date {
    padding-top: 25px;
  }
  div.section4_bg section.section4 ul li div.newslink {
    padding-top: 25px;
  }
  div.section4_bg section.section4 div.link {
    width: 315px;
  }
  div.section4_bg section.section4 div.link:after {
    border-bottom-right-radius: 40px;
  }
}
@media screen and (min-width: 1025px) {
  div.section4_bg section.section4 {
    width: 80%;
    padding-top: 100px;
  }
}

section.section6 {
  text-align: center;
  margin-top: 100px;
}
section.section6 a {
  width: 90%;
  height: auto;
  display: block;
  cursor: pointer;
  margin: 0 auto;
}
section.section6 a img {
  width: 100%;
  height: auto;
}

section.section5 {
  width: 90%;
  margin: 0 auto;
  margin-top: 21vh;
  position: relative;
}
section.section5 h2 {
  width: 180px;
  height: auto;
  font-size: 25px;
  font-family: "游明朝体", "Yu Mincho", YuMincho;
  display: block;
  line-height: 1.5em;
  font-weight: bold;
  margin: 0 auto;
  position: relative;
  z-index: 0;
  margin-bottom: 35px;
}
section.section5 h2:before {
  content: "";
  background: no-repeat url(../img/bg_contact.png) top center;
  width: 201px;
  height: 123px;
  position: absolute;
  top: -150%;
  left: 35%;
  transform: rotate(10deg);
  z-index: -100;
}
section.section5 p {
  text-align: center;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  section.section5 {
    width: 80%;
  }
  section.section5 h2 {
    width: 250px;
    font-size: 40px;
  }
  section.section5 h2:before {
    top: -50px;
    left: -80px;
    transform: rotate(-20deg);
  }
  section.section5 div.link {
    width: 300px;
  }
}

section.profile {
  width: 100%;
  height: auto;
  position: relative;
  top: -100px;
  padding-top: 100px;
  z-index: 100px;
}
section.profile h1 {
  width: 250px;
  height: auto;
  display: inline-block;
  font-size: 25px;
  font-family: "游明朝体", "Yu Mincho", YuMincho;
  display: block;
  line-height: 1.5em;
  text-align: center;
  margin: 0 auto;
  margin-top: 50px;
  position: relative;
}
section.profile h1:before {
  content: "";
  width: 200px;
  height: 135px;
  display: block;
  background: no-repeat url(../img/about/about_bg.png);
  position: absolute;
  top: -65px;
  left: -85px;
  z-index: -1;
}
section.profile div.ceo-data {
  width: 100%;
  margin: 0 auto;
  margin-top: 50px;
  position: relative;
}
section.profile div.ceo-data div.ceo_figure_container {
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}
section.profile div.ceo-data div.ceo_figure_container div.ceo-name {
  width: 195px;
  height: 160px;
  background: no-repeat url(../img/about/name_bg.png);
  background-size: contain;
  margin-left: auto;
  padding-top: 45px;
  padding-left: 45px;
  position: relative;
  z-index: 1;
}
section.profile div.ceo-data div.ceo_figure_container div.ceo-name p {
  margin-bottom: 0 !important;
}
section.profile div.ceo-data div.ceo_figure_container div.ceo-name p.post {
  font-size: 18px;
}
section.profile div.ceo-data div.ceo_figure_container div.ceo-name p.name {
  font-size: 40px;
  font-family: "游明朝体", "Yu Mincho", YuMincho;
  display: block;
  line-height: 1.5em;
  font-size: 30px;
}
section.profile div.ceo-data div.ceo_figure_container div.ceo-name p.ruby {
  letter-spacing: 0.1em;
}
section.profile div.ceo-data div.ceo_figure_container figure {
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
  margin-bottom: -50px;
  position: relative;
  top: -50px;
  z-index: 0;
}
section.profile div.ceo-data div.ceo_figure_container figure img {
  width: 100%;
  height: auto;
}
section.profile div.ceo-data article.ceo-comment {
  background-color: #fff;
  padding: 20px;
}
section.profile div.ceo-data article.ceo-comment h2 {
  width: 390px;
  font-size: 40px;
  font-family: "游明朝体", "Yu Mincho", YuMincho;
  display: block;
  line-height: 1.5em;
  font-size: 22px;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  section.profile div.ceo-data {
    max-width: initial;
    width: 100%;
    height: auto;
  }
  section.profile div.ceo-data article.ceo-comment {
    width: 80%;
    margin: 0 auto;
  }
  section.profile div.ceo-data article.ceo-comment h2 {
    width: 355px;
    height: auto;
  }
}
@media screen and (min-width: 1025px) {
  section.profile h1 {
    margin-top: 75px;
    margin-bottom: 150px;
  }
  section.profile div.ceo-data {
    max-width: 1360px;
    margin: 0 auto;
    margin-bottom: 200px;
  }
  section.profile div.ceo-data div.ceo_figure_container {
    max-width: 1155px;
    width: 100%;
    margin: 0;
  }
  section.profile div.ceo-data div.ceo_figure_container div.ceo-name {
    width: 438px;
    height: 356px;
    position: absolute;
    top: 115px;
    right: 0;
    padding-top: 120px;
    padding-left: 100px;
  }
  section.profile div.ceo-data div.ceo_figure_container div.ceo-name p.post {
    font-size: 30px !important;
  }
  section.profile div.ceo-data div.ceo_figure_container div.ceo-name p.name {
    font-size: 60px !important;
  }
  section.profile div.ceo-data div.ceo_figure_container div.ceo-name p.ruby {
    font-size: 20px !important;
    letter-spacing: 0.5em;
  }
  section.profile div.ceo-data div.ceo_figure_container figure {
    max-width: initial;
    width: 840px;
    height: 840px;
    top: 0;
    margin: 0;
  }
  section.profile div.ceo-data article.ceo-comment {
    width: 705px;
    height: auto;
    padding: 40px;
    position: absolute;
    bottom: -200px;
    right: 0;
  }
  section.profile div.ceo-data article.ceo-comment h2 {
    width: auto;
    font-size: 39px;
    margin-bottom: 40px;
  }
  section.profile div.ceo-data article.ceo-comment p {
    line-height: 1.7em;
  }
}

section.interview {
  width: 100%;
  height: auto;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 45px 20px;
  position: relative;
}
section.interview article {
  margin-bottom: 100px;
}
section.interview article h3 {
  width: auto;
  font-weight: bold;
  font-size: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #808080;
  margin-bottom: 40px;
}
section.interview article h4 {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5em;
  display: inline-block;
  background-color: #EAD644;
  margin-bottom: 40px;
}
section.interview article h4:before {
  content: "──";
  line-height: 1.5em;
}
section.interview article p {
  margin: 0.3em auto;
}
section.interview article div.interview-image {
  position: relative;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background-size: 100%;
  margin: 0 auto;
  margin-top: 30px;
}
section.interview article div.interview-image:after {
  content: "";
  display: inline-block;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 1px solid #EAD644;
  position: absolute;
  top: -10px;
  left: -10px;
}
section.interview article.interview01 div.D-duck {
  background: no-repeat url(../img/about/d-duck.jpg);
  background-position: 0px -45px;
  background-size: 100% !important;
}
section.interview article.interview02 h4.child2 {
  margin-top: 40px;
}
section.interview article.interview04 div.family {
  background: no-repeat url(../img/about/family.jpg);
  background-position: 0 0;
  background-size: 100% !important;
}
@media screen and (min-width: 768px) {
  section.interview {
    width: 80% !important;
    margin: 0 auto;
  }
  section.interview article h3 {
    font-size: 25px;
  }
}
@media screen and (min-width: 1025px) {
  section.interview article.interview05 {
    margin-top: 140px;
  }
  section.interview article div.interview-container {
    width: 60%;
  }
  section.interview article div.interview-image {
    position: absolute;
    top: 120px;
    right: -15px;
  }
}

.about-detail {
  width: 100%;
  margin: 50px auto;
}
.about-detail h2 {
  text-align: center;
  margin-bottom: 50px;
}
.about-detail dl {
  width: 100%;
  padding: 0 4%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .about-detail dl {
    width: 60%;
  }
}
.about-detail dl div {
  display: flex;
  gap: 20px;
  margin-bottom: 1rem;
}
.about-detail dl div dt {
  width: 90px;
}
.about-detail dl div dd {
  width: calc(100% - 100px);
}

section.announce {
  width: 90%;
  margin: 0 auto;
  margin: 50px auto 30px auto;
}
section.announce h2 {
  width: 100%;
  font-size: 25px;
  font-family: "游明朝体", "Yu Mincho", YuMincho;
  display: block;
  line-height: 1.5em;
  font-weight: bold;
  border-bottom: 2px dashed #bebebe;
  margin-bottom: 10px;
}

section#courses {
  width: 100%;
  height: auto;
}
section#courses div.course-container {
  width: 100%;
  height: auto;
}
section#courses div.course-container div.course {
  width: 85%;
  padding: 15px;
  border: 1px solid #808080;
  border-radius: 20px;
  margin: 0 auto;
  text-align: center;
  margin-top: 50px;
  padding-bottom: 70px;
  position: relative;
}
section#courses div.course-container div.course h3 {
  font-size: 25px;
  font-weight: bold;
  margin: 30px auto;
}
section#courses div.course-container div.course p span {
  font-weight: bold;
}
section#courses div.course-container div.course p span:before, section#courses div.course-container div.course p span:after {
  content: "──";
}
section#courses div.course-container div.course p span:before {
  padding-right: 0.5em;
}
section#courses div.course-container div.course p span:after {
  padding-left: 0.3em;
}
section#courses div.course-container div.course ul {
  width: 85%;
  text-align: left;
  margin: 20px 5px 20px auto;
}
section#courses div.course-container div.course ul li {
  vertical-align: middle;
  padding: 0.5em;
  position: relative;
}
section#courses div.course-container div.course div.link {
  position: relative;
  bottom: 0;
}
section#courses div.course-container div.course div.link .link-a {
  margin: 0;
  margin-bottom: 20px;
  border-width: 2px;
  background-color: #eac9a4;
  border-color: #ea9d44;
}
section#courses div.course-container div.course div.link .link-a span {
  background-color: #ea9d44;
}
section#courses div.course-container div.made:before {
  content: "";
  display: block;
  width: 114px;
  height: 105px;
  background: no-repeat url(../img/course/freely-made.png);
  background-size: 80%;
  position: absolute;
  top: -30px;
  left: 10px;
}
section#courses div.course-container div.made ul li:before {
  content: "";
  display: block;
  width: 34px;
  height: 26px;
  background: no-repeat url(../img/course/freely-made-c.png);
  background-size: contain;
  position: absolute;
  top: 5px;
  left: -35px;
}
section#courses div.course-container div.sale:before {
  content: "";
  display: block;
  width: 124px;
  height: 122px;
  background: no-repeat url(../img/course/freely-sale.png);
  background-size: 80%;
  position: absolute;
  top: -40px;
  left: -20px;
}
section#courses div.course-container div.sale .link .link-a {
  background-color: #eaa4b6;
  border-color: #ea4470;
}
section#courses div.course-container div.sale .link .link-a span {
  background-color: #ea4470;
}
section#courses div.course-container div.sale ul li:before {
  content: "";
  display: block;
  width: 34px;
  height: 26px;
  background: no-repeat url(../img/course/freely-sale-c.png);
  background-size: contain;
  position: absolute;
  top: 5px;
  left: -35px;
}
section#courses div.course-container div.school:after {
  content: "";
  display: block;
  width: 112px;
  height: 119px;
  background: no-repeat url(../img/course/freely-school.png);
  background-size: 80%;
  position: absolute;
  top: -30px;
  right: -35px;
}
section#courses div.course-container div.school .link .link-a {
  background-color: #a3de9b;
  border-color: #48ba37;
}
section#courses div.course-container div.school .link .link-a span {
  background-color: #48ba37;
}
section#courses div.course-container div.school ul li:before {
  content: "";
  display: block;
  width: 34px;
  height: 26px;
  background: no-repeat url(../img/course/freely-school-c.png);
  background-size: contain;
  position: absolute;
  top: 5px;
  left: -35px;
}
section#courses div.course-container div.manager:after {
  content: "";
  display: block;
  width: 152px;
  height: 122px;
  background: no-repeat url(../img/course/freely-manager.png);
  background-size: 80%;
  background-position: right;
  position: absolute;
  top: -60px;
  right: -20px;
}
section#courses div.course-container div.manager .link .link-a {
  background-color: #a4c4ea;
  border-color: #4491ea;
}
section#courses div.course-container div.manager .link .link-a span {
  background-color: #4491ea;
}
section#courses div.course-container div.manager ul li:before {
  content: "";
  display: block;
  width: 34px;
  height: 26px;
  background: no-repeat url(../img/course/freely-manager-c.png);
  background-size: contain;
  position: absolute;
  top: 5px;
  left: -35px;
}

@media screen and (min-width: 768px) {
  section.announce {
    width: 70% !important;
  }
  section#courses div.course-container {
    margin: 0 auto;
  }
  section#courses div.course-container div.course {
    width: 423px;
  }
  section#courses div.course-container div.course h3 {
    font-size: 40px;
    font-weight: bold;
    margin: 40px auto;
  }
}
@media screen and (min-width: 1025px) {
  section#courses div.course-container {
    display: flex;
    width: 940px;
  }
}
/*===============================================================

			footer

		===============================================================*/
div.waveContainer {
  width: 100%;
  height: 15.5vh;
  position: relative;
}
div.waveContainer canvas#waveCanvas {
  width: 100%;
  height: 15.5vh;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* footer main */
footer {
  width: 100%;
  height: auto;
  background-color: #EAD644;
  padding-bottom: 2em;
  position: relative;
  z-index: 10;
  font-size: 14px;
  margin-top: -2px;
}
footer div.footer_container {
  width: 100%;
  height: auto;
  background-color: #EAD644;
}
footer div.footer_container h4.logo {
  width: auto;
  height: 70px;
  font-size: 30px;
  text-align: center;
  font-weight: bold;
  margin: 0 auto;
  display: block;
  padding-top: 1em;
  margin-bottom: 2em;
}
footer div.footer_container h4.logo a {
  display: block;
  width: auto;
  height: 70px;
  background: no-repeat url(../assets/kigoromo_blk.png) center;
  background-size: contain;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
footer div.footer_container ul.navigation {
  width: 100%;
}
footer div.footer_container ul.navigation li {
  width: 100%;
  line-height: 1.5em;
  border-bottom: 1px solid #ccbb3b;
  padding: 1em;
}
footer div.footer_container ul.navigation li a {
  display: block;
  position: relative;
}
footer div.footer_container ul.navigation li a::after {
  content: "＞";
  display: block;
  text-align: right;
  font-size: 13px;
  font-weight: bold;
  position: absolute;
  top: 0;
  right: 0;
}
footer div.footer_container ul.navigation li.produce {
  padding-bottom: 0;
}
footer div.footer_container ul.navigation li.produce a::after {
  content: "Ｖ";
}
footer div.footer_container ul.navigation li.produce ol {
  width: 100vw;
  background-color: #ccbb3b;
  margin: 0 calc(50% - 50vw);
  margin-top: 1em;
}
footer div.footer_container ul.navigation li.produce ol li {
  width: 100%;
  display: block;
  line-height: 1em;
  padding-right: 2em;
  padding-left: 2em;
  border-color: #998c2c;
}
footer div.footer_container ul.navigation li.produce ol li:last-child {
  border: none;
}
footer div.footer_container ul.navigation li.produce ol li a::after {
  content: "＞";
}
footer div.footer-utility-container {
  width: 100%;
  height: auto;
  margin: 0;
}
footer div.footer-utility-container div {
  width: 100%;
  height: auto;
  margin-bottom: 1em;
  text-align: center;
}
footer div.footer-utility-container div a {
  font-size: 12px;
  line-height: 1em;
  margin-right: 2em;
  position: relative;
}
footer div.footer-utility-container div a::after {
  content: "｜";
  font-weight: bold;
  position: absolute;
  top: 0;
  right: -20px;
}
footer div.footer-utility-container div a:last-child::after {
  display: none;
}
footer div.footer-utility-container p {
  text-align: center;
  font-size: 12px;
  line-height: 2em;
}
@media screen and (min-width: 1025px) {
  footer div.footer_container {
    width: 80%;
    margin: 0 auto;
  }
  footer div.footer_container h4 {
    width: 50%;
    font-size: h_size;
    vertical-align: middle;
  }
  footer div.footer_container h4.logo {
    margin-left: -50px;
  }
  footer div.footer_container ul.navigation {
    margin: 0 auto;
    display: flex;
  }
  footer div.footer_container ul.navigation li {
    border: none;
    text-align: center;
    margin-right: 5px;
  }
  footer div.footer_container ul.navigation li ol {
    display: none;
  }
  footer div.footer_container ul.navigation li a::after {
    display: none;
  }
  footer div.footer-utility-container {
    margin: 2em auto;
  }
  footer div.footer-utility-container ul {
    width: 950px;
    display: flex;
    margin: 0 auto;
  }
  footer div.footer-utility-container ul li {
    width: auto;
    padding: 0;
    padding-left: 1em;
    padding-right: 1em;
    border: none;
    position: relative;
  }
  footer div.footer-utility-container ul li::after {
    content: "／";
    padding-left: 1em;
    display: block;
    position: absolute;
    top: 0;
    right: -5px;
  }
  footer div.footer-utility-container ul li:last-child {
    border: none;
  }
  footer div.footer-utility-container ul li:last-child::after {
    content: "";
  }
  footer div.footer-utility-container ul li::before {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  ::-webkit-full-page-media, :future, :root .webkit .sp_only {
    display: block;
  }
  ::-webkit-full-page-media, :future, :root .webkit .pc_only {
    display: none;
    background: no-repeat url(../img/topimage.jpg);
  }
}/*# sourceMappingURL=style.css.map */