/*
  https://github.com/andy-piccalilli/modern-css-reset/blob/master/LICENSE
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  text-rendering: optimizespeed;
  line-height: var(--line-height);
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
}

picture {
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

:root {
  /* breakpoint */
  --breakpoint: 1024px;
  /* width */
  --width-content: 1200px;
  --width-footer: 1000px;
  /* height */
  --indicator-height: 12px;
  /* shadow */
  --shadow-card: 0 8px 10px 0 rgb(0 0 0 / .09);
  /* color */
  --color-yayoi-blue: #1e7ed7;
  --color-yayoi-red: #f75c7c;
  --color-yayoi-green: #03c9ab;
  --color-yayoi-yellow: #fecf1c;
  --color-txt-priority: #2c3650;
  --color-txt-secondary: #182d62;
  --color-kaikei: #0085cc;
  --color-aoiroshinkoku: #00b8ee;
  --color-shiroiroshinkoku: #7ecbf1;
  --color-kyuyo: #009640;
  --color-kyuyo-detail: #6fb92c;
  --color-seikyusho: #fa3b7a;
  --color-hambai: #e9617c;
  --color-white: #fff;
  --color-black: #000;
  --color-bg: #fffaf9;
  --color-bg-secondary: #fbf2f0;
  --color-current-bg: var(--color-bg);
  /* font */
  --font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  --font-weight: 400;
  --font-weight-bold: 700;
  /* opacity */
  --acq-opacity-hover: .7;
  /* transition */
  --transition: .3s cubic-bezier(.17, .89, .33, 1.45);
  --transition-fade: 1s cubic-bezier(.26, 1, .48, 1);
  --transition-fade2: .5s cubic-bezier(.26, 1, .48, 1);
  --transition-bounce: .5s cubic-bezier(.17, .89, .32, 1.27);
  --transition-cursor: var(--transition);
  --transition-movie: var(--transition);
  --transition-tab: var(--transition);
  --transition-band: .8s cubic-bezier(.22, 1, .36, 1);
  --transition-pagetop: .5s cubic-bezier(.84, 0, .16, 1);
  --transition-delay: .08s;
  /* z-index */
  --z-index-cursor: 9999;
  --z-index-overlay: 7000;
  --z-index-header: 5000;
  --z-index-indicator: 3000;
  --z-index-layer2: 10;
  --z-index-layer1: 5;
  --z-index-behind: -1;
  /* animation */
  --one-letter-duration: var(--transition-delay);
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}
html::-webkit-scrollbar {
  display: none;
}
html.is-modal-open {
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  html.is-modal-open {
    scrollbar-gutter: auto;
  }
}

body {
  display: flex;
  flex-direction: column;
  color: var(--color-txt-priority);
  font-family: var(--font-family);
  font-weight: var(--font-weight);
  font-size: 1.6rem;
  line-height: var(--line-height);
  word-break: break-all;
  text-rendering: optimizespeed;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

main {
  background-color: var(--color-current-bg);
  transition: background-color var(--transition-fade);
}

p {
  margin: 0 0 var(--acq-spacing-xs);
}

a {
  color: var(--acq-color-primary);
  font-weight: var(--acq-font-weight-bold);
  text-decoration: underline;
  text-underline-offset: 0.1em;
  transition: color var(--acq-transition-duration) var(--acq-transition-tf);
}
a:is(:hover, :active, :focus-visible) {
  color: var(--acq-color-primary-hover);
}

em {
  font-weight: var(--acq-font-weight-bold);
  font-style: normal;
}

ul,
ol,
dl {
  margin: 0 0 var(--acq-spacing-md);
  padding: 0;
}

ul[class],
ol[class] {
  list-style: none;
}

dfn {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

img {
  height: auto;
  vertical-align: bottom;
}

iframe {
  border: 0;
  max-width: 100%;
  vertical-align: bottom;
}

video {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

button {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  color: inherit;
}

::placeholder {
  opacity: 1;
}

input[type=file] {
  width: 100%;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

summary {
  list-style: none;
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}
summary[tabindex="-1"] {
  cursor: auto;
}

dialog {
  max-width: calc(100% - 32px);
  max-height: calc(100% - 32px);
  padding: 0;
  border: none;
}
dialog::-webkit-backdrop {
  background-color: rgba(0, 0, 0, 0.8);
}
dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.8);
}
html.js-unavailable dialog {
  position: relative;
  display: block;
}

@keyframes typing-animation {
  from {
    opacity: 1;
    width: 0;
  }
  to {
    opacity: 1;
    width: 100%;
  }
}
@keyframes blink-caret {
  0%, 100% {
    border-color: transparent;
  }
  50% {
    border-color: currentcolor;
  }
}
@keyframes move-logo {
  0% {
    top: 0;
    left: calc(50% - 740px);
    width: 650px;
    height: 650px;
  }
  100% {
    top: calc(100% - 350px);
    left: -60px;
    width: 540px;
    height: 540px;
  }
}
@keyframes move-top {
  from {
    transform: translateY(100px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein-02 {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadein-03 {
  from {
    opacity: 0;
    transform: translateY(calc(-50% + 30px));
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}
@keyframes bounce-animation {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  95% {
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes band-animation {
  from {
    opacity: 1;
    width: 0;
  }
  to {
    opacity: 1;
    width: 100%;
  }
}
@keyframes color-animation {
  from {
    color: transparent;
  }
  to {
    color: currentcolor;
  }
}
@keyframes before-img-animation-01 {
  from {
    opacity: 0;
    transform: translateY(calc(-50% + 40px));
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}
@keyframes before-img-animation-01-sp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes before-img-animation-02 {
  from {
    scale: 1;
  }
  to {
    scale: 0.77;
  }
}
@keyframes before-img-animation-03 {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translate(-50%, 30%);
  }
}
@keyframes before-img-animation-03-sp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translate(-150%, 100%);
  }
}
/* ----------------------------------------------------------------
    Content (.content[-*])
----------------------------------------------------------------- */
.content {
  --next-line-delay: .3s;
  position: relative;
  width: 100%;
  padding: 150px 120px;
  overflow-x: clip;
}
.content:first-of-type {
  padding-top: 130px;
}
.content.is-shown {
  opacity: 1;
  visibility: visible;
}
.content#content-10 .content_inner, .content#content-11 .content_inner, .content#content-12 .content_inner, .content#content-13 .content_inner {
  --width-content: 1000px;
  position: relative;
  display: grid;
  gap: 40px;
  width: 100%;
  max-width: var(--width-content);
  height: auto;
  margin: 0 auto;
  z-index: var(--z-index-layer1);
}
.content#content-14 {
  background-color: var(--color-yayoi-blue);
  padding: 0;
}
.content_inner {
  position: relative;
  width: 100%;
  max-width: var(--width-content);
  margin: 0 auto;
  z-index: var(--z-index-layer1);
}
.content h2 {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
}
.content h2 > span {
  display: block;
  width: 0;
  max-width: -moz-fit-content;
  max-width: fit-content;
  white-space: nowrap;
  border-right: 5px solid transparent;
}
@media only screen and (max-width: 1024px) {
  .content {
    padding: 0;
  }
  .content + .content, .content:first-of-type {
    padding-top: 0;
  }
  .content:last-of-type {
    padding-bottom: 0;
  }
  .content #content-10 .content_inner,
  .content #content-11 .content_inner,
  .content #content-12 .content_inner,
  .content #content-13 .content_inner {
    padding-inline: 20px;
  }
}

/* #content-01
----------------------------------------------- */
#content-01 {
  position: relative;
  display: flex;
  align-items: center;
}
#content-01.is-animated .content_inner::before {
  animation: fadein-03 var(--transition-fade) forwards;
}
#content-01.is-animated .content_content {
  animation: move-top 0.8s cubic-bezier(0.26, 1, 0.48, 1) forwards var(--move-top-delay);
}
#content-01.is-animated .content_media {
  animation: bounce-animation var(--transition-bounce) forwards var(--panel-delay);
}
#content-01.is-animated h1 > span:nth-child(1) {
  overflow: hidden;
  animation: typing-animation var(--first-duration) steps(var(--first-length), end) forwards var(--first-delay), blink-caret var(--first-duration) step-end forwards var(--first-delay);
}
#content-01.is-animated h1 > span:nth-child(2) {
  overflow: hidden;
  animation: typing-animation var(--second-duration) steps(var(--second-length), end) forwards var(--second-delay), blink-caret var(--second-duration) step-end forwards var(--second-delay);
}
#content-01.is-animated h1 > span:nth-child(3) {
  overflow: hidden;
  animation: typing-animation var(--third-duration) steps(var(--third-length), end) forwards var(--third-delay), blink-caret var(--third-duration) step-end forwards var(--third-delay);
}
#content-01.is-animated > a {
  animation: fadein var(--transition-fade) forwards;
}
#content-01.is-animated p {
  animation: fadein var(--transition-fade) calc(var(--move-top-delay)) forwards;
}
#content-01 .content_inner {
  --first-length: 5;
  --first-delay: .8s;
  --first-duration: calc(var(--first-length) * var(--one-letter-duration));
  --second-length: 5;
  --second-duration: calc(var(--second-length) * var(--one-letter-duration));
  --second-delay: calc(var(--first-duration) + var(--first-delay) + var(--next-line-delay));
  --third-length: 7;
  --third-duration: calc(var(--third-length) * var(--one-letter-duration));
  --third-delay: calc(var(--second-duration) + var(--second-delay) + var(--next-line-delay));
  --move-top-delay: calc(var(--third-duration) + var(--third-delay) + .5s);
}
#content-01 .content_inner h1 {
  display: inline-block;
  font-size: 7rem;
  line-height: 101px;
  overflow: hidden;
}
#content-01 .content_inner h1 > span {
  display: block;
  width: 0;
  max-width: -moz-fit-content;
  max-width: fit-content;
  white-space: nowrap;
  border-right: 5px solid transparent;
}
#content-01 .content_inner p {
  font-weight: var(--font-weight-bold);
  line-height: 32px;
  margin-top: 52px;
  opacity: 0;
}
#content-01 .content_content {
  width: 50%;
  margin-left: auto;
  transform: translateY(100px);
}
#content-01 .content_media {
  opacity: 0;
  --panel-delay: 3.5s;
}
#content-01 > a {
  position: absolute;
  top: 40px;
  right: 40px;
  opacity: 0;
}
@media only screen and (max-width: 1024px) {
  #content-01 {
    display: block;
  }
  #content-01.is-animated .content_inner::before {
    animation: fadein-02 var(--transition-fade) forwards;
  }
  #content-01 .content_inner {
    padding: 328px 20px 54px;
  }
  #content-01 .content_inner h1 {
    font-size: 4rem;
    line-height: 61px;
  }
  #content-01 .content_inner p {
    margin-top: 24px;
  }
  #content-01 .content_content {
    width: auto;
  }
  #content-01 > a {
    top: 20px;
    right: 20px;
    max-width: 82px;
  }
}

