@charset "UTF-8";

/* Reset
-------------------------------------------------- */
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-delay: 0s !important;
    transition-duration: 1ms !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
  }
}
html {
  block-size: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  tab-size: 4;
}
body {
  min-block-size: 100%;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}
:where(img, iframe) {
  border: none;
}
:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}
:where(img) {
  image-rendering: -webkit-optimize-contrast;
}
:where(svg) {
  stroke: none;
  fill: currentColor;
}
:where(svg):where(:not([fill])) {
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}
:where(h1, h2, h3) {
  line-height: calc(1em + .5rem);
}
ul:where([class]),
ol:where([class]),
nav ul,
nav ol {
  list-style: none;
}
ul:where(:not([class])) {
  margin-left: .875em;
}
ol:where(:not([class])) {
  margin-left: 1.25em;
}
:where(table) {
  border-collapse: collapse;
  border-spacing: 0;
}
:where(sub, sup) {
  font-size: 68.75%;
  line-height: 1.02;
}
:where(sub) {
  vertical-align: baseline;
}
:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}
:where(template) {
  display: none;
}
:where(a) {
  background: transparent;
  text-decoration-skip: objects;
  -webkit-tap-highlight-color: rgba(0, 0, 0, .25);
}
:where(a:active, a:hover) {
  outline-width: 0;
}
:where(a img) {
  pointer-events: none;
}
:where(a, area, button, input, label[for], select, textarea, summary, [role='button'], [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
}
:where(summary) {
  list-style: none;
}
:where(summary)::-webkit-details-marker {
  display: none;
}
:where(code, kbd, pre, samp) {
  font-family: Consolas, Monaco, Andale Mono, Ubuntu Mono, monospace;
}
:where(pre) {
  display: block;
  overflow: auto;
}
:where(code) {
  overflow-wrap: break-word;
}
:where(pre code) {
  word-break: normal;
}
:where(dialog) {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1000;
  width: fit-content;
  height: fit-content;
  padding: 1em;
  background: inherit;
  border: solid;
  color: inherit;
  transform: translate(-50%, -50%);
}
:where(dialog:not([open])) {
  display: none;
}
:where(fieldset) {
  border: none;
}
:where(input, textarea, select, button),
:where(input[type="file"])::-webkit-file-upload-button {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  vertical-align: bottom;
  appearance: none;
}
:where(textarea) {
  resize: vertical;
  resize: block;
  overflow: auto;
  overflow-anchor: none;
}
:where(input[type="file"])::-webkit-file-upload-button,
:where(input[type="file"])::file-selector-button {
  cursor: pointer;
}
:where(:disabled, :disabled + label),
:where(input[type="file"]):disabled::-webkit-file-upload-button,
:where(input[type="file"]):disabled::file-selector-button,
:where([disabled], [aria-disabled="true"]) {
  cursor: not-allowed;
}
:where([type="color"])::-webkit-color-swatch-wrapper {
  padding: 0;
}
:where([type="color"])::-webkit-color-swatch {
  border: none;
  border-radius: 0;
}
:where([type="color"])::-moz-color-swatch {
  border: none;
  border-radius: 0;
}
:where([hidden]) {
  display: none;
}
:where([aria-busy="true"]) {
  cursor: progress;
}
:where([aria-controls]) {
  cursor: pointer;
}



/* Foundation
-------------------------------------------------- */
:root {
  --color-black       : #1A1311;
  --color-gray        : #707070;
  --color-gray-light  : #F0F0F0;
  --color-purple      : #A5A3DA;
  --color-purple-dark : #807DBC;
  --color-yellow      : #FFDE4C;
  --color-yellow-light: #F3EF99;
  --color-pink        : #E87B8F;
  --color-skyblue     : #A2DBDA;
  --font-jp           : "Zen Kaku Gothic New", sans-serif;

  --transition        : .2s ease;
  --hover-opacity     : .6;
}
body {
  width: 100%;
  background: #fff;
  color: var(--color-black);
  font-family: var(--font-jp);
  font-size: calc(30 / 750 * 100vw);
  font-weight: 500;
  font-style: normal;
  line-height: 1.45;
  letter-spacing: .05em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
rt {
  font-size: 50%;
  font-weight: 500;
  translate: 0 .7em;
}
@-moz-document url-prefix() {
	rt {
    position: relative;
		top: .7em;
	}
}
@media (hover: hover) and (pointer: fine) {
  a,
  button {
    transition: opacity var(--transition);
  }
  a:hover,
  button:hover {
    opacity: var(--hover-opacity);
  }
}
@media screen and (min-width: 768px), print {
  body {
    font-size: 16px;
  }
  rt {
    font-size: 40%;
  }
}



/* Utility
-------------------------------------------------- */
.u-tl { text-align: left; }
.u-tc { text-align: center; }
.u-tr { text-align: right; }

.u-vt { vertical-align: top; }
.u-vm { vertical-align: middle; }
.u-vb { vertical-align: bottom; }

.u-fwn { font-weight: 400; }
.u-fwb { font-weight: 700; }

.u-visuallyHidden {
  position: absolute !important;
  z-index: -1 !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
}

.smsizes\:hidden,
.xs\:hidden {
  display: none;
}
@media screen and (min-width: 360px), print {
  .xs\:hidden {
    display: inline;
  }
  .sm\:hidden {
    display: none;
  }
}
@media screen and (min-width: 768px), print {
  .smsizes\:hidden,
  .xs\:hidden,
  .sm\:hidden {
    display: inline;
  }
  .lgsizes\:hidden,
  .md\:hidden {
    display: none;
  }
}
@media screen and (min-width: 1024px), print {
  .xs\:hidden,
  .sm\:hidden,
  .md\:hidden {
    display: inline;
  }
  .lg\:hidden {
    display: none;
  }
}
@media screen and (min-width: 1280px), print {
  .xs\:hidden,
  .sm\:hidden,
  .md\:hidden,
  .lg\:hidden {
    display: inline;
  }
  .xl\:hidden {
    display: none;
  }
}



/* CSS Animation 
-------------------------------------------------- */
@keyframes loop-text {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}



/* JS Animation 
-------------------------------------------------- */
.js-scroll-element {
  opacity: 0;
  visibility: hidden;
  transform: translateY(calc(60 / 750 * 100vw));
  transition: opacity .6s ease, visibility .6s ease, transform .6s ease;
}
.js-scroll-element.--show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media screen and (min-width: 768px), print {
  .js-scroll-element {
    transform: translateY(60px);
  }
}



/* Main Contents
-------------------------------------------------- */
.l-wrap {
  padding-left: calc(60 / 750 * 100vw);
}
.main {
  overflow: hidden;
}
@media screen and (min-width: 768px), print {
  .l-wrap {
    padding-left: 50px;
  }
}

/* Common */
.l-section {
  padding: calc(30 / 750 * 100vw);
}
.l-section-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.l-section-body {
  background: #fff;
  border: calc(10 / 750 * 100vw) solid var(--color-black);
  border-radius: calc(60 / 750 * 100vw);
}
.l-section.--style02 .l-section-inner {
  max-width: 1200px;
}
.l-section.--style02 .l-section-body {
  background: none;
  border: none;
  border-radius: 0;
}
.l-section.--style02 .c-heading {
  padding-top: 0;
}
.l-section.--style02 .c-heading::before {
  display: none;
}
.l-section.--style02 .c-heading .ja {
  display: block;
  margin-top: calc(15 / 750 * 100vw);
  color: var(--color-purple);
  font-size: calc(28 / 750 * 100vw);
}
.c-heading {
  position: relative;
  padding-top: calc(60 / 750 * 100vw);
  text-align: center;
}
.c-heading::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100 / 750 * 100vw);
  background: var(--color-yellow);
  border-radius: calc(50 / 750 * 100vw) calc(50 / 750 * 100vw) 0 0;
}
.c-heading .en {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding-left: .5em;
  font-size: calc(65 / 750 * 100vw);
  font-weight: 900;
  letter-spacing: .1em;
}
.c-heading .en::after {
  content: '';
  position: absolute;
  top: calc(-10 / 750 * 100vw);
  left: calc(-75 / 750 * 100vw);
  width: calc(90 / 750 * 100vw);
  height: calc(90 / 750 * 100vw);
  background: url(../images/deco_01.svg) center center / 100% no-repeat;
}
.c-button {
  position: relative;
  display: block;
  width: 100%;
  padding: calc(30 / 750 * 100vw);
  background: var(--color-black);
  border-radius: 100vmax;
  color: #fff;
  font-size: calc(40 / 750 * 100vw);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  letter-spacing: .1em;
}
.c-button::after {
  content: '';
  position: absolute;
  top: calc(50% - calc(10 / 750 * 100vw));
  right: calc(50 / 750 * 100vw);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  border-width: calc(30 / 750 * 100vw) calc(16 / 750 * 100vw) 0px calc(16 / 750 * 100vw);
}
@media screen and (min-width: 768px), print {
  .l-section {
    padding: 90px 20px;
  }
  .l-section-body {
    border: 5px solid var(--color-black);
    border-radius: 30px;
  }
  .l-section.--style02 .c-heading .ja {
    margin-top: 35px;
    font-size: 20px;
  }
  .c-heading {
    padding-top: 90px;
  }
  .c-heading::before {
    height: 115px;
    border-radius: 25px 25px 0 0;
  }
  .c-heading .en {
    padding-left: 0;
    font-size: 60px;
  }
  .c-heading .en::after {
    top: -20px;
    left: -200px;
    width: 160px;
    height: 140px;
  }
  .c-button {
    max-width: 300px;
    margin: 0 auto;
    padding: 15px;
    font-size: 20px;
  }
  .c-button::after {
    top: calc(50% - 5px);
    right: 35px;
    border-width: 14px 8px 0px 8px;
  }
}
@media screen and (min-width: 1024px), print {
  .l-section-body {
    position: relative;
  }
  .l-section-body > * {
    position: relative;
    z-index: 2;
  }
  .l-section-body::after {
    content: '';
    position: absolute;
    top: 15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border-right: 5px solid var(--color-black);
    border-bottom: 5px solid var(--color-black);
    border-radius: 30px;
  }
  .l-section.--style02 .l-section-body::after {
    display: none;
  }
}

