@charset "UTF-8";
/*! ------------------------------------------------------
Property of: GLAZE.inc
Author URI: https://glazestyle.com/
Author: toshiyuki TOKOI
Description: to HKJK by GLAZE.inc
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
------------------------------------------------------- */
html {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
  word-break: normal;
}

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

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

* {
  margin: 0;
  padding: 0;
}

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

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

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

a {
  background-color: transparent;
}

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

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

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

iframe {
  border-style: none;
}

input {
  border-radius: 0;
}

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

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

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

textarea {
  overflow: auto;
  resize: vertical;
}

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

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

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

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

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

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

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

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

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

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

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

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

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

[disabled] {
  cursor: default;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

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

[aria-controls] {
  cursor: pointer;
}

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

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

/*! ------------------------------------------------------
Property of: GLAZE.inc
Author URI: https://glazestyle.com/
Author: toshiyuki TOKOI
Description: to HKJK by GLAZE.inc
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
------------------------------------------------------- */
/*! ------------------------------------------------------
scroll parts
------------------------------------------------------- */
.scroll {
  position: absolute;
  width: 1em;
  height: 3em;
  bottom: 5em;
  cursor: pointer;
  color: #666;
  text-decoration: none;
  border: 2px solid #666;
  border-radius: 1em;
}
.scroll::before {
  content: "scroll";
  position: absolute;
  top: -1.5em;
  left: -0.7em;
}
.scroll span {
  position: absolute;
  top: 15%;
  left: 0.25em;
  display: block;
  width: 0.25em;
  height: 0.25em;
  border-radius: 50%;
  background: #666;
  animation: 2s small-dot-move infinite running ease-out;
}

@keyframes small-dot-move {
  from {
    top: 15%;
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  to {
    top: 80%;
    opacity: 0.3;
  }
}
.arrow_01 {
  position: absolute;
  top: 3.5em;
  left: 0.25em;
  width: 0;
  height: 5em;
  border: 1px solid #666;
}
.arrow_01::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: -2px;
  width: 2px;
  height: 10px;
  border-top: 10px solid #666;
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
}

.arrowWrap {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 200px;
}

.arrowInner p {
  font-size: 12px;
  text-align: end;
  transform: rotate(90deg);
}

.arrow {
  width: 1px;
  height: 100px;
  margin: 50px auto 0;
  background-color: #eee;
  position: relative;
  overflow: hidden;
}
.arrow::before {
  content: "";
  width: 1px;
  height: 100px;
  margin: 50px auto 0;
  background-color: #000;
  position: absolute;
  top: -150px;
  left: 0;
  animation: arrow 2.5s ease 0s infinite normal;
}

@keyframes arrow {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  60% {
    transform: translate3d(-50%, 100px, 0);
  }
  100% {
    transform: translate3d(-50%, 100px, 0);
  }
}
/*! ------------------------------------------------------
ticKer
------------------------------------------------------- */
#ticKer {
  max-width: 800px;
  background: #E7645C;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  color: #fff;
}

#ticKer a {
  color: inherit;
  text-decoration: none;
  line-height: 1;
}

#ticKer ul {
  padding: 0;
  margin: 0 auto;
  transition: opacity 0.25s ease;
  opacity: 1;
}

#ticKer li {
  list-style-type: none;
  line-height: 4em;
  padding-left: 25px;
  font-size: 1.5rem;
  text-align: left;
  font-weight: 600;
}

.top-information p.info_title {
  margin: 0 1.5rem;
  border-left: 1px solid;
  padding: 1rem 2rem;
}

#ticKer li span {
  font-family: "Rajdhani", sans-serif;
  border-right: 1px solid;
  padding: 1rem 2rem;
  margin-right: 2rem;
  font-weight: 500;
  font-style: normal;
}

.static-fade {
  opacity: 0;
  animation: 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0s 1 normal forwards running fall_in;
  animation-delay: 1s;
}

@keyframes fall_in {
  100% {
    opacity: 1;
  }
}
/* slick-Required */
.slider {
  visibility: hidden;
}

.slider.slick-initialized {
  visibility: visible;
}

.slider {
  opacity: 0;
  transition: opacity 0.25s ease;
}

.slider.slick-initialized {
  opacity: 1;
}

