@charset "UTF-8";

/**************************************************************
* グロバル設定
**************************************************************/
html {
  min-width: 320px;
	font-size: var(--base-font-size);
  /* --scroll-behavior: smooth;
  scroll-behavior: smooth;  */
  scrollbar-gutter: stable; /* //MEMO 危険 */
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scrollbar-width: none;
}
html.has-splashscreen::-webkit-scrollbar {
  display: none;
}

body {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  font-size: var(--base-font-size);
  line-height: 1.78;
  letter-spacing: 0.02em;
  color: var(--base-color, #000000);
  background: var(--base-bg);
}

:where(p, label, li, dt, dd) {
  font-size: min(0.25vw + 1rem, 1.4rem);
}

input,
textarea {
  font-family: Verdana;
}

rt {
  font-size: 50%;
}

main {
  min-height: 100vh;
}

section[id] {
  scroll-margin-top: 5rem; 
}

@media all and (min-width: 768px) {
  section[id] {
    scroll-margin-top: 10rem; 
  }
}

/* hovers */
@media (hover: hover) and (min-width: 1023px) {
  a[href*="tel:"] {
    pointer-events: none; 
  }
}

@media (hover: hover) {
	a > img {
		transition: opacity 0.3s ease-out;
	}
	a:hover > img {
		opacity: 0.7;
	}

	a[href*="mailto:"],
  a:not([class]) {
		transition: color 0.3s ease-out;
	}
	a[href*="mailto:"]:hover,
  a:not([class]):hover {
    color: var(--accent-1-color);
    filter: brightness(120%);
	}
}

/**************************************************************
* グロバルの要素
**************************************************************/

/* g-wrapper */
.g-wrapper {
  position: relative;
  height: 100%;
  /* overflow: hidden; */
}

/* g-header
********************************/
.g-header {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  width: 100%;
}

.g-header__inner {
  display: flex;
  justify-content: center;
}

.g-header__emblem {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 8rem;
  background: var(--base-bg);
}

@media all and (max-width: 767px) {
  .g-header__emblem .logo{
    width: 140px;
  }
}

@media all and (max-width: 1023px) {
  .g-header__fixed-block[data-display="narrow"] {
    position: fixed;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 5rem;
    width: 100%;
    height: 8rem;
  }
}

@media all and (min-width: 1024px) {
  .g-header__sns {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: min(2.2vw + 1rem, 4rem);
    height: 100%;
    padding-left: min(2.2vw + 1rem, 4rem);
    padding-right: min(2.2vw + 1rem, 4rem);
  }
}

/* g-nav
********************************/
.g-nav {
  position: fixed;
  height: 100%;
}

.g-nav__item {
  position: relative;
}

.g-nav__item.logo{
  margin-bottom: 2rem;
}
.g-nav__item.c-sns__item {
  margin-top: 4rem;
}
@media all and (max-width: 767px) {
  .g-nav__item.c-sns__item i {
    width: 2rem;
    height: 2rem;
  }

.g-nav.is-open .g-nav__item {
  animation-name: fadeDownAnime;
  animation-duration: 0.25s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.g-nav.is-open .g-nav__item:first-child {
  animation-delay: 0.2s;
}
.g-nav.is-open .g-nav__item:nth-child( 2 ) {
  animation-delay: 0.3s;
}
.g-nav.is-open .g-nav__item:nth-child( 3 ) {
  animation-delay: 0.4s;
}
.g-nav.is-open .g-nav__item:nth-child( 4 ) {
  animation-delay: 0.5s;
}
.g-nav.is-open .g-nav__item:nth-child( 5 ) {
  animation-delay: 0.6s;
}
.g-nav.is-open .g-nav__item:nth-child( 6 ) {
  animation-delay: 0.7s;
}
.g-nav.is-open .g-nav__item:nth-child( 7 ) {
  animation-delay: 0.8s;
}
.g-nav.is-open .g-nav__item:nth-child( 8 ) {
  animation-delay: 0.9s;
}
.g-nav.is-open .g-nav__item:nth-child( 9 ) {
  animation-delay: 1s;
}
}

@media all and (max-width: 1023px) {
  .g-nav {
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    background: rgba(255,255,255,.95);
    transition: transform 0.3s ease-out;
    transform: translateY(-120vh);
  }

  .g-nav__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: min(2.2vw + 1rem, 4rem);
    height: 100%;
  }

  .g-nav__link {
    font-size: min(1.75vw + 1rem, 1.8rem);
  } 
}

@media all and (min-width: 1024px) {
  .g-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: min(2.2vw + 1rem, 4rem);
    padding-right: min(2.2vw + 1rem, 4rem);
  }

  .g-nav__list {
    display: grid;
    gap: 4rem;
  }

  .g-nav__item {
    writing-mode: vertical-rl;
    line-height: 1;
  }
  .g-nav__item:not(:nth-last-child(2)):after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 0;
    right: 0;
    width: 1.5rem;
    height: 1px;
    margin-left: auto;
    margin-right: auto;
    background-color: currentColor;
  }

  .g-nav__link {
    font-size: min(0.44vw + 1rem, 1.6rem);
    letter-spacing: 0.04em;
  }
}

