@charset "UTF-8";
/* @acab/reset.css */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden='until-found'])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}

:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1.15;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
}

:where([type='checkbox']) {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

:where([type='radio']) {
  -webkit-appearance: radio;
  appearance: radio;
}

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

:where([type='search']::-webkit-search-decoration) {
  -webkit-appearance: none;
}

:where(::-webkit-file-upload-button) {
  -webkit-appearance: button;
  font: inherit;
}

:where(textarea) {
  resize: vertical;
}

:where(button, label, select, summary, [role='button'], [role='option']) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border: none;
}

:where(a) {
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  font-size: inherit;
  font-weight: inherit;
  overflow-wrap: break-word;
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(pre, code, kbd, samp) {
  font-family: monospace, monospace;
  font-size: inherit;
}

:where(address) {
  font-style: inherit;
}

:where(abbr[title]) {
  text-decoration: underline dotted;
}

:where(
    .visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)
  ) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ここから */

:root {
  --color-black: #111;
  --color-white: #fff;
  --color-primary: #f18944;
  --color-primary_thin: #fff3eb;
  --font-jp: 'Zen Kaku Gothic New', sans-serif;
  --font-en: 'Barlow', sans-serif;
}

* {
  min-inline-size: 0;
}

body {
  font-family: var(--font-jp);
  font-size: 14px;
  color: var(--color-black);
  background-color: var(--color-primary);
}

@media screen and (min-width: 1024px) {
  body {
    font-size: 15px;
  }
}

a,
li,
address,
h2,
h3,
h4,
h5 {
  line-height: 1.5;
}

p {
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 0;
}

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

ul {
  padding: 0;
}

li {
  list-style: none;
}

picture {
  display: block;
}

img {
  width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

button {
  cursor: pointer;
}

::selection {
  color: #fff;
  /* background-color: rgba(config.$color-primary, 0.5); */
}

.ly_container {
  min-height: 100dvh;
  background-color: var(--color-white);
}

.un_main {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100dvh;
  width: 100%;
  background-image: url('../img/back.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 40px 20px;
}

.un_main:before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(241, 137, 68, 0.8);
}

.un_main_back {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 1024px) {
  .un_main_back {
    display: flex;
    /* display: grid;
    grid-template-columns: repeat(2, 1fr);
    transition: grid-template-columns 0.3s; */
  }
}

.un_main_back::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.3);
  opacity: 0;
}

.un_main.is_active .un_main_back::before {
  opacity: 1;
  transition: opacity 1s;
}

.un_main_back_img {
  display: block;

  height: 50%;
}

@media screen and (max-width: 1023px) {
  .un_main_back_img {
    width: 100% !important;
  }
}

@media screen and (min-width: 1024px) {
  .un_main_back_img {
    flex-shrink: 1;
    width: 50%;
    height: 100%;
    transition: width 0.6s;
  }
}

.un_main_back_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.un_main_inner {
  /* display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  row-gap: 154px;
  margin: auto; */
  opacity: 0;
}

.un_main.is_active .un_main_inner {
  opacity: 1;
  transition: opacity 1s;
}

@media screen and (min-width: 1024px) {
  .un_main_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 123px;
    /* max-height: 352px;
    height: 100%; */
    padding-top: 40px;
    margin: auto;
  }
}

.un_main_logo {
  position: absolute;
  top: 13%;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 50%;
  max-width: 265px;
  margin-inline: auto;
}

@media screen and (min-width: 1024px) {
  .un_main_logo {
    position: static;
    transform: none;
  }
}

.un_main_buttonUnit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px 60px;
}

@media screen and (min-width: 1024px) {
  .un_main_buttonUnit {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    /* margin-top: 123px; */
  }
}

.el_button {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0.05em;
  width: 240px;
  height: 90px;
  border-radius: 100px;
  transition: color 0.3s;
}

.el_button:before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  border-radius: 100px;
  transition-property: background-color, transform;
  transition-duration: 0.3s;
  /* transition: transform 0.3s; */
}

.el_button:hover:before {
  transform: scale(1.05, 1.1);
}

.el_button.el_button--white {
  color: var(--color-primary);
}
.el_button.el_button--white:before {
  background-color: var(--color-white);
}

.el_button.el_button--white:hover {
  color: var(--color-white);
}
.el_button.el_button--white:hover:before {
  background-color: var(--color-primary);
}

@media screen and (min-width: 768px) {
  .el_button {
    font-size: 18px;
    width: 270px;
    height: 100px;
  }
}

@media screen and (min-width: 1024px) {
  .el_button {
    font-size: 20px;
    width: 368px;
    height: 138px;
  }
}

.un_loading {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: var(--color-white); */
}

.un_loading::before {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  transform: scaleY(0);
  transform-origin: bottom;
}

.un_loading.is_active::before {
  animation: loadingBack 1s 1.5s 1 forwards;
}

@keyframes loadingBack {
  0% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
  50% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  50.001% {
    transform-origin: top;
  }
  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}

.un_loading::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
}
.un_loading.is_active::after {
  opacity: 0;
  transition: opacity 1s 2.2s;
}

.un_lodagin_logoWrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: fit-content;
}

.un_loading.is_active .un_lodagin_logoWrap {
  opacity: 0;
  transition: opacity 0.7s 1s;
}

.un_lodagin_logoWrap {
  position: relative;
  overflow: hidden;
}

.un_lodagin_logoWrap::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  opacity: 1;
  transform: scaleX(0);
  transform-origin: left;
}

.un_loading.is_active .un_lodagin_logoWrap::before {
  opacity: 1;
  transition: opacity 1s;
  animation: loadingLogoWrap 1s 0s 1 forwards;
}

.un_lodagin_logo {
  opacity: 0;
}

.un_loading.is_active .un_lodagin_logo {
  opacity: 1;
  transition: opacity 1s 0.6s;
}

@keyframes loadingLogoWrap {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
