@charset "UTF-8";

/*-------------------------------------------------------------------------
							/共通部分/
-------------------------------------------------------------------------*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}
*::before,
*::after {
  box-sizing: border-box;
}
:root {
  --main-color: #4d6fb6;
  --accent-color: #ffd85b;
  --sub-color: #e0e8f0;
  --header-height: 0px;
}
html {
  /* scroll-behavior: smooth; */
  overflow-x: hidden;
}
html,
body {
  width: 100%;
  /* height: 100%; */
}
main {
  position: relative;
}
footer {
  position: relative;
}
ul {
  list-style: none;
}
p,
h1,
h2,
h3,
h4,
li,
th {
  line-height: 1;
  color: var(--main-color);
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  letter-spacing: 0.015em;
}
p,
li,
th {
  font-size: 16px;
  font-weight: 400;
}
h2 {
  font-size: 32px;
  color: #fff;
  font-weight: 500;
}
h3 {
  font-size: 32px;
  font-weight: 500;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: unset;
  display: block;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  line-height: 1;
  letter-spacing: 0.015em;
}
a[href*="tel:"] {
  font-size: inherit !important;
  color: #000 !important;
}
time {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  display: block;
  line-height: 1;
  font-size: 16px;
  color: #707070;
  letter-spacing: 0.015em;
}
small {
  font-size: 14px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  line-height: 1;
  letter-spacing: 0.015em;
}
.no-hover:hover {
  opacity: 1;
}
svg {
  display: block;
}
input {
  margin: 0;
  font-size: 16px;
  line-height: 1;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  letter-spacing: 0.015em;
  font-weight: 500;
  border: none;
}
textarea {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}
input:-webkit-autofill {
  box-shadow: 0 0 0px 999px #efefef inset;
}
.wpcf7 input:-webkit-autofill {
  box-shadow: 0 0 0px 999px #fff inset;
}
label {
  line-height: 1;
  color: #2b2b2b;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  letter-spacing: 0.015em;
}

[type="submit"]:not(:disabled) {
  cursor: pointer;
}
[type="submit"] {
  appearance: button;
  -webkit-appearance: button;
}
.pc-d {
  display: block;
}
.sp-d {
  display: none;
}
.preparation {
  width: 100%;
  border-radius: 4px;
  padding-top: 40px;
  display: block;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  line-height: 1.5;
  margin: -4px 0;
  text-align: center;
}

@media screen and (max-width: 1279px) {
  .pc-d {
    display: none;
  }
  .sp-d {
    display: block;
  }
  .preparation {
    padding-top: 28px;
    padding-bottom: 12px;
    text-align: left;
  }
}
/*-------------------------------------------------------------------------
							/sns/
-------------------------------------------------------------------------*/

.sns {
  background-color: #fff;
  border-radius: 4px;
}
.sns__inner {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sns__icon {
  transition: 0.3s;
}
.sns__icon:hover {
  opacity: 0.5;
}
.sns-icon__img {
  width: auto;
  height: 30px;
}

/*-------------------------------------------------------------------------
							/bg/
-------------------------------------------------------------------------*/
.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  background-image: url("../img/assets/bg.webp");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/*-------------------------------------------------------------------------
							/ヘッダー/
-------------------------------------------------------------------------*/

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 10000;
  background-color: var(--main-color);
}
.header__inner {
  width: 100%;
  height: auto;
  padding: 24px 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo__img {
  width: auto;
  height: 54px;
}
.header__jci {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 16px 24px;
  border-radius: 0 0 4px 4px;
}
.header-jci__img {
  width: 120px;
  height: auto;
}
.header__wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: 0.3s;
}
.header__menu:hover {
  opacity: 0.5;
}
.header-menu__text {
  color: var(--accent-color);
  font-weight: 500;
}
.header-menu__btn {
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-btn__inner {
  width: 24px;
  height: 12px;
  position: relative;
}
.header-btn__line {
  width: 24px;
  height: 1px;
  background-color: var(--main-color);
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
}
.header-btn__line:first-of-type {
  top: 0;
  transition: 0.3s;
}
.header-btn__line:nth-of-type(2) {
  top: 50%;
  transition: 0.3s;
}
.header-btn__line:last-of-type {
  top: 100%;
  transition: 0.3s;
}
.header-btn__line.active:first-of-type {
  top: 50%;
  transform: translate(-50%, -50%) rotate(30deg);
}
.header-btn__line.active:nth-of-type(2) {
  opacity: 0;
}
.header-btn__line.active:last-of-type {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
}
.global_nav {
  width: 100%;
  height: calc(100dvh - var(--header-height));
  background-color: rgba(0, 0, 0, 0.25);
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 500;
  display: none;
}
.global_nav__inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.global_nav__wrapper {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 4px 0 0 4px;
  background-color: var(--main-color);
  padding: 32px;
}
.global_nav__link {
  width: 280px;
  border-radius: 100vw;
  background-color: #fff;
  padding: 8px 8px 8px 28px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--main-color);
  transition: 0.3s;
}
.global_nav__link:not(:last-of-type) {
  margin-bottom: 16px;
}
.global_nav-link__arrow {
  width: 40px;
  height: 40px;
  border-radius: 100vw;
  background-color: var(--main-color);
  position: relative;
}
.global_nav-link__arrow svg {
  position: absolute;
  top: 50%;
  left: calc(50% + 1px);
  transform: translate(-50%, -50%);
}
.global_nav-arrow__path {
  fill: none;
  stroke: #fff;
  stroke-width: 1.5px;
  transition: 0.3s;
}
.global_nav__link:hover {
  background-color: var(--accent-color);
}
.global_nav__link:hover .global_nav-arrow__path {
  stroke: var(--accent-color);
}
.global_nav__link--preparation {
  pointer-events: none;
  opacity: 0.5;
}

