@charset "UTF-8";
/* ===================================================================
  2024
=================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@keyframes RightToLeft {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes SlideUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*----------------------------------------------------
	全体 2024
----------------------------------------------------*/
html, body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #1D1D1D;
  position: relative;
  -webkit-text-size-adjust: none;
}
body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

body * {
  text-shadow: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 2;
  font-weight: bold;
}

img {
  max-width: 100%;
}

.tC {
  text-align: center;
}

.tL {
  text-align: left;
}

.tR {
  text-align: right;
}

.m-left {
  margin-right: auto;
}

.m-right {
  margin-left: auto;
}

* {
  box-sizing: border-box;
}

*, *:before, *:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

/* link
----------------------------------------------------*/
a, a:active, a:visited, a:hover {
  color: inherit;
  text-decoration: underline;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.6);
}

a {
  color: #45B035;
  transition: all 0.3s;
}
a:hover {
  color: #4d4d4d;
  text-decoration: none;
}

img.link {
  opacity: 1;
  transition: all 0.3s;
}
img.link:hover {
  opacity: 0.6;
}

/*----------------------------------------------------
	テキスト
----------------------------------------------------*/
h1 {
  padding: 0;
  margin: 0;
  text-align: center;
}

h2 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.05em;
  width: 100%;
  margin: 1rem 0 1.5rem 0;
  color: #000;
}
@media (max-width: 768px) {
  h2 {
    font-size: 17px;
  }
}
@media (max-width: 480px) {
  h2 {
    font-size: 15px;
  }
}

h3 {
  font-size: 28px;
  letter-spacing: 0.05em;
  margin: 0 0 1.5rem 0;
}
@media (max-width: 768px) {
  h3 {
    font-size: 24px;
    text-align: left;
  }
}
@media (max-width: 480px) {
  h3 {
    font-size: 18px;
  }
}

h4 {
  font-size: 28px;
  margin: 1rem 0 1.5rem 0;
  font-weight: bold;
}
@media (max-width: 768px) {
  h4 {
    font-size: 21px;
  }
}
@media (max-width: 480px) {
  h4 {
    font-size: 16px;
  }
}

h5 {
  font-size: 21px;
  margin: 1rem 0 1.5rem 0;
}
@media (max-width: 768px) {
  h5 {
    font-size: 21px;
  }
}
@media (max-width: 480px) {
  h5 {
    font-size: 15px;
  }
}
h5.si {
  text-align: center;
  padding-bottom: 2em;
}
h5.si span {
  font-size: 70%;
  font-weight: normal;
  padding: 1em 5em;
  border-bottom: 1px solid #000;
}

h6 {
  font-size: 21px;
  margin: 1rem 0;
}
@media (max-width: 768px) {
  h6 {
    font-size: 21px;
  }
}
@media (max-width: 480px) {
  h6 {
    font-size: 15px;
  }
}

p {
  margin: 0 0 1rem 0;
}

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

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

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  body {
    font-size: 12px;
  }
}
.row {
  width: 100%;
  display: flex !important;
  flex-wrap: wrap;
  justify-content: space-between;
}

.row .col-2 {
  width: calc((100% - 3%) / 2);
}
.row .col-3 {
  width: calc((100% - 2%) / 3);
}
.row .col-4 {
  width: calc((100% - 3%) / 4);
}