/*! ------------------------------------------------------
ticKer
------------------------------------------------------- */
.glz_bgpattern_01 {
  background-color: #fff;
  background-size: 80px 80px;
  background-repeat: repeat;
  background-image: linear-gradient(rgba(230, 230, 230, 0.4) 1%, rgba(230, 230, 230, 0.4) 1%, transparent 1%, transparent 99%, rgba(230, 230, 230, 0.4) 99%, rgba(230, 230, 230, 0.4) 100%), linear-gradient(90deg, rgba(230, 230, 230, 0.4) 1%, rgba(230, 230, 230, 0.4) 1%, transparent 1%, transparent 99%, rgba(230, 230, 230, 0.4) 99%, rgba(230, 230, 230, 0.4) 100%), linear-gradient(transparent, transparent 25%, rgba(210, 210, 210, 0.2) 25%, rgba(210, 210, 210, 0.2) 26%, transparent 26%, transparent 50%, rgba(210, 210, 210, 0.2) 50%, rgba(210, 210, 210, 0.2) 51%, transparent 51%, transparent 75%, rgba(210, 210, 210, 0.2) 75%, rgba(210, 210, 210, 0.2) 76%, transparent 76%, transparent 100%), linear-gradient(90deg, transparent, transparent 25%, rgba(210, 210, 210, 0.2) 25%, rgba(210, 210, 210, 0.2) 26%, transparent 26%, transparent 50%, rgba(210, 210, 210, 0.2) 50%, rgba(210, 210, 210, 0.2) 51%, transparent 51%, transparent 75%, rgba(210, 210, 210, 0.2) 75%, rgba(210, 210, 210, 0.2) 76%, transparent 76%, transparent 100%);
}

/*! 
------------------------------------------------------
Btn
------------------------------------------------------- */
.glz-btn_10 {
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-align: center;
  text-transform: capitalize;
  border: 3px solid #E7645C;
  border-radius: 50px;
  position: relative;
  overflow: hidden !important;
  transition: all 0.3s ease-in-out;
  background: #fff;
  z-index: 2;
  padding: 15px 100px;
  color: #E7645C;
  text-align: center;
  position: relative;
  display: inline-block;
}
.glz-btn_10:hover {
  border: 3px solid #E7645C;
  color: #fff !important;
}
.glz-btn_10::before {
  content: "";
  width: 0%;
  height: 100%;
  display: block;
  background: #E7645C;
  position: absolute;
  transform: skewX(-20deg);
  left: -10%;
  opacity: 1;
  top: 0;
  z-index: -12;
  transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: 2px 0px 14px rgba(0, 0, 0, 0.6);
}
.glz-btn_10::after {
  content: "";
  width: 0%;
  height: 100%;
  display: block;
  background: #42b05a;
  position: absolute;
  transform: skewX(-20deg);
  left: -10%;
  opacity: 0;
  top: 0;
  z-index: -15;
  transition: all 0.4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  box-shadow: 2px 0px 14px rgba(0, 0, 0, 0.6);
}
.glz-btn_10:hover::before, .glz-btn_10:hover::before {
  opacity: 1;
  width: 116%;
}
.glz-btn_10:hover::after, .glz-btn_10:hover::after {
  opacity: 1;
  width: 120%;
}

.anime-swing {
  position: absolute;
  transform: translateX(-50%);
  animation: wobbling_x 0.8s ease-in-out infinite alternate, wobbling_y 1.1s ease-in-out infinite alternate;
}

.anime-bound {
  position: absolute;
  transform: translateX(-50%);
  animation: bound-anime 1s infinite;
}

@keyframes wobbling_x {
  0% {
    margin-left: 8px;
  }
  100% {
    margin-left: 0px;
  }
}
@keyframes wobbling_y {
  0% {
    margin-top: 0px;
  }
  100% {
    margin-top: 8px;
  }
}
@keyframes bound-anime {
  0%, 100% {
    top: 0;
    transform: scale(1);
  }
  30% {
    top: -60%;
    transform: scale(0.96, 1.04);
  }
  60% {
    transform: scale(1);
  }
  90% {
    top: 0;
    transform: scale(1.15, 0.9);
  }
}
.highlight span {
  position: relative;
  background: linear-gradient(transparent 40%, yellow 40%);
}

/*! 
------------------------------------------------------
Cheeseburger Menu
------------------------------------------------------- */
.toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 101;
  margin: 0;
  padding: 0;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background-color: black;
  transition: background-color 0.2s ease;
  cursor: pointer;
}
.toggle > span, .toggle:before, .toggle:after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 4px;
  margin: -2px 0 0 -15px;
  border-radius: 2px;
}
.toggle > span {
  background-color: #e7645c;
  transition: opacity 0.3s ease;
  will-change: opacity;
}
.toggle::before, .toggle::after {
  content: "";
  background-color: #42b05a;
  transition: background-color 0.3s ease;
}
.toggle::before {
  transform: translateY(-10px);
}
.toggle::after {
  transform: translateY(10px);
}
.toggle[aria-expanded=true] > span {
  opacity: 0;
}
.toggle[aria-expanded=true]::before, .toggle[aria-expanded=true]::after {
  background-color: white;
}
.toggle[aria-expanded=true]::before {
  animation: 0.3s ease closeBar1 forwards;
}
.toggle[aria-expanded=true]::after {
  animation: 0.3s ease closeBar2 forwards;
}
.toggle.-close::before {
  animation: 0.3s ease closeBar1Rev forwards;
}
.toggle.-close::after {
  animation: 0.3s ease closeBar2Rev forwards;
}