/* hovers */
@media (hover: hover) {
  .g-nav__link {
    position: relative;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    /* transition-delay: 0.1s; */
  }
  .g-nav__link::before,
  .g-nav__link::after {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: #000000;
    opacity: 0;
    filter: blur(5px);
    transition: transform 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  }
  .g-nav__link::before {
    left: 0;
    transform: translateX(-0.15rem);
  }
  .g-nav__link::after {
    right: 0;
    transform: translateX(0.15rem);
  }

  .g-nav__link:hover {
    color: var(--base-inverted-color);
    filter: brightness(135%);
    background: #000000;
  }
  .g-nav__link:hover::before {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
  .g-nav__link:hover::after {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
}

/* g-footer
********************************/
.g-footer {
  position: relative;
  padding-top: 5%;
  background: var(--accent-3-background-color);
}

.g-footer__inner {
  display: grid;
  justify-content: center;
  padding-bottom: 5%;
}

.g-footer__logo {
  position: relative;
  margin-bottom: 5rem;
  text-align: center;
}

.g-footer__info {
  margin-bottom: 5rem;
  text-align: center;
}

.g-footer__info > p {
  font-size: min(0.44vw + 1rem, 1.6rem);
  letter-spacing: 0.15em;
}

.g-footer__sns {
  position: relative;
  margin-bottom: 5rem;
}
.g-footer__sns > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}

@media all and (max-width: 767px) {
  .g-footer__inner {
    padding-left: 5.333%;
    padding-right: 5.333%;
  }
}

/* hamburger-btn
********************************/
@media all and (max-width: 1023px) {
  .hamburger-btn {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: transparent;
  }

  .hamburger-btn__icn,
  .hamburger-btn__clone-icn {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 2.5rem;
    height: 0.5rem;
    margin: auto;
    border-radius: 5rem;
    background-color: var(--accent-1-background-color);
  }
  .hamburger-btn__icn {
    transition: all 0.3s ease-out;
  }
  .hamburger-btn__clone-icn {
    transition: none;
  }
  .hamburger-btn__icn::before,
  .hamburger-btn__clone-icn::before,
  .hamburger-btn__icn::after,
  .hamburger-btn__clone-icn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 5rem;
    background-color: var(--accent-1-background-color);
    transition: all 0.3s ease-out;
  }
  .hamburger-btn__icn::before,
  .hamburger-btn__clone-icn::before {
    transform: translate3d(0, 200%, 0);
  }
  .hamburger-btn__icn::after,
  .hamburger-btn__clone-icn::after {
    transform: translate3d(0, -200%, 0);
  }
  
  .hamburger-trigger {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1001;
    width: 5rem;
    height: 100%;
  }

  /* states */
  .hamburger-btn {
    transition: width 0.3s ease-out,
                transform 0.3s ease-out;
    will-change: width;
  }
  .hamburger-btn__icn::before,
  .hamburger-btn__icn::after {
    transition-delay: 0.2s;
  }

  .hamburger-btn__clone-icn {
    opacity: 0;
    visibility: hidden;
    transition-delay: 0.2s;
  }

  .hamburger-trigger:checked ~ .hamburger-btn {
    transform: rotateZ(45deg);
    transition: width 0.3s ease-out,
                transform 0.3s ease-out 0.3s;
  }
  .hamburger-trigger:checked ~ .hamburger-btn .hamburger-btn__icn,
  .hamburger-trigger:checked ~ .hamburger-btn .hamburger-btn__clone-icn {
    /* width: 0.5rem; */
  }
  .hamburger-trigger:checked ~ .hamburger-btn .hamburger-btn__icn::before,
  .hamburger-trigger:checked ~ .hamburger-btn .hamburger-btn__clone-icn::before {
    transform: translate3d(0, -200%, 0);
  }
  .hamburger-trigger:checked ~ .hamburger-btn .hamburger-btn__icn::after,
  .hamburger-trigger:checked ~ .hamburger-btn .hamburger-btn__clone-icn::after {
    transform: translate3d(0, 200%, 0);
  }

  .hamburger-trigger:checked ~ .hamburger-btn .hamburger-btn__clone-icn {
    opacity: 1;
    visibility: visible;
    transform: rotate(90deg);
    transition: all 0.25s ease-out;
    transition-delay: 0.25s;
  }
  
  .hamburger-trigger:checked ~ .g-nav {
    transform: translateY(0%);
  }
}