.row-list {
  width: 100%;
  display: flex !important;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.row-list .col-2 {
  width: calc((100% - 2%) / 2);
  margin: 0.5%;
}
.row-list .col-3 {
  width: calc((100% - 3%) / 3);
  margin: 0.5%;
}
.row-list .col-4 {
  width: calc((100% - 4%) / 4);
  margin: 0.5%;
}
.row-list .col-5 {
  width: calc((100% - 5%) / 5);
  margin: 0.5%;
}

@media (max-width: 768px) {
  .row .col-2 {
    width: calc((100% - 3%) / 2);
  }
  .row .col-3 {
    width: calc((100% - 1%) / 2);
  }
  .row .col-4 {
    width: calc((100% - 1%) / 2);
  }
  .row-list .col-2 {
    width: calc((100% - 2%) / 2);
    margin: 0.5%;
  }
  .row-list .col-3 {
    width: calc((100% - 2%) / 2);
    margin: 0.5%;
  }
  .row-list .col-4 {
    width: calc((100% - 2%) / 2);
    margin: 0.5%;
  }
  .row-list .col-5 {
    width: calc((100% - 3%) / 3);
    margin: 0.5%;
  }
}
@media (max-width: 480px) {
  .row .col-2 {
    width: calc((100% - 0%) / 1);
  }
  .row .col-3 {
    width: calc((100% - 0%) / 1);
  }
  .row .col-4 {
    width: calc((100% - 0%) / 1);
  }
}
.order1 {
  order: 2;
}
@media (max-width: 768px) {
  .order1 {
    order: 1;
  }
}

.order2 {
  order: 1;
}
@media (max-width: 768px) {
  .order2 {
    order: 2;
  }
}

/*	余白
----------------------------------------------------*/
.m10 {
  margin: 1em;
}

.m10t {
  margin-top: 1em;
}

.m15t {
  margin-top: 1.5em;
}

.m20t {
  margin-top: 2em;
}

.m05b {
  margin-bottom: 0.5em;
}

.m10b {
  margin-bottom: 1em;
}

.m15b {
  margin-bottom: 1.5em;
}

.m20b {
  margin-bottom: 2em;
}

.p10 {
  padding: 1em;
}

.p15t {
  padding-top: 1.5em;
}

.p20tb {
  padding: 2em 0;
}

/*	アニメーション用
----------------------------------------------------*/
.delighter {
  transition: all 1.2s ease-out;
  transform: translateY(15%);
  opacity: 0;
  /* slide Up */
  /* slide left */
}
.delighter.started {
  transform: none;
  opacity: 1;
}
.delighter.ani-su {
  transition: all 0.8s ease-out;
  transform: translateY(10%);
  opacity: 0;
}
.delighter.ani-su.started {
  transform: none;
  opacity: 1;
}
.delighter.ani-l {
  transition: all 0.8s ease-out;
  transform: translatex(55%);
  opacity: 0;
}
.delighter.ani-l.started {
  transform: none;
  opacity: 1;
}
/*----------------------------------------------------
	リスト
----------------------------------------------------*/
ul.def-type {
  margin-left: 20px;
  margin-bottom: 20px;
}
ul.def-type li {
  margin: 5px 0;
  padding-left: 5px;
  list-style-type: disc;
  border: none;
  line-height: 1.4;
}

ol.def-type {
  margin-left: 20px;
}
ol.def-type li {
  margin: 5px 0;
  padding-left: 5px;
  list-style-type: decimal;
  border: none;
}

/*----------------------------------------------------
	table
----------------------------------------------------*/
.table-block {
  margin-bottom: 2em;
  font-size: 100%;
}
.table-block table {
  border-collapse: collapse;
  width: 100%;
}
@media (max-width: 768px) {
  .table-block table {
    width: 100%;
    min-width: 100%;
    border-top: 1px solid #CCC;
  }
}
.table-block table th {
  padding: 1em 0;
  line-height: 1.5;
  text-align: left;
  font-weight: 400;
  width: 100px;
  color: #1D1D1D;
  vertical-align: top;
}
@media (max-width: 768px) {
  .table-block table th {
    display: block;
    width: 100%;
    border: none;
    text-align: left;
  }
}
.table-block table td {
  padding: 1em 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .table-block table td {
    display: block;
    border: none;
    padding: 0 0 1em 0;
    border-bottom: 1px solid #CCC;
  }
}

.table-block2 {
  margin-bottom: 2em;
}
.table-block2 table {
  border-collapse: collapse;
  width: 100%;
}
@media (max-width: 768px) {
  .table-block2 table {
    width: 100%;
    min-width: 100%;
  }
}
.table-block2 table th {
  padding: 1em 1.5em;
  line-height: 1.5;
  border: 1px solid #CCCCCC;
  border-collapse: collapse;
  text-align: center;
  width: 25%;
  background-color: #CCCCCC;
}
@media (max-width: 768px) {
  .table-block2 table th {
    display: block;
    width: 100%;
    border: none;
    text-align: left;
  }
}
.table-block2 table td {
  padding: 1em 1.5em;
  line-height: 1.5;
  border: 1px solid #CCCCCC;
  border-collapse: collapse;
}
@media (max-width: 768px) {
  .table-block2 table td {
    display: block;
    border: none;
    padding: 1em 1.5em;
  }
}

.iframe-content {
  position: relative;
  padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
}

.iframe-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*----------------------------------------------------
	共通
----------------------------------------------------*/
#wrapper {
  max-width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
  padding-top: 80px;
}
@media (max-width: 960px) {
  #wrapper {
    padding-top: 60px;
  }
}

#container {
  padding: 0;
  background: #ecf7eb;
}

.contents {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5em;
}

article {
  margin-bottom: 3em;
}

.sp-text, .sp-img {
  display: none !important;
}

.pc-text, .pc-img {
  display: inherit !important;
}

@media (max-width: 768px) {
  .sp-text, .sp-img {
    display: none !important;
  }
  .pc-text, .pc-img {
    display: inherit !important;
  }
}
@media (max-width: 480px) {
  .sp-text, .sp-img {
    display: inherit !important;
  }
  .pc-text, .pc-img {
    display: none !important;
  }
}
.button {
  text-align: center;
  font-weight: bold;
  width: 85%;
  max-width: 400px;
  margin: 0.5em auto;
}
.button a {
  background: #E3E3E3;
  transition: all 0.3s;
  display: block;
  text-decoration: none;
  color: #000;
  border-radius: 1em;
  padding: 10px 5px;
}
.button a:hover {
  background: #1D1D1D;
  color: #FFF;
}
.button span {
  font-size: 100%;
}

.btn-more {
  width: 85%;
  max-width: 180px;
  margin: 1.5em 0;
  position: relative;
  overflow: hidden;
}
.btn-more a {
  position: relative;
  display: block;
  background: linear-gradient(120deg, #8BF796, #00C2FF);
  color: #000;
  text-decoration: none;
  border-radius: 50px;
  padding: 0 5px;
  transition: color 0.5s;
}
.btn-more a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #00C2FF, #00C2FF);
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 0;
}
.btn-more a img {
  position: relative;
  z-index: 1;
}
.btn-more a:hover {
  color: #FFF;
}
.btn-more a:hover::before {
  opacity: 1;
}