/* Nav */
.nav-modal {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, .3);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.nav-modal.--show {
  opacity: 1;
  visibility: visible;
}
.nav-modal-inner {
  display: table;
  width: 100%;
  height: 100%;
  padding: calc(20 / 750 * 100vw) calc(20 / 750 * 100vw);
}
.nav-modal-contents {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  padding: calc(60 / 750 * 100vw) calc(40 / 750 * 100vw);
  background: rgba(255, 255, 255, .98);
  border-radius: calc(60 / 750 * 100vw);
}
.nav-modal-close {
  position: absolute;
  top: calc(40 / 750 * 100vw);
  right: calc(40 / 750 * 100vw);
  height: calc(100 / 750 * 100vw);
  width: calc(100 / 750 * 100vw);
  background: var(--color-purple);
  border-radius: 100vmax;
  font-size: 0;
}
.nav-modal-close span {
  display: block;
  width: calc(70 / 750 * 100vw);
  height: calc(6 / 750 * 100vw);
  margin: 0 auto;
  background: #fff;
  transform: rotate(45deg) translate(calc(2 / 750 * 100vw), calc(2 / 750 * 100vw));
}
.nav-modal-close span:nth-child(2) {
  transform: rotate(-45deg) translate(calc(2 / 750 * 100vw), calc(-2 / 750 * 100vw));
}
.nav-modal-logo {
  width: calc(370 / 750 * 100vw);
  margin: 0 auto;
}
.nav-modal ul {
  position: relative;
  margin-top: calc(200 / 750 * 100vw);
}
.nav-modal ul::before {
  content: '';
  position: absolute;
  top: calc(-80 / 750 * 100vw);
  right: calc(40 / 750 * 100vw);
  width: calc(160 / 750 * 100vw);
  height: calc(140 / 750 * 100vw);
  background: url(../images/deco_01.svg) center center / 100% no-repeat;
}
.nav-modal ul li {
  list-style: none;
}
.nav-modal ul li + li {
  margin-top: 1em;
}
.nav-modal a {
  position: relative;
  display: block;
  padding-left: .9em;
  color: var(--color-black);
  font-size: calc(40 / 750 * 100vw);
  text-decoration: none;
}
.nav-modal a::before {
  content: '';
  position: absolute;
  top: calc(50% - .05em);
  left: 0;
  width: .3em;
  height: .3em;
  background: var(--color-black);
  border-radius: 100vmax;
}
.nav-modal a span {
  display: inline-block;
  margin-left: calc(20 / 750 * 100vw);
  font-size: calc(20 / 750 * 100vw);
}
.nav {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(60 / 750 * 100vw);
  height: 100%;
  background: var(--color-purple);
}
.nav-trigger {
  display: block;
  width: 100%;
  height: calc(60 / 750 * 100vw);
  margin-top: calc(20 / 750 * 100vw);
  padding: calc(10 / 750 * 100vw);
}
.nav-trigger span {
  display: block;
  width: 100%;
  height: calc(6 / 750 * 100vw);
  background: #fff;
}
.nav-trigger span:nth-child(2) {
  margin-top: calc(15 / 750 * 100vw);
}
.nav-modal-image {
  display: none;
}
.nav ul {
  width: 100%;
  margin: 0;
  padding: calc(35 / 750 * 100vw) 0;
}
.nav ul li {
  width: 100%;
  writing-mode: vertical-rl;
}
.nav ul li + li {
  margin-top: calc(26 / 750 * 100vw);
}
.nav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: .9em;
  color: #fff;
  font-size: calc(24 / 750 * 100vw);
  text-decoration: none;
}
.nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: calc(50% - .2em);
  width: .4em;
  height: .4em;
  background: #fff;
  border-radius: 100vmax;
}
@media (hover: hover) and (pointer: fine) {
  .nav-modal a {
    transition: color var(--transition);
  }
  .nav-modal a::before {
    transition: background var(--transition);
  }
  .nav-modal a:hover {
    color: var(--color-purple);
    opacity: 1;
  }
  .nav-modal a:hover::before {
    background: var(--color-purple);
  }
  .nav a {
    transition: color .6s ease;
  }
  .nav a::before {
    transition: background .6s ease;
  }
  .nav a:hover {
    color: var(--color-black);
    opacity: 1;
  }
  .nav a:hover::before {
    background: var(--color-black);
  }
}
@media screen and (min-width: 768px), print {
  .nav-modal {
    height: 100vh;
  }
  .nav-modal-inner {
    padding: 50px;
  }
  .nav-modal-contents {
    padding: 100px 40px 50px;
    border-radius: 30px;
  }
  .nav-modal-close {
    top: 30px;
    right: 30px;
    height: 92px;
    width: 92px;
  }
  .nav-modal-close span {
    width: 50px;
    height: 3px;
    transform: rotate(45deg) translate(1px, 1px);
  }
  .nav-modal-close span:nth-child(2) {
    transform: rotate(-45deg) translate(1px, -1px);
  }
  .nav-modal-logo {
    width: 380px;
  }
  .nav-modal ul {
    margin-top: 100px;
  }
  .nav-modal ul::before {
    top: -55px;
    right: 0;
    width: 128px;
    height: 114px;
  }
  .nav-modal a {
    font-size: 43px;
  }
  .nav-modal a span {
    margin-left: 20px;
    font-size: 20px;
  }
  .nav {
    width: 50px;
  }
  .nav-trigger {
    height: 30px;
    margin-top: 15px;
    padding: 10px;
  }
  .nav-trigger span {
    height: 3px;
  }
  .nav-trigger span:nth-child(2) {
    margin-top: 8px;
  }
  .nav ul {
    padding: 30px 0;
  }
  .nav ul li + li {
    margin-top: 16px;
  }
  .nav a {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px), print {
  .nav-modal-contents {
    padding: 50px 17.03297%;
  }
  .nav-modal-contents-inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  .nav-modal-close {
    top: calc(50 / 1920 * 100vw);
    right: calc(50 / 1920 * 100vw);
    height: calc(92 / 1920 * 100vw);
    width: calc(92 / 1920 * 100vw);
  }
  .nav-modal-close span {
    width: calc(50 / 1920 * 100vw);
  }
  .nav-modal-logo {
    width: calc(380 / 1920 * 100vw);
  }
  .nav-modal-logo > span {
    font-size: calc(29 / 1920 * 100vw);
  }
  .nav-modal-image {
    display: block;
    width: calc(370 / 1920 * 100vw);
    margin: calc(30 / 1920 * 100vw) auto 0;
  }
  .nav-modal ul {
    margin: 0;
  }
  .nav-modal ul::before {
    top: calc(-50 / 1920 * 100vw);
    right: 0;
    width: calc(128 / 1920 * 100vw);
    height: calc(114 / 1920 * 100vw);
  }
  .nav-modal ul li + li {
    margin-top: calc(32 / 1920 * 100vw);
  }
  .nav-modal a {
    font-size: calc(43 / 1920 * 100vw);
  }
  .nav-modal a span {
    font-size: calc(20 / 1920 * 100vw);
  }
  .nav a {
    font-size: 13px;
  }
}

/* visual */
.visual-image {
  width: 100%;
  height: calc(100svh - calc(70 / 750 * 100vw));
  background: url(../images/img_visual_01_sm.jpg) center center / cover no-repeat;
}
.visual-logo {
  width: calc(400 / 750 * 100vw);
  margin: 0 auto;
  padding-top: calc(120 / 750 * 100vw);
}
.visual-text {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  height: calc(70 / 750 * 100vw);
  background: var(--color-yellow);
  border-top: calc(6 / 750 * 100vw) solid var(--color-black);
  border-bottom: calc(6 / 750 * 100vw) solid var(--color-black);
}
.visual-text-inner {
  white-space: nowrap;
  animation: loop-text 50s linear infinite;
}
.visual-text p {
  display: inline-block;
  padding: 0 1em;
  font-weight: 700;
  white-space: nowrap;
}
.visual-text p span {
  display: inline-block;
  height: .8em;
}
.visual-text p span img {
  width: auto;
  height: 100%;
}
@media screen and (min-width: 768px), print {
  .visual-image {
    height: calc(100vh - 45px);
  }
  .visual-logo {
    width: 380px;
    padding-top: 90px;
  }
  .visual-text {
    height: 45px;
    border-top: 5px solid var(--color-black);
    border-bottom: 5px solid var(--color-black);
  }
}
@media screen and (min-width: 1024px), print {
  .visual-logo {
    width: 20%;
    max-width: 380px;
    margin: 0 calc(80 / 1920 * 100vw) 0 auto;
    padding-top: calc(80 / 1920 * 100vw);
  }
  .visual-image {
    background: url(../images/img_visual_01_lg.jpg) center right / cover no-repeat;
  }
  .visual-image::before {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 6%;
    width: 160px;
    height: 260px;
    background: url(../images/deco_17.svg) bottom center / contain no-repeat;
    filter: drop-shadow(0 0 3px #fff);
  }
}
@media screen and (min-width: 1440px), print {
  .visual-image {
    position: relative;
  }
  .visual-image::before {
    width: 200px;
    height: 260px;
  }
}

/* Whats */
.whats {
  background: var(--color-gray-light);
  background: var(--color-gray-light) url(../images/bg_section_01_sm.png) repeat-y top center / 100%;
}
.whats .c-heading .en {
  display: block;
  padding-bottom: calc(90 / 750 * 100vw);
  letter-spacing: -.01em;
}
.whats .c-heading .en::before {
  content: '';
  position: absolute;
  right: calc(-20 / 750 * 100vw);
  bottom: calc(12 / 750 * 100vw);
  width: calc(210 / 750 * 100vw);
  height: calc(100 / 750 * 100vw);
  background: url(../images/deco_02.svg) center bottom / 100% no-repeat;
}
.whats .c-heading .en::after {
  top: calc(-20 / 750 * 100vw);
  left: calc(20 / 750 * 100vw);
}
.whats .c-heading > span:nth-child(2) {
  display: block;
  width: calc(350 / 750 * 100vw);
  margin: 0 auto;
}
.whats .c-heading > span:nth-child(2) img {
  width: 100%;
}
.whats-lead {
  margin-top: calc(40 / 750 * 100vw);
  color: var(--color-purple-dark);
  font-size: calc(34 / 750 * 100vw);
  font-weight: 700;
  text-align: center;
  line-height: 1.47;
  letter-spacing: 0;
}
.whats-lead span {
  font-size: .74em;
}
.whats-slider {
  position: relative;
  padding: calc(40 / 750 * 100vw) calc(40 / 750 * 100vw) calc(70 / 750 * 100vw);
}
.whats-slider::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100 / 750 * 100vw);
  background: url(../images/deco_03.svg) center bottom / 100% no-repeat;
}
.whats-slider .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.45, 0, 0.55, 1);
 } 