/* #content-02
----------------------------------------------- */
#content-02 {
  display: flex;
  align-items: center;
}
#content-02.is-animated .content_txt > p:nth-child(1) {
  animation: fadein-02 var(--transition-fade2) 0.5s forwards;
}
#content-02.is-animated .content_txt > p:nth-child(2) {
  animation: fadein-02 var(--transition-fade2) 1s forwards;
}
#content-02.is-animated .content_txt > p:nth-child(3) {
  animation: fadein-02 var(--transition-fade2) 1.5s forwards;
}
#content-02.is-animated .content_txt > p:nth-child(4) {
  animation: fadein-02 var(--transition-fade2) 2s forwards;
}
#content-02.is-animated .content_txt > p:nth-child(5) {
  animation: fadein-02 var(--transition-fade2) 2.5s forwards;
}
#content-02.is-animated .content_txt > p:nth-child(6) {
  animation: fadein-02 var(--transition-fade2) 3s forwards;
}
#content-02.is-animated h2 > span:nth-child(1) {
  overflow: hidden;
  animation: typing-animation var(--first-duration) steps(var(--first-length), end) forwards var(--first-delay), blink-caret var(--first-duration) step-end forwards var(--first-delay);
}
#content-02.is-animated h2 > span:nth-child(2) {
  overflow: hidden;
  animation: typing-animation var(--second-duration) steps(var(--second-length), end) forwards var(--second-delay), blink-caret var(--second-duration) step-end forwards var(--second-delay);
}
#content-02.is-animated h2 > span:nth-child(3) {
  overflow: hidden;
  animation: typing-animation var(--third-duration) steps(var(--third-length), end) forwards var(--third-delay), blink-caret var(--third-duration) step-end forwards var(--third-delay);
}
#content-02 .content_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
#content-02 .content_txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 38px;
  flex: 1;
  width: 100%;
  max-width: 50%;
  color: var(--color-white);
  margin-left: auto;
}
#content-02 .content_txt > p {
  line-height: 38px;
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  opacity: 0;
  margin-bottom: 0;
}
#content-02 h2 {
  color: var(--color-white);
  font-size: 5.5rem;
  line-height: 83px;
}
#content-02 h2 > span {
  --first-length: 5;
  --first-duration: calc(var(--first-length) * var(--one-letter-duration));
  --first-delay: .8s;
  --second-length: 5;
  --second-duration: calc(var(--second-length) * var(--one-letter-duration));
  --second-delay: calc(var(--first-duration) + var(--first-delay) + var(--next-line-delay));
  --third-length: 7;
  --third-duration: calc(var(--third-length) * var(--one-letter-duration));
  --third-delay: calc(var(--second-duration) + var(--second-delay) + var(--next-line-delay));
}
@media only screen and (max-width: 1024px) {
  #content-02.is-animated .content_txt > p:nth-child(1), #content-02.is-animated .content_txt > p:nth-child(2), #content-02.is-animated .content_txt > p:nth-child(3), #content-02.is-animated .content_txt > p:nth-child(4), #content-02.is-animated .content_txt > p:nth-child(5), #content-02.is-animated .content_txt > p:nth-child(6) {
    animation: none;
  }
  #content-02 .content_inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 20px 92px;
  }
  #content-02 .content_txt {
    max-width: none;
    gap: 32px;
    margin-left: 0;
  }
  #content-02 .content_txt p {
    font-size: 1.6rem;
  }
  #content-02 .content_txt p.is-animated:nth-child(1), #content-02 .content_txt p.is-animated:nth-child(2), #content-02 .content_txt p.is-animated:nth-child(3), #content-02 .content_txt p.is-animated:nth-child(4), #content-02 .content_txt p.is-animated:nth-child(5), #content-02 .content_txt p.is-animated:nth-child(6) {
    animation: fadein-02 var(--transition-fade2) forwards;
  }
  #content-02 h2 {
    font-size: 4rem;
    line-height: 63px;
  }
}