.btn-back {
  width: 85%;
  max-width: 180px;
  margin: 1.5em 1em;
}
.btn-back a {
  background: #00C2FF;
  transition: all 0.3s;
  display: block;
  text-decoration: none;
  color: #000;
  border-radius: 50px;
  padding: 0 5px;
}
.btn-back a:hover {
  background: #45b035;
  color: #FFF;
}
.btn-back span {
  font-size: 100%;
}

.btn-prev {
  width: 85%;
  max-width: 180px;
  margin: 1.5em 0;
}
.btn-prev a {
  position: relative;
  display: block;
  background: linear-gradient(120deg, #8BF796, #00C2FF);
  color: #000;
  text-decoration: none;
  border-radius: 50px;
  padding: 0 5px;
  transition: color 0.5s;
}
.btn-prev a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #00C2FF, #00C2FF);
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 0;
}
.btn-prev a img {
  position: relative;
  z-index: 1;
}
.btn-prev a:hover {
  color: #FFF;
}
.btn-prev a:hover::before {
  opacity: 1;
}
.btn-prev span {
  font-size: 100%;
}

hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #bbb;
}

/*	アニメーション用
----------------------------------------------------*/
/* slide Up */
.delighter.ani-su {
  transition: all 0.5s ease-out;
  transform: translateY(20%);
  opacity: 0;
}

.delighter.ani-su.started {
  transform: none;
  opacity: 1;
}

/* slide Up */
.delighter.ani-su1 {
  transition: all 0.5s ease-out;
  transform: translateY(45%);
  opacity: 0;
}

.delighter.ani-su1.started {
  transform: none;
  opacity: 1;
}

.delighter.ani-su2 {
  transition: all 1s ease-out;
  transform: translateY(45%);
  opacity: 0;
}

.delighter.ani-su2.started {
  transform: none;
  opacity: 1;
}

.delighter.ani-su3 {
  transition: all 1.5s ease-out;
  transform: translateY(45%);
  opacity: 0;
}

.delighter.ani-su3.started {
  transform: none;
  opacity: 1;
}

/* slide left */
.delighter.ani-l {
  transition: all 0.8s ease-out;
  transform: translateX(55%);
  opacity: 0;
}

.delighter.ani-l.started {
  transform: none;
  opacity: 1;
}

.delighter.ani-l1 {
  transition: all 0.6s ease-out;
  transform: translateX(25%);
  opacity: 0;
}

.delighter.ani-l1.started {
  transform: none;
  opacity: 1;
}

.delighter.ani-l2 {
  transition: all 0.7s ease-out;
  transform: translateX(30%);
  opacity: 0;
}

.delighter.ani-l2.started {
  transform: none;
  opacity: 1;
}

.delighter.ani-l3 {
  transition: all 1.2s ease-out;
  transform: translateX(50%);
  opacity: 0;
}

.delighter.ani-l3.started {
  transform: none;
  opacity: 1;
}

/* slide right */
.delighter.ani-r {
  transition: all 0.6s ease-out;
  transform: translateX(-55%);
  opacity: 0;
}

.delighter.ani-r.started {
  transform: none;
  opacity: 1;
}

.delighter.ani-r1 {
  transition: all 0.6s ease-out;
  transform: translateX(-25%);
  opacity: 0;
}

.delighter.ani-r1.started {
  transform: none;
  opacity: 1;
}

.delighter.ani-r2 {
  transition: all 0.7s ease-out;
  transform: translateX(-30%);
  opacity: 0;
}

.delighter.ani-r2.started {
  transform: none;
  opacity: 1;
}

.delighter.ani-r3 {
  transition: all 1.2s ease-out;
  transform: translateX(-50%);
  opacity: 0;
}

.delighter.ani-r3.started {
  transform: none;
  opacity: 1;
}

/* zoom */
.delighter.zoom {
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  scale: 0.5;
  opacity: 0;
}

.delighter.zoom.started {
  transform: none;
  scale: 1;
  opacity: 1;
}