.whats-slider .swiper {
  border: calc(6 / 750 * 100vw) solid var(--color-black);
}
.whats-slider .swiper-pagination {
  bottom: calc(20 / 750 * 100vw);
}
.whats-slider .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.whats-slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 calc(20 / 750 * 100vw);
}
.whats-slider .swiper-pagination-bullet-active {
  background: var(--color-black);
}
.whats-message {
  position: relative;
  margin: calc(40 / 750 * 100vw) calc(30 / 750 * 100vw) calc(80 / 750 * 100vw);
  padding: calc(30 / 750 * 100vw) calc(30 / 750 * 100vw);
  font-weight: 700;
}
.whats-message::before,
.whats-message::after {
  content: '';
  position: absolute;
  width: calc(40 / 750 * 100vw);
  height: calc(50 / 750 * 100vw);
  background: url(../images/icn_kakko_01.svg) center center / 100% no-repeat;
}
.whats-message::before {
  top: 0;
  left: 0;
}
.whats-message::after {
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
}
.whats-message p + p {
  margin-top: 1.5em;
}
.whats-project {
  margin: calc(40 / 750 * 100vw) calc(40 / 750 * 100vw) calc(120 / 750 * 100vw);
  font-weight: 700;
}
.whats-project-heading {
  position: relative;
  margin-bottom: calc(40 / 750 * 100vw);
  padding-top: calc(80 / 750 * 100vw);
  color: var(--color-pink);
  font-size: calc(34 / 750 * 100vw);
  line-height: 1.47;
}
.whats-project-heading::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(10 / 750 * 100vw);
  background: url(../images/deco_16.svg) left center / cover no-repeat;
}
.whats-project p + p {
  margin-top: 1.5em;
}
.whats-profile {
  background: var(--color-yellow);
  border-radius: 0 0 calc(50 / 750 * 100vw) calc(50 / 750 * 100vw);
}
.whats-profile-heading {
  position: relative;
  margin: 0 calc(-20 / 750 * 100vw);
  padding: calc(10 / 750 * 100vw) calc(30 / 750 * 100vw);
  background: var(--color-pink);
  border: calc(6 / 750 * 100vw) solid var(--color-black);
}
.whats-profile-heading::after {
  content: '';
  position: absolute;
  top: calc(-150 / 750 * 100vw);
  right: calc(-10 / 750 * 100vw);
  width: calc(220 / 750 * 100vw);
  height: calc(220 / 750 * 100vw);
  background: url(../images/img_whats_05.png) center center / 100% no-repeat;
}
.whats-profile-heading-inner {
  position: relative;
}
.whats-profile-heading .en {
  position: absolute;
  top: -2.5em;
  left: 0;
  font-size: calc(28 / 750 * 100vw);
}
.whats-profile-heading .jp {
  color: #fff;
}
.whats-profile-heading .jp span {
  display: block;
  font-size: calc(48 / 750 * 100vw);
}
.whats-profile-heading .jp span:nth-child(2) {
  margin-top: .2em;
  font-size: calc(30 / 750 * 100vw);
}
.whats-profile-text {
  padding: calc(40 / 750 * 100vw);
  line-height: 1.7;
}
.whats-profile-text strong {
  background: rgba(255, 255, 255, .9);
}
.whats-profile-books {
  padding: calc(40 / 750 * 100vw);
}
.whats-profile-books-book-inner {
  display: flex;
  align-items: end;
}
.whats-profile-books-book-inner div {
  width: 40%;
  max-width: 146px;
  margin-right: calc(40 / 750 * 100vw);
}
.whats-profile-books-book-inner div a {
  display: block;
}
.whats-profile-books-book-inner p {
  flex: 1;
  font-weight: 700;
}
/* .whats-profile-books-book-inner p span {
  display: block;
  margin-top: .2em;
  font-size: .77em;
} */
.whats-profile-books-book-heading {
  margin-top: calc(20 / 750 * 100vw);
}
.whats-profile-books-sns ul {
  display: flex;
  margin: calc(20 / 750 * 100vw) 0 0;
}
.whats-profile-books-sns li {
  width: 33.33333%;
  list-style: none;
}
.whats-profile-books-sns li:last-child a {
  letter-spacing: -.08em;
}
.whats-profile-books-sns a {
  display: block;
  color: var(--color-black);
  font-size: calc(20 / 750 * 100vw);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.whats-profile-books-sns a div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(120 / 750 * 100vw);
  height: calc(120 / 750 * 100vw);
  margin: 0 auto .8em;
  background: var(--color-black);
  border-radius: 100vmax;
}
.whats-profile-books-sns-heading {
  margin-top: calc(20 / 750 * 100vw);
  padding-top: calc(20 / 750 * 100vw);
  border-top: calc(6 / 750 * 100vw) solid var(--color-black);
  text-align: right;
}
@media screen and (min-width: 768px), print {
  .whats {
    padding-bottom: 220px;
    background: var(--color-gray-light) url(../images/bg_section_01_lg.png) no-repeat top center / cover;
  }
  .whats .c-heading .en {
    display: inline-block;
    padding-bottom: 90px;
    font-size: 70px;
  }
  .whats .c-heading .en::before {
    right: -120px;
    bottom: 0;
    width: 220px;
    height: 110px;
  }
  .whats .c-heading .en::after { 
    top: -20px;
    left: -200px;
  }
  .whats .c-heading > span:nth-child(2) {
    width: 285px;
  }
  .whats-lead {
    margin-top: 20px;
    font-size: 24px;
  }
  .whats-slider {
    max-width: 740px;
    margin: 0 auto;
    padding: 40px 70px 70px;
  }
  .whats-slider::before {
    height: 185px;
  }
  .whats-slider .swiper {
    border: 5px solid var(--color-black);
  }
  .whats-slider .swiper-pagination {
    bottom: 30px;
  }
  .whats-slider .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .whats-slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 10px;
  }
  .whats-message {
    max-width: 700px;
    margin: 30px auto 60px;
    padding: 40px 20px;
    font-size: 18px;
    text-align: center;
  }
  .whats-message::before,
  .whats-message::after {
    width: 40px;
    height: 50px;
  }
  .whats-message::before {
    top: 10px;
    left: 10px;
  }
  .whats-message::after {
    right: 10px;
    bottom: 10px;
  }
  .whats-project {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 40px 140px;
    font-size: 18px;
    text-align: center;
  }
  .whats-project-heading {
    margin-bottom: 40px;
    padding-top: 70px;
    font-size: 24px;
  }
  .whats-project-heading::before {
    height: 7px;
  }
  .whats-profile {
    border-radius: 0 0 25px 25px;
  }
  .whats-profile-heading {
    margin: 0 -10px;
    padding: 10px;
    border: 4px solid var(--color-black);
  }
  .whats-profile-heading::after {
    top: calc(50% - 120px);
    right: 8%;
    width: 220px;
    height: 220px;
  }
  .whats-profile-heading-inner {
    max-width: 700px;
    margin: 0 auto;
  }
  .whats-profile-heading .en {
    font-size: 18px;
  }
  .whats-profile-heading .jp span {
    font-size: 24px;
  }
  .whats-profile-heading .jp span:nth-child(2) {
    margin-top: 0;
    font-size: 18px;
  }
  .whats-profile-text {
    max-width: 780px;
    margin: 0 auto;
    padding: 90px 40px;
  }
  .whats-profile-books {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 40px 100px;
  }
  .whats-profile-books-book-inner {
    max-width: 420px;
    margin: 0 auto;
  }
  .whats-profile-books-book-inner div {
    margin-right: 20px;
  }
  .whats-profile-books-book-inner p {
    font-size: 18px;
  }
  .whats-profile-books-book-heading {
    margin-top: 10px;
    font-size: 24px;
  }
  .whats-profile-books-sns ul {
    max-width: 490px;
    margin: 10px auto 0;
  }
  .whats-profile-books-sns a {
    font-size: 14px;
  }
  .whats-profile-books-sns a div {
    width: 120px;
    height: 120px;
  }
  .whats-profile-books-sns-heading {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 5px solid var(--color-black);
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px), print {
  .whats-profile-heading {
    margin: 0 -20px 0 -15px;
  }
  .whats-profile-heading .jp span {
    display: inline-block;
  }
}
@media screen and (min-width: 1440px), print {
  .whats .l-section-inner {
    position: relative;
  }
  .whats .l-section-inner::before,
  .whats .l-section-inner::after {
    content: '';
    position: absolute;
  }
  .whats .l-section-inner::before {
    top: 400px;
    left: -250px;
    width: 210px;
    height: 320px;
    background: url(../images/deco_04.svg) center center / 100% no-repeat;
  }
  .whats .l-section-inner::after {
    top: 42%;
    right: -195px;
    width: 135px;
    height: 220px;
    background: url(../images/deco_05.svg) center center / 100% no-repeat;
  }
}