/* #content-03
----------------------------------------------- */
#content-03.is-animated .content_movie {
  animation: bounce-animation var(--transition-bounce) forwards;
}
#content-03 .content_movie {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  max-width: 880px;
  height: auto;
  text-decoration: none;
  border-radius: 20px;
  aspect-ratio: 880/495;
  opacity: 0;
  overflow: hidden;
  margin: auto;
  z-index: var(--z-index-layer1);
}
#content-03 .content_movie:is(:hover, :active, :focus-visible)::before {
  scale: 1.15;
}
#content-03 .content_movie::before, #content-03 .content_movie::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: var(--z-index-behind);
}
#content-03 .content_movie::before {
  background-image: url("/next/common/img/img-thumb.jpg");
  background-size: cover;
  background-position: center;
  scale: 1.05;
  transition: scale var(--transition-movie);
}
#content-03 .content_movie::after {
  background-color: rgba(0, 0, 0, 0.5);
}
#content-03 .content_movie-txt {
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  line-height: 56px;
  color: var(--color-white);
}
#content-03 .content_modal {
  --close-btn-size: 70px;
  width: min(100% - 32px, 1200px);
  max-width: 1200px;
  overflow: initial;
  padding-inline: 100px;
  background-color: transparent;
}
#content-03 .content_modal-close-btn {
  position: absolute;
  top: -120px;
  right: 0;
  width: var(--close-btn-size);
  height: var(--close-btn-size);
  z-index: var(--z-index-layer1);
}
@media only screen and (max-width: 1024px) {
  #content-03 {
    padding: 156px 20px;
  }
  #content-03 .content_movie {
    max-height: 500px;
    aspect-ratio: 335/500;
  }
  #content-03 .content_movie-icon {
    max-width: 50px;
  }
  #content-03 .content_movie-txt {
    font-size: 1.3rem;
    line-height: 22px;
  }
  #content-03 .content_modal {
    --close-btn-size: 50px;
    width: 100%;
    padding: 0;
  }
  #content-03 .content_modal-close-btn {
    position: fixed;
    top: 30px;
    right: 30px;
  }
}

/* #content-04
----------------------------------------------- */
#content-04 {
  position: relative;
  display: flex;
  min-height: 1040px;
}
#content-04.is-animated .content_txt {
  animation: fadein-02 var(--transition-fade) var(--txt-delay) forwards;
}
#content-04.is-animated h2 > span:nth-child(1) {
  overflow: hidden;
  animation: typing-animation var(--first-duration) steps(var(--first-length), end) forwards var(--first-delay), blink-caret var(--first-duration) step-end forwards var(--first-delay);
}
#content-04.is-animated h2 > span:nth-child(2) {
  overflow: hidden;
  animation: typing-animation var(--second-duration) steps(var(--second-length), end) forwards var(--second-delay), blink-caret var(--second-duration) step-end forwards var(--second-delay);
}
#content-04 .content_inner {
  display: flex;
  align-items: center;
}
#content-04 .content_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  gap: 26px;
  width: 100%;
  max-width: 511px;
}
#content-04 .content_txt {
  --txt-delay: .8s;
  display: grid;
  gap: 32px;
  max-width: 500px;
  font-weight: var(--font-weight-bold);
  line-height: 32px;
  color: var(--color-white);
  opacity: 0;
  text-shadow: 0 0 5px var(--color-current-bg);
}
#content-04 .content_img {
  position: relative;
  opacity: 0;
  aspect-ratio: 3290/3165;
  z-index: -1;
}
#content-04 .content_img.is-animated {
  animation: bounce-animation var(--transition-bounce) forwards;
}
#content-04 h2 {
  font-size: 4.6rem;
  line-height: 80px;
  color: var(--color-white);
  text-shadow: 0 0 5px var(--color-current-bg);
}
#content-04 h2.content_hdg-sp {
  display: none;
}
#content-04 h2 > span {
  --first-length: 7;
  --first-duration: calc(var(--first-length) * var(--one-letter-duration));
  --first-delay: .8s;
  --second-length: 11;
  --second-duration: calc(var(--second-length) * var(--one-letter-duration));
  --second-delay: calc(var(--first-duration) + var(--first-delay) + var(--next-line-delay));
}
@media only screen and (max-width: 1024px) {
  #content-04 {
    min-height: auto;
  }
  #content-04.is-animated h2 > span:nth-child(3) {
    overflow: hidden;
    animation: typing-animation var(--third-duration) steps(var(--third-length), end) forwards var(--third-delay), blink-caret var(--third-duration) step-end forwards var(--third-delay);
  }
  #content-04 .content_inner {
    flex-direction: column;
    height: auto;
    overflow-x: clip;
  }
  #content-04 .content_inner::before {
    content: none;
  }
  #content-04 .content_content {
    justify-content: flex-start;
    gap: 32px;
    padding: 40px 20px;
  }
  #content-04 .content_txt {
    font-size: 1.6rem;
    line-height: 32px;
  }
  #content-04 .content_img {
    right: unset;
    object-fit: cover;
  }
  #content-04 h2 {
    max-width: calc(100vw - 40px);
    font-size: 3.6rem;
    line-height: 57px;
  }
  #content-04 h2.content_hdg-pc {
    display: none;
  }
  #content-04 h2.content_hdg-sp {
    display: block;
  }
  #content-04 h2 > span {
    --second-length: 7;
    --third-length: 5;
    --third-duration: calc(var(--third-length) * var(--one-letter-duration));
    --third-delay: calc(var(--second-duration) + var(--second-delay) + var(--next-line-delay));
  }
}

/* #content-05
----------------------------------------------- */
#content-05 {
  padding-top: 100px;
}
#content-05.is-animated .content_content > p {
  animation: fadein-02 var(--transition-fade) var(--txt-delay) forwards;
}
#content-05.is-animated h2 > span:nth-child(1) {
  overflow: hidden;
  animation: typing-animation var(--first-duration) steps(var(--first-length), end) forwards var(--first-delay), blink-caret var(--first-duration) step-end forwards var(--first-delay);
}
#content-05.is-animated h2 > span:nth-child(2) {
  overflow: hidden;
  animation: typing-animation var(--second-duration) steps(var(--second-length), end) forwards var(--second-delay), blink-caret var(--second-duration) step-end forwards var(--second-delay);
}
#content-05 .content_inner {
  display: flex;
  align-items: center;
  color: var(--color-txt-secondary);
}
#content-05 .content_content {
  display: grid;
  gap: 24px;
  flex-shrink: 0;
  max-width: 500px;
}
#content-05 .content_content > p {
  --txt-delay: .8s;
  font-weight: var(--font-weight-bold);
  line-height: 32px;
  opacity: 0;
}
#content-05 .content_content > p > span {
  display: block;
}
#content-05 .content_media {
  position: relative;
  margin-right: -120px;
  z-index: var(--z-index-layer1);
}
#content-05 h2 {
  font-size: 4.6rem;
  line-height: 80px;
}
#content-05 h2 > span {
  --first-length: 10;
  --first-duration: calc(var(--first-length) * var(--one-letter-duration));
  --first-delay: .8s;
  --second-length: 5;
  --second-duration: calc(var(--second-length) * var(--one-letter-duration));
  --second-delay: calc(var(--first-duration) + var(--first-delay) + var(--next-line-delay));
}
@media only screen and (max-width: 1024px) {
  #content-05 {
    padding-top: 0;
  }
  #content-05 .content_inner {
    flex-direction: column;
    justify-content: center;
    height: auto;
  }
  #content-05 .content_content {
    width: 100%;
    padding: 40px 20px 0;
  }
  #content-05 .content_content h2 {
    font-size: 3.6rem;
    line-height: 57px;
  }
  #content-05 .content_content p {
    font-size: 1.6rem;
    line-height: 32px;
  }
  #content-05 .content_media {
    opacity: 0;
    padding-block: 60px 70px;
    margin-right: 0;
  }
  #content-05 .content_media.is-animated {
    animation: bounce-animation var(--transition-bounce) forwards;
  }
}

