@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500&display=swap");
/*
  Made by Elly Loel - https://ellyloel.com/
  With inspiration from:
    - Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
    - Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
    - Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE

  Notes:
    - `:where()` is used to lower specificity for easy overriding.
*/
* {
  /* Remove default margin on everything */
  margin: 0;
  /* Remove default padding on everything */
  padding: 0;
  /* Calc `em` based line height, bigger line height for smaller font size and smaller line height for bigger font size: https://kittygiraudel.com/2020/05/18/using-calc-to-figure-out-optimal-line-height/ */
  line-height: calc(0.25rem + 1em + 0.25rem);
}

/* Use a more-intuitive box-sizing model on everything */
*,
::before,
::after {
  box-sizing: border-box;
}

/* Remove border and set sensible defaults for backgrounds, on all elements except fieldset progress and meter */
*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

html {
  /* Allow percentage-based heights in the application */
  block-size: 100%;
  /* Making sure text size is only controlled by font-size */
  -webkit-text-size-adjust: none;
}

/* Smooth scrolling for users that don't prefer reduced motion */
body {
  /* Improve text rendering */
  -webkit-font-smoothing: antialiased;
  /* https://marco.org/2012/11/15/text-rendering-optimize-legibility */
  text-rendering: optimizeSpeed;
  /* Allow percentage-based heights in the application */
  min-block-size: 100%;
  /* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
  /* scrollbar-gutter: stable both-edges; Removed until this bug is fixed: https://bugs.chromium.org/p/chromium/issues/detail?id=1318404#c2 */
}

/* Improve media defaults */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

/* Remove stroke and set fill colour to the inherited font colour */
:where(svg) {
  stroke: none;
  fill: currentColor;
}

/* SVG's without a fill attribute */
:where(svg):where(:not([fill])) {
  /* Remove fill and set stroke colour to the inherited font colour */
  stroke: currentColor;
  fill: none;
  /* Rounded stroke */
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Set a size for SVG's without a width attribute */
:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

/* Remove built-in form typography styles */
:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
}

/* Change textarea resize to vertical only and block only if the browser supports that */
:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
/* Avoid text overflows */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

/* Fix h1 font size inside article, aside, nav, and section */
h1 {
  font-size: 2em;
}

/* Position list marker inside */
:where(ul, ol) {
  list-style-position: inside;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
:where(ul, ol)[role=list] {
  list-style: none;
}

/* More readable underline style for anchor tags without a class. This could be set on anchor tags globally, but it can cause conflicts. */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make it clear that interactive elements are interactive */
:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

/* Animate focus outline */
@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    transition-duration: 0.25s;
  }
}
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

/* Make sure users can't select button text */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  text-align: center;
}

/* Disabled cursor for disabled buttons */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

html {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  text-align: center;
}
@media screen and (width >= 768px) {
  html {
    font-size: 13px;
  }
}
@media screen and (width < 768px) {
  html {
    font-size: 3.3333333333vw;
  }
}

li {
  list-style: none;
}

a {
  display: inline-block;
  text-decoration: none;
}

img {
  width: 100%;
}

@media screen and (width >= 768px) {
  .pcInline {
    display: inline;
  }
  .pcBlock {
    display: block;
  }
  .pcFlex {
    display: flex;
  }
}
@media screen and (width < 768px) {
  .pcInline, .pcBlock, .pcFlex {
    display: none;
  }
}

@media screen and (width >= 768px) {
  .spInline, .spBlock, .spFlex {
    display: none;
  }
}
@media screen and (width < 768px) {
  .spInline {
    display: inline;
  }
  .spBlock {
    display: block;
  }
  .spFlex {
    display: flex;
  }
}