/* supporters */
/* ▼ comingsoon ▼ */
.comingsoon {
  display: none;
}
.supporters.--comingsoon .comingsoon {
  position: absolute;
  bottom: calc(10 / 750 * 100vw);
  left: calc(10 / 750 * 100vw);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - calc(20 / 750 * 100vw));
  height: calc(100% -  calc(230 / 750 * 100vw));
  padding-bottom: 4em;
  background: #fff;
  border-radius: 0 0 calc(50 / 750 * 100vw) calc(50 / 750 * 100vw);
  opacity: .98;
}
.supporters.--comingsoon .comingsoon img {
  display: block;
  width: 80%;
  max-width: 560px;
  margin: 0 auto;
}
.supporters.--comingsoon .c-heading {
  z-index: 3;
}
.supporters.--comingsoon .supporters-item:not(:first-child),
.supporters.--comingsoon .supporters-more {
  display: none;
}
/* ▲ comingsoon ▲ */
.supporters {
  padding-top: calc(270 / 750 * 100vw);
  background: url(../images/bg_section_02_sm.png) center center / 100% repeat-y;
}
.supporters .l-section-inner {
  position: relative;
}
.supporters .l-section-body {
  position: relative;
}
.supporters .l-section-body::before {
  content: '';
  position: absolute;
  top: calc(-295 / 750 * 100vw);
  left: 0;
  z-index: 5;
  width: 100%;
  height: calc(355 / 750 * 100vw);
  background: url(../images/deco_06_sm.png) center center / 100% no-repeat;
}
.supporters .c-heading {
  padding-top: calc(150 / 750 * 100vw);
}
.supporters .c-heading::after {
  content: '';
  position: absolute;
  top: calc(50 / 750 * 100vw);
  left: calc(-15 / 750 * 100vw);
  width: calc(480 / 750 * 100vw);
  height: calc(110 / 750 * 100vw);
  background: url(../images/deco_07.png) 0 0 / 100% no-repeat; 
}
.supporters .c-heading::before {
  height: calc(180 / 750 * 100vw);
  background: var(--color-skyblue);
}
.supporters .c-heading .en {
  letter-spacing: normal;
}
.supporters .c-heading .en::after {
  top: calc(0 / 750 * 100vw);
  left: calc(-65 / 750 * 100vw);
}
.supporters-list {
  margin: calc(40 / 750 * 100vw);
}
.supporters-item {
  height: 0;
  padding: calc(30 / 750 * 100vw);
  background: var(--color-skyblue);
  border: calc(6 / 750 * 100vw) solid var(--color-black);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.supporters-item.--show {
  height: auto;
  opacity: 1;
  visibility: visible;
}
.supporters-item:not(:first-child) {
  margin-top: calc(40 / 750 * 100vw);
}
.supporters-item-image {
  border: calc(6 / 750 * 100vw) solid var(--color-black);
}
.supporters-item-heading {
  margin: calc(30 / 750 * 100vw) 0 calc(10 / 750 * 100vw);
  font-size: calc(34 / 750 * 100vw);
  text-align: center;
}
.supporters-item-heading span {
  font-size: calc(28 / 750 * 100vw);
  font-weight: 500;
}
.supporters-item-heading > span:first-child {
  display: block;
}
.supporters-more {
  padding: calc(50 / 750 * 100vw) calc(20 / 750 * 100vw);
  background: var(--color-skyblue);
  border-radius: 0 0 calc(50 / 750 * 100vw) calc(50 / 750 * 100vw);
}
@media screen and (min-width: 768px), print {
  /* ▼ comingsoon ▼ */
  .supporters.--comingsoon .comingsoon {
    bottom: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% -  140px);
    border-radius: 0 0 25px 25px;
  }
  .supporters.--comingsoon .supporters-item:nth-child(2),
  .supporters.--comingsoon .supporters-item:nth-child(3),
  .supporters.--comingsoon .supporters-more {
    display: block;
  }
  /* ▲ comingsoon ▲ */
  .supporters {
    padding-top: 170px;
    background: url(../images/bg_section_02_lg.png) center center / 100% repeat-y;
  }
  .supporters .l-section-body::before {
    top: -360px;
    height: 417px;
    background: url(../images/deco_06_lg.png) center center / 100% no-repeat;
  }
  .supporters .c-heading {
    padding-top: 80px;
  }
  .supporters .c-heading::after {
    top: 20px;
    left: -10px;
    width: 240px;
    height: 60px;
    transform: rotate(-5deg);
  }
  .supporters .c-heading::before {
    height: 100px;
  }
  .supporters .c-heading .en::after {
    top: -20px;
    left: -200px;
  }
  .supporters-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -7px;
    padding: 80px 50px 50px;
  }
  .supporters-item {
    width: calc(33.33333% - 14px);
    margin: 0 7px;
    padding: 14px;
    border: 3px solid var(--color-black);
  }
  .supporters-item:not(:first-child) {
    margin-top: 0;
  }
  .supporters-item:nth-child(n+4) {
    margin-top: 14px;
  }
  .supporters-item p {
    font-size: 15px;
  }
  .supporters-item-image {
    border: 3px solid var(--color-black);
  }
  .supporters-item-heading {
    margin: 15px 0 10px;
    font-size: 18px;
  }
  .supporters-item-heading span {
    font-size: 14px;
  }
  .supporters-more {
    padding: 30px;
    border-radius: 0 0 25px 25px;
  }
}