/* #content-06
----------------------------------------------- */
#content-06 {
  position: relative;
}
#content-06.is-animated p {
  animation: fadein-02 var(--transition-fade) var(--txt-delay) forwards;
}
#content-06.is-animated h2 > span:nth-child(1) {
  overflow: hidden;
  animation: typing-animation var(--first-duration) steps(var(--first-length), end) forwards var(--first-delay), blink-caret var(--first-duration) step-end forwards var(--first-delay);
}
#content-06.is-animated h2 > span:nth-child(2) {
  overflow: hidden;
  animation: typing-animation var(--second-duration) steps(var(--second-length), end) forwards var(--second-delay), blink-caret var(--second-duration) step-end forwards var(--second-delay);
}
#content-06.is-animated h2 > span:nth-child(3) {
  overflow: hidden;
  animation: typing-animation var(--third-duration) steps(var(--third-length), end) forwards var(--third-delay), blink-caret var(--third-duration) step-end forwards var(--third-delay);
}
#content-06 .content_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  height: 100vh;
  z-index: var(--z-index-layer2);
}
@supports (height: 100dvh) {
  #content-06 .content_inner {
    height: 100dvh;
  }
}
#content-06 .content_lottie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-index-layer1);
}
#content-06 .content_lottie.is-animated::before {
  animation: before-img-animation-01 0.3s cubic-bezier(0.17, 0.89, 0.32, 1.27) 0.8s forwards, before-img-animation-02 0.3s 1.4s forwards, before-img-animation-03 0.3s cubic-bezier(0.26, 1, 0.48, 1) 1.7s forwards;
}
#content-06 .content_lottie::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 45%;
  width: 520px;
  height: 520px;
  background-image: url("/next/common/img/img-before.svg");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: translateY(-50%);
}
#content-06 h2 {
  font-size: 4.6rem;
  line-height: 80px;
}
#content-06 h2.content_hdg-sp {
  display: none;
}
#content-06 h2 > span {
  --first-length: 12;
  --first-duration: calc(var(--first-length) * var(--one-letter-duration));
  --first-delay: .8s;
  --second-length: 10;
  --second-duration: calc(var(--second-length) * var(--one-letter-duration));
  --second-delay: calc(var(--first-duration) + var(--first-delay) + var(--next-line-delay));
  --third-length: 13;
  --third-duration: calc(var(--third-length) * var(--one-letter-duration));
  --third-delay: calc(var(--second-duration) + var(--second-delay) + var(--next-line-delay));
  opacity: 0;
}
#content-06 h2 > span:nth-child(1) {
  border-right: 3px solid currentcolor;
}
#content-06 p {
  --txt-delay: .8s;
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  line-height: 38px;
  opacity: 0;
}
#content-06 p > span {
  display: block;
}
@media only screen and (max-width: 1024px) {
  #content-06.is-animated h2 > span:nth-child(4) {
    overflow: hidden;
    animation: typing-animation var(--forth-duration) steps(var(--forth-length), end) forwards var(--forth-delay), blink-caret var(--forth-duration) step-end forwards var(--forth-delay);
  }
  #content-06.is-animated h2 > span:nth-child(5) {
    overflow: hidden;
    animation: typing-animation var(--fifth-duration) steps(var(--fifth-length), end) forwards var(--fifth-delay), blink-caret var(--fifth-duration) step-end forwards var(--fifth-delay);
  }
  #content-06 .content_inner {
    justify-content: flex-start;
    gap: 32px;
    height: auto;
    padding: 60px 20px;
  }
  #content-06 .content_lottie {
    position: relative;
    padding-bottom: 110px;
  }
  #content-06 .content_lottie.is-animated::before {
    animation: before-img-animation-01-sp 0.3s cubic-bezier(0.17, 0.89, 0.32, 1.27) 0.8s forwards, before-img-animation-02 0.3s 1.4s forwards, before-img-animation-03-sp 0.8s cubic-bezier(0.26, 1, 0.48, 1) 1.7s forwards;
  }
  #content-06 .content_lottie::before {
    position: relative;
    left: calc(50% - 240px);
    width: 480px;
    height: 480px;
  }
  #content-06 h2 {
    font-size: 3.6rem;
    line-height: 57px;
  }
  #content-06 h2.content_hdg-sp {
    display: block;
  }
  #content-06 h2.content_hdg-pc {
    display: none;
  }
  #content-06 h2 > span {
    --first-length: 7;
    --second-length: 9;
    --third-length: 6;
    --forth-length: 7;
    --forth-duration: calc(var(--forth-length) * var(--one-letter-duration));
    --forth-delay: calc(var(--third-duration) + var(--third-delay) + var(--next-line-delay));
    --fifth-length: 6;
    --fifth-duration: calc(var(--fifth-length) * var(--one-letter-duration));
    --fifth-delay: calc(var(--forth-duration) + var(--forth-delay) + var(--next-line-delay));
  }
  #content-06 p {
    font-size: 1.6rem;
    line-height: 32px;
  }
  #content-06 p > span {
    display: inline;
  }
}

/* #content-07
----------------------------------------------- */
#content-07 {
  --content-color: var(--color-kyuyo);
  display: flex;
  align-items: center;
  padding-top: 300px;
}
#content-07.is-animated .content_item {
  animation: bounce-animation var(--transition-bounce) forwards var(--panel-delay);
}
#content-07 .content_inner {
  display: grid;
  align-items: center;
}
#content-07 .content_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 160px;
  width: 100%;
}
#content-07 .content_item {
  opacity: 0;
  max-height: 303px;
}
#content-07 .content_item.-kyuyo {
  --panel-delay: .8s;
  --content-color: var(--color-kyuyo);
  background-image: url("/next/common/img/kaikei-next-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
#content-07 .content_item.-kyuyo .content_label {
  color: #0086cd;
}
#content-07 .content_item.-kyuyo-detail {
  --panel-delay: calc(.8s + var(--transition-delay));
  --content-color: var(--color-kyuyo-detail);
  background-image: url("/next/common/img/kyuyo-next-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
#content-07 .content_item.-kyuyo-detail .content_label {
  color: #009640;
}
#content-07 .content_item.-kyuyo-detail .content_media {
  right: -56px;
}
#content-07 .content_anchor {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  height: 100%;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.15s ease-in;
  z-index: var(--z-index-layer1);
}
#content-07 .content_anchor[href]:is(:hover, :active, :focus-visible) .content_txt-02 {
  color: var(--color-yayoi-blue);
}
#content-07 .content_anchor:not([href]) .content_txt::after,
#content-07 .content_anchor:not([href]) .content_txt > span {
  opacity: 0.3;
}
#content-07 .content_link {
  text-decoration: none;
}
#content-07 .content_link:is(:hover, :active, :focus-visible) .content_txt-02 {
  color: var(--color-yayoi-blue);
}
#content-07 .content_content {
  position: relative;
  flex: 1 0 auto;
  padding: 84px 0 24px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#content-07 .content_point {
  position: absolute;
  top: -32px;
  left: -32px;
}
#content-07 .content_title {
  margin: 16px 16px 16px 32px;
}
#content-07 .content_label {
  display: inline-flex;
  justify-content: center;
  order: -1;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.4rem;
  padding: 0 32px;
  font-weight: 700;
}
#content-07 .content_txt {
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-txt-priority);
  padding: 0 32px;
  margin-bottom: 20px;
}
#content-07 .content_txt-02 {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-txt-priority);
  padding: 0 32px;
  transition: color 0.15s ease-in;
  margin-top: 16px;
}
#content-07 .content_txt-02 > span {
  display: flex;
  gap: 5px;
}
#content-07 .content_img {
  flex: 0 1 auto;
  position: relative;
  max-width: 693px;
  width: 100%;
}
#content-07 .content_media {
  z-index: var(--z-index-behind);
  position: relative;
  top: -64px;
}
@media only screen and (max-width: 1024px) {
  #content-07 {
    padding-top: 0;
  }
  #content-07 .content_inner {
    padding: 120px 20px;
  }
  #content-07 .content_list {
    gap: 56px;
  }
  #content-07 .content_item {
    width: 335px;
    margin: auto;
    max-height: unset;
  }
  #content-07 .content_item.-kyuyo {
    background-image: url("/next/common/img/kaikei-next-bg-sp.png");
  }
  #content-07 .content_item.-kyuyo-detail {
    background-image: url("/next/common/img/kyuyo-next-bg-sp.png");
  }
  #content-07 .content_item.-kyuyo-detail .content_media {
    right: unset;
  }
  #content-07 .content_anchor {
    border-radius: 15px;
    flex-direction: column-reverse;
  }
  #content-07 .content_content {
    padding: 0 20px 20px;
    position: initial;
  }
  #content-07 .content_point {
    top: -20px;
    left: -20px;
  }
  #content-07 .content_label {
    font-size: 1.1rem;
  }
  #content-07 .content_title {
    max-width: 235px;
  }
  #content-07 .content_txt {
    font-size: 1.5rem;
    padding: 0;
    text-align: center;
  }
  #content-07 .content_txt-02 {
    font-size: 1.5rem;
    text-align: right;
    padding: 0;
    justify-content: flex-end;
  }
  #content-07 .content_img {
    padding: 48px 20px 0;
    display: flex;
    justify-content: center;
  }
  #content-07 .content_media {
    inset: unset;
  }
}