/* poyon */
.delighter.poyon.started {
  animation-name: poyon;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes RightToLeft {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes SlideUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes poyon {
  0% {
    opacity: 0;
    transform: scale(0.2, 0.2) translate(0%, 0%);
  }
  15% {
    opacity: 0.1;
    transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  30% {
    opacity: 0.3;
    transform: scale(1.3, 0.8) translate(0%, 10%);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8, 1.3) translate(0%, -10%);
  }
  70% {
    opacity: 0.7;
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1) translate(0%, 0%);
  }
}
@keyframes katakata {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  21% {
    transform: translate(0, 0) rotate(0deg);
  }
  22% {
    transform: translate(0, 0) rotate(-3deg);
  }
  23% {
    transform: translate(0, -1px) rotate(0deg);
  }
  24% {
    transform: translate(0, -1px) rotate(3deg);
  }
  25% {
    transform: translate(1px, 0) rotate(-2deg);
  }
  26% {
    transform: translate(0, 1px) rotate(0deg);
  }
  27% {
    transform: translate(0, 0) rotate(3deg);
  }
  28% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
/*----------------------------------------------------
	header
----------------------------------------------------*/
header {
  color: #1D1D1D;
  width: 100%;
  height: 81px;
  padding: 0;
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  /*display: none;*/
  border-bottom: 1px solid #444;
}
@media (max-width: 960px) {
  header {
    height: 61px;
  }
}

.c_head {
  width: 100%;
  max-width: 960px;
  background: #FFF;
  margin: 0 auto;
  height: 80px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 960px) {
  .c_head {
    height: 60px;
  }
}
.c_head .logo {
  padding: 5px 10px;
  text-align: left;
  font-size: 12px;
  font-weight: bold;
}
@media (max-width: 480px) {
  .c_head .logo {
    padding: 5px;
  }
}
.c_head .logo img {
  max-height: 50px;
}
@media (max-width: 960px) {
  .c_head .logo img {
    height: 50px;
  }
}
.c_head nav {
  display: flex;
}
.c_head .h-nav {
  display: flex;
  flex-flow: column;
  margin-left: auto;
  justify-content: space-between;
  font-weight: bold;
}
@media (max-width: 960px) {
  .c_head .h-nav {
    display: none;
  }
}
.c_head .h-nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c_head .h-nav ul.c-nav {
  padding: 10px;
  height: 60px;
  line-height: 1.5;
  text-align: center;
}
.c_head .h-nav ul.c-nav li {
  margin: 0 1.5em;
  font-family: "Montserrat", sans-serif;
  font-size: 85%;
  font-weight: 800;
}
.c_head .h-nav ul.c-nav li img {
  width: 35px;
  margin: 0 auto;
}
.c_head .h-nav ul.c-nav li span {
  display: block;
}
.c_head .h-nav ul.c-nav .icon .path {
  fill: #FFF;
  stroke: #000;
  stroke-width: 1.5;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.c_head .h-nav ul.c-nav .icon:hover .path {
  fill: #45b035;
  stroke: #45b035;
}
.c_head .h-nav ul li {
  margin: 0 0.5em;
  align-items: center;
  white-space: nowrap;
}
.c_head .h-nav ul li.crt a {
  color: #0E5B87;
}
.c_head .h-nav ul li.no-link {
  color: #AFAFAF;
}
.c_head .h-nav a {
  text-decoration: none;
  color: #000;
}
.c_head .h-nav a:hover {
  color: #45B035;
}
.c_head .menu-nav {
  display: none;
}
@media (max-width: 960px) {
  .c_head .menu-nav {
    display: block;
  }
}

/*menu*/
.menu-nav {
  height: 50px;
  width: 70px;
  position: absolute;
  top: 5px;
  right: 0;
  font-size: 13px;
  transition: all 0.3s;
}
.menu-nav:hover {
  cursor: pointer;
}
.menu-nav:hover .menu__line--center {
  width: 70%;
}

.menu {
  height: 20px;
  position: absolute;
  right: 16px;
  top: 15px;
  width: 40px;
  z-index: 99;
}
.menu.close {
  top: 20px;
  cursor: pointer;
}

.menu__line {
  background: #000;
  display: block;
  height: 1px;
  position: absolute;
  transition: all 0.3s;
  width: 100%;
}

.menu__line--top.active {
  top: 8px;
  transform: rotate(45deg);
}

.menu__line--center {
  top: 9px;
  left: 5%;
  width: 90%;
}
.menu__line--center.active {
  transform: scaleX(0);
}

.menu__line--bottom {
  bottom: 0;
}
.menu__line--bottom.active {
  bottom: 10px;
  transform: rotate(135deg);
}

@media (max-width: 1024px) {
  .c_head .h-nav {
    display: flex;
  }
  .c_head .menu-nav {
    display: none;
  }
}
@media (max-width: 960px) {
  .c_head .h-nav {
    display: none;
  }
  .c_head .menu-nav {
    display: flex;
  }
}
@media (max-width: 480px) {
  .c_head .h-nav {
    display: none;
  }
  .c_head .menu-nav {
    display: flex;
  }
}
/*----------------------------------------------------
	footer
----------------------------------------------------*/
footer {
  width: 100%;
  padding: 0;
  margin: 0;
}
footer.bg-kumo-b {
  padding-top: 80px;
  padding-bottom: 0;
}
footer .f-logo {
  padding-top: 80px;
}
footer img {
  max-width: 240px;
}
footer .copyright {
  width: 100%;
  font-size: 13px;
  text-align: center;
  padding: 1.2em 1em;
  margin: 0;
}
@media (max-width: 480px) {
  footer .copyright {
    font-size: 70%;
  }
}

/* page-top */
#page-top {
  text-align: center;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}
#page-top .pagetop {
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 2;
}
#page-top .pagetop .p-line {
  position: absolute;
  top: 0;
  border: 3px solid #000;
  width: 50px;
  transform-origin: top left;
  transition: all 0.3s ease-out;
}
#page-top .pagetop .p-line.active {
  transform: rotate(-135deg);
}
#page-top .pagetop .pt-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  z-index: 1;
}
#page-top .pagetop .pt-icon img {
  height: 50px;
}
#page-top .pagetop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #000;
  transition: all 0.3s;
  position: relative;
  z-index: 3;
}
#page-top .pagetop a:hover {
  background: #000;
}