.el_menuBtn {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 30px;
  height: 100%;
  background: none;
  border: none;
}
.el_menuBtn_border {
  display: block;
  position: relative;
  color: #f86c00;
  width: 30px;
  height: 12px;
}
.el_menuBtn_border::before, .el_menuBtn_border::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  width: inherit;
  height: 2px;
  background: currentColor;
  border-radius: 100vmax;
  translate: -50% 0;
}
.el_menuBtn_border::before {
  top: 0;
  transition: top 0.3s, translate 0.3s, rotate 0.3s;
}
.el_menuBtn_border::after {
  bottom: 0;
  transition: bottom 0.3s, translate 0.3s, rotate 0.3s;
}
.el_menuBtn_border_text {
  overflow: hidden;
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 0;
  text-indent: 100%;
  white-space: nowrap;
  background: currentColor;
  border-radius: 100vmax;
  translate: 0 -50%;
}
.el_menuBtn.is_open .el_menuBtn_border::before {
  top: 50%;
  translate: -50% calc(100% - 1px);
  rotate: 30deg;
}
.el_menuBtn.is_open .el_menuBtn_border::after {
  bottom: 50%;
  translate: -50% calc(100% + 1px);
  rotate: -30deg;
}
.el_menuBtn.is_open .el_menuBtn_border .el_menuBtn_border_text {
  background: transparent;
}
.el_titleOrangeJP {
  display: block;
  color: #f86c00;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  line-height: 1;
  margin-inline: auto;
}
.el_titleOrangeEN {
  display: block;
  color: #f86c00;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
}
.el_titleBGOrangeJP {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  line-height: 1;
  background: #f86c00;
  margin-inline: auto;
}
.el_textBgOrange {
  color: #fff;
  background: #f86c00;
}
.el_linkBtn {
  display: block;
  position: relative;
  margin: 0 auto 5px;
}
@media screen and (width >= 768px) {
  .el_linkBtn {
    max-width: 280px;
  }
}
@media screen and (width < 768px) {
  .el_linkBtn {
    width: 71.7948717949vw;
  }
}
.el_linkBtn::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: #fff;
  border: solid 1px #f86c00;
  border-radius: 10px;
  translate: 5px 5px;
}
.el_linkBtn_inner {
  display: grid;
  place-items: center;
  position: relative;
  color: #fff;
  padding: 8px 28px;
  background: #f86c00;
  border-radius: 10px;
  transition: translate 0.3s;
}
@media screen and (width >= 768px) {
  .el_linkBtn_inner {
    min-height: 60px;
    font-size: 16px;
  }
  .el_linkBtn:hover .el_linkBtn_inner {
    translate: 5px 5px;
  }
}
@media screen and (width < 768px) {
  .el_linkBtn_inner {
    width: 100%;
    min-height: 15.3846153846vw;
    font-size: 4.1025641026vw;
  }
}
.el_note {
  line-height: 1.4545454545;
}
@media screen and (width >= 768px) {
  .el_note {
    font-size: 11px;
  }
}
@media screen and (width < 768px) {
  .el_note {
    font-size: 2.8205128205vw;
  }
}
.el_note::before {
  content: "※";
  display: inline-block;
}