@media all and (min-width: 1024px) {
  .hamburger-trigger,
  .hamburger-btn {
    display: none;
  }
}


/**************************************************************
* レイアウトの要素
**************************************************************/

/* l-segment
********************************/
.l-segment {
  padding-top: 20%;
  padding-bottom: 20%;
}

@media all and (min-width: 768px) {
  .l-segment {
    padding-top: 12.5%;
    padding-bottom: 8rem;
  }
}

/* l-container
********************************/
.l-container {
  padding-left: 5.333%;
  padding-right: 5.333%;
}

@media all and (min-width: 768px) {
  .l-container {
    padding-left: calc(3.66vw + 5rem);
    padding-right: calc(3.66vw + 5rem);
  }
}

@media all and (min-width: 1486px) {
  .l-container {
    width: 77.4%;
    max-width: 148.6rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

/* l-form-container
********************************/
.l-form-container {
  position: relative;  
}

/* l-heading-block
********************************/
.l-heading-block {
  display: grid;
  justify-content: center;
}

/* l-btns-group
********************************/
.l-btns-group {
  display: grid;
  gap: 2rem;
}

@media all and (min-width: 768px) {
  .l-btns-group {
    grid-template-columns: 1fr 1fr;
    justify-content: center;
  }
}

/* l-btn-wrapper
********************************/
.l-btn-wrapper {
  width: 25rem;
  height: 6rem;
}

.l-btn-wrapper[class*="--centered"] {
  margin-left: auto;
  margin-right: auto;
}

/* l-video
********************************/
.l-video {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 100vh;
}
.l-video > video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .l-video {
    padding-top: 56.5%;
  }
}

/* l-googlemap
********************************/
.l-googlemap {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.5%;
}
.l-googlemap > iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: auto;
}

/* l-intersection-visual
********************************/
.l-intersection-visual {
  position: relative;
  width: 100%;
}
.l-intersection-visual::after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 80%;
}

.l-intersection-visual__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--base-bg);
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: 260%;
}

@media all and (min-width: 768px) {
  .l-intersection-visual::after {
    padding-top: calc(500/1920 * 100%);
  }

  .l-intersection-visual__bg {
    background-position: center center;
    background-size: cover;
  }
}


/**************************************************************
* コンポーネント
**************************************************************/

/* c-heading
********************************/
.c-heading {
  position: relative;
  overflow: hidden;
}

.c-heading__title {
  display: block;
  font-size: min(3.46vw + 1rem, 3.6rem);
  line-height: 1.85;
  letter-spacing: 0.3em;
}

.c-heading__alphabetic {
  display: block;
  font-family: var(--alphabetic-font-family);
  font-size: min(1.02vw + 1rem, 2.4rem);
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.3em;
  color: var(--accent-1-color);
}
.c-heading__alphabetic::before {
  content: "";
  display: inline-flex;
  width: 3.6rem;
  height: 1px;
  margin-right: 2.5rem;
  vertical-align: super;
  background-color: currentColor;
}

@media all and (max-width: 768px) {
  .c-heading {
    text-align: center;
  }
}

@media all and (min-width: 768px) {
  .c-heading__title {
    font-size: min(1.61vw + 1rem, 3.6rem);
  }
}

/* modules */
@media all and (min-width: 768px) {
  .c-heading[class*="--vertical-writing"][data-display="wide"] {
    writing-mode: vertical-rl;
  }
  .c-heading[class*="--vertical-writing"][data-display="wide"] .c-heading__alphabetic::before,
  .concept__heading .c-heading__alphabetic::before {
    width: 1px;
    height: 3.6rem;
    margin-bottom: 2.5rem;
    margin-right: inherit;
    vertical-align: inherit;
  }
}

/* states */
.c-heading__alphabetic,
.c-heading .c-heading__title {
  clip-path: inset(0px 100% 0px 0px);
  transform: translateX(100%);
  transition: clip-path 1.2s cubic-bezier(0.48, -0.02, 0, 0.85) 0.2s,
              transform 1s cubic-bezier(0.48, -0.02, 0, 0.85);
  will-change: clip-path, transform;
}

.c-heading[class*="is-visible"] .c-heading__alphabetic,
.c-heading[class*="is-visible"] .c-heading__title,
.concept__heading .c-heading__alphabetic {
  clip-path: inset(0px);
  transform: translateX(0);
}