@media screen and (max-width: 1279px) {
  .header__inner {
    padding: 16px;
  }
  .header-logo__img {
    height: 32px;
  }
  .header__menu {
    gap: 6px;
  }
  .header-menu__text {
    font-size: 12px;
  }
  .header-menu__btn {
    width: 40px;
    height: 40px;
  }
  .header-btn__inner {
    width: 16px;
    height: 8px;
  }
  .header-btn__line {
    width: 16px;
  }
  .global_nav__wrapper {
    padding: 24px;
  }
}

/*-------------------------------------------------------------------------
							/フッター/
-------------------------------------------------------------------------*/

#footer {
  width: 100%;
  height: auto;
  background-color: var(--main-color);
  margin-top: 144px;
}
.footer__inner {
  width: 100%;
  height: auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 80px 120px;
}
.footer__jci {
  background-color: #fff;
  padding: 24px;
  border-radius: 4px;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}
.footer-jci__img {
  height: 40px;
  width: auto;
}
.footer__organizer {
  color: #fff;
  font-weight: 500;
  margin-bottom: 18px;
}
.footer__address {
  color: #fff;
  line-height: 1.75;
  margin-bottom: -6px;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
.footer-nav__inner {
  background-color: #fff;
  padding: 24px 40px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 16px;
}
.footer-nav__list {
  font-weight: 500;
}
.footer-nav__link {
  transition: 0.3s;
}
.footer-nav__link:hover {
  opacity: 0.5;
}
.copyright {
  color: #fff;
  font-size: 14px;
  flex: 1;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 1279px) {
  #footer {
    margin-top: 80px;
  }
  .footer__inner {
    padding: 40px 16px 20px;
    flex-direction: column;
    gap: 24px;
  }
  .footer__jci {
    padding: 20px 20px 16px;
  }
  .footer-jci__img {
    height: 31px;
  }
  .footer__organizer {
    font-size: 14px;
    margin-bottom: 12.5px;
  }
  .footer__address {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: -3.5px;
  }
  .footer__nav {
    align-items: flex-start;
  }
  .footer-nav__inner {
    padding: 20px 24px;
    gap: 24px;
  }
  .copyright {
    margin-top: 40px;
    width: 100%;
    justify-content: center;
  }
}

/*-------------------------------------------------------------------------
							/お問い合わせフォーム/
-------------------------------------------------------------------------*/
.form {
  width: 100%;
  background-color: var(--sub-color);
  padding: 40px;
  margin-top: 64px;
}
.form__container {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #bababa;
}
.form__label {
  display: block;
  margin-bottom: 12px;
}
.form-label__span {
  background-color: var(--main-color);
  color: #fff;
  font-size: 12px;
  border-radius: 4px;
  padding: 4px;
  line-height: 1;
  display: inline-block;
  margin-left: 8px;
}
.form-container__caption {
  color: #707070;
  margin-bottom: 16px;
}
.form__input {
  width: 100%;
  border: none;
  font-size: 16px;
  line-height: 1.75;
  border-radius: 4px;
  background-color: #fff;
  letter-spacing: 0.015em;
  padding: 10px 16px;
  font-weight: 400;
}
.form-policy__text {
  line-height: 1.75;
  margin: -6px 0;
  color: #2b2b2b;
}
.form-policy__link {
  width: max-content;
  margin: 0 auto;
  font-weight: 500;
  color: var(--main-color);
  text-decoration: underline;
  margin-top: 40px;
}
.form__button {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.form-button__container {
  width: max-content;
  position: relative;
}
.form-button__container::after {
  content: url("../img/assets/global_arrow.svg");
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.form-button__container--prev::after {
  content: url("../img/assets/global_arrow.svg");
  position: absolute;
  left: 24px;
  right: unset;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}
.form-button__confirmation {
  width: 280px;
  border-radius: 4px;
  background-color: var(--main-color);
  color: #fff;
  position: relative;
  padding: 24px 0;
}
.form__title {
  font-weight: 500;
  margin-bottom: 16px;
}
.form__text {
  color: #2b2b2b;
  line-height: 1.75;
  margin: -6px 0;
}
.form-button__previous {
  width: 280px;
  border-radius: 4px;
  background-color: #707070;
  color: #fff;
  position: relative;
  padding: 24px 0;
  cursor: pointer;
}
.thanks__desc {
  margin-top: 56px;
}
.thanks__text {
  color: #2b2b2b;
  line-height: 2;
}
.thanks__text:not(:last-of-type) {
  margin-bottom: 24px;
}
.wpcf7-spinner {
  display: none !important;
}
@media screen and (max-width: 1279px) {
  .form {
    margin-top: 40px;
    padding: 20px;
  }
  .form__container {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .form-container__caption {
    color: #707070;
    font-size: 14px;
    line-height: 1.25;
    margin-top: -1.75px;
    margin-bottom: 14.25px;
  }

  .form__policy {
    margin-bottom: 40px;
  }
  .form__button {
    margin-top: 0;
    flex-direction: column;
    gap: 12px;
  }
  .form-button__container {
    width: 100%;
  }
  .form-button__confirmation,
  .form-button__previous {
    width: 100%;
  }
  .thanks__desc {
    margin-top: 32px;
  }
  .page_title__text--br {
    line-height: 1.4;
    margin: -7.6px 0;
  }
}