.bl_header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: solid 1px #f86c00;
}
.bl_header_inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  -moz-column-gap: 20px;
  column-gap: 20px;
  height: 50px;
  padding-inline: 20px;
}
@media screen and (width >= 768px) {
  .bl_globalNav {
    position: fixed;
    bottom: 50px;
    left: min(calc(50% + 250px + 4.53125vw), calc(50% + 250px + 58px));
    width: 280px;
  }
}
@media screen and (width < 768px) {
  .bl_globalNav {
    pointer-events: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    position: fixed;
    z-index: 1;
    inset: 50px 0 0;
    height: calc(100vh - 50px);
    background: #f86c00;
    transition: opacity 0.3s;
  }
  .bl_globalNav.is_open {
    pointer-events: all;
    opacity: 1;
    z-index: 1000;
  }
  .bl_globalNav.is_closing {
    pointer-events: none;
    opacity: 0;
    z-index: 1000;
  }
}
.bl_globalNav_list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media screen and (width < 768px) {
  .bl_globalNav_list {
    align-items: center;
  }
}
@media screen and (width < 768px) {
  .bl_globalNav_list_item {
    width: 73.0769230769%;
  }
}
.bl_globalNav_list_item_link {
  display: block;
  color: black;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (width < 768px) {
  .bl_globalNav_list_item_link::before {
    color: #fff;
    background: #f86c00;
    border-color: #fff;
  }
}
.bl_globalNav_list_item_link_inner {
  display: grid;
  place-items: center;
}
@media screen and (width >= 768px) {
  .bl_globalNav_list_item_link_inner {
    min-height: 60px;
  }
}
@media screen and (width < 768px) {
  .bl_globalNav_list_item_link_inner {
    min-height: 15.3846153846vw;
    color: #f86c00;
    background: #fff;
  }
}
.bl_bgOpacity {
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(7.5px);
  backdrop-filter: blur(7.5px);
}
@media screen and (width >= 768px) {
  .bl_bgOpacity {
    padding-block: 40px;
    border-radius: 10px;
  }
}
@media screen and (width < 768px) {
  .bl_bgOpacity {
    padding-block: 10.2564102564vw;
    border-radius: 2.5641025641vw;
  }
}
@media screen and (width >= 768px) {
  .bl_bgOpacity.bl_bgOpacity__radiusLg {
    border-radius: 20px;
  }
}
@media screen and (width < 768px) {
  .bl_bgOpacity.bl_bgOpacity__radiusLg {
    border-radius: 5.1282051282vw;
  }
}
.bl_bgOpacity.bl_bgOpacity__noBottom {
  padding-bottom: 0;
}
.bl_separator::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: radial-gradient(#f86c00 1px, transparent 1px);
  background-size: 6px 6px;
  background-repeat: repeat-x;
  background-position: center center;
}
@media screen and (width >= 768px) {
  .bl_separator::after {
    margin-block: 60px;
  }
}
@media screen and (width < 768px) {
  .bl_separator::after {
    margin-block: 15.3846153846vw;
  }
}
.bl_separator.bl_separator__mb0::after {
  margin-bottom: 0;
}
.bl_footer {
  color: #00479d;
  line-height: 1.4;
  background: #ffe100;
}
@media screen and (width >= 768px) {
  .bl_footer {
    font-size: 14px;
    padding-block: 51.01px 50px;
  }
}
@media screen and (width < 768px) {
  .bl_footer {
    font-size: 3.0769230769vw;
    padding-block: 13.0794871795vw 12.8205128205vw;
  }
}
@media screen and (width >= 768px) {
  .bl_footer_logo {
    width: 130px;
    margin: 0 auto 31px;
  }
}
@media screen and (width < 768px) {
  .bl_footer_logo {
    width: 33.4051282051vw;
    margin: 0 auto 7.9487179487vw;
  }
}
.bl_footer_text {
  line-height: inherit;
}
.bl_footer_text:not(:first-of-type) {
  margin-top: 1lh;
}
.bl_footer_copyright {
  line-height: inherit;
  margin-top: 1lh;
}
.bl_footer_copyright small {
  font-size: inherit;
}

.ly_wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}
.ly_container {
  flex: 1;
}
.ly_inner {
  margin-inline: auto;
}
@media screen and (width >= 768px) {
  .ly_inner {
    padding-inline: 50px;
  }
}
@media screen and (width < 768px) {
  .ly_inner {
    padding-inline: 5.1282051282vw;
  }
}

