@charset 'utf-8';

.spinner {
  display: inline-block;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-left-color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: auto;
}

.spinner.black {
  display: inline-block;
  /* ← これが抜けていると表示されない */
  border: 4px solid rgba(0, 0, 0, 0.1);
  /* 薄い灰色 */
  border-left-color: black;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: auto;
}


@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#loading,
#submitting {
  text-align: center;
  padding: 20px;
}

#loading {
  color: white;
}

h2.form-title_box {
  font-size: x-large;
}

#complete-message {
  display: none;
  text-align: center;
  padding: 20px;
}

.error-list {
  color: red;
  margin-bottom: 1em;
}

#submitting {
  display: none;
}

.p-app__confirm .p-app__input {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.5em;
  font-size: 1em;
}

input.p-app__input[type=number]{
  height: 42px;
}

@media screen and (min-width: 768px){
  input.p-app__input[type=number]{
    height: 64px;
  }
}

/* 共通スタイル */
.p-app__input,
.p-app__select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  color: #333;
  padding: 0 1em;
  width: 100%;
  font-weight: 700;
  height: 42px;
  font-family: sans-serif;
}

.p-app__input.--append{
  background-color: white;
  padding-top: 1em;
  padding-bottom: 1em;
  height: auto;
}

textarea{
  height: 15em;
  padding: 1em;
}

.p-app__button {
  display: inline-block;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  background-color: #ff6600;
  color: white;
  cursor: pointer;
}

.p-app__button.-secondary {
  background-color: #fff;
  color: #000;
  border: 1px solid #ccc;
}

.p-app__button.-primary {
  background-color: #ff6600;
  color: #fff;
}

.p-app__form {
  margin-bottom: 2em;
}

.p-app__heading {
  font-weight: 700;
  font-size: 1.25rem;
  /* 例: 20px 相当 */
  line-height: 1.6;
  position: relative;
  padding-left: 2.2em;
  /* ●マークが大きくなるぶん余白も広めに */
}

.p-app__heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: #333;
  border-radius: 50%;
}

.p-app__heading.-must::before {
  background-color: #FF660A;
}

.p-app__note {
  font-size: 0.9em;
  color: #666;
  margin-top: 0.25em;
}

.error-list {
  color: red;
  margin-bottom: 1em;
}

.p-app__checkbox,
.p-app__radio {
  /*display: block;*/
  margin: 0.5em 0;
}

.p-app__sec {
  /*padding: 1em 0;*/
  border-top: 1px solid #ddd;
}

.p-app__confirm .p-app__input {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  padding: 0.5em;
  font-size: 1em;
  border-radius: 4px;
}

.p-app__input--confirm {
  margin-top: 0.75em;
}

#turnstile-container {
  margin: 1em auto;
  display: flex;
  justify-content: center;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}

body {
  color: black !important;
}

.c-bg.-black {
  color: white;
}

.l-header {
  padding-top: 10px;
}

.l-header__logo {
  margin: 0;
}

.c-main__text {
  margin-right: 0;
  padding-top: 1em;
}

/*
.line-account {
  position: relative;
}

.line-account .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.line-account .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.line-account .menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin: auto;
  width: fit-content;
  background: #FFF;
  color: #000;
  white-space: nowrap;
  font-size: .85rem;
  display: none;
  border-radius: 8px;
  padding: 1em;
}

.line-account .menu .username {
  min-height: 1em;
  text-align: center;
  font-weight: bold;
  line-height: 1.3;
}

.line-account .menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  padding-right: .5em;
  margin-top: .5em;
}

.line-account .menu a::before {
  content: '';
  width: 18px;
  height: 18px;
  display: inline-block;
  background: url(../img/icon-arrow-tr-bk.svg) no-repeat center center / contain;
  margin-right: .5em;
}
}

@media screen and (min-width: 768px) {
  .line-account .icon {
    width: 50px;
    height: 50px;
  }

  .line-account .menu {
    right: 50%;
    transform: translateX(50%);
  }
}
*/

/*LIFF*/
button.p-app__button {
  width: 13em;
  border: 1px solid;
  border-radius: 2em;
  display: inline-block;
  margin: 1.5em .5em;
  padding: .5em;
  text-align: center;
}

.l-footer {
  color: white;
}

.l-footer {
  padding: 15vw 0;
  text-align: center;
  background: #333333;
  margin-top: 15vw;
}

.l-footer .foot_glogo {
  width: 100%;
  max-width: 190px;
}

.l-footer .sitelink {
  width: 11em;
  border: 1px solid;
  border-radius: 2em;
  display: block;
  margin: 2em auto;
  padding: .5em;
}

.l-footer__copyright {
  text-align: center;
  margin: 5em auto 0;
}

@media screen and (min-width: 768px) {
  .l-footer {
    padding: 100px 0 100px;
    margin-top: 150px;
  }
}