/* Project */
.project {
  padding-top: calc(85 / 750 * 100vw);
  padding-bottom: calc(140 / 750 * 100vw);
  background: url(../images/bg_section_02_sm.png) center center / 100% repeat-y;
}
.project .l-section-inner,
.project .l-section-body {
  position: relative;
}
.project .l-section-inner::before {
  content: '';
  position: absolute;
}
.project .l-section-inner::before {
  top: calc(-80 / 750 * 100vw);
  right: 0;
  width: calc(200 / 750 * 100vw);
  height: calc(80 / 750 * 100vw);
  background: url(../images/deco_09.svg) 0 0 / 100% no-repeat;
}
.project .c-heading {
  padding-top: calc(140 / 750 * 100vw);
}
.project .c-heading::after {
  content: '';
  position: absolute;
  top: calc(30 / 750 * 100vw);
  left: calc(-15 / 750 * 100vw);
  width: calc(480 / 750 * 100vw);
  height: calc(110 / 750 * 100vw);
  background: url(../images/deco_08.png) 0 0 / 100% no-repeat; 
}
.project .c-heading::before {
  height: calc(180 / 750 * 100vw);
}
.project-list {
  padding: calc(40 / 750 * 100vw) calc(40 / 750 * 100vw) calc(60 / 750 * 100vw);
  font-weight: 700;
}
.project-item {
  line-height: 1.65;
}
.project-item:first-child div:first-child {
  width: 75%;
  margin: 0 auto;
}
.project-item:not(:first-child) {
  margin-top: calc(120 / 750 * 100vw);
}
.project-item div:nth-child(2) {
  margin-top: calc(20 / 750 * 100vw);
}
.project-item .c-button {
  margin-top: calc(30 / 750 * 100vw);
  padding-left: calc(55 / 750 * 100vw);
  font-size: calc(30 / 750 * 100vw);
}
.project-item .c-button::after {
  border-width: calc(20 / 750 * 100vw) calc(12 / 750 * 100vw) 0px calc(12 / 750 * 100vw);
  transform: rotate(-90deg);
}
.project-item .c-button::before {
  content: '';
  position: absolute;
  top: calc(50% - calc(50 / 750 * 100vw));
  left: calc(20 / 750 * 100vw);
  width: calc(100 / 750 * 100vw);
  height: calc(100 / 750 * 100vw);
  background: url(../images/icn_instagram_01.svg) 0 0 / 100% no-repeat;
}
.project-qa {
  position: relative;
  padding: calc(40 / 750 * 100vw) calc(40 / 750 * 100vw) calc(60 / 750 * 100vw);
  background: var(--color-yellow);
  border-radius: 0 0 calc(50 / 750 * 100vw) calc(50 / 750 * 100vw);
}
.project-qa::before {
  content: '';
  position: absolute;
  top: calc(-40 / 750 * 100vw);
  left: calc(40 / 750 * 100vw);
  width: calc(120 / 750 * 100vw);
  height: calc(120 / 750 * 100vw);
  background: url(../images/deco_19.svg) 0 0 / contain no-repeat;
}
.project-qa-heading {
  font-size: calc(40 / 750 * 100vw);
  font-weight: 900;
  text-align: center;
}
.project-qa-heading span {
  display: block;
}
.project-qa-heading .sm {
  position: relative;
  display: inline-block;
  padding: 0 1em;
  font-size: 70%;
  letter-spacing: -.05em;
}
.project-qa-heading .sm::before,
.project-qa-heading .sm::after {
  content: '';
  position: absolute;
  bottom: .3em;
  width: 1.2em;
  height: 1.2em;
  background: url(../images/deco_18.svg) 0 0 / contain no-repeat;
}
.project-qa-heading .sm::before {
  left: -.5em;
}
.project-qa-heading .sm::after {
  right: -.5em;
  transform: scale(-1, 1);
}
.project-qa-heading .lg {
  position: relative;
  margin-top: .2em;
  padding: 0 0 .3em;
  background: #fff;
  border: calc(6 / 750 * 100vw) solid var(--color-black);
  border-radius: 100vmax;
}
_:lang(x)::-internal-media-controls-overlay-cast-button, .project-qa-heading .lg {
  padding: .5em .2em .2em;
}
.project-qa-heading .lg::after {
  content: '';
  position: absolute;
  right: 0;
  top: calc(10 / 750 * 100vw);
  width: calc(140 / 750 * 100vw);
  height: calc(140 / 750 * 100vw);
  background: url(../images/deco_20.svg) 0 0 / contain no-repeat;
}
.project-qa-list {
  position: relative;
  margin-top: calc(60 / 750 * 100vw);
}
.project-qa-list::before {
  content: '';
  position: absolute;
  z-index: 2;
  top: calc(-40 / 750 * 100vw);
  left: calc(-40 / 750 * 100vw);
  width: calc(80 / 750 * 100vw);
  height: calc(80 / 750 * 100vw);
  background: url(../images/deco_21.svg) 0 0 / contain no-repeat;
}
.project-qa-item {
  padding: calc(30 / 750 * 100vw);
  background: #fff;
  border-radius: calc(20 / 750 * 100vw);
  font-weight: 700;
}
.project-qa-item:first-child .project-qa-item-answer-text {
  margin-top: calc(-20 / 750 * 100vw);
}
.project-qa-item:not(:first-child) {
  margin-top: calc(40 / 750 * 100vw);
}
.project-qa-item-heading {
  font-size: calc(36 / 750 * 100vw);
  font-weight: 900;
}
.project-qa-item-text {
  margin: calc(20 / 750 * 100vw) 0 calc(30 / 750 * 100vw);
  padding-bottom: calc(30 / 750 * 100vw);
  border-bottom: calc(6 / 750 * 100vw) solid var(--color-black);
}
.project-qa-item-text > div {
  margin-top: calc(20 / 750 * 100vw);
  font-size: calc(36 / 750 * 100vw);
  font-weight: 900;
}
.project-qa-item button {
  display: block;
  width: 100%;
  margin-top: calc(20 / 750 * 100vw);
  padding: 0 0 .3em;
  background: var(--color-pink);
  border-radius: 100vmax;
  color: #fff;
  font-size: calc(36 / 750 * 100vw);
  font-weight: 900;
  text-align: center;
}
_:lang(x)::-internal-media-controls-overlay-cast-button, .project-qa-item button {
  padding: .5em .2em .2em;
}
.project-qa-item-answer {
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), padding var(--transition);
}
.project-qa-item-answer.--open {
  height: auto;
  padding-top: calc(60 / 750 * 100vw);
  opacity: 1;
  visibility: visible;
}
.project-qa-item-answer > p {
  font-weight: 900;
}
.project-qa-item-answer > p span {
  display: inline-block;
  margin-left: .5em;
  color: var(--color-pink);
  font-size: calc(40 / 750 * 100vw);
}
.project-qa-item-answer-image {
  width: 30%;
  margin: calc(-110 / 750 * 100vw) 0 0 auto;
}
.project-qa-item-answer-image img {
  width: 100%;
}
.project-qa-item-answer-text {
  line-height: 1.8;
}
.project-qa-item-answer-text p + p {
  margin-top: 1em;
}
.project-qa-item-answer-text .note {
  padding-left: 1em;
  text-indent: -1em;
  font-weight: 500;
  font-size: 70%;
}
@media screen and (min-width: 768px), print {
  .project {
    padding-top: 60px;
    padding-bottom: 220px;
    background: url(../images/bg_section_02_lg.png) center center / 100% repeat-y;
  }
  .project .l-section-inner::before {
    top: -90px;
    width: 200px;
    height: 80px;
  }
  .project .c-heading {
    padding-top: 80px;
  }
  .project .c-heading::after {
    top: 30px;
    left: -10px;
    width: 240px;
    height: 60px;
    transform: rotate(-5deg);
  }
  .project .c-heading::before {
    height: 100px;
  }
  .project-list {
    max-width: 840px;
    margin: 0 auto;
    padding: 90px 40px 120px;
    font-size: 20px;
    letter-spacing: 0;
  }
  .project-item div:nth-child(2) {
    margin-top: 0;
  }
  .project-item:not(:first-child) {
    margin-top: 60px;
  }
  .project-item:first-child {
    display: flex;
    align-items: center;
  }
  .project-item:first-child div:first-child {
    width: 290px;
  }
  .project-item:first-child div:nth-child(2) {
    flex: 1;
    margin: 0 0 0 30px;
  }
  .project-item:nth-child(2) div:first-child {
    width: 380px;
    margin-left: auto;
  }
  .project-item:nth-child(3) div:first-child {
    width: 420px;
    margin: 0 auto;
  }
  .project-item .c-button {
    max-width: 200px;
    margin: 20px 0 0 auto;
    padding-left: 26px;
    font-size: 14px;
  }
  .project-item .c-button::after {
    right: 20px;
    border-width: 10px 6px 0px 6px;
  }
  .project-item .c-button::before {
    top: calc(50% - 25px);
    left: 5px;
    width: 50px;
    height: 50px;
  }
  .project-qa {
    padding: 80px 40px 100px;
    border-radius: 0 0 25px 25px;
  }
  .project-qa-inner {
    max-width: 760px;
    margin: 0 auto;
  }
  .project-qa::before {
    top: -60px;
    left: 50px;
    width: 150px;
    height: 100px;
  }
  .project-qa-heading {
    font-size: 40px;
  }
  .project-qa-heading .lg {
    border: 5px solid var(--color-black);
  }
  .project-qa-heading .lg::after {
    right: -50px;
    top: auto;
    bottom: -50px;
    width: 180px;
    height: 180px;
  }
  .project-qa-list {
    position: relative;
    margin-top: 70px;
  }
  .project-qa-list::before {
    top: -40px;
    left: -40px;
    width: 90px;
    height: 90px;
  }
  .project-qa-item {
    padding: 30px;
    border-radius: 30px;
    font-size: 24px;
  }
  .project-qa-item:first-child .project-qa-item-answer-text {
    margin-top: 0;
  }
  .project-qa-item:not(:first-child) {
    margin-top: 50px;
  }
  .project-qa-item-heading {
    font-size: 32px;
  }
  .project-qa-item-text {
    margin: 20px 0 30px;
    padding-bottom: 30px;
    border-bottom: 5px solid var(--color-black);
  }
  .project-qa-item-text > div {
    margin-top: 20px;
    font-size: 35px;
  }
  .project-qa-item button {
    margin-top: 30px;
    font-size: 32px;
  }
  .project-qa-item-answer.--open {
    padding-top: 40px;
  }
  .project-qa-item-answer > p {
    font-size: 18px;
    font-weight: 900;
  }
  .project-qa-item-answer > p span {
    font-size: 35px;
  }
  .project-qa-item-answer-image {
    width: 180px;
    margin: 20px auto;
  }
  .project-qa-item-answer-text {
    font-size: 20px;
  }
}
@media screen and (min-width: 1024px), print {
  .project-item:nth-child(2) div:nth-child(2) {
    margin-top: -70px;
  }
  .project-qa-list::before {
    top: -70px;
    left: -60px;
  }
  .project-qa-item:nth-child(2) .project-qa-item-answer > div {
    flex-direction: column;
  }
  .project-qa-item:nth-child(2) .project-qa-item-answer-image {
    order: 2;
    width: 200px;
    margin: 0 0 0 auto;
  }
  .project-qa-item:nth-child(2) .project-qa-item-answer-text {
    order: 1;
  }
  .project-qa-heading .sm::after {
    opacity: 1;
  }
  .project-qa-heading .lg::after {
    width: 195px;
    height: 225px;
  }
  .project-qa-item-text {
    display: flex;
    align-items: flex-end;
    margin-top: -15px;
    line-height: 1.8;
  }
  .project-qa-item-text > div {
    margin: 0 0 0 auto;
  }
  .project-qa-item-answer > p {
    padding: 0 30px;
  }
  .project-qa-item-answer > div {
    display: flex;
    margin-top: 40px;
    padding: 0 10px;
  }
  .project-qa-item-answer-image {
    margin: 0 40px 0 0;
  }
  .project-qa-item-answer-text {
    flex: 1;
    line-height: 1.65;
  }
}