/* c-btn
********************************/
.c-btn {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.c-btn__body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 10;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  cursor: pointer;
  font-family: 'Klee One', cursive;;
  font-size: min(0.58vw + 1rem, 1.8rem);
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--base-inverted-color);
  border-radius: 3rem;
  background-color: var(--accent-1-background-color);
}

.c-btn__arrow-icn {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1rem;
  z-index: 10;
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  margin: auto;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  /* background-image: url(../images/common/btn_arrrow_icn.svg); */
  transform: translateY(0.2rem);
}

/* variations */
.c-btn[class*="--backward"] {
  filter: grayscale(100%);
}

/* states */
.c-btn:disabled {
  opacity: 0.5;
  cursor: none;
}

/* hovers */
@media (hover: hover) {
  .c-btn {
    border-radius: 3rem;
    box-shadow: 0 0 0 2em transparent;
  }
  .c-btn .c-btn__body {
    transition: all 0.3s ease-out;
  }

  .c-btn:hover {
    animation: pulse 1s;
  }
  .c-btn:hover .c-btn__body {
    filter: brightness(115%);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--accent-1-background-color);
  }
}

/* variations */
.c-btn[class*="--back"] .c-btn__body {
  background-color: #bbbbbb;
}

/* c-sns
********************************/
.c-sns {
  position: relative;
}

.c-sns__item i {
  display: block;
  width: 3rem;
  height: 3rem;
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: contain;
}

@media all and (max-width: 767px) {
  .g-footer__sns .c-sns__item i {
    width: 2rem;
    height: 2rem;
  }
}

i.line-icn      { background-image: url(../images/common/sns_line_icn.svg); }
i.twitter-icn   { background-image: url(../images/common/sns_twitter_icn.svg); }
i.instagram-icn { background-image: url(../images/common/sns_instagram_icn.svg); }

/* hovers */
@media (hover: hover) {
  .c-sns__link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
    will-change: transform, filter;
  }

  .c-sns__link:hover {
    opacity: 0.85;
    transform: translateY(-5%);
    filter: brightness(400%);
  }
}


/***************************************
* フォーム系のコンポーネント
***************************************/

/* c-form-control
********************************/
.c-form-control {
  position: relative;
  display: grid;
}
.c-form-control:not(:last-child) {
  margin-bottom: 3rem;
}

.c-form-control__label {
  position: relative;
  display: block;
  margin-bottom: 1rem;
  font-size: min(0.44vw + 1rem, 1.6rem);
  line-height: 1.5;
  letter-spacing: 0.15em;
}

.c-form-control__box {
  display: grid;
  gap: 1rem;
  width: 100%;
}

/* //MEMO .c-form-control__boxに「--2-cols」「--3-cols」を追加、下層要素をdivに囲って */
.c-form-control__box[class*="--2-cols"] {
  grid-template-columns: 1fr 1fr;
}
.c-form-control__box[class*="--3-cols"] {
  grid-template-columns: repeat(3, 1fr);
}

.c-form-control__input,
.c-form-control__textarea {
  position: relative;
  display: block;
  width: 100%;
  padding: 1rem;
  font-size: 16px;
  background: var(--form-control-bg);
}

/* input */
.c-form-control__input:placeholder-shown {
  font-size: 16px;
  color: #bbbbbb;
}
.c-form-control__input:focus {
  font-size: 16px;
  outline: auto;
}

.c-form-control__input + .c-form-control__input {
  margin-top: 2rem;
}

/* textarea */
.c-form-control__textarea {
  resize: vertical;
}

.c-form-control__textarea:is(.privacy-textarea) {
  font-size: min(0.146vw + 1rem, 1.2rem);
  border: 1px solid transparent;
  background-color: var(--base-bg);
}

p.c-form-control__err {
  color: var(--warning-color);
}

@media all and (min-width: 768px) {
  [data-layout="bundle"] .c-form-control {
    grid-template-columns: 20rem 1fr;
    align-items: center;
    gap: 1rem;
  }

  .c-form-control:not(:last-child) {
    margin-bottom: 4rem;
  }
}

/* states */
.c-form-control__input:read-only,
.c-form-control__textarea:not(.privacy-textarea):read-only {
  background: #c9fbff; /* //FIXME change to CSS vars */
  border-color: #c9fbff; /* //FIXME change to CSS vars */
}

.c-form-control__box .c-form-control__input[class*="is-invalid"],
.c-form-control__box .c-form-control__textarea[class*="is-invalid"] {
  border-color: var(--warning-color);
}