/*----------------------------------------------------
	nav
----------------------------------------------------*/
.gnav {
  background: #ECF7EB;
  display: none;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9998;
  overflow-y: scroll;
}
.gnav .contents {
  position: relative;
}
.gnav .row {
  height: 100%;
  display: flex;
  margin: 0 auto;
  max-width: 960px;
}
.gnav section {
  padding: 1em 0;
  padding-top: 50px;
  padding-bottom: 0;
  line-height: 1;
  width: 100%;
}
.gnav section .logo {
  width: 260px;
  max-width: 50%;
}

.gnav-list {
  padding: 0.5em 0;
  margin-bottom: 1em;
  width: 100%;
}

.gnav-list li {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  margin: 0;
  padding: 0;
  padding-left: 60px;
  text-align: left;
  background-repeat: no-repeat;
  background-size: 45px 45px;
  background-position: center left;
}
.gnav-list li.navi01 {
  background-image: url("../../img/navi-icon01.png");
}
.gnav-list li.navi02 {
  background-image: url("../../img/navi-icon02.png");
}
.gnav-list li.navi03 {
  background-image: url("../../img/navi-icon03.png");
}
.gnav-list li.navi04 {
  background-image: url("../../img/navi-icon04.png");
}
.gnav-list li.navi05 {
  background-image: url("../../img/navi-icon05.png");
}
.gnav-list li.navi06 {
  background-image: url("../../img/navi-icon06.png");
}

.gnav-list li a {
  display: block;
  padding: 1.5em 0;
  text-decoration: none;
  color: #000;
  font-size: 110%;
  font-weight: bold;
  transition: all 0.3s;
}

.gnav-list li a:hover {
  color: #000;
  text-decoration: none;
}

/*----------------------------------------------------
	トップページ
----------------------------------------------------*/
.home-first {
  height: calc(80vh - 100px);
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background: #FFF;
  position: relative;
}
@media (max-width: 480px) {
  .home-first {
    height: 70vh;
  }
}
.home-first .line {
  position: absolute;
  bottom: -1px;
  left: 0;
  background: #FFF;
  width: 100%;
  height: 3px;
}

.home-first_inner {
  padding: 0;
  width: 100%;
  max-width: 960px;
  text-align: center;
  display: flex;
  align-items: center;
  flex-flow: column;
}

/* logo用
----------------------------*/
.color01 {
  background: linear-gradient(30deg, #8BF796, #38AEF1);
}

.color02 {
  background: linear-gradient(30deg, #FF9D9A, #CDF579);
}

.color03 {
  background: linear-gradient(30deg, #F15836, #FFC85B);
}

.color04 {
  background: #0E5B87;
}

.color05 {
  background: #000;
}

.color06 {
  background: #45B035;
}

.main-logo {
  position: relative;
  margin: 0 auto;
  max-width: 900px;
  width: 100%;
  aspect-ratio: 2/1;
}
.main-logo .logo-mask {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}
.main-logo .kick {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 100;
  width: 100px;
  animation-name: poyon;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}
@media (max-width: 768px) {
  .main-logo .kick {
    width: 75px;
  }
}
@media (max-width: 480px) {
  .main-logo .kick {
    width: 50px;
    bottom: 0;
  }
}

.message {
  font-size: 150%;
  font-weight: bold;
}

.swiper-container {
  width: 95%;
  height: 95%;
  margin: 0 auto;
  overflow: hidden;
  border-top: none;
  margin-top: 1px;
}
.swiper-container .slide-container {
  margin: 0 auto;
  max-width: 560px;
  border: 5px solid #FFF;
}

/* img横スクロール
----------------------------*/
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
_:-ms-lang(x)::-ms-backdrop,
.scroll-img {
  display: -ms-grid;
  overflow: hidden;
}

.scroll-img_wrap {
  display: flex;
  overflow: hidden;
}

.scroll-img_list {
  display: flex;
  list-style: none;
  animation: infinity-scroll-left 95s infinite linear 0.5s both;
}

.scroll-img_item {
  width: 20vw;
}
@media (max-width: 1024px) {
  .scroll-img_item {
    width: 33.3333333333vw;
  }
}
@media (max-width: 768px) {
  .scroll-img_item {
    width: 50vw;
  }
}
@media (max-width: 480px) {
  .scroll-img_item {
    width: 66.6666666667vw;
  }
}

.scroll-img_item > img {
  width: 100%;
  padding: 0.5em;
}

.scroll-img_item img {
  border-radius: 20px;
}

/* 背景
----------------------------*/
.bg-kumo-a {
  padding-top: 100px;
  background-image: url("../..//img/bg-kumo-a01.png"), url("../..//img/bg-kumo-a02.png"), url("../..//img/bg-kumo-a03.png"), url("../..//img/bg-kumo-a04.png");
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: top left, 25% 0, 75% 0, top right;
  background-size: 50% auto, 50% auto, 50% auto, 50% auto;
}
@media (max-width: 1024px) {
  .bg-kumo-a {
    background-size: 600px auto, 600px auto, 600px auto, 600px auto;
  }
}
@media (max-width: 768px) {
  .bg-kumo-a {
    background-size: 400px auto, 400px auto, 400px auto, 400px auto;
  }
}

.bg-kumo-b {
  padding-bottom: 100px;
  background-image: url("../..//img/bg-kumo-b01.png"), url("../..//img/bg-kumo-b02.png"), url("../..//img/bg-kumo-b03.png"), url("../..//img/bg-kumo-b04.png");
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: left bottom, 25% bottom, 75% bottom, right bottom;
  background-size: 50% auto, 50% auto, 50% auto, 50% auto;
}
@media (max-width: 1024px) {
  .bg-kumo-b {
    background-size: 600px auto, 600px auto, 600px auto, 600px auto;
  }
}
@media (max-width: 768px) {
  .bg-kumo-b {
    background-size: 400px auto, 400px auto, 400px auto, 400px auto;
  }
}

.bg-mind {
  background: #FFF;
  padding-top: 0;
}

.bg-member {
  background: url("../../img/bg-member-top.png") no-repeat center top #FFF;
  background-size: 100% auto;
  padding-top: 80px;
}

.member-bg-img {
  height: 400px;
  background-image: url("../../img/bg-wave-a.png"), url("../../img/bg-wave-b.png"), url("../../img/member-bg-img.jpg");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 100% auto, 100% auto, cover;
  background-position: center 0, center bottom, center center;
}

/* 
----------------------------*/
#do .c-icon-area {
  background: url("../../img/title-bg-do.png") no-repeat center center;
  background-size: 1800px auto;
  padding-top: 180px;
}
@media (max-width: 768px) {
  #do .c-icon-area {
    background-size: 1200px auto;
  }
}
@media (max-width: 480px) {
  #do .c-icon-area {
    background-size: 900px auto;
    padding-top: 100px;
    background-position: center bottom;
  }
}