.nav {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgba(231, 100, 92, 0.8);
  color: #fff;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav[aria-hidden=true] {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.nav[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

@keyframes closeBar1 {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(45deg);
  }
}
@keyframes closeBar2 {
  0% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(-45deg);
  }
}
@keyframes closeBar1Rev {
  0% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes closeBar2Rev {
  0% {
    transform: translateY(0) rotate(-45deg);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(10px);
  }
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  font-size: 1.4rem;
  color: #444;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "メイリオ", Meiryo, Helvetica, Arial, Verdana, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 500;
  position: relative;
  z-index: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

#open-line {
  width: 0%;
  height: 1px;
  background: #E7645C;
  position: fixed;
  top: 50%;
  z-index: 5;
}

#curtain-up {
  width: 100%;
  height: 50%;
  background: rgba(255, 255, 255, 0.85);
  position: fixed;
  top: 0;
  z-index: 5;
}

#curtain-down {
  width: 100%;
  height: 50%;
  background: rgba(255, 255, 255, 0.85);
  position: fixed;
  bottom: 0;
  z-index: 5;
}

h1 {
  font-family: "maru-maru-gothic-bsr-stdn", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.7rem;
  letter-spacing: -0.4rem;
  color: #d5266f;
}
h1 span {
  letter-spacing: -0.2rem;
  color: #686868;
  font-size: 2.1rem;
  padding-left: 0.75rem;
}
h1#site-id img {
  margin-right: 1rem;
  vertical-align: middle;
}

#global-menu {
  display: flex;
  align-items: center;
  margin: 10px;
  border-radius: 60px;
  padding: 10px;
  justify-content: space-between;
}
#global-menu .g-nav ul {
  margin-left: auto;
  display: flex;
  font-size: 1.6rem;
  font-weight: 600;
  margin-right: 70px;
}
#global-menu .g-nav ul li a {
  padding: 1.5rem 1.5rem;
  display: block;
  transition: all 0.3s;
}
#global-menu .g-nav ul li a:hover {
  color: #E7645C;
}
#global-menu .g-nav ul li:last-child {
  margin-left: 1.5rem;
}
#global-menu .g-nav ul li:last-child a {
  padding: 1.2rem 6rem;
  background: transparent;
}

ul.menu {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.25;
  display: grid;
  grid-template-columns: repeat(2, 120px);
  grid-template-rows: repeat(3, 120px);
  gap: 5px;
}
ul.menu li {
  background: #000;
  place-items: center;
  display: grid;
  border-radius: 50%;
  letter-spacing: -0.2rem;
}
ul.menu li.bg-red {
  background: #ae130a;
}
ul.menu li.bg-red img {
  max-width: 40px;
}
ul.menu li a {
  display: block;
  padding: 20%;
}

#MV {
  height: 60vh;
  display: grid;
  justify-items: end;
  align-items: start;
  position: relative;
  margin-right: 50px;
}
#MV video {
  width: calc(100% - 200px);
  height: calc(60vh - 100px);
  border-radius: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  display: none;
  max-width: 1920px;
  max-height: 1080px;
}
#MV h4 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  position: absolute;
  top: 80%;
  min-height: 550px;
  left: 7.5%;
  transform: translateY(-50%);
  font-size: 8rem;
  letter-spacing: 1rem;
  margin: 0;
  line-height: 1.2;
  color: #42b05a;
  mix-blend-mode: difference;
  writing-mode: vertical-rl;
  letter-spacing: -0.4rem;
  display: none;
}
#MV h4 span:nth-child(1) {
  color: #3B854B;
}
#MV h4 span:nth-child(3) {
  color: #5B85BF;
}
#MV h4 span:nth-child(5) {
  color: #E7645C;
}

#message {
  position: absolute;
  bottom: 215px;
  left: 50%;
  display: none;
}

#handwriting {
  position: absolute;
  transform: scale(0.8);
  bottom: -2px;
  right: 40px;
  display: none;
}

.circle-wrap, .svg-wrap {
  width: 100%;
  min-height: 1100px;
  position: absolute;
  overflow: hidden;
  top: -10px;
  z-index: -1;
}