/* Contents */
/* ▼ comingsoon ▼ */
.contents-comingsoon {
  position: relative;
  margin-top: 1em;
  padding: .01em 0 0;
}
.contents-comingsoon .comingsoon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: calc(50 / 750 * 100vw);
  opacity: .98;
}
.contents-comingsoon .comingsoon img {
  display: block;
  width: 80%;
  max-width: 560px;
  margin: 0 auto;
}
.contents-comingsoon .contents-list {
  height: auto;
  opacity: 1;
  visibility: visible;
}
.contents-comingsoon .contents-list ul {
  margin-bottom: 0;
}
.contents-comingsoon .contents-list li:not(:first-child) {
  display: none;
}
.contents-comingsoon .contents-image::before {
  display: none;
}
/* ▲ comingsoon ▲ */
.contents {
  padding-bottom: calc(140 / 750 * 100vw);;
  background: var(--color-gray-light);
}
.contents .c-heading {
  margin-top: calc(-70 / 750 * 100vw);
}
.contents-list {
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.contents-list.--show {
  height: auto;
  opacity: 1;
  visibility: visible;
}
.contents-list:first-of-type {
  position: relative;
}
.contents-list:first-of-type::before {
  content: '';
  position: absolute;
  top: calc(-90 / 750 * 100vw);
  left: calc(-10 / 750 * 100vw);
  z-index: 3;
  width: calc(120 / 750 * 100vw);
  height: calc(80 / 750 * 100vw);
  background: url(../images/deco_10.svg) 0 0 / 100% no-repeat;
}
.contents-list ul {
  margin: calc(40 / 750 * 100vw) 0 calc(60 / 750 * 100vw);
}
.contents-list li {
  list-style: none;
}
.contents-list li:not(:first-child) {
  margin-top: calc(60 / 750 * 100vw);
}
.contents-list li:nth-child(2) .contents-image::before {
  right: auto;
  left: calc(-50 / 750 * 100vw);
}
.contents-list a {
  display: block;
  color: var(--color-black);
  text-decoration: none;
}
.contents-image {
  position: relative;
  margin: 0 calc(20 / 750 * 100vw) calc(20 / 750 * 100vw) 0;
}
.contents-image::before,
.contents-image::after {
  content: '';
  position: absolute;
  height: 100%;
}
.contents-image::before {
  right: calc(-50 / 750 * 100vw);
  bottom: calc(-50 / 750 * 100vw);
  width: 95%;
  background: var(--color-yellow-light);
}
.contents-image::after {
  right: calc(-20 / 750 * 100vw);
  bottom: calc(-20 / 750 * 100vw);
  width: 100%;
  border: calc(6 / 750 * 100vw) solid var(--color-black);
  background: #fff;
}
.contents-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(20 / 750 * 100vw);
  border: calc(6 / 750 * 100vw) solid var(--color-black);
  background: #fff;
}
.contents-text {
  position: relative;
  z-index: 2;
  margin-top: calc(35 / 750 * 100vw);
}
.contents-text p:nth-child(2) {
  margin-top: .3em;
  font-weight: 700;
}
@media screen and (min-width: 768px), print {
  /* ▼ comingsoon ▼ */
  .contents-comingsoon {
    margin: 0;
    padding: 0;
  }
  .contents-comingsoon .comingsoon {
    border-radius: 30px;
  }
  .contents-comingsoon .contents-list li:nth-child(n) {
    display: block;
  }
  .contents-comingsoon .contents-image::before {
    display: block;
  }
  /* ▲ comingsoon ▲ */
  .contents {
    padding-bottom: 160px;
  }
  .contents .c-heading {
    margin-top: -110px;
  }
  .contents-list ul {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 80px auto;
  }
  .contents-list:first-of-type::before {
    top: -60px;
    left: 30px;
    width: 130px;
    height: 80px;
  }
  .contents-list:first-of-type::after {
    content: '';
    position: absolute;
    right: 40px;
    bottom: 0;
    z-index: 3;
    width: 250px;
    height: 215px;
    background: url(../images/deco_11.svg) 0 0 / 100% no-repeat;
  }
  .contents-list li {
    width: calc(50% - 100px);
    margin: 0 50px;
  }
  .contents-list li:not(:first-child) {
    margin-top: 0;
  }
  .contents-list li:nth-child(2) {
    margin-top: 80px;
  }
  .contents-list li:nth-child(2) .contents-image::before {
    left: -50px;
  }
  .contents-image {
    margin: 0 10px 10px 0;
  }
  .contents-image::before {
    right: -50px;
    bottom: -35px;
  }
  .contents-image::after {
    right: -15px;
    bottom: -15px;
    border: 3px solid var(--color-black);
  }
  .contents-image img {
    padding: 20px;
    border: 3px solid var(--color-black);
  }
  .contents-text {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1024px), print {
  .contents-list:first-of-type::after {
    bottom: -40px;
    width: 380px;
    height: 315px;
  }
}
@media screen and (min-width: 1440px), print {
  .contents-list ul {
    max-width: 1200px;
  }
  .contents-list li {
    width: calc(50% - 200px);
    margin: 0 100px;
  }
  .contents-list li:nth-child(3) {
    margin-left: 200px;
  }
}

/* partner */
.partner {
  padding-bottom: calc(140 / 750 * 100vw);
}
.partner .c-heading {
  margin-top: calc(-70 / 750 * 100vw);
}
.partner.--style02 .c-heading .ja {
  color: var(--color-pink);
  letter-spacing: -.03em;
}
.partner-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: calc(40 / 750 * 100vw) calc(-10 / 750 * 100vw) 0;
}
.partner-list::before {
  content: '';
  position: absolute;
  top: calc(-80 / 750 * 100vw);
  right: calc(-20 / 750 * 100vw);
  z-index: 3;
  width: calc(100 / 750 * 100vw);
  height: calc(100 / 750 * 100vw);
  background: url(../images/deco_12.svg) 0 0 / 100% no-repeat;
}
.partner-list li {
  width: calc(50% - calc(20 / 750 * 100vw));
  margin: 0 calc(10 / 750 * 100vw);
  border: calc(6 / 750 * 100vw) solid var(--color-black);
  border-radius: calc(20 / 750 * 100vw);
  overflow: hidden;
}
.partner-list li:nth-child(n+3) {
  margin-top: calc(20 / 750 * 100vw);
}
@media screen and (min-width: 768px), print {
  .partner {
    padding-bottom: 170px;
  }
  .partner .c-heading {
    margin-top: -110px;
  }
  .partner-list {
    max-width: 1014px;
    margin: 100px auto 0;
  }
  .partner-list::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -40px;
    width: 120px;
    height: 120px;
  }
  .partner-list li {
    width: calc(33.33333% - 14px);
    margin: 0 7px;
    border: 3px solid var(--color-black);
    border-radius: 10px;
  }
  .partner-list li:nth-child(n+3) {
    margin-top: 0;
  }
  .partner-list li:nth-child(n+4) {
    margin-top: 14px;
  }
}