#mind .c-icon-area {
  background: url("../../img/title-bg-mind.png") no-repeat center center;
  background-size: 1800px auto;
}
@media (max-width: 768px) {
  #mind .c-icon-area {
    background-size: 1200px auto;
  }
}
@media (max-width: 480px) {
  #mind .c-icon-area {
    background-size: 900px auto;
  }
}

#works .c-icon-area {
  background: url("../../img/title-bg-works.png") no-repeat center bottom;
  background-size: 1800px auto;
  padding-top: 60px;
}
@media (max-width: 768px) {
  #works .c-icon-area {
    background-size: 1200px auto;
  }
}
@media (max-width: 480px) {
  #works .c-icon-area {
    background-size: 900px auto;
    padding-top: 80px;
  }
}

#member .c-icon-area {
  background: url("../../img/title-bg-member.png") no-repeat center center;
  background-size: 1800px auto;
}
@media (max-width: 768px) {
  #member .c-icon-area {
    background-size: 1200px auto;
  }
}
@media (max-width: 480px) {
  #member .c-icon-area {
    background-size: 900px auto;
  }
}

#info .c-icon-area {
  background: url("../../img/title-bg-info.png") no-repeat center center;
  background-size: 1800px auto;
  padding-top: 60px;
}
@media (max-width: 768px) {
  #info .c-icon-area {
    background-size: 1200px auto;
  }
}
@media (max-width: 480px) {
  #info .c-icon-area {
    background-size: 900px auto;
  }
}

.c-icon-area .c-icon {
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
  padding: 1.5em;
  position: relative;
}
.c-icon-area .c-icon img {
  width: 115px;
}
@media (max-width: 768px) {
  .c-icon-area .c-icon img {
    width: 85px;
  }
}
@media (max-width: 480px) {
  .c-icon-area .c-icon img {
    width: 65px;
  }
}
.c-icon-area .c-icon .icon-do-illust {
  position: absolute;
  right: 20px;
  bottom: 0;
}
.c-icon-area .c-icon .icon-do-illust img {
  width: 260px;
}
@media (max-width: 480px) {
  .c-icon-area .c-icon .icon-do-illust img {
    width: 200px;
  }
}
.c-icon-area .c-icon .icon-works-illust {
  position: absolute;
  right: 20px;
  bottom: 0;
}
.c-icon-area .c-icon .icon-works-illust img {
  width: 260px;
}
@media (max-width: 480px) {
  .c-icon-area .c-icon .icon-works-illust img {
    width: 200px;
  }
}
.c-icon-area .c-icon .icon-mind-illust {
  position: absolute;
  right: 20px;
  bottom: 0;
}
.c-icon-area .c-icon .icon-mind-illust img {
  width: 260px;
}
@media (max-width: 480px) {
  .c-icon-area .c-icon .icon-mind-illust img {
    width: 200px;
  }
}
.c-icon-area .c-icon .icon-member-illust {
  position: absolute;
  right: 0;
  top: 10px;
}
.c-icon-area .c-icon .icon-member-illust img {
  width: 260px;
}
@media (max-width: 480px) {
  .c-icon-area .c-icon .icon-member-illust img {
    width: 200px;
  }
}
.c-icon-area .c-icon .icon-info-illust {
  position: absolute;
  right: 20px;
  bottom: 0;
}
.c-icon-area .c-icon .icon-info-illust img {
  width: 120px;
}
@media (max-width: 480px) {
  .c-icon-area .c-icon .icon-info-illust img {
    width: 80px;
  }
}

.c-title {
  font-family: "Montserrat", sans-serif;
  font-size: 230%;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
}

.s-title {
  /*font-family: "myriad-variable", sans-serif;*/
  font-family: "Montserrat", sans-serif;
  font-size: 85%;
  font-weight: 400;
}