@media screen and (width >= 768px) {
  .un_index::before {
    content: "";
    display: block;
    position: fixed;
    inset: 0;
    height: 100dvh;
    background: url(../image/yell-project-moya_bg.jpg) no-repeat center bottom/cover;
  }
}
.un_index_wrapper {
  position: relative;
  z-index: 1;
}
@media screen and (width >= 768px) {
  .un_index_wrapper {
    width: 500px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    margin-inline: auto;
  }
}
.un_index_kv {
  overflow: hidden;
  position: relative;
}
@keyframes kvAnimation {
  0% {
    opacity: 0;
    filter: blur(3px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
.un_index_kv::before, .un_index_kv::after {
  content: "";
  display: block;
  opacity: 1;
  position: absolute;
  z-index: 1;
}
.un_index_kv::before {
  inset: 0;
  width: 100%;
  height: 100%;
}
@media screen and (width >= 768px) {
  .un_index_kv::before {
    background: url(../image/yell-project-moya_bg_kv_back_pc.jpg) no-repeat bottom center/cover;
  }
}
@media screen and (width < 768px) {
  .un_index_kv::before {
    background: url(../image/yell-project-moya_bg_kv_back_sp.jpg) no-repeat bottom center/cover;
  }
}
.un_index_kv::after {
  bottom: 0;
  background: url(../image/yell-project-moya_bg_kv_person.png) no-repeat bottom center/cover;
  animation: kvAnimation 1.5s both 1s;
}
@media screen and (width >= 768px) {
  .un_index_kv::after {
    left: calc(50% - 250px);
    width: 500px;
    height: 430px;
  }
}
@media screen and (width < 768px) {
  .un_index_kv::after {
    left: 50%;
    aspect-ratio: 500/430;
    width: 128.2051282051vw;
    translate: -50% 0;
  }
}
.un_index_kv_inner {
  position: relative;
  z-index: 2;
}
@media screen and (width >= 768px) {
  .un_index_kv_inner {
    height: max(100dvh, 800px);
    padding: 100px 39px 0;
  }
}
@media screen and (width < 768px) {
  .un_index_kv_inner {
    aspect-ratio: 390/750;
    padding: 25.641025641vw 5.1282051282vw 0;
  }
}
.un_index_kv_inner::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  animation: kvAnimation 1.5s both;
}
@media screen and (width >= 768px) {
  .un_index_kv_inner::before {
    background: url(../image/yell-project-moya_bg_kv_front_pc.png) no-repeat center center/cover;
  }
}
@media screen and (width < 768px) {
  .un_index_kv_inner::before {
    background: url(../image/yell-project-moya_bg_kv_front_sp.png) no-repeat center top/contain;
  }
}
.un_index_kv > * {
  position: relative;
}
.un_index_kv_title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  animation: kvAnimation 2s both 2s;
}
.un_index_kv_title > img {
  margin-inline: auto;
}
@media screen and (width >= 768px) {
  .un_index_kv_title_promiseLogo {
    width: 228px;
    margin-bottom: 23px;
  }
}
@media screen and (width < 768px) {
  .un_index_kv_title_promiseLogo {
    width: 51.2820512821vw;
    margin-bottom: 5.1282051282vw;
  }
}
@media screen and (width >= 768px) {
  .un_index_kv_title_text {
    width: 199.01px;
    margin-bottom: 19px;
  }
}
@media screen and (width < 768px) {
  .un_index_kv_title_text {
    width: 44.6487179487vw;
    margin-bottom: 4.2692307692vw;
  }
}
@media screen and (width >= 768px) {
  .un_index_kv_title_img {
    width: 400px;
  }
}
@media screen and (width < 768px) {
  .un_index_kv_title_img {
    width: 89.7435897436vw;
  }
}
@media screen and (width >= 768px) {
  .un_index_about {
    padding-block: 60px;
    background: url(../image/yell-project-moya_bg_about_pc.png) no-repeat 0 0/cover;
  }
}
@media screen and (width < 768px) {
  .un_index_about {
    padding-block: 15.3846153846vw;
    background: url(../image/yell-project-moya_bg_about_sp.png) no-repeat 0 0/cover;
  }
}
@media screen and (width >= 768px) {
  .un_index_about_inner {
    padding-inline: 36px;
  }
}
@media screen and (width < 768px) {
  .un_index_about_inner {
    padding-inline: 2.8205128205vw;
  }
}
.un_index_about_text {
  font-size: inherit;
  line-height: 1.8;
}
.un_index_about_text:nth-of-type(n + 2) {
  margin-top: 1lh;
}
.un_index_about_signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  color: #f86c00;
}
@media screen and (width >= 768px) {
  .un_index_about_signature {
    row-gap: 10px;
    margin-top: 30px;
  }
}
@media screen and (width < 768px) {
  .un_index_about_signature {
    row-gap: 2.5641025641vw;
    margin-top: 7.6923076923vw;
  }
}
@media screen and (width >= 768px) {
  .un_index_about_signature_text {
    width: 152.74px;
    margin-bottom: 4px;
  }
}
@media screen and (width < 768px) {
  .un_index_about_signature_text {
    width: 39.1641025641vw;
    margin-bottom: 1.0256410256vw;
  }
}
.un_index_about_signature_hashTag {
  display: block;
}
@media screen and (width >= 768px) {
  .un_index_about_signature_hashTag {
    width: 307px;
  }
}
@media screen and (width < 768px) {
  .un_index_about_signature_hashTag {
    width: 66.2256410256vw;
  }
}
.un_index_about_signature_name {
  font-weight: 900;
  line-height: 1.4285714286;
}
@media screen and (width >= 768px) {
  .un_index_about_signature_name {
    font-size: 14px;
  }
}
@media screen and (width < 768px) {
  .un_index_about_signature_name {
    font-size: 3.5897435897vw;
  }
}
.un_index_contents {
  position: relative;
}
.un_index_contents_bg {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.un_index_contents_bg::before {
  content: "";
  display: block;
  position: sticky;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100dvh;
}
@media screen and (width >= 768px) {
  .un_index_contents_bg::before {
    background: url(../image/yell-project-moya_bg_contents_pc.png) no-repeat top center/cover;
  }
}
@media screen and (width < 768px) {
  .un_index_contents_bg::before {
    background: url(../image/yell-project-moya_bg_contents_sp.png) no-repeat top center/cover;
  }
}
@media screen and (width >= 768px) {
  .un_index_contents {
    padding-bottom: 56px;
  }
}
@media screen and (width < 768px) {
  .un_index_contents {
    padding-bottom: 14.358974359vw;
  }
}
@media screen and (width >= 768px) {
  .un_index_entry {
    padding-top: 60px;
  }
}
@media screen and (width < 768px) {
  .un_index_entry {
    padding-top: 15.3846153846vw;
  }
}
.un_index_entry_title {
  font-size: inherit;
}
@media screen and (width >= 768px) {
  .un_index_entry_title {
    margin-bottom: 40px;
  }
}
@media screen and (width < 768px) {
  .un_index_entry_title {
    margin-bottom: 10.2564102564vw;
  }
}
.un_index_entry_title_pre {
  display: block;
  font-size: inherit;
}
@media screen and (width >= 768px) {
  .un_index_entry_title_pre {
    margin: 0 auto 30px;
  }
}
@media screen and (width < 768px) {
  .un_index_entry_title_pre {
    margin: 0 auto 7.6923076923vw;
  }
}
@media screen and (width >= 768px) {
  .un_index_entry_title_text {
    width: 174.13px;
    margin: 0 auto 15px;
  }
}
@media screen and (width < 768px) {
  .un_index_entry_title_text {
    width: 44.6487179487vw;
    margin: 0 auto 3.8461538462vw;
  }
}
.un_index_entry_title_hashTag {
  margin-inline: auto;
}
@media screen and (width >= 768px) {
  .un_index_entry_title_hashTag {
    width: 350px;
  }
}
@media screen and (width < 768px) {
  .un_index_entry_title_hashTag {
    width: 89.7435897436vw;
  }
}
@media screen and (width >= 768px) {
  .un_index_entry_privilege_bg {
    padding-inline: 36px;
  }
}
@media screen and (width < 768px) {
  .un_index_entry_privilege_bg {
    padding-inline: 2.5641025641vw;
  }
}
@media screen and (width >= 768px) {
  .un_index_entry_privilege_img {
    width: 250px;
    margin: 0 auto 30px;
  }
}
@media screen and (width < 768px) {
  .un_index_entry_privilege_img {
    width: 64.1025641026vw;
    margin: 0 auto 7.6923076923vw;
  }
}
.un_index_entry_privilege_title {
  line-height: 1.4444444444;
}
@media screen and (width >= 768px) {
  .un_index_entry_privilege_title {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
@media screen and (width < 768px) {
  .un_index_entry_privilege_title {
    font-size: 4.6153846154vw;
    margin-bottom: 4.1025641026vw;
  }
}
.un_index_entry_privilege_text {
  line-height: 1.8;
}
.un_index_entry_how_title {
  line-height: 1.4444444444;
}
@media screen and (width >= 768px) {
  .un_index_entry_how_title {
    font-size: 18px;
    padding: 6px 12px;
    margin-bottom: 16px;
  }
}
@media screen and (width < 768px) {
  .un_index_entry_how_title {
    font-size: 4.6153846154vw;
    padding: 1.5384615385vw 3.0769230769vw;
    margin-bottom: 4.1025641026vw;
  }
}
@media screen and (width >= 768px) {
  .un_index_entry_period {
    margin-bottom: 60px;
  }
}
@media screen and (width < 768px) {
  .un_index_entry_period {
    margin-bottom: 15.3846153846vw;
  }
}
@media screen and (width >= 768px) {
  .un_index_entry_period_bg {
    padding-block: 20px;
  }
}
@media screen and (width < 768px) {
  .un_index_entry_period_bg {
    padding-block: 5.1282051282vw;
  }
}
.un_index_entry_period_text {
  line-height: 1.6;
}
@media screen and (width >= 768px) {
  .un_index_entry_period_text {
    font-size: 18px;
  }
}
@media screen and (width < 768px) {
  .un_index_entry_period_text {
    font-size: 4.6153846154vw;
  }
}
.un_index_entry_process_steps {
  display: flex;
  flex-direction: column;
}
@media screen and (width >= 768px) {
  .un_index_entry_process_steps {
    row-gap: 30px;
  }
}
@media screen and (width < 768px) {
  .un_index_entry_process_steps {
    row-gap: 7.6923076923vw;
  }
}
.un_index_entry_process_step_title {
  line-height: 1.6;
  letter-spacing: 0.2em;
}
@media screen and (width >= 768px) {
  .un_index_entry_process_step_title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
@media screen and (width < 768px) {
  .un_index_entry_process_step_title {
    font-size: 4.6153846154vw;
    margin-bottom: 5.1282051282vw;
  }
}
.un_index_entry_process_step_text {
  line-height: 1.8;
}
@media screen and (width >= 768px) {
  .un_index_entry_process_step_text {
    margin-bottom: 30px;
  }
}
@media screen and (width < 768px) {
  .un_index_entry_process_step_text {
    margin-bottom: 7.6923076923vw;
  }
}
.un_index_entry_process_step_text_note {
  display: block;
}
@media screen and (width >= 768px) {
  .un_index_entry_process_step_text_note {
    margin-top: 10px;
  }
}
@media screen and (width < 768px) {
  .un_index_entry_process_step_text_note {
    margin-top: 2.5641025641vw;
  }
}
.un_index_entry_process_step_link_btn_inner {
  line-height: 1.4375;
}
@media screen and (width >= 768px) {
  .un_index_entry_process_step_img {
    width: 251px;
    margin: 35px auto 0;
  }
}
@media screen and (width < 768px) {
  .un_index_entry_process_step_img {
    margin: 8.9743589744vw auto 0;
  }
  .un_index_entry_process_step_img.un_index_entry_process_step_img__01 {
    width: 67.4358974359vw;
  }
  .un_index_entry_process_step_img.un_index_entry_process_step_img__02 {
    width: 64.1025641026vw;
  }
  .un_index_entry_process_step_img.un_index_entry_process_step_img__03 {
    width: 64.1025641026vw;
  }
}
@media screen and (width >= 768px) {
  .un_index_entry_terms {
    padding: 8px;
    margin-top: 30px;
  }
}
@media screen and (width < 768px) {
  .un_index_entry_terms {
    padding: 2.0512820513vw;
    margin-top: 7.6923076923vw;
  }
}
@media screen and (width >= 768px) {
  .un_index_entry_terms_inner {
    padding: 32px 33px 32px 37px;
  }
}
@media screen and (width < 768px) {
  .un_index_entry_terms_inner {
    padding: 8.2051282051vw 3.0769230769vw 8.2051282051vw 5.1282051282vw;
  }
}
.un_index_entry_terms_inner p {
  line-height: 1.8;
}
@media screen and (width >= 768px) {
  .un_index_entry_terms_inner p:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
@media screen and (width < 768px) {
  .un_index_entry_terms_inner p:not(:last-of-type) {
    margin-bottom: 7.6923076923vw;
  }
}
.un_index_entry_terms_title {
  line-height: 1.4444444444;
  text-align: center;
}
@media screen and (width >= 768px) {
  .un_index_entry_terms_title {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
@media screen and (width < 768px) {
  .un_index_entry_terms_title {
    font-size: 4.6153846154vw;
    margin-bottom: 7.6923076923vw;
  }
}
@media screen and (width >= 768px) {
  .un_index_entry_terms_toEntry {
    font-size: 16px;
    margin-top: 60px;
  }
}
@media screen and (width < 768px) {
  .un_index_entry_terms_toEntry {
    font-size: 4.1025641026vw;
    margin-top: 15.3846153846vw;
  }
}
.un_index_entry_terms_toEntry_text {
  line-height: 1.8;
}
@media screen and (width >= 768px) {
  .un_index_entry_terms_toEntry_linkBtn {
    margin-top: 30px;
  }
}
@media screen and (width < 768px) {
  .un_index_entry_terms_toEntry_linkBtn {
    margin-top: 7.6923076923vw;
  }
}
@media screen and (width >= 768px) {
  .un_index_exhibition {
    padding-top: 60px;
  }
}
@media screen and (width < 768px) {
  .un_index_exhibition {
    padding-top: 15.3846153846vw;
  }
}
@media screen and (width >= 768px) {
  .un_index_exhibition_title {
    margin-bottom: 30px;
  }
}
@media screen and (width < 768px) {
  .un_index_exhibition_title {
    margin-bottom: 7.6923076923vw;
  }
}
.un_index_exhibition_title_preText, .un_index_exhibition_title_text {
  margin-inline: auto;
}
@media screen and (width >= 768px) {
  .un_index_exhibition_title_preText {
    width: 338px;
    margin-bottom: 20px;
  }
}
@media screen and (width < 768px) {
  .un_index_exhibition_title_preText {
    width: 86.6666666667vw;
    margin-bottom: 5.1282051282vw;
  }
}
@media screen and (width >= 768px) {
  .un_index_exhibition_title_text {
    width: 294px;
  }
}
@media screen and (width < 768px) {
  .un_index_exhibition_title_text {
    width: 75.3846153846vw;
  }
}
@media screen and (width >= 768px) {
  .un_index_exhibition_bg {
    margin-bottom: 30px;
  }
}
@media screen and (width < 768px) {
  .un_index_exhibition_bg {
    margin-bottom: 7.6923076923vw;
  }
}
@media screen and (width >= 768px) {
  .un_index_exhibition_bg_inner {
    padding-inline: 30px;
  }
}
@media screen and (width < 768px) {
  .un_index_exhibition_bg_inner {
    padding-inline: 5.1282051282vw;
  }
}
@media screen and (width >= 768px) {
  .un_index_exhibition_bg_separator::after {
    margin-block: 30px;
  }
}
@media screen and (width < 768px) {
  .un_index_exhibition_bg_separator::after {
    margin-block: 7.6923076923vw;
  }
}
.un_index_exhibition_overview {
  line-height: 1.8;
}
@media screen and (width >= 768px) {
  .un_index_exhibition_article {
    font-size: 18px;
  }
}
@media screen and (width < 768px) {
  .un_index_exhibition_article {
    font-size: 4.6153846154vw;
  }
}
@media screen and (width >= 768px) {
  .un_index_exhibition_article:not(:first-of-type) {
    margin-top: 30px;
  }
}
@media screen and (width < 768px) {
  .un_index_exhibition_article:not(:first-of-type) {
    margin-top: 7.6923076923vw;
  }
}
@media screen and (width >= 768px) {
  .un_index_exhibition_article_title {
    margin-bottom: 16px;
  }
}
@media screen and (width < 768px) {
  .un_index_exhibition_article_title {
    margin-bottom: 4.1025641026vw;
  }
}
.un_index_exhibition_article_text {
  line-height: 1.6;
}
@media screen and (width >= 768px) {
  .un_index_exhibition_article_text.un_index_exhibition_article_text__date {
    font-size: 16px;
  }
}
@media screen and (width < 768px) {
  .un_index_exhibition_article_text.un_index_exhibition_article_text__date {
    font-size: 4.1025641026vw;
  }
}
.un_index_exhibition_article_link {
  color: #000;
  text-decoration: underline;
}
.un_index_exhibition_link_btn {
  margin-top: 30px;
}
@media screen and (width >= 768px) {
  .un_index_exhibition_place {
    margin-top: 30px;
  }
}
@media screen and (width < 768px) {
  .un_index_exhibition_place {
    margin-top: 7.6923076923vw;
  }
}
@media screen and (width >= 768px) {
  .un_index_banner_link {
    transition: opacity 0.3s;
  }
  .un_index_banner_link:hover {
    opacity: 0.7;
  }
}
@media screen and (width >= 768px) {
  .un_index_share {
    margin-top: 90px;
  }
}
@media screen and (width < 768px) {
  .un_index_share {
    margin-top: 23.0769230769vw;
  }
}
@media screen and (width >= 768px) {
  .un_index_share_title {
    margin-bottom: 20px;
  }
}
@media screen and (width < 768px) {
  .un_index_share_title {
    margin-bottom: 5.1282051282vw;
  }
}
.un_index_share_list {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (width >= 768px) {
  .un_index_share_list {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media screen and (width < 768px) {
  .un_index_share_list {
    -moz-column-gap: 5.1282051282vw;
    column-gap: 5.1282051282vw;
  }
}
@media screen and (width >= 768px) {
  .un_index_share_list_item {
    width: 68px;
  }
  .un_index_share_list_item_link {
    transition: opacity 0.3s;
  }
  .un_index_share_list_item_link:hover {
    opacity: 0.7;
  }
}
@media screen and (width < 768px) {
  .un_index_share_list_item {
    width: 17.4358974359vw;
  }
}