/* SVG-control */
.circle_01 {
  position: absolute;
  top: -9%;
  right: -17%;
  mix-blend-mode: lighten;
}

.circle_02 {
  position: absolute;
  bottom: 0%;
  left: -15%;
  mix-blend-mode: lighten;
}

.circle_03 {
  position: absolute;
  bottom: 10%;
  left: 1%;
  mix-blend-mode: lighten;
}

.svg-control path {
  stroke: transparent;
}

.svg-logo.on .circle_01 path {
  animation: stroke_01 2s ease-in-out forwards;
  stroke: rgba(223, 176, 47, 0.5);
  stroke-dasharray: 2800;
  stroke-dashoffset: 0;
  stroke-width: 1;
}

.svg-logo.on .circle_02 path {
  animation: stroke_02 1s ease-in-out forwards;
  stroke: rgba(43, 200, 82, 0.5);
  stroke-dasharray: 2800;
  stroke-dashoffset: 0;
  stroke-width: 1;
}

.svg-logo.on .circle_03 path {
  animation: stroke_03 1.5s ease-in-out forwards;
  stroke: rgba(199, 52, 116, 0.5);
  stroke-dasharray: 2800;
  stroke-dashoffset: 0;
  stroke-width: 1;
}

@keyframes stroke_01 {
  0% {
    fill: none;
    stroke-dashoffset: 2800;
  }
  10% {
    fill: transparent;
  }
  80% {
    fill: transparent;
  }
  100% {
    fill: rgba(255, 237, 177, 0.8);
    stroke-dashoffset: 0;
    stroke: transparent;
  }
}
@keyframes stroke_02 {
  0% {
    fill: none;
    stroke-dashoffset: 2800;
  }
  10% {
    fill: transparent;
  }
  80% {
    fill: transparent;
  }
  100% {
    fill: rgba(209, 244, 205, 0.5);
    stroke-dashoffset: 0;
    stroke: transparent;
  }
}
@keyframes stroke_03 {
  0% {
    fill: none;
    stroke-dashoffset: 2800;
  }
  10% {
    fill: transparent;
  }
  80% {
    fill: transparent;
  }
  100% {
    fill: rgba(255, 228, 211, 0.5);
    stroke-dashoffset: 0;
    stroke: transparent;
  }
}
/*! ------------------------------------------------------
Layout
------------------------------------------------------- */
.section h2.typeA {
  font-size: 1.6rem;
  margin-bottom: 30px;
  position: relative;
}
.section h2.typeA::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  top: -75px;
  left: -40px;
  background: url(./common/img/typeA.png) no-repeat;
  z-index: -1;
}
.section h2.typeA i {
  font-size: 6rem;
  letter-spacing: 1rem;
  color: #42b05a;
  display: block;
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.25;
}
.section h2.typeB {
  font-size: 1.6rem;
  margin-bottom: 60px;
  position: relative;
  text-align: center;
}
.section h2.typeB::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 240px;
  background: url(./common/img/typeC.png) no-repeat center center;
  z-index: -1;
  transform: translate(-50%, -25%);
}
.section h2.typeB i {
  font-size: 6rem;
  letter-spacing: 1rem;
  color: #E7645C;
  display: block;
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.25;
}
.section h2.typeC {
  font-size: 1.6rem;
  margin-bottom: 60px;
  position: relative;
  text-align: center;
}
.section h2.typeC::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 240px;
  background: url(./common/img/h2back.png) no-repeat center center;
  z-index: -1;
  transform: translate(-50%, -25%);
}
.section h2.typeC i {
  font-size: 6rem;
  letter-spacing: 1rem;
  color: #E7645C;
  display: block;
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.25;
}
.section p {
  font-size: 1.65rem;
  line-height: 1.75;
}

.center {
  text-align: center;
}

.section .sub-copy {
  font-size: 1.3rem;
}

.bb {
  border-bottom: 1px dotted #444;
  padding-bottom: 30px;
}

.headline {
  padding: 50px 0 10px;
  font-size: 2.4rem;
}

.inner {
  max-width: 1200px;
  padding: 0 15px;
  margin: 10px auto;
}

.flex {
  display: flex;
}

.row {
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
}

.one {
  padding: 100px 15px;
  overflow: hidden;
}

.flex-item-25 {
  flex-basis: 25%;
  max-width: 25%;
  flex-basis: calc(25% - 30px);
  max-width: calc(25% - 30px);
  margin-right: 15px;
  margin-left: 15px;
}

.flex-item-75 {
  flex-basis: 75%;
  max-width: 75%;
  flex-basis: calc(75% - 30px);
  max-width: calc(75% - 30px);
  margin-right: 15px;
  margin-left: 15px;
}