#do .do-img {
  position: relative;
  text-align: right;
}
#do .do-img .do-img01 {
  width: 75%;
  margin-left: auto;
}
#do .do-img .do-illust {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 105px;
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#mind {
  /* イラスト左　画像右　*/
  /* イラスト右　画像左　*/
}
#mind .row {
  align-items: center;
}
#mind .number {
  width: 74px;
  margin-bottom: 1em;
}
#mind .mind-img {
  position: relative;
  text-align: right;
}
#mind .mind-img .mind-img01 {
  width: 75%;
  margin-left: auto;
}
#mind .mind-img .mind-illust {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 105px;
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#mind .mind-img_verB {
  position: relative;
  text-align: left;
}
#mind .mind-img_verB .mind-img01 {
  width: 75%;
  margin-right: auto;
}
#mind .mind-img_verB .mind-illust {
  position: absolute;
  bottom: 10px;
  right: 0;
  width: 105px;
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#works {
  /* イラスト左　画像右　*/
  /* イラスト右　画像左　*/
}
#works .works-img {
  position: relative;
  text-align: right;
}
#works .works-img .works-img01 {
  width: 75%;
  margin-left: auto;
}
#works .works-img .works-illust {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 105px;
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#works .works-img_verB {
  position: relative;
  text-align: left;
}
#works .works-img_verB .works-img01 {
  width: 75%;
  margin-right: auto;
}
#works .works-img_verB .works-illust {
  position: absolute;
  bottom: 10px;
  right: 0;
  width: 105px;
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.topics {
  background: #FFF;
  border-radius: 10px;
  padding: 1em;
}
.topics .topics-inner {
  border: 2px dotted #45B035;
  border-radius: 10px;
  padding: 1em 1.5em;
}

#member .member-illust {
  width: 180px;
  max-width: 50%;
  /*transform: translateY(0); // パララックス用に追加
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);*/
}
#member .col-2a {
  width: 40%;
}
@media (max-width: 480px) {
  #member .col-2a {
    width: 100%;
  }
}
#member .col-2b {
  width: 60%;
}
@media (max-width: 480px) {
  #member .col-2b {
    width: 100%;
  }
}

#info .info-illust {
  width: 75px;
}
@media (max-width: 480px) {
  #info .info-illust {
    width: 65px;
  }
}
#info .topics-list {
  padding: 1em 0;
}
#info .topics-list li {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid #CCC;
}
@media (max-width: 480px) {
  #info .topics-list li {
    flex-flow: column;
  }
}
#info .topics-list li .topics-img {
  width: 20%;
  margin-right: 10px;
}
@media (max-width: 480px) {
  #info .topics-list li .topics-img {
    width: 100%;
  }
  #info .topics-list li .topics-img img {
    width: 100%;
  }
}

#contact .contact-form input, #contact .contact-form textarea {
  width: 100%;
  border: 1px solid #CCC;
  padding: 10px;
  border-radius: 5px;
  background: #FFF;
}
#contact .contact-form .table-block {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
#contact .contact-form .table-block table {
  width: 100%;
  min-width: 100%;
  border-top: 1px solid #CCC;
}
#contact .contact-form .table-block th {
  padding: 1em 0;
  width: 100px;
  color: #1D1D1D;
  vertical-align: top;
  display: block;
  width: 100%;
  border: none;
  text-align: left;
}
#contact .contact-form .table-block td {
  padding: 1em 0;
  line-height: 1.5;
  display: block;
  border: none;
  padding: 0 0 1em 0;
  border-bottom: 1px solid #CCC;
}
#contact .contact-form .contact-form-btn {
  padding: 2em;
  text-align: center;
}
#contact .contact-form .contact-form-btn .btn-submit {
  background: #1D1D1D;
  color: #FFF;
  padding: 1em 2em;
  border-radius: 5px;
  width: 200px;
  cursor: pointer;
  transition: 0.3s;
}
#contact .contact-form .contact-form-btn .btn-submit:hover {
  opacity: 0.6;
}

/*　scroll表示用  */
#scroll-down {
  text-align: center;
  padding: 1em;
}
#scroll-down .bounce {
  animation-name: bounce;
  transform-origin: center bottom;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
#scroll-down .animated {
  animation-duration: 2s;
  animation-fill-mode: both;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}
.arrow {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 24px;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 2px);
  width: 4px;
  height: 25px;
  border-radius: 9999px;
  background-color: #000000;
  transform-origin: 50% calc(100% - 2px);
}

.arrow::before {
  transform: rotate(45deg);
}

.arrow::after {
  transform: rotate(-45deg);
}

/*----------------------------------------------------
	ページ
----------------------------------------------------*/
.page {
  background: #ECF7EB;
}

#about .c-icon-area {
  background: url("../../img/title-bg-do.png") no-repeat center center;
  background-size: 1800px auto;
  padding-top: 80px;
}
@media (max-width: 768px) {
  #about .c-icon-area {
    background-size: 1200px auto;
  }
}
@media (max-width: 480px) {
  #about .c-icon-area {
    background-size: 900px auto;
    padding-top: 50px;
  }
}