/* #content-10
----------------------------------------------- */
#content-10 {
  --txt-length: 2;
  --duration: calc(var(--txt-length) * var(--one-letter-duration));
  --delay: .4s;
  background-image: url("/next/common/img/bg-logo.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
#content-10.is-animated .content_txt {
  animation: fadein-02 var(--transition-fade) var(--delay) forwards;
}
#content-10.is-animated .content_media {
  animation: bounce-animation var(--transition-bounce) forwards var(--media-delay);
}
#content-10.is-animated h2 > span:nth-child(1) {
  animation: fadein-02 var(--transition-fade) forwards;
}
#content-10.is-animated h2 > span:nth-child(2) {
  overflow: hidden;
  animation: typing-animation var(--duration) steps(var(--txt-length), end) forwards, blink-caret var(--duration) step-end forwards;
}
#content-10 .content_inner {
  padding-block: calc(var(--indicator-height) + 120px) 142px;
}
#content-10 .content_content {
  display: flex;
  justify-content: space-between;
}
#content-10 .content_txt {
  --txt-delay: var(--delay);
  opacity: 0;
  max-width: 490px;
}
#content-10 .content_txt > :first-child {
  margin-top: 0;
}
#content-10 .content_txt > :last-child {
  margin-bottom: 0;
}
#content-10 .content_txt > p {
  font-weight: var(--font-weight-bold);
  line-height: 32px;
  margin-bottom: 32px;
}
#content-10 .content_media {
  --media-delay: calc(var(--delay) * 2);
  width: 100%;
  opacity: 0;
}
#content-10 .content_media-wrap {
  display: grid;
  grid-template-columns: 46fr 75fr;
  gap: 32px;
}
#content-10 .content_media-wrap > #content-10 .content_media {
  --media-delay: calc(var(--delay) * 2 + var(--one-letter-duration));
}
#content-10 h2 {
  flex-shrink: 0;
  color: var(--color-txt-priority);
  font-size: 4.6rem;
  line-height: 80px;
}
#content-10 h2 > span {
  display: block;
}
#content-10 h2 > span:nth-child(1) {
  color: var(--color-yayoi-blue);
  font-size: 1.3rem;
  font-weight: var(--font-weight-bold);
  line-height: 22px;
  opacity: 0;
  margin-bottom: -16px;
}
#content-10 h2 > span:nth-child(2) {
  --txt-length: 2;
  width: 0;
  max-width: -moz-fit-content;
  max-width: fit-content;
  white-space: nowrap;
  border-right: 3px solid currentcolor;
  opacity: 0;
}
@media only screen and (max-width: 1024px) {
  #content-10 {
    background-size: 200%;
    background-position: top left 50px;
  }
  #content-10 .content_inner {
    padding-block: 90px 120px;
  }
  #content-10 .content_content {
    flex-direction: column;
    gap: 24px;
  }
  #content-10 .content_txt {
    max-width: none;
  }
  #content-10 .content_txt p {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
  #content-10 .content_media {
    width: 100%;
    max-width: 335px;
    margin: auto;
  }
  #content-10 .content_media-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }
  #content-10 .content_media-wrap picture {
    margin: auto;
  }
  #content-10 h2 {
    font-size: 3.6rem;
    line-height: 48px;
  }
  #content-10 h2 span:nth-child(1) {
    margin-bottom: 8px;
  }
}