/* Media */
.media {
  padding-bottom: calc(140 / 750 * 100vw);
  background: url(../images/bg_section_03.png) 0 0 / cover no-repeat;
}
.media .c-heading {
  margin-top: calc(-70 / 750 * 100vw);
}
.media-inner {
  margin-top: calc(40 / 750 * 100vw);
  padding: calc(40 / 750 * 100vw);
  border: calc(10 / 750 * 100vw) solid var(--color-black);
  border-radius: calc(60 / 750 * 100vw);
}
.media-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 calc(-20 / 750 * 100vw);
}
.media-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(50% - calc(40 / 750 * 100vw));
  height: calc(210 / 750 * 100vw);
  margin: 0 calc(20 / 750 * 100vw);
  padding: .5em .5em 0 0;
  background: url(../images/bg_media_01.svg) center center / contain no-repeat;
  font-weight: 700;
  list-style: none;
  text-align: center;
}
.media-item a:link {
	color: var(--color-black);
	text-decoration: none;
  }
	
.media-item a:visited {
	color: var(--color-black);
  }
.media-item:nth-child(n+3) {
  margin-top: calc(40 / 750 * 100vw);
}
@media screen and (min-width: 768px), print {
  .media {
    padding-bottom: 190px;
    background: url(../images/bg_section_03.png) 0 0 / 100% repeat-y;
  }
  .media .c-heading {
    margin-top: -110px;
  }
  .media-inner {
    position: relative;
    max-width: 1000px;
    margin: 100px auto 0;
    padding: 25px 0 60px;
    border: 5px solid var(--color-black);
    border-radius: 30px;
  }
  .media-inner::after {
    content: '';
    position: absolute;
    top: 5px;
    right: -15px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border: 5px solid var(--color-black);
    border-radius: 35px;
	pointer-events: none;
}
  .media-list {
    max-width: 735px;
    margin: 0 auto;
  }
  .media-item {
    width: 205px;
    height: 170px;
    margin: 0 20px;
    font-size: 18px;
  }
  .media-item a:link {
	color: var(--color-black);
	text-decoration: none;
  }
	
  .media-item a:visited {
	color: var(--color-black);
  }
  .media-item:nth-child(n) {
    margin-top: 60px;
  }
}