.btn-nav {
  padding: 1em 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*----------------------------------------------------
	詳細ページ
----------------------------------------------------*/
.bg-profile {
  background: url("../../img/bg-member-top.png") no-repeat center top #FFF;
  background-size: 100% auto;
  padding-top: 100px;
}

.bg-profile-inner {
  background: url("../../img/bg-wave-b.png") no-repeat center bottom #FFF;
  background-size: 100% auto;
  padding-bottom: 80px;
}

.profile-bg-illust {
  background: url("../../img/about-bg-illust.png") no-repeat right top 40px;
  background-size: 50% auto;
  padding: 4em 1.5em;
}

.member-bg-illust {
  background: url("../../img/about-bg-illust2.png") no-repeat right top 40px;
  background-size: 30% auto;
  padding: 4em 1.5em;
}

.member-block-inner {
  width: 80%;
  max-width: 600px;
  background: url("../../img/member-bg-kumo01.png") no-repeat center center;
  background-size: 100% auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2em 7% 2em 13%;
  aspect-ratio: 2/1;
}
@media (max-width: 480px) {
  .member-block-inner {
    width: 90%;
  }
}
.member-block-inner .face {
  width: 25%;
}
.member-block-inner .member-info {
  width: 70%;
  font-size: 70%;
}
.member-block-inner .member-info h3 {
  font-size: 200%;
  margin-bottom: 0.5em;
}
.member-block-inner .member-info p {
  line-height: 1.5;
}

.member01 > .member-block-inner {
  background-image: url("../../img/member-bg-kumo01.png");
}
.member01 > .member-block-inner .member-info-illust {
  position: absolute;
  top: -10px;
  right: 40px;
  width: 100px;
}
.member01 > .member-block-inner .member-info-illust img {
  width: 100%;
}
@media (max-width: 620px) {
  .member01 > .member-block-inner .member-info-illust {
    top: -10px;
    right: 20px;
    width: 60px;
  }
}
@media (max-width: 480px) {
  .member01 > .member-block-inner .member-info-illust {
    top: -10px;
    right: 10px;
    width: 50px;
  }
}

.member02 > .member-block-inner {
  background-image: url("../../img/member-bg-kumo02.png");
  padding: 2.5em 7% 1.5em 13%;
  margin-left: auto;
  margin-top: -2em;
}
@media (max-width: 480px) {
  .member02 > .member-block-inner {
    margin-top: -1em;
  }
}
.member02 > .member-block-inner .member-info-illust {
  position: absolute;
  bottom: 20px;
  right: 40px;
  width: 100px;
}
.member02 > .member-block-inner .member-info-illust img {
  width: 100%;
}
@media (max-width: 620px) {
  .member02 > .member-block-inner .member-info-illust {
    bottom: 20px;
    right: 20px;
    width: 60px;
  }
}
@media (max-width: 480px) {
  .member02 > .member-block-inner .member-info-illust {
    bottom: 20px;
    right: 10px;
    width: 50px;
  }
}

.member03 > .member-block-inner {
  background-image: url("../../img/member-bg-kumo03.png");
  margin-left: 2em;
  margin-top: -2em;
}
@media (max-width: 480px) {
  .member03 > .member-block-inner {
    margin-left: 0;
    margin-top: -0.5em;
  }
}
.member03 > .member-block-inner .member-info-illust {
  position: absolute;
  bottom: 20px;
  right: 40px;
  width: 100px;
}
.member03 > .member-block-inner .member-info-illust img {
  width: 100%;
}
@media (max-width: 620px) {
  .member03 > .member-block-inner .member-info-illust {
    bottom: 20px;
    right: 20px;
    width: 60px;
  }
}
@media (max-width: 480px) {
  .member03 > .member-block-inner .member-info-illust {
    bottom: 20px;
    right: 10px;
    width: 50px;
  }
}

/*----------------------------------------------------
	WORKS
----------------------------------------------------*/
.cate-nav {
  margin: 2em 0;
}

.selectbox-001 {
  position: relative;
  width: 300px;
  margin: 10px auto;
}

.selectbox-001::before,
.selectbox-001::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.selectbox-001::before {
  display: inline-block;
  right: 0;
  width: 2.8em;
  height: 2.8em;
  border-radius: 0 3px 3px 0;
  background-color: #000000;
}

.selectbox-001::after {
  position: absolute;
  top: 50%;
  right: 1.4em;
  transform: translate(50%, -50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
}

.selectbox-001 select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  min-width: 300px;
  height: 2.8em;
  padding: 0.4em 3.6em 0.4em 0.8em;
  border: 1px solid #000;
  border-radius: 3px;
  background-color: #ffffff;
  color: #333;
  font-size: 1em;
  cursor: pointer;
}

.selectbox-001 select:focus {
  outline: 2px solid #000000;
}

.works-list {
  padding: 2em 0;
}
.works-list ul {
  display: grid;
  -moz-column-gap: 2.5em;
       column-gap: 2.5em;
  row-gap: 2.5em;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .works-list ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.works-list .works-thumb {
  margin-bottom: 0.5em;
}

.cate-icon {
  font-size: 75%;
  color: #FFF;
  padding: 3px 7px;
  border-radius: 5px;
  letter-spacing: 0;
}

.cate-art {
  background: #00785a;
}

.cate-web {
  background: #187fc3;
}

.cate-graphic {
  background: #46c8be;
}

.cate-logo {
  background: #dc0021;
}

.cate-goods {
  background: #ff7daa;
}

.cate-event {
  background: #f5aa00;
}

.cate-kick {
  background: #45b035;
}

.post-img {
  margin-bottom: 1em;
}

.check-test {
  background-color: #F00;
}