/* #content-11
----------------------------------------------- */
#content-11.content {
  --txt-length: 5;
  --duration: calc(var(--txt-length) * var(--one-letter-duration));
  --delay: .4s;
}
#content-11.content_inner {
  gap: 0;
  padding-bottom: 692px;
}
#content-11.content_content {
  display: flex;
  justify-content: space-between;
  gap: 140px;
}
#content-11.content_txt {
  --txt-delay: var(--delay);
  position: relative;
  display: grid;
  gap: 32px;
  max-width: 490px;
  font-weight: var(--font-weight-bold);
  line-height: 32px;
  opacity: 0;
  z-index: var(--z-index-layer1);
}
#content-11.content_txt > :first-child {
  margin-top: 0;
}
#content-11.content_txt > :last-child {
  margin-bottom: 0;
}
#content-11.content_media {
  --media-delay: calc(var(--delay) * 2);
  position: absolute;
  width: 360px;
  height: 451px;
  color: var(--color-white);
  background-size: contain;
  padding: 45px 26px;
  opacity: 0;
}
#content-11.content_media-color {
  font-size: 1.3rem;
  font-weight: var(--font-weight-bold);
  line-height: 22px;
}
#content-11.content_media-title {
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  line-height: 56px;
}
#content-11.content_media-txt {
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  line-height: 32px;
}
#content-11.content_media:nth-of-type(1) {
  --media-delay: calc(var(--delay) * 2);
  top: 16%;
  right: 60%;
  background-image: url("/next/common/img/img-card-blue.png");
  rotate: -6deg;
}
#content-11.content_media:nth-of-type(2) {
  --media-delay: calc(var(--delay) * 2 + var(--one-letter-duration));
  top: 46%;
  right: 58%;
  background-image: url("/next/common/img/img-card-pink-red.png");
  rotate: 10deg;
}
#content-11.content_media:nth-of-type(3) {
  --media-delay: calc(var(--delay) * 2 + var(--one-letter-duration) * 2);
  top: 50%;
  right: 22%;
  color: var(--color-txt-priority);
  background-image: url("/next/common/img/img-card-green.png");
  rotate: -3deg;
}
#content-11.content_media:nth-of-type(4) {
  --media-delay: calc(var(--delay) * 2 + var(--one-letter-duration) * 3);
  top: 54%;
  right: -10%;
  color: var(--color-txt-priority);
  background-image: url("/next/common/img/img-card-yellow.png");
  rotate: 10deg;
}
#content-11.content.is-animated #content-11.content_txt {
  animation: fadein-02 var(--transition-fade) var(--txt-delay) forwards;
}
#content-11.content.is-animated #content-11.content_media {
  animation: bounce-animation var(--transition-bounce) forwards var(--media-delay);
}
#content-11.content.is-animated h2 > span:nth-child(1) {
  animation: fadein-02 var(--transition-fade) forwards;
}
#content-11.content.is-animated h2 > span:nth-child(2) {
  overflow: hidden;
  animation: typing-animation var(--duration) steps(var(--txt-length), end) forwards, blink-caret var(--duration) step-end forwards;
}
#content-11.content h2 {
  flex-shrink: 0;
  color: var(--color-txt-priority);
  font-size: 4.6rem;
  line-height: 80px;
}
#content-11.content h2 > span {
  display: block;
}
#content-11.content h2 > span:nth-child(1) {
  color: var(--color-yayoi-blue);
  font-size: 1.3rem;
  font-weight: var(--font-weight-bold);
  line-height: 22px;
  opacity: 0;
  margin-bottom: -16px;
}
#content-11.content h2 > span:nth-child(2) {
  width: 0;
  max-width: -moz-fit-content;
  max-width: fit-content;
  white-space: nowrap;
  border-right: 3px solid currentcolor;
  opacity: 0;
}
@media only screen and (max-width: 1024px) {
  #content-11.content_inner {
    padding-bottom: 120px;
  }
  #content-11.content_content {
    flex-direction: column;
    gap: 24px;
  }
  #content-11.content_txt {
    gap: 24px;
    max-width: none;
    font-size: 1.5rem;
    line-height: 28px;
  }
  #content-11.content_txt > p:last-child {
    margin-top: 944px;
  }
  #content-11.content_media {
    width: 250px;
    height: 290px;
    background-size: cover;
    padding: 16px;
  }
  #content-11.content_media-wrap > div:nth-of-type(1) {
    top: auto;
    right: calc(50% - 70px);
    bottom: 54%;
    rotate: 10deg;
  }
  #content-11.content_media-wrap > div:nth-of-type(2) {
    top: auto;
    right: calc(50% - 194px);
    bottom: 42%;
    rotate: -10deg;
  }
  #content-11.content_media-wrap > div:nth-of-type(3) {
    top: auto;
    right: calc(50% - 60px);
    bottom: 30%;
    rotate: 10deg;
  }
  #content-11.content_media-wrap > div:nth-of-type(4) {
    top: auto;
    right: calc(50% - 220px);
    bottom: 18%;
    rotate: -6deg;
  }
  #content-11.content_media-color {
    font-size: 1.1rem;
  }
  #content-11.content_media-title {
    font-size: 1.8rem;
    margin-top: -15px;
  }
  #content-11.content_media-txt {
    font-size: 1.3rem;
  }
  #content-11.content h2 {
    font-size: 3.6rem;
    line-height: 48px;
  }
  #content-11.content h2 > span:nth-child(1) {
    margin-bottom: 8px;
  }
}

