@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-yellow      : #FFDE4C;
  --color-red         : #F20819;
  --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 blinking {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(2%);
  }
}



/* 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(60 / 750 * 100vw) calc(30 / 750 * 100vw);
}
.l-section-body {
  background: #fff;
  border: calc(10 / 750 * 100vw) solid var(--color-black);
  border-radius: calc(60 / 750 * 100vw);
}
@media screen and (min-width: 768px), print {
  .l-section {
    padding: 60px 20px;
  }
  .l-section-body {
    border: 5px solid var(--color-black);
    border-radius: 30px;
  }
}
@media screen and (min-width: 1024px), print {
  .l-section-inner {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
  }
  .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;
  }
}

/* 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);
  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-black);
  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: calc(200 / 750 * 100vw) 0 0;
}
.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 ul li:last-child {
  margin-top: .5em;
}
_:lang(x)::-internal-media-controls-overlay-cast-button, .nav-modal ul li:last-child {
  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-black);
}
.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%;
}
.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;
  text-orientation: sideways;
	writing-mode: vertical-rl;
}
.nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: calc(50% - .2em);
  width: .4em;
  height: .4em;
  background: #fff;
  border-radius: 100vmax;
}
.nav a span {
  display: inline-block;
}
@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-yellow);
    opacity: 1;
  }
  .nav-modal a:hover::before {
    background: var(--color-yellow);
  }
  .nav a {
    transition: color .6s ease;
  }
  .nav a::before {
    transition: background .6s ease;
  }
  .nav a:hover {
    color: var(--color-yellow);
    opacity: 1;
  }
  .nav a:hover::before {
    background: var(--color-yellow);
  }
}
@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;
  }
  .nav-modal-contents-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-right: 5em;
  }
  .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 0 0 12%;
  }
  .nav-modal ul::before {
    top: calc(-70 / 1920 * 100vw);
    right: calc(-200 / 1920 * 100vw);
    width: calc(128 / 1920 * 100vw);
    height: calc(114 / 1920 * 100vw);
  }
  .nav-modal ul li + li {
    margin-top: calc(32 / 1920 * 100vw);
  }
  .nav-modal ul li:last-child {
    margin-top: calc(20 / 1920 * 100vw);
  }
  _:lang(x)::-internal-media-controls-overlay-cast-button, .nav-modal ul li:last-child {
    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 {
  position: relative;
  height: calc(1100 / 750 * 100vw);
  padding-top: calc(60 / 750 * 100vw);
  background: repeating-linear-gradient(135deg, var(--color-red), var(--color-red) calc(60 / 750 * 100vw), #FF3938 calc(60 / 750 * 100vw), #FF3938 calc(120 / 750 * 100vw));
  overflow: hidden;
}
.visual-logo {
  padding-right: .5em;
  width: calc(630 / 750 * 100vw);
  margin: 0 auto;
}
.visual-image span {
  position: absolute;
  bottom: calc(300 / 750 * 100vw);
  display: block;
}
.visual-image .move {
  animation: fuwafuwa 2s ease-in-out infinite alternate;
}
.visual-image .blink {
  animation: blinking 1s ease-in-out infinite alternate;
}
.visual-image.--lg {
  display: none;
}
@media screen and (min-width: 768px), print {
  .visual {
    height: 1000px;
    padding-top: 60px;
    background: repeating-linear-gradient(135deg, var(--color-red), var(--color-red) 20px, #FF3938 20px, #FF3938 40px);
  }
  .visual-logo {
    width: 650px;
  }
  .visual-image span {
    bottom: 250px;
  }
}
@media screen and (min-width: 1024px), print {
  .visual {
    height: 100vh;
  }
  .visual-logo {
    width: auto;
    height: 45vh;
  }
  .visual-logo img {
    width: auto;
    height: 100%;
    margin: 0 auto;
  }
  .visual-image.--sm {
    display: none;
  }
  .visual-image.--lg {
    display: block;
  }
  .visual-image .left span {
    left: 0;
    right: auto;
  }
  .visual-image .right span {
    right: 0;
    left: auto;
  }
  .visual-image span {
    bottom: 0;
    width: auto;
    height: 77vh;
  }
  .visual-image span img {
    width: auto;
    height: 100%;
  }
}

/* HOW TO */
.howto {
  position: relative;
  z-index: 2;
  margin-top: calc(-350 / 750 * 100vw);
}
.howto-heading {
  position: relative;
  padding: calc(140 / 750 * 100vw) 0 calc(40 / 750 * 100vw);
  text-align: center;
}
.howto-heading::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(180 / 750 * 100vw);
  background: var(--color-yellow);
  border-radius: calc(50 / 750 * 100vw) calc(50 / 750 * 100vw) 0 0;
}
.howto-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_02.png) 0 0 / 100% no-repeat; 
}
.howto-heading .en {
  position: relative;
  z-index: 2;
  display: block;
  font-size: calc(65 / 750 * 100vw);
  font-weight: 900;
  letter-spacing: .1em;
}
.howto-heading .en::after {
  content: '';
  position: absolute;
  top: calc(-10 / 750 * 100vw);
  right: calc(30 / 750 * 100vw);
  width: calc(90 / 750 * 100vw);
  height: calc(90 / 750 * 100vw);
  background: url(../images/deco_01.svg) center center / 100% no-repeat;
}
.howto-lead {
  margin-bottom: calc(10 / 750 * 100vw);
  padding: 0 calc(40 / 750 * 100vw);
  color: var(--color-red);
  font-size: calc(34 / 750 * 100vw);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
}
.howto-text {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 calc(40 / 750 * 100vw);
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.6;
}
.howto-text div {
  width: calc(450 / 750 * 100vw);
  margin: 0 auto calc(10 / 750 * 100vw);
}
.howto-adviser {
  margin-top: calc(100 / 750 * 100vw);
  padding-top: calc(20 / 750 * 100vw);
  background: var(--color-yellow);
  border-radius: 0 0 calc(50 / 750 * 100vw) calc(50 / 750 * 100vw);
}
.howto-adviser-heading {
  margin-top: calc(-60 / 750 * 100vw);
  font-size: calc(65 / 750 * 100vw);
  font-weight: 900;
  letter-spacing: .1em;
  text-align: center;
}
.howto-profile {
  margin-top: calc(120 / 750 * 100vw);
}
.howto-profile:nth-of-type(2) {
  padding-bottom: calc(60 / 750 * 100vw);
}
.howto-profile:nth-of-type(2) .howto-profile-heading::after {
  background: url(../images/img_howto_02.png) center center / 100% no-repeat;
}
.howto-profile-heading {
  position: relative;
  margin: 0 calc(-20 / 750 * 100vw);
  padding: calc(10 / 750 * 100vw) calc(30 / 750 * 100vw);
  background: var(--color-red);
  border: calc(6 / 750 * 100vw) solid var(--color-black);
}
.howto-profile-heading::after {
  content: '';
  position: absolute;
  top: calc(-110 / 750 * 100vw);
  right: calc(-10 / 750 * 100vw);
  width: calc(220 / 750 * 100vw);
  height: calc(220 / 750 * 100vw);
  background: url(../images/img_howto_03.png) center center / 100% no-repeat;
}
.howto-profile-heading-inner {
  position: relative;
}
.howto-profile-heading .en {
  position: absolute;
  top: -2.5em;
  left: 0;
  font-size: calc(28 / 750 * 100vw);
}
.howto-profile-heading .jp {
  color: #fff;
}
.howto-profile-heading .jp span {
  display: block;
  font-size: calc(48 / 750 * 100vw);
}
.howto-profile-heading .jp span:nth-child(2) {
  margin-top: .2em;
  font-size: calc(30 / 750 * 100vw);
}
.howto-profile-text {
  padding: calc(40 / 750 * 100vw);
  background: #fff;
  line-height: 1.7;
}
.howto-profile-text strong {
  background: rgba(242, 82, 5, .2);
}
@media screen and (min-width: 768px), print {
  .howto {
    margin-top: -300px;
  }
  .howto-heading {
    padding: 80px 0 60px;
  }
  .howto-heading::before {
    height: 100px;
    border-radius: 25px 25px 0 0;
  }
  .howto .howto-heading::after {
    top: 30px;
    left: -10px;
    width: 240px;
    height: 60px;
    transform: rotate(-5deg);
  }
  .howto-heading .en {
    padding-left: 0;
    font-size: 60px;
  }
  .howto-heading .en::after {
    top: -60px;
    right: 30px;
    width: 160px;
    height: 140px;
  }
  .howto-lead {
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
  }
  .howto-text {
    padding: 0 40px;
    font-size: 20px;
  }
  .howto-text div {
    width: 350px;
    margin: 0 auto 10px;
  }
  .howto-adviser {
    margin-top: 60px;
    padding-top: 10px;
    border-radius: 0 0 25px 25px;
  }
  .howto-adviser-heading {
    margin-top: -50px;
    font-size: 60px;
  }
  .howto-profile {
    margin-top: 70px;
  }
  .howto-profile:nth-of-type(2) {
    margin-top: 110px;
    padding-bottom: 30px;
  }
  .howto-profile-heading {
    margin: 0 -10px;
    padding: 10px;
    border: 4px solid var(--color-black);
  }
  .howto-profile-heading::after {
    top: calc(50% - 120px);
    right: 8%;
    width: 220px;
    height: 220px;
  }
  .howto-profile-heading-inner {
    max-width: 700px;
    margin: 0 auto;
  }
  .howto-profile-heading .en {
    font-size: 18px;
  }
  .howto-profile-heading .jp span {
    font-size: 24px;
  }
  .howto-profile-heading .jp span:nth-child(2) {
    margin-top: 0;
    font-size: 18px;
  }
  .howto-profile-text {
    max-width: 780px;
    margin: 30px auto 0;
    padding: 30px 50px;
    border-radius: 10px;
  }
}
@media screen and (min-width: 1024px), print {
  .howto {
    margin-top: -46vh;
  }
  .howto-profile-heading {
    margin: 0 -20px 0 -15px;
  }
  .howto-profile-heading .jp span {
    display: inline-block;
  }
}