/* c-required-mark
********************************/
.c-required-mark {
  display: inline-flex;
  width: 4rem;
  height: 2rem;
  margin-left: 1rem;
  padding-bottom: 0.1rem;
  padding-left: 0.5rem;
  padding-right: 0.6rem;
  font-size: min(0.142vw + 1rem, 1.2rem);
  letter-spacing: 0.1em;
  color: var(--base-inverted-color);
  border-radius: 4rem;
  border: 1px solid var(--warning-color);
  background-color: var(--warning-color);
}

/* //FIXME refactor??? */
/* c-form-acceptance
********************************/
.c-form-acceptance {
  margin-top: 2.5rem;
  text-align: center;
}

.c-form-acceptance__checkbox {
  all: revert;
  position: relative;
  top: 0.1rem;
  left: -0.1rem;
  cursor: pointer;
  transform: scale(1.5);
}
.c-form-acceptance__checkbox::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px sold var(--accent-1-background-color);
  background: transparent;
}
.c-form-acceptance__checkbox:checked:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
}

.c-form-acceptance__label {
  line-height: 1;
  cursor: pointer;
  text-shadow: none;
}

@media all and (max-width: 767px) {
  .c-form-acceptance {
    text-align: center;
  }

  .c-form-acceptance__checkbox {
    position: relative;
    vertical-align: middle;
    margin-right: 1rem;
  }
}


/***************************************
* フォーム その他
***************************************/

/* honeypot （スパム対策）
********************************/
.form-honeypot {
  display: none;
}

/* form-onward
********************************/
.form-onward {
  margin-bottom: 5rem;
}
.form-onward > p {
  font-size: min(0.44vw + 1rem, 1.6rem);
  line-height: 1.875;
  letter-spacing: 0.15em;
}

/* form-comfirm
********************************/
.form-comfirm {
  margin-bottom: 6rem;
  text-align: center;
}

.form-comfirm > p {
  font-size: min(0.58vw + 1rem, 1.8rem);
}

/* form-thanks
********************************/
.form-thanks {
  position: relative;
}

.form-thanks__txt {}

.form-check-mark {
  display: block;
  max-width: 100%;
  margin: auto;
  opacity: 0;
}
i.form-check-mark {
  opacity: 0;
  transform: translateY(15%);
}

/* form-processing-status
********************************/
.form-processing-status {
  display: grid;
  justify-content: center;
  text-align: center;
}

.form-processing-status__msg {
  margin-top: 4rem;
  font-size: min(1.32vw + 1rem, 2.8rem);
}

/* form-processing-animation
********************************/
.form-processing-animation {
  transform: scale(0.7);
}

/* form-submit-area
********************************/
.form-submit-area {
  display: grid;
  justify-content: center;
}

@media all and (max-width: 767px) {
  .form-submit-area .l-btns-group > .l-btn-wrapper:nth-child(1) {
    grid-row: 2;
  }
  .form-submit-area .l-btns-group > .l-btn-wrapper:nth-child(2) {
    grid-row: 1;
  }
}

/* animations */
.form-processing-animation.is-loading .spinner-icn {
  border: 3px dotted var(--base-bg);
  animation: form-spinner-rotation 1s linear backwards infinite;
}

.spinner-icn:not([class*="is-loading"]) {
  border-color: transparent;
  box-shadow: none;
}

.form-processing-animation[class*="is-animated"] .form-check-mark {
  animation: form-checkmark-animation 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
}

@keyframes form-spinner-rotation {
  to {
    transform: rotate(360deg);
  }
}

@keyframes form-checkmark-animation {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}


/**************************************************************
* その他・特殊な要素
**************************************************************/

/* canvas-particles
********************************/
.canvas-particles {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  filter: blur(30px);
  background: #ffffff;
}

/* copyright
********************************/
.copyright {
  text-align: center;
  font-size: min(0.146vw + 1rem, 1.2rem);
}


/**************************************************************
* ステート周り
**************************************************************/
.is-hidden {
  display: none;
}


/**************************************************************
* ユーティリティ
**************************************************************/

/* u-hide-**
********************************/
.u-hide-sp,
.u-hide-pc {
  display: none;
}

@media screen and (max-width: 1023px) {
  .u-hide-pc {
    display: block !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-hide-sp {
    display: block !important;
  }
}

/* u-flexible-center
********************************/
.u-flexible-center {
  display: grid;
  justify-content: center;
  text-align: center;
}

/* u-bullet-list
********************************/
ul.u-bullet-list li {
  list-style-type: disc;
  list-style-position: inside;
  text-indent: -1em;
  padding-left: 1em;
}