/* #content-12
----------------------------------------------- */
#content-12.content {
  --txt-length: 6;
  --duration: calc(var(--txt-length) * var(--one-letter-duration));
  --delay: .4s;
}
#content-12.content_inner {
  padding-bottom: 120px;
}
#content-12.content_content {
  display: flex;
  justify-content: space-between;
}
#content-12.content_content.is-animated #content-12.content_txt {
  animation: fadein-02 var(--transition-fade) var(--txt-delay) forwards;
}
#content-12.content_content.is-animated h2 > span:nth-child(1) {
  animation: fadein-02 var(--transition-fade) forwards;
}
#content-12.content_content.is-animated h2 > span:nth-child(2) {
  overflow: hidden;
  animation: typing-animation var(--duration) steps(var(--txt-length), end) forwards, blink-caret var(--duration) step-end forwards;
}
#content-12.content_txt {
  --txt-delay: var(--delay);
  display: grid;
  gap: 32px;
  font-weight: var(--font-weight-bold);
  line-height: 32px;
  opacity: 0;
  max-width: 490px;
}
#content-12.content_txt > :first-child {
  margin-top: 0;
}
#content-12.content_txt > :last-child {
  margin-bottom: 0;
}
#content-12.content_tab {
  --tab-color: var(--color-kaikei);
  position: relative;
  background-color: var(--color-bg-secondary);
  border-radius: 60px;
  padding-top: 60px;
  margin: 0 -60px;
}
#content-12.content_tab-list {
  position: absolute;
  right: 60px;
  bottom: 60px;
  display: grid;
  gap: 10px;
}
#content-12.content_tab-btn {
  --btn-color: #015aa4;
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color-white);
  border-radius: 30px;
  font-size: 1.3rem;
  font-weight: var(--font-weight-bold);
  padding: 8px 16px;
  transition: background-color var(--transition-tab), color var(--transition-tab), transform var(--transition-tab);
}
#content-12.content_tab-btn:is(:hover, :active, :focus-visible) {
  color: var(--color-white);
  background-color: var(--btn-color);
}
#content-12.content_tab-btn:is(:hover, :active, :focus-visible)::before {
  filter: brightness(0) invert(1);
}
#content-12.content_tab-btn::before {
  display: block;
  content: "";
  width: 17px;
  height: 17px;
  background-repeat: no-repeat;
  transition: filter var(--transition-tab);
}
#content-12.content_tab-btn[aria-selected=true] {
  color: var(--color-white);
  background-color: var(--btn-color);
  transform: translateX(-52px);
}
#content-12.content_tab-btn[aria-selected=true]::before {
  filter: brightness(0) invert(1);
}
#content-12.content_tab-btn#tab-kaikei {
  --btn-color: #015aa4;
}
#content-12.content_tab-btn#tab-kaikei::before {
  background-image: url("/next/common/img/icon-kaikei-02.svg");
}
#content-12.content_tab-btn#tab-aoiroshinkoku {
  --btn-color: #015aa4;
}
#content-12.content_tab-btn#tab-aoiroshinkoku::before {
  background-image: url("/next/common/img/icon-aoiroshinkoku-02.svg");
}
#content-12.content_tab-btn#tab-shiroiroshinkoku {
  --btn-color: #02adea;
}
#content-12.content_tab-btn#tab-shiroiroshinkoku::before {
  background-image: url("/next/common/img/icon-shiroiroshinkoku-02.svg");
}
#content-12.content_tab-btn#tab-kyuyo {
  --btn-color: #24a839;
}
#content-12.content_tab-btn#tab-kyuyo::before {
  background-image: url("/next/common/img/icon-kyuyo-02.svg");
}
#content-12.content_tab-btn#tab-kyuyo-detail {
  --btn-color: #29a02e;
}
#content-12.content_tab-btn#tab-kyuyo-detail::before {
  background-image: url("/next/common/img/icon-kyuyo-detail-02.svg");
}
#content-12.content_tab-btn#tab-seikyusho {
  --btn-color: var(--color-seikyusho);
}
#content-12.content_tab-btn#tab-seikyusho::before {
  background-image: url("/next/common/img/icon-seikyusho-02.svg");
}
#content-12.content_tab-btn#tab-hambai {
  --btn-color: #ff316e;
}
#content-12.content_tab-btn#tab-hambai::before {
  background-image: url("/next/common/img/icon-hambai-02.svg");
}
#content-12.content_tab-content {
  padding-right: 270px;
}
#content-12.content_tab-panel {
  display: none;
  gap: 40px;
}
#content-12.content_tab-panel.is-shown {
  display: flex;
}
#content-12.content_tab-panel#tabpanel-kaikei {
  --tab-color: var(--color-kaikei);
}
#content-12.content_tab-panel#tabpanel-aoiroshinkoku {
  --tab-color: var(--color-aoiroshinkoku);
}
#content-12.content_tab-panel#tabpanel-shiroiroshinkoku {
  --tab-color: var(--color-shiroiroshinkoku);
}
#content-12.content_tab-panel#tabpanel-kyuyo {
  --tab-color: var(--color-kyuyo);
}
#content-12.content_tab-panel#tabpanel-kyuyo-detail {
  --tab-color: var(--color-kyuyo-detail);
}
#content-12.content_tab-panel#tabpanel-seikyusho {
  --tab-color: var(--color-seikyusho);
}
#content-12.content_tab-panel#tabpanel-hambai {
  --tab-color: var(--color-hambai);
}
#content-12.content_tab-media {
  position: relative;
  display: contents;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: auto;
}
#content-12.content_tab-media-concept {
  position: absolute;
  left: 60px;
  bottom: 60px;
}
#content-12.content_tab-media-icon {
  opacity: 0;
}
#content-12.content_tab-media picture {
  display: flex;
  align-items: flex-end;
  flex: 1;
}
#content-12.content_tab-txt {
  flex: 1;
  font-weight: var(--font-weight-bold);
  margin-bottom: 160px;
}
#content-12.content_tab-txt p {
  margin-top: 26px;
  margin-left: 60px;
  opacity: 0;
}
#content-12.content_tab.is-animated #content-12.content_tab-panel.is-shown #content-12.content_tab-media-icon {
  animation: bounce-animation var(--transition-bounce) forwards 0.1s;
}
#content-12.content_tab.is-animated #content-12.content_tab-panel.is-shown #content-12.content_tab-txt p {
  animation: fadein var(--transition-fade) forwards;
}
#content-12.content_tab.is-animated #content-12.content_tab-panel.is-shown h3 > span {
  animation: band-animation var(--transition-band) forwards, color-animation 0s forwards 0.5s;
}
#content-12.content h2 {
  flex-shrink: 0;
  color: var(--color-txt-priority);
  font-size: 4.6rem;
  line-height: 80px;
}
#content-12.content h2 > span {
  display: block;
}
#content-12.content h2 > span:nth-child(1) {
  color: var(--color-yayoi-blue);
  font-size: 1.3rem;
  font-weight: var(--font-weight-bold);
  line-height: 22px;
  opacity: 0;
  margin-bottom: -16px;
}
#content-12.content h2 > span:nth-child(2) {
  width: 0;
  max-width: -moz-fit-content;
  max-width: fit-content;
  white-space: nowrap;
  border-right: 3px solid currentcolor;
  opacity: 0;
}
#content-12.content h3 {
  width: -moz-fit-content;
  width: fit-content;
  color: var(--tab-color);
  overflow: hidden;
}
#content-12.content h3 > span {
  display: block;
  width: 0;
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-size: 3rem;
  line-height: 26px;
  color: transparent;
  background-color: var(--color-white);
  border-radius: 0 40px 40px 0;
  opacity: 0;
  white-space: nowrap;
  overflow: hidden;
  padding: 20px 40px;
}
@media only screen and (max-width: 1024px) {
  #content-12.content_inner {
    padding-bottom: 120px;
  }
  #content-12.content_content {
    flex-direction: column;
    gap: 20px;
  }
  #content-12.content_txt {
    gap: 24px;
    max-width: none;
    font-size: 1.5rem;
  }
  #content-12.content_tab {
    border-radius: 0 30px;
    padding: 40px 0 70px;
    margin: 0 -20px;
  }
  #content-12.content_tab.is-animated #content-12.content_tab-panel.is-shown #content-12.content_tab-media {
    opacity: 0;
    animation: bounce-animation var(--transition-bounce) forwards 0.1s;
  }
  #content-12.content_tab.is-animated #content-12.content_tab-panel.is-shown #content-12.content_tab-media-icon {
    opacity: 1;
    animation: none;
  }
  #content-12.content_tab-content {
    position: relative;
    padding: 0;
  }
  #content-12.content_tab-panel {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
  }
  #content-12.content_tab-list {
    top: auto;
    left: 0;
    right: 0;
    bottom: 40px;
    display: flex;
    width: calc(100% - 40px);
    overflow-x: auto;
    margin: auto;
  }
  #content-12.content_tab-btn {
    min-width: 132px;
  }
  #content-12.content_tab-btn[aria-selected=true] {
    transform: none;
  }
  #content-12.content_tab-media {
    display: block;
  }
  #content-12.content_tab-media-concept {
    position: absolute;
    left: auto;
    right: 20px;
    bottom: 8%;
    width: auto;
    height: 65px;
    margin: 0;
    z-index: var(--z-index-layer1);
  }
  #content-12.content_tab-media-icon {
    width: calc(100% - 40px);
    max-width: 600px;
    padding-right: 65px;
    margin: auto;
  }
  #content-12.content_tab-txt {
    margin-bottom: 0;
  }
  #content-12.content_tab-txt p {
    margin-top: 24px;
    margin-left: 0;
    padding: 0 20px;
  }
  #content-12.content h2 {
    font-size: 3.6rem;
    line-height: 48px;
  }
  #content-12.content h2 > span:nth-child(1) {
    margin-bottom: 8px;
  }
  #content-12.content h3 > span {
    padding-left: 40px;
    padding-right: 32px;
  }
}

/* #content-13
----------------------------------------------- */
#content-13.content {
  --txt-length: 15;
  --duration: calc(var(--txt-length) * var(--one-letter-duration));
  --delay: .4s;
  position: relative;
  background-image: url("/next/common/img/bg-font.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  margin-bottom: 120px;
}
#content-13.content_inner {
  position: static;
  padding-bottom: 760px;
}
#content-13.content_content {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}
#content-13.content_content.is-animated #content-13.content_txt {
  animation: fadein-02 var(--transition-fade) var(--txt-delay) forwards;
}
#content-13.content_content.is-animated h2 > span:nth-child(1) {
  animation: fadein-02 var(--transition-fade) forwards;
}
#content-13.content_content.is-animated h2 > span:nth-child(2) {
  overflow: hidden;
  animation: typing-animation var(--duration) steps(var(--txt-length), end) forwards, blink-caret var(--duration) step-end forwards;
}
#content-13.content_txt {
  --txt-delay: var(--delay);
  opacity: 0;
  max-width: 490px;
}
#content-13.content_txt > :first-child {
  margin-top: 0;
}
#content-13.content_txt > :last-child {
  margin-bottom: 0;
}
#content-13.content_txt > p {
  font-weight: var(--font-weight-bold);
  line-height: 32px;
  margin-bottom: 32px;
}
#content-13.content_font-description > p {
  position: absolute;
  font-weight: var(--font-weight-bold);
  overflow: hidden;
  margin: 0;
}
#content-13.content_font-description > p:nth-of-type(1) {
  left: calc(50% - 290px);
  bottom: 704px;
}
#content-13.content_font-description > p:nth-of-type(2) {
  left: calc(50% - 280px);
  bottom: 16px;
}
#content-13.content_font-description > p:nth-of-type(3) {
  left: calc(50% + 216px);
  bottom: 40px;
}
#content-13.content_font-description > p.is-animated {
  color: var(--color-white);
}
#content-13.content_font-description > p.is-animated > span:first-child {
  animation: band-animation var(--transition-band) forwards, color-animation 0s forwards 0.5s;
}
#content-13.content_font-description > p.is-animated > span:last-child {
  animation: band-animation var(--transition-band) forwards var(--transition-delay), color-animation 0s forwards calc(var(--transition-delay) + 0.5s);
}
#content-13.content_font-description > p > span {
  position: relative;
  display: block;
  width: 0;
  max-width: -moz-fit-content;
  max-width: fit-content;
  color: transparent;
  line-height: 32px;
  padding: 3px 10px;
  background-color: var(--color-yayoi-blue);
  opacity: 0;
  white-space: nowrap;
  overflow: hidden;
}
#content-13.content h2 {
  flex-shrink: 0;
  color: var(--color-txt-priority);
  font-size: 4.6rem;
  line-height: 80px;
}
#content-13.content h2 > span {
  display: block;
}
#content-13.content h2 > span:nth-child(1) {
  color: var(--color-yayoi-blue);
  font-size: 1.3rem;
  font-weight: var(--font-weight-bold);
  line-height: 22px;
  opacity: 0;
  margin-bottom: -16px;
}
#content-13.content h2 > span:nth-child(2) {
  width: 0;
  max-width: -moz-fit-content;
  max-width: fit-content;
  white-space: nowrap;
  border-right: 3px solid currentcolor;
  opacity: 0;
}
@media only screen and (max-width: 1024px) {
  #content-13.content {
    background-image: url("/next/common/img/bg-font-sp.svg");
    background-position: center bottom 40px;
    margin-bottom: 0;
  }
  #content-13.content_inner {
    padding-bottom: 840px;
  }
  #content-13.content_content {
    flex-direction: column;
    gap: 24px;
  }
  #content-13.content_txt {
    max-width: none;
    font-size: 1.5rem;
  }
  #content-13.content_font-description p:nth-of-type(1) {
    left: calc(50% - 65px);
    bottom: 610px;
  }
  #content-13.content_font-description p:nth-of-type(2) {
    left: calc(50% - 120px);
    bottom: 222px;
  }
  #content-13.content_font-description p:nth-of-type(3) {
    left: calc(50% - 144px);
    bottom: 28px;
  }
  #content-13.content h2 {
    font-size: 3.6rem;
    line-height: 48px;
  }
  #content-13.content h2 > span:nth-child(1) {
    margin-bottom: 8px;
  }
}