/* Footer */
.footer {
  margin-top: calc(-60 / 750 * 100vw);
}
.footer-image {
  margin: 0 auto;
}
.footer-image:first-child {
  padding-right: 1em;
  width: calc(220 / 750 * 100vw);
}
.footer-image:nth-child(2) {
  width: calc(350 / 750 * 100vw);
  margin-top: calc(40 / 750 * 100vw);
}
.footer footer {
  position: relative;
  margin-top: calc(40 / 750 * 100vw);
  padding: calc(60 / 750 * 100vw) calc(30 / 750 * 100vw) calc(40 / 750 * 100vw);
  background: var(--color-skyblue);
  border-top: calc(10 / 750 * 100vw) solid var(--color-black);
  border-bottom: calc(10 / 750 * 100vw) solid var(--color-black);
}
.footer-logo {
  position: relative;
  width: calc(300 / 750 * 100vw);
  margin: 0 auto;
}
.footer-logo::before,
.footer-logo::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.footer-logo::before {
  left: calc(-140 / 750 * 100vw);
  width: calc(100 / 750 * 100vw);
  height: calc(120 / 750 * 100vw);
  background: url(../images/deco_14.svg) 0 0 / 100% no-repeat;
}
.footer-logo::after {
  right: calc(-160 / 750 * 100vw);
  width: calc(120 / 750 * 100vw);
  height: calc(120 / 750 * 100vw);
  background: url(../images/deco_15.svg) 0 0 / 100% no-repeat;
}
.footer small {
  display: block;
  margin-top: calc(40 / 750 * 100vw);
  color: #fff;
  font-size: calc(24 / 750 * 100vw);
  text-align: center;
}
.footer-pagetop {
  display: block;
  position: absolute;
  right: calc(20 / 750 * 100vw);
  top: calc(-130 / 750 * 100vw);
  width: calc(100 / 750 * 100vw);
  height: calc(100 / 750 * 100vw);
}
@media screen and (min-width: 768px), print {
  .footer {
    margin-top: -75px;
  }
  .footer-image:first-child {
    width: 180px;
  }
  .footer-image:nth-child(2) {
    width: 480px;
    margin-top: 50px;
  }
  .footer footer {
    margin-top: 60px;
    padding: 100px 0;
    border-top: 8px solid var(--color-black);
    border-bottom: 8px solid var(--color-black);
  }
  .footer-logo {
    width: 270px;
  }
  .footer-logo::before {
    left: -170px;
    width: 120px;
    height: 140px;
  }
  .footer-logo::after {
    right: -210px;
    width: 160px;
    height: 140px;
  }
  .footer small {
    margin-top: 35px;
    font-size: 19px;
  }
  .footer-pagetop {
    right: 20px;
    top: -105px;
    width: 75px;
    height: 75px;
  }
}