.flex-item-35 {
  flex-basis: calc(35% - 30px);
  max-width: calc(35% - 30px);
  margin-right: 15px;
  margin-left: 15px;
}

.flex-item-65 {
  flex-basis: calc(65% - 30px);
  max-width: calc(65% - 30px);
  margin-right: 15px;
  margin-left: 15px;
}

.flex-item-50 {
  flex-basis: calc(50% - 30px);
  max-width: calc(50% - 30px);
  margin-right: 15px;
  margin-left: 15px;
}

.mt-60 {
  margin-top: 60px;
}

/*! ------------------------------------------------------
Section
------------------------------------------------------- */
#topics {
  margin: 40px auto;
}

#about {
  position: relative;
  padding: 60px 15px;
}
#about::before {
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 70%;
  position: absolute;
  background: #fefee4;
  z-index: -3;
}
#about::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 45%;
  left: 0;
  top: -50px;
  z-index: -2;
}

.event-image {
  position: relative;
  padding: 50px 0;
}
.event-image::before {
  content: "";
  top: 0;
  right: -30px;
  height: 100%;
  width: 70%;
  position: absolute;
  background: #ed797a;
  z-index: -3;
  /* transform: rotate(-3deg); */
}
.event-image::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 70%;
  background: #f1e4c6 right top/cover;
  left: -30px;
  top: 0px;
  z-index: -2;
  clip-path: polygon(0 0, 100% 0, 55% 100%, 0 100%);
  /* transform: rotate(-3deg); */
}

.event-header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  position: relative;
  align-items: center;
  margin-bottom: 60px;
}
.event-header::before {
  content: "";
  background: #5BB5BF;
  height: 8px;
  width: 50%;
  display: block;
  position: absolute;
  bottom: -20px;
}
.event-header::after {
  content: "";
  background: #E7645C;
  height: 8px;
  width: 50%;
  display: block;
  position: absolute;
  bottom: -20px;
  left: 50%;
}
.event-header .event-title {
  font-size: 2rem;
  margin: 0 20px;
}
.event-header .event-category {
  font-size: 1.8rem;
  margin: 0 20px;
}

.enclose {
  background: #3B854B;
  color: #fff;
  padding: 5px 35px;
  font-size: 1.5rem;
  margin: 0 20px;
  border-radius: 20px;
  display: inline-block;
}

.section .annotation {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.event-information h5 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.event-information h6 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 1.5rem 0;
}
.event-information p {
  font-size: 1.6rem;
  line-height: 1.75;
}

.definition-list {
  margin-top: 15px;
}
.definition-list dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.definition-list dl:first-of-type, .definition-list dl:first-of-type {
  border-top: 1px dotted #999;
}
.definition-list dt {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  width: 20%;
  padding: 10px;
  border-bottom: 1px dotted #999;
  font-weight: 600;
}
.definition-list dd {
  display: flex;
  align-items: center;
  width: 80%;
  margin-left: 0;
  padding: 10px;
  background-color: #fff;
  border-bottom: 1px dotted #999;
}

.maps-outer {
  position: relative;
  padding-top: 40%;
}

.maps {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.end-event {
  position: relative;
}
.end-event img {
  vertical-align: middle;
}
.end-event::after {
  content: "終了しました。\aありがとうございました。";
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  white-space: pre;
  font-family: sans-serif;
  color: #fff;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

#activity {
  padding-top: 30px;
}

.slider-group {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  margin: 0 -15px;
}
.slider-group .slider-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 60px;
}
.slider-group h3 {
  font-size: 3.2rem;
  line-height: 1.25;
  color: #E7645C;
  max-width: 50%;
  padding: 0 15px;
}
.slider-group p {
  max-width: 50%;
  padding: 0 15px;
}

.slider_01 {
  position: relative;
}
.slider_01::before {
  content: "";
  top: -100px;
  left: -15px;
  min-height: 540px;
  width: 95%;
  position: absolute;
  background: #faf8df;
  z-index: -2;
  filter: drop-shadow(10px 15px 20px rgba(0, 0, 0, 0.2));
}

.slider_02 {
  position: relative;
}
.slider_02::before {
  content: "";
  top: -50px;
  right: -15px;
  min-height: 500px;
  width: 95%;
  position: absolute;
  background: #c5e8b8;
  z-index: -2;
  filter: drop-shadow(10px 15px 20px rgba(0, 0, 0, 0.2));
}