/* ----------------------------------------------------------------
    Footer (.footer[-*])
----------------------------------------------------------------- */
/* .footer
----------------------------------------------- */
.footer {
  position: relative;
  background-color: var(--color-bg);
  z-index: var(--z-index-layer2);
}
.footer_inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: var(--width-footer);
  margin: 0 auto;
}
.footer_content {
  display: grid;
  grid-template-columns: 1fr auto 110px;
  align-items: flex-end;
  gap: 40px;
  border-bottom: 2px solid var(--color-bg-secondary);
  padding-block: 40px 24px;
}
.footer_link {
  display: flex;
  justify-content: flex-end;
  gap: 44px;
  padding-block: 7px;
  margin: 0;
}
.footer_link-item {
  position: relative;
}
.footer_link-item::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -22px;
  width: 2px;
  height: 11px;
  background-color: var(--color-txt-priority);
  border-radius: 5px;
  transform: translateY(-50%);
}
.footer_link-item:last-child::after {
  content: none;
}
.footer_link-anchor {
  display: block;
  font-size: 1.3rem;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  line-height: 22px;
  transition: color 0.15s ease-in;
}
.footer_link-anchor:is(:hover, :active, :focus-visible) {
  color: var(--color-yayoi-blue);
}
.footer_link-anchor:is(:hover, :active, :focus-visible) > img {
  filter: none;
}
.footer_link-anchor > img {
  width: 13px;
  vertical-align: initial;
  margin-left: 6px;
  filter: brightness(0);
}
.footer_pagetop {
  position: relative;
  order: 2;
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  line-height: 38px;
  text-decoration: none;
  color: var(--color-yayoi-blue);
}
.footer_pagetop:is(:hover, :active, :focus-visible) {
  color: var(--color-yayoi-blue);
}
.footer_pagetop:is(:hover, :active, :focus-visible)::after {
  rotate: 360deg;
}
.footer_pagetop::before {
  display: block;
  content: "";
  width: 70px;
  height: 70px;
  background-color: var(--color-yayoi-blue);
  border-radius: 50%;
  margin: auto;
}
.footer_pagetop::after {
  display: block;
  content: "";
  position: absolute;
  top: 17px;
  left: 35px;
  width: 40px;
  height: 40px;
  background-image: url("/next/common/img/icon-pagetop.svg");
  background-repeat: no-repeat;
  background-size: cover;
  transition: rotate var(--transition-pagetop);
}
.footer_copyright {
  font-size: 1.2rem;
  text-align: center;
  line-height: 32px;
  margin-bottom: 30px;
}
.footer_copyright a {
  font-size: 1.1rem;
  font-weight: var(--font-weight-bold);
}
@media only screen and (max-width: 1024px) {
  .footer_content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    margin: 0 20px;
  }
  .footer_content > img {
    max-width: 190px;
    margin: auto;
  }
  .footer_pagetop {
    order: 0;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
  .footer_link {
    justify-content: center;
    gap: 24px;
  }
  .footer_link-item::after {
    right: -11px;
  }
}

/* ----------------------------------------------------------------
    Indicator (.indicator[-*])
----------------------------------------------------------------- */
/* .indicator
----------------------------------------------- */
.indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: var(--z-index-indicator);
}
.indicator_inner {
  width: 100%;
  height: 100%;
  background-color: var(--color-yayoi-blue);
  border-radius: 0 30px 30px 0;
  transition: background-color 0.2s ease;
}

/* ----------------------------------------------------------------
    Logo (.logo[-*])
----------------------------------------------------------------- */
/* .logo
----------------------------------------------- */
.logo {
  position: fixed;
  top: 0;
  left: calc(50% - 740px);
  width: 650px;
  height: 650px;
  opacity: 0;
  visibility: hidden;
  translate: 0 80px;
  transition: left var(--transition-fade), width var(--transition-fade), height var(--transition-fade), opacity var(--transition-fade), visibility var(--transition-fade), rotate var(--transition-fade), translate var(--transition-fade);
  z-index: var(--z-index-behind);
}
.logo.is-shown {
  opacity: 1;
  visibility: visible;
}
.logo.is-fixed {
  left: -70px;
  width: 540px;
  height: 540px;
  translate: 0 calc(100% + 80px);
}
.logo.is-transparent {
  opacity: 0.5;
}
.logo.is-transparent .logo_item-01,
.logo.is-transparent .logo_item-02,
.logo.is-transparent .logo_item-03,
.logo.is-transparent .logo_item-04 {
  fill: var(--color-white);
}
.logo.is-transparent .logo_item-01,
.logo.is-transparent .logo_item-03 {
  opacity: 0.4;
}
.logo.is-transparent .logo_item-04 {
  opacity: 0.8;
}
.logo.is-light {
  opacity: 0.4;
}
.logo_item-01, .logo_item-02, .logo_item-03, .logo_item-04 {
  transition: opacity 1s ease, fill 1s ease;
}
@media only screen and (max-width: 1024px) {
  .logo {
    left: calc(100% - 307px);
    width: 323px;
    height: 323px;
    translate: 0 75px;
  }
  .logo.is-fixed {
    left: auto;
    width: 350px;
    height: 350px;
    translate: 120px -12px;
  }
}

/* ----------------------------------------------------------------
    Utility (.u[-*])
----------------------------------------------------------------- */
/* .u-ta-*
----------------------------------------------- */
.u-ta-left {
  text-align: left !important;
}

.u-ta-center {
  text-align: center !important;
}

.u-ta-right {
  text-align: right !important;
}

@media only screen and (min-width: 768px) {
  .u-ta-left-pc {
    text-align: left !important;
  }
}

@media only screen and (min-width: 768px) {
  .u-ta-center-pc {
    text-align: center !important;
  }
}

/* .u-fixed-*
----------------------------------------------- */
.u-fixed-right {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 100;
}