/* QA */
.qa {
  background-color: #fff;
  background-image: radial-gradient(circle, var(--color-black) calc(4 / 750 * 100vw), transparent calc(4 / 750 * 100vw));
  background-position: 0 0;
  background-size: calc(30 / 750 * 100vw) calc(30 / 750 * 100vw);
}
.qa-tab-list {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}
.qa-tab-list > * {
  flex: 1;
  padding: calc(20 / 750 * 100vw) calc(10 / 750 * 100vw);
  background: #fff;
  border: calc(10 / 750 * 100vw) solid var(--color-black);
  border-radius: calc(30 / 750 * 100vw) calc(30 / 750 * 100vw) 0 0;
  color: var(--color-red);
  font-weight: 900;
  text-align: center;
}
.qa-tab-list > *.--active {
  background: var(--color-red);
  border-bottom: none;
  color: #fff;
}
.qa-tab-list > * + * {
  margin-left: .5em;
}
.qa-tab-content {
  position: relative;
  margin-top: calc(-10 / 750 * 100vw);
  padding: calc(40 / 750 * 100vw);
  background: var(--color-red);
  border: calc(10 / 750 * 100vw) solid var(--color-black);
  border-radius: 0 0 calc(50 / 750 * 100vw) calc(50 / 750 * 100vw);
}
.qa-list {
  display: none;
  max-width: 760px;
  margin: 0 auto;
}
.qa-list.--active {
  display: block;
}
.qa-item {
  padding: calc(30 / 750 * 100vw);
  background: #fff;
  border-radius: calc(20 / 750 * 100vw);
  font-weight: 700;
  line-height: 1.65;
}
.qa-item:not(:first-child) {
  margin-top: calc(40 / 750 * 100vw);
}
.qa-item-heading {
  font-size: calc(30 / 750 * 100vw);
  font-weight: 500;
}
.qa-item-text {
  margin: calc(10 / 750 * 100vw) 0 calc(30 / 750 * 100vw);
  padding-bottom: calc(30 / 750 * 100vw);
  border-bottom: calc(6 / 750 * 100vw) solid var(--color-black);
  font-size: calc(36 / 750 * 100vw);
  font-weight: 900;
}
.qa-item button {
  display: block;
  width: 100%;
  margin-top: calc(20 / 750 * 100vw);
  padding: 0 0 .3em;
  background: var(--color-black);
  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, .qa-item button {
  padding: .5em .2em .2em;
}
.qa-item-answer {
  height: 0;
  line-height: 1.8;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), padding var(--transition);
}
.qa-item-answer p + p {
  margin-top: 1em;
}
.qa-item-answer.--open {
  height: auto;
  padding-top: calc(30 / 750 * 100vw);
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 768px), print {
  .qa {
    background-image: radial-gradient(circle, var(--color-black) 2px, transparent 2px);
    background-size: 20px 20px;
  }
  .qa-tab-list > * {
    padding: 20px 10px;
    border-width: 5px;
    border-radius: 30px 30px 0 0;
    font-size: 36px;
  }
  .qa-tab-content {
    margin-top: -5px;
    padding: 40px;
    border-width: 5px;
    border-radius: 0 0 30px 30px;
  }
  .qa-item {
    padding: 30px;
    border-radius: 30px;
    font-size: 24px;
  }
  .qa-item:not(:first-child) {
    margin-top: 40px;
  }
  .qa-item-heading {
    font-size: 24px;
  }
  .qa-item-text {
    margin: 15px 0 30px;
    padding-bottom: 30px;
    border-bottom: 5px solid var(--color-black);
    font-size: 32px;
  }
  .qa-item-text > div {
    margin-top: 20px;
    font-size: 35px;
  }
  .qa-item button {
    margin-top: 30px;
    font-size: 32px;
  }
  .qa-item-answer {
    font-size: 20px;
  }
  .qa-item-answer.--open {
    padding-top: 30px;
  }
}

/* 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-yellow);
  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_04.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_05.svg) 0 0 / 100% no-repeat;
}
.footer small {
  display: block;
  margin-top: calc(40 / 750 * 100vw);
  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: 60px;
  }
  .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;
  }
}