.slider_03 {
  position: relative;
}
.slider_03::before {
  content: "";
  top: -50px;
  left: -15px;
  min-height: 500px;
  width: 95%;
  position: absolute;
  background: #ffe1ef;
  z-index: -2;
  filter: drop-shadow(10px 5px 20px rgba(0, 0, 0, 0.2));
}

.slick-wrap article {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}
.slick-wrap article img {
  max-width: 100%;
}
.slick-wrap article h5 {
  background: #000;
  color: #fff;
  position: absolute;
  bottom: -20px;
  left: -10px;
  font-size: 1.8rem;
  transform: rotate(-3deg);
  padding: 0 20px;
}

#association {
  margin-bottom: 100px;
}
#association h2 {
  text-align: center;
}
#association h4 {
  margin: 1.2rem 0;
  font-size: 1.6rem;
}

.members-list-title {
  margin-top: 50px;
}

.members-name {
  flex: 1;
}
.members-name li {
  padding: 1rem;
  border: 1px solid #eee;
  background: #fff;
  margin-top: -1px;
  margin-left: -1px;
  letter-spacing: -0.15rem;
  list-style: inherit;
  list-style-position: inside;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 391px;
  font-weight: 500;
  transition: all 0.3s;
}
.members-name li:nth-child(even) {
  background: #fbfbfb;
}
.members-name li:hover {
  transform: scale(1.1);
  background: #444;
  color: #fff;
  transform-origin: left;
  filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.2));
}

#membership {
  background: #E7645C;
  padding: 80px 15px;
  color: #fff;
  text-align: center;
}
#membership h2 {
  text-align: center;
  font-size: 4rem;
  letter-spacing: 2rem;
}
#membership p {
  margin-bottom: 2rem;
}
#membership .member-info-wrap {
  display: flex;
  justify-content: space-between;
}
#membership .member-info-wrap .item {
  flex: 1;
  padding: 40px 0;
  background: #fff;
  color: initial;
  display: grid;
  place-items: center;
  border-radius: 40px;
}
#membership .member-info-wrap .item.admission-fee {
  color: #5BB5BF;
}
#membership .member-info-wrap .item.admission-fee h4 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
#membership .member-info-wrap .item.admission-fee p {
  font-size: 4.4rem;
  font-weight: 700;
}
#membership .member-info-wrap .item.annual-fee {
  color: #42b05a;
  margin: 0 10px;
}
#membership .member-info-wrap .item.annual-fee h4 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
#membership .member-info-wrap .item.annual-fee p {
  font-size: 2.8rem;
  line-height: 1.25em;
  font-weight: 700;
}
#membership .member-info-wrap .item.application {
  color: #E7645C;
  transition: all 0.3s;
}
#membership .member-info-wrap .item.application h4 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
#membership .member-info-wrap .item.application a {
  padding: 25px 50px;
  display: block;
}
#membership .member-info-wrap .item.application p {
  font-size: 2.8rem;
  line-height: 1.25em;
  font-weight: 700;
}
#membership .member-info-wrap .item.application:hover {
  background: #42b05a;
}

#contact {
  padding: 90px 15px;
}
#contact p {
  font-weight: 600;
}
#contact .btn-area {
  text-align: right;
}

.attendance {
  padding: 40px 15px 60px;
  border-bottom: 1px dotted #444;
}
.attendance p {
  font-weight: 600;
}
.attendance .btn-area {
  text-align: right;
}

#sns-area {
  padding: 0 15px 90px;
}
#sns-area .facebook {
  text-align: center;
}
#sns-area .insta {
  text-align: center;
}

footer {
  color: #fff;
  background: #42b05a;
  padding: 80px 15px;
  text-align: center;
}
footer h3 {
  font-size: 1.8rem;
}
footer address {
  text-decoration: none;
  font-style: normal;
}
footer address.address {
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 30px 0;
}
footer address.tel {
  font-size: 2.6rem;
  font-family: "quicksand", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.25;
  margin-bottom: 2rem;
  text-justify: inter-ideograph; /* 両端揃えの種類 */
}

/*! ------------------------------------------------------
Animation
------------------------------------------------------- */
.fadeIn {
  opacity: 0;
  transform: translateY(100px);
  transition: 1s;
}

.fadeIn.on {
  opacity: 1;
  transform: translateY(0);
}

.youtube-wrap {
  margin: 30px auto 40px;
  padding: 15px;
  aspect-ratio: 16/9;
}

.youtube-wrap iframe {
  width: 100%;
  height: 100%;
}

.fluid-width-video-wrapper {
  width: 100%;
  position: relative;
  padding: 0;
}

.fluid-width-video-wrapper {
  padding-top: 56.5% !important;
}

.event-nothing {
  padding: 1rem;
  border: 1px solid #333;
}

/*! ------------------------------------------------------
PC adjust
------------------------------------------------------- */
@media screen and (max-width: 1500px) {
  #MV h4 {
    top: 80%;
    left: 7.5%;
    font-size: 7rem;
    mix-blend-mode: difference;
    writing-mode: vertical-rl;
    letter-spacing: -0.1rem;
  }
  #handwriting {
    transform: scale(0.6);
    bottom: -2px;
    right: 0;
  }
}
@media screen and (max-width: 1100px) {
  #global-menu .g-nav ul {
    display: none;
  }
  #MV {
    height: auto;
    display: grid;
    justify-items: center;
    align-items: center;
    position: relative;
    margin-right: inherit;
  }
  #MV video {
    width: calc(100% - 100px);
    height: calc(60vh - 100px);
  }
  #MV h4 {
    top: 80%;
    min-height: 350px;
    left: 7.5%;
    transform: translateY(-50%);
    font-size: 5rem;
    margin: 0;
    mix-blend-mode: difference;
    writing-mode: vertical-rl;
  }
  #message {
    position: absolute;
    bottom: 215px;
    left: 50%;
    display: none;
  }
  #handwriting {
    display: none !important;
  }
  #topics {
    display: none;
  }
  .row {
    display: block;
    flex: none;
    flex-direction: inherit;
    flex-wrap: inherit;
  }
  .flex-item-50,
  .flex-item-75,
  .flex-item-25,
  .flex-item-35,
  .flex-item-65 {
    flex-basis: inherit;
    max-width: 100%;
    margin: 30px auto;
  }
  .flex-item-50 > img,
  .flex-item-75 > img,
  .flex-item-25 > img,
  .flex-item-35 > img,
  .flex-item-65 > img {
    text-align: center;
    margin: auto;
    display: block;
  }
  .section h2.typeA {
    font-size: 1.6rem;
    margin-bottom: 30px;
    text-align: center;
  }
  .section h2.typeA::before {
    width: 390px;
    height: 390px;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
  }
  .section h2.typeA i {
    font-size: 4rem;
    line-height: 1.25;
  }
  .section h2.typeB {
    font-size: 1.6rem;
    margin-bottom: 60px;
    position: relative;
    text-align: center;
  }
  .section h2.typeB::before {
    width: 340px;
    height: 240px;
    transform: translate(-50%, -25%);
  }
  .section h2.typeB i {
    font-size: 4rem;
    letter-spacing: 1rem;
  }
  .section h2.typeC {
    font-size: 1.6rem;
    margin-bottom: 60px;
  }
  .section h2.typeC::before {
    width: 340px;
    height: 240px;
    transform: translate(-50%, -25%);
  }
  .section h2.typeC i {
    font-size: 4rem;
    line-height: 1.25;
  }
  .section p {
    font-size: 1.65rem;
    line-height: 1.75;
  }
  #attendance .btn-area,
  #contact .btn-area {
    text-align: center;
  }
  .facebook {
    display: none;
  }
  .slider-group {
    position: relative;
    padding: 50px 0;
  }
  .slider-group .slider-title {
    display: block;
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .slider-group h3 {
    font-size: 3.2rem;
    max-width: 100%;
  }
  .slider-group p {
    max-width: 100%;
  }
  .slider_01::before {
    min-height: 540px;
    width: 100%;
  }
  .slider_02::before {
    top: -50px;
    right: -15px;
    min-height: 500px;
    width: 100%;
  }
  .slider_03::before {
    top: -50px;
    left: -15px;
    min-height: 500px;
    width: 100%;
  }
  .members-name li {
    max-width: 100%;
  }
  .definition-list {
    margin-top: 15px;
  }
  .definition-list dl {
    display: block;
    flex-wrap: wrap;
    width: 100%;
  }
  .definition-list dl:first-of-type, .definition-list dl:first-of-type {
    border-top: 1px dotted #999;
  }
  .definition-list dt {
    font-size: 1.5rem;
    display: block;
    align-items: center;
    width: 100%;
    padding: 5px;
    border-bottom: 1px dotted #999;
    text-align: center;
    background: #eee;
  }
  .definition-list dd {
    display: flex;
    align-items: center;
    width: 100%;
    margin-left: 0;
    padding: 10px;
    background-color: #fff;
    border-bottom: 1px dotted #999;
  }
}
@media screen and (max-width: 750px) {
  .toggle {
    top: 10px;
    right: 10px;
    z-index: 101;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: black;
    transition: background-color 0.2s ease;
  }
  main img {
    width: 100%;
  }
  h1#site-id {
    font-size: 1.1rem;
  }
  h1#site-id img {
    max-width: 40px;
    margin-right: 0.5rem;
  }
  h1#site-id span {
    font-size: 1.3rem;
  }
  #MV {
    height: auto;
  }
  #MV video {
    width: calc(100% - 50px);
    height: calc(60vh - 50px);
    border-radius: 40px;
  }
  #MV h4 {
    top: 60%;
    min-height: 280px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4.4rem;
    z-index: 1;
    mix-blend-mode: difference;
    writing-mode: vertical-rl;
  }
  #message {
    display: none;
  }
  br.sp-none {
    display: none;
  }
  #about {
    padding: 90px 15px 15px;
    overflow-x: hidden;
  }
  .event-header {
    display: block;
    width: 100%;
    margin-bottom: 60px;
  }
  .event-header .event-title {
    font-size: 1.7rem;
    margin: 0;
  }
  .event-header .event-category {
    font-size: 1.4rem;
    margin: 0;
  }
  .enclose {
    background: #3B854B;
    color: #fff;
    padding: 1px 10px;
    font-size: 1.2rem;
    margin: 0 20px;
    border-radius: 20px;
    display: inline-block;
  }
  #attendance {
    padding: 0;
    border-bottom: 1px dotted #444;
  }
  #attendance p {
    font-weight: 600;
  }
  #attendance .btn-area {
    text-align: center;
  }
  .glz-btn_10 {
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: inherit;
    border-radius: 50px;
    padding: 10px 20px;
  }
  .slider-group {
    position: relative;
    padding: 50px 0;
  }
  .slider-group .slider-title {
    display: block;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .slider-group h3 {
    font-size: 2.2rem;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
  .slider_01::before {
    min-height: 540px;
    top: -50px;
  }
  .slider_02::before {
    top: -35px;
    right: -15px;
    min-height: 500px;
    width: 100%;
  }
  .slider_03::before {
    top: -35px;
    left: -15px;
    min-height: 500px;
    width: 100%;
  }
  .one {
    padding: 65px 15px 15px;
    overflow: hidden;
  }
  .members-name li {
    max-width: 100%;
  }
  .event-information h5 {
    margin-bottom: 2rem;
    margin-top: 0rem;
    padding-top: 3rem;
    text-align: center;
  }
  #membership {
    padding: 20px 15px 30px;
  }
  #membership h2 {
    font-size: 3rem;
    letter-spacing: 2rem;
  }
  #membership p {
    margin-bottom: 2rem;
  }
  #membership .member-info-wrap {
    display: block;
    justify-content: space-between;
  }
  #membership .member-info-wrap .item {
    flex: none;
    padding: 20px 0;
    border-radius: 30px;
  }
  #membership .member-info-wrap .item.admission-fee {
    width: 100%;
    margin-bottom: 10px;
  }
  #membership .member-info-wrap .item.admission-fee p {
    font-size: 4.4rem;
    margin-bottom: 0;
    font-weight: 700;
  }
  #membership .member-info-wrap .item.annual-fee {
    margin: 0 0 10px;
  }
  #membership .member-info-wrap .item.annual-fee h4 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  #membership .member-info-wrap .item.annual-fee p {
    font-size: 2.8rem;
  }
  #membership .member-info-wrap .item.application {
    transition: all 0.3s;
  }
  #membership .member-info-wrap .item.application h4 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  #membership .member-info-wrap .item.application p {
    margin-bottom: 0;
  }
  #contact, #sns-area {
    padding: 10px 0;
    overflow-x: hidden;
  }
  footer {
    padding: 40px 0;
    text-align: center;
  }
  footer h3 {
    font-size: 1.7rem;
  }
  footer .copyright {
    font-size: 1.2rem;
    line-height: 1.25;
  }
  footer address {
    text-decoration: none;
    font-style: normal;
  }
  footer address.address {
    font-size: 1.5rem;
    line-height: 1.5;
    margin: 20px 0;
  }
  #event .flex-item-35, #event .flex-item-65 {
    margin: auto;
  }
  #event .flex-item-35 img, #event .flex-item-65 img {
    border-radius: 20px;
    max-width: 85%;
  }
  #association {
    margin-bottom: 50px;
    overflow: hidden;
  }
  .maps-outer {
    position: relative;
    padding-top: 95%;
  }
  .headline {
    padding: 30px 0 0;
    margin-bottom: -30px;
    font-size: 1.8rem;
  }
  .end-event::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-height: 860px) and (min-width: 1200px) {
  #MV {
    height: 82vh;
  }
  #MV video {
    width: calc(100% - 200px);
    height: calc(82vh - 100px);
  }
}/*# sourceMappingURL=style.css.map */