@charset "UTF-8";
/* ///////////////////////////////////////////////

　common style for modern browser
　Version: 4.0

/////////////////////////////////////////////// */
/* 下線がないリンクのアニメーション */
/* 下線がついている場合のアニメーション */
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@300;400;500;600;700&display=swap");
@keyframes linkUnderline {
  0% {
    background-position: 0 100%;
    background-size: 0 1px;
  }
  100% {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}
/* Base
----------------------------------------------- */
/*
　各要素のスタイルを初期化し、デフォルトのスタイルを定義
*/
*,
*::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: none;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

: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;
  background: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

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

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

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

:where(p, li, dt, dd, th, td, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

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

:where(table) {
  border-collapse: collapse;
  border-spacing: 0;
}

:where(picture) {
  display: block;
}

:where(i, em) {
  font-style: normal;
}

/* Module
----------------------------------------------- */
.ul-disc > li {
  list-style: disc;
  margin-left: 1.6em;
}

.ol-decimal > li {
  list-style: decimal;
  margin-left: 1.6em;
}

/* State
----------------------------------------------- */
.hidden {
  display: none;
}

.hidden-pc {
  display: none;
}

@media (max-width: 960px) {
  .hidden-pc {
    display: block;
  }
  .hidden-pc.inline {
    display: inline-block;
  }
  .hidden-tab {
    display: none;
  }
}
@media (max-width: 520px) {
  .hidden-tab {
    display: block;
  }
  .hidden-tab.inline {
    display: inline-block;
  }
  .hidden-sp {
    display: none;
  }
}
@media (orientation: landscape) and (max-width: 960px) {
  .hidden-land {
    display: none;
  }
}
/* Utillity
----------------------------------------------- */
/* Text */
.taR {
  text-align: right;
}

.taL {
  text-align: left;
}

.taC {
  text-align: center;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

/* Image */
a img {
  backface-visibility: hidden;
  transition: all 0.2s;
}
@media (hover: hover) {
  a:hover img {
    opacity: 0.8;
  }
}

*[class|=logo] a {
  text-decoration: none;
}
*[class|=logo] a:hover {
  text-decoration: none;
}
*[class|=logo] a:hover img {
  opacity: 1;
}

a.tel {
  text-decoration: none;
}
a.tel img {
  opacity: 1;
}

/* button */
.btn {
  display: inline-block;
  backface-visibility: hidden;
  text-decoration: none;
  transition: opacity 0.2s;
}
@media (hover: hover) {
  .btn:hover {
    text-decoration: none;
    opacity: 0.8;
  }
  .btn:hover img {
    opacity: 1;
  }
}

/* 下線がないリンクのアニメーション */
/* 下線がついている場合のアニメーション */
@keyframes linkUnderline {
  0% {
    background-position: 0 100%;
    background-size: 0 1px;
  }
  100% {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}
/*

  FONT
----------------------------------------------- */
:root {
  font-size: 1px;
  --color-text-base: #000;
  --color-black: #222;
  --color-gray: #3F3F3F;
  --color-light-gray: #CCD9D4;
  --color-red: #C40018;
  --color-blue: #242982;
  --font-ibm: "IBM Plex Sans JP", serif;
}
@media (min-width: 961px) {
  :root {
    --dist-header: 80px;
  }
}
@media (max-width: 960px) {
  :root {
    --dist-header: 44px;
  }
}

body {
  color: var(--color-text-base);
  font-size: 17rem;
  font-family: var(--font-ibm);
  font-style:  normal;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
}

:is(p) {
  line-height: 1.8;
}

:is(li, dt, dd, th, td, address) {
  line-height: 1.8;
}

:is(input, textarea, select) {
  font-size: 16rem;
}

:where(a) {
  color: inherit;
}
:where(a):hover {
  text-decoration: none;
}

/*

  LAYOUT
----------------------------------------------- */
body {
  background-color: #F9F9F9;
}
@media (max-width: 960px) {
  body.isOpenMenu {
    overflow: hidden;
  }
}

.mainContents {
  padding-inline: calc(50dvw - 650px);
}
@media screen and (max-width: 1360px) {
  .mainContents {
    padding-inline: 30px;
  }
}
@media (max-width: 960px) {
  .mainContents {
    padding-inline: 20px;
  }
}
@media (min-width: 961px) {
  .mainContents {
    margin-top: 170px;
    margin-bottom: 200px;
  }
}
@media (max-width: 960px) {
  .mainContents {
    margin-top: 100px;
    margin-bottom: 120px;
  }
}

/*
  HEADER
----------------------------------------------- */
.header {
  position: absolute;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--dist-header);
  max-width: 1300px;
  margin: auto;
}
@media (min-width: 961px) {
  .header {
    top: 30px;
    left: 30px;
    right: 30px;
    padding: 0 30px;
  }
}
@media (max-width: 960px) {
  .header {
    top: 20px;
    left: 20px;
    right: 20px;
    padding: 0 15px;
  }
}
.header::before {
  position: absolute;
  inset: 0;
  content: "";
  background-color: #fff;
}
@media (min-width: 961px) {
  .header::before {
    border-radius: 10px;
  }
}
@media (max-width: 960px) {
  .header::before {
    border-radius: 4px;
  }
}
.header .logo {
  position: relative;
}
@media (max-width: 960px) {
  .header .logo {
    width: 157px;
  }
}
.header .button-pc a {
  justify-content: space-between;
  width: 160px;
  height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  overflow: hidden;
}
.header .button-pc a::after {
  display: none;
}
.header .button-pc i {
  width: 28px;
}
@media (max-width: 960px) {
  .header .button-pc {
    display: none;
  }
}

/*
  MENU
----------------------------------------------- */
.gnav a {
  position: relative;
  align-items: center;
  background: linear-gradient(currentcolor, currentcolor) no-repeat 100% 100%/0 1px;
  transition: background-size 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  padding-block: 0.25rem;
  text-decoration: none;
}
.gnav a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}
@media (min-width: 961px) {
  .gnav {
    position: relative;
  }
  .gnav-mypage {
    display: none;
  }
  .gnav-sub, .gnav-sns {
    display: none;
  }
  .gnav-main {
    display: flex;
    gap: 1.7em;
  }
  .gnav-main .top {
    display: none;
  }
}
@media (max-width: 960px) {
  .gnav {
    position: fixed;
    z-index: -1;
    inset: 0;
    background-color: #F9F9F9;
    padding: 90px 20px 40px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    display: grid;
    gap: 40px;
    transition: 0.4s;
  }
  .gnav ul {
    display: grid;
  }
  .gnav-main a {
    display: flex;
    height: 55px;
    border-bottom: 1px solid var(--color-light-gray);
    font-size: 14px;
  }
  .gnav-main a::before, .gnav-main a::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    line-height: 1;
    text-rendering: auto;
    flex-shrink: 0;
  }
  .gnav-main a::after {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    content: "\f061";
    font-size: 11px;
  }
  .gnav-mypage {
    gap: 20px;
  }
  .gnav-mypage a {
    padding: 0 20px;
    font-size: 14px;
  }
  .gnav-mypage a::before, .gnav-mypage a::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    line-height: 1;
    text-rendering: auto;
    flex-shrink: 0;
  }
  .gnav-mypage a::after {
    right: 20px;
  }
  .gnav-sub a {
    font-size: 12px;
    text-decoration: underline;
  }
  .gnav-sns {
    grid-auto-flow: column;
    justify-content: start;
    gap: 12px;
    font-size: 18px;
  }
}

@media (max-width: 960px) {
  .isOpenMenu .gnav {
    opacity: 1;
    pointer-events: inherit;
  }
}

/*
  BUTTON MENU
----------------------------------------------- */
.btnMenu {
  position: relative;
  display: none;
  place-items: center;
  width: 20px;
  height: 20px;
}
@media (max-width: 960px) {
  .btnMenu {
    display: grid;
  }
}
.btnMenu span, .btnMenu::before, .btnMenu::after {
  content: "";
  grid-area: 1/1;
  width: 20px;
  height: 1px;
  background: var(--color-text-base);
  transition: 0.2s;
}
.btnMenu::before {
  transform: translateY(-7px);
}
.btnMenu::after {
  transform: translateY(7px);
}

.isOpenMenu .btnMenu span {
  opacity: 0;
}
.isOpenMenu .btnMenu::before {
  rotate: 45deg;
  transform: none;
}
.isOpenMenu .btnMenu::after {
  rotate: -225deg;
  transform: none;
}

/*
  FOOTER
----------------------------------------------- */
.footer {
  background-color: var(--color-black);
  padding-inline: calc(50dvw - 650px);
  display: grid;
  color: #fff;
}
@media screen and (max-width: 1360px) {
  .footer {
    padding-inline: 30px;
  }
}
@media (max-width: 960px) {
  .footer {
    padding-inline: 20px;
  }
}
@media (min-width: 961px) {
  .footer {
    padding-top: 50px;
    padding-bottom: 40px;
    grid-template-columns: 1fr auto;
    gap: 40px 0;
  }
}
@media (max-width: 960px) {
  .footer {
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 40px 0;
  }
}
.footer .fnav {
  display: grid;
  gap: 40px;
}
.footer .fnav-main a {
  font-size: 14rem;
  background: linear-gradient(currentcolor, currentcolor) no-repeat 100% 100%/0 1px;
  transition: background-size 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  padding-block: 0.25rem;
  text-decoration: none;
}
.footer .fnav-main a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}
.footer .fnav-mypage {
  display: grid;
  gap: 15px;
}
.footer .fnav-mypage a {
  width: 250px;
  overflow: hidden;
}
@media (min-width: 961px) {
  .footer .fnav-mypage a {
    gap: 8px;
    height: 44px;
    padding: 0 15px;
    border-radius: 4px;
  }
  .footer .fnav-mypage a::after {
    display: none;
  }
}
@media (max-width: 960px) {
  .footer .fnav-mypage a {
    gap: 12px;
    width: 100%;
    padding: 0 20px;
    font-size: 14rem;
  }
  .footer .fnav-mypage a::after {
    right: 20px;
    font-size: 16px;
  }
}
@media (min-width: 961px) {
  .footer .fnav-mypage i {
    width: 28px;
  }
}
@media (max-width: 960px) {
  .footer .fnav-mypage i {
    width: 36px;
  }
}
.footer .fnav-sns {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18rem;
}
.footer-info {
  display: grid;
  align-content: start;
  grid-template-rows: auto 1fr auto;
  font-size: 14rem;
}
.footer-info .name {
  margin-bottom: 1em;
  font-weight: 600;
  line-height: 1.75;
}
.footer-info .address {
  font-style: normal;
}
.footer-menu {
  border-top: 1px solid var(--color-light-gray);
  padding-top: 30px;
  display: flex;
  gap: 0 1em;
}
.footer-menu a {
  background: linear-gradient(currentcolor, currentcolor) no-repeat 100% 100%/100% 1px;
  text-decoration: none;
  font-size: 12rem;
  white-space: nowrap;
}
.footer-menu a:hover {
  animation: linkUnderline 0.35s cubic-bezier(0.18, 0.06, 0.23, 1) forwards;
}
@media (max-width: 960px) {
  .footer-menu {
    flex-direction: column;
  }
}
.footer .copyright {
  font-size: 12rem;
}
@media (min-width: 961px) {
  .footer .copyright {
    border-top: 1px solid var(--color-light-gray);
    padding-top: 37px;
    text-align: right;
  }
}
.footer .pagetop {
  margin-top: 35px;
  display: block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(currentcolor, currentcolor) no-repeat 100% 100%/100% 1px;
  text-decoration: none;
  font-size: 12rem;
}
.footer .pagetop::before, .footer .pagetop::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  text-rendering: auto;
  flex-shrink: 0;
}
.footer .pagetop:hover {
  animation: linkUnderline 0.35s cubic-bezier(0.18, 0.06, 0.23, 1) forwards;
}
.footer .pagetop::after {
  position: absolute;
  left: calc(100% + 1em);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  aspect-ratio: 1;
  content: "\f062";
  background-color: #fff;
  border-radius: 50%;
  color: var(--color-text-base);
  font-size: 85%;
}
@media (min-width: 961px) {
  .footer .pagetop {
    margin-right: calc(16px + 1em);
    margin-left: auto;
  }
}

/*
  modules
----------------------------------------------- */
/* 下線がないリンクのアニメーション */
/* 下線がついている場合のアニメーション */
@keyframes linkUnderline {
  0% {
    background-position: 0 100%;
    background-size: 0 1px;
  }
  100% {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}
/* パンくず */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.breadcrumb > * {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12rem;
}
.breadcrumb > *::before, .breadcrumb > *::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  text-rendering: auto;
  flex-shrink: 0;
}
.breadcrumb > * + * {
  position: relative;
  margin-left: 2.2em;
}
.breadcrumb > * + *::before {
  display: flex;
  justify-content: center;
  align-items: center;
  content: "\f054";
  position: absolute;
  font-size: 70%;
  left: -1.8em;
}
.breadcrumb a {
  background: linear-gradient(currentcolor, currentcolor) no-repeat 100% 100%/100% 1px;
  text-decoration: none;
}
.breadcrumb a:hover {
  animation: linkUnderline 0.35s cubic-bezier(0.18, 0.06, 0.23, 1) forwards;
}
@media (max-width: 960px) {
  .breadcrumb {
    display: none;
  }
}

/* ページタイトル */
.pagetitle {
  display: grid;
  border-top: 2px solid var(--color-gray);
  border-bottom: 1px solid var(--color-light-gray);
}
.pagetitle .en {
  font-weight: 400;
  text-transform: uppercase;
}
.pagetitle .ja {
  font-weight: 300;
  line-height: 1.375;
}
@media (min-width: 961px) {
  .pagetitle {
    margin: 20px 0 60px;
    padding: 60px 0;
    gap: 0.7em;
  }
  .pagetitle .ja {
    font-size: 64rem;
  }
}
@media (max-width: 960px) {
  .pagetitle {
    margin-bottom: 35px;
    padding: 30px 0;
    gap: 0.6em;
  }
  .pagetitle .en {
    font-size: 12px;
  }
  .pagetitle .ja {
    font-size: 32px;
  }
}

/* 見出し */
.h3 {
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 961px) {
  .h3 {
    font-size: 40rem;
  }
}
@media (max-width: 960px) {
  .h3 {
    font-size: 32rem;
  }
}

/* カラム レイアウト */
.column-two {
  display: grid;
}
@media (min-width: 961px) {
  .column-two {
    grid-template-columns: 32% auto;
    gap: 100px;
  }
}
@media (max-width: 960px) {
  .column-two {
    gap: 40px;
  }
}

/* PC時左側の文章 */
@media (min-width: 961px) {
  .text-lead {
    width: 32.5%;
  }
  .text-lead.large {
    width: 66%;
  }
}

/* 白背景 */
.box-white {
  background-color: #fff;
  border-radius: 10px;
}
@media (min-width: 961px) {
  .box-white {
    padding: 60px;
  }
}
@media (max-width: 960px) {
  .box-white {
    padding: 20px;
  }
}

/* フォームの注意事項 */
.form-attention .ol-decimal {
  border-top: 1px solid var(--color-light-gray);
}
@media (min-width: 961px) {
  .form-attention .ol-decimal {
    padding-top: 30px;
  }
}
@media (max-width: 960px) {
  .form-attention .ol-decimal {
    padding-top: 25px;
  }
}
.form-attention .ol-decimal li + li {
  margin-top: 1.5em;
}
.form-attention .author {
  margin-top: 40px;
  border-top: 1px solid var(--color-light-gray);
}
@media (min-width: 961px) {
  .form-attention .author {
    padding-top: 30px;
  }
}
@media (max-width: 960px) {
  .form-attention .author {
    padding-top: 20px;
  }
}
.form-attention .author dt {
  margin-bottom: 0.8em;
  font-weight: 700;
}
.form-attention .author .tel {
  text-decoration: none;
}
.form-attention .link-rightbutton {
  margin-top: 1.2em;
}
.form-attention .agreement {
  display: grid;
  justify-items: center;
  gap: 0.7em;
}
.form-attention .agreement label {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  line-height: 1.6;
}
.form-attention .agreement input {
  transform: translateY(0.3em);
}
.form-attention .agreement small {
  font-size: 75%;
}
@media (min-width: 961px) {
  .form-attention .agreement {
    margin-top: 45px;
  }
}
@media (max-width: 960px) {
  .form-attention .agreement {
    margin-top: 50px;
  }
}

/* フォーム入力 */
.form-input {
  color: var(--color-black);
}
.form-input dt {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.6em;
  font-weight: 500;
}
.form-input .required {
  padding: 0.1em 0.8em 0;
  background-color: var(--color-black);
  border-radius: 0.3em;
  color: #fff;
  font-size: 10rem;
  transform: translateY(-0.12em);
}
.form-input dd + dt {
  margin-top: 2.6em;
}
.form-input dd.radio {
  display: grid;
  justify-items: start;
  padding-top: 0.5em;
}
.form-input dd.captcha {
  display: grid;
}
.form-input dd.captcha img {
  margin: 20px 0;
}
.form-input input[type=text],
.form-input input[type=number],
.form-input input[type=email],
.form-input textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 58px;
  padding: 0.7em 1em;
  border: 1px solid var(--color-light-gray);
}
.form-input input[type=text]::-moz-placeholder, .form-input input[type=number]::-moz-placeholder, .form-input input[type=email]::-moz-placeholder, .form-input textarea::-moz-placeholder {
  color: #C4C4C4;
}
.form-input input[type=text]::placeholder,
.form-input input[type=number]::placeholder,
.form-input input[type=email]::placeholder,
.form-input textarea::placeholder {
  color: #C4C4C4;
}
.form-input input[type=number]::-webkit-outer-spin-button,
.form-input input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.form-input input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}
.form-input textarea {
  height: 323px;
}
@media (min-width: 961px) {
  .form-input .submit-button {
    margin-top: 60px;
  }
}
@media (max-width: 960px) {
  .form-input .submit-button {
    margin-top: 40px;
  }
}
.form-input .error-message {
  display: block;
  margin-top: 0.5em;
  color: var(--color-red);
}

/* ボタン */
.button {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 100%;
  height: 75px;
  line-height: 1.45;
  padding: 0.25em 70px 0 20px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid var(--color-light-gray);
  border-radius: 4px;
  color: #fff;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
}
.button::before, .button::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  text-rendering: auto;
  flex-shrink: 0;
}
.button > * {
  z-index: 2;
}
.button::before {
  position: absolute;
  inset: 0;
  content: "";
  transition: background-size 0.3s;
}
.button::after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 2;
  content: "\f061";
  font-size: 110%;
}
.button.black {
  background-color: var(--color-black);
}
.button.black::before {
  background: linear-gradient(90deg, #fff, #fff) no-repeat 100% 100%/0 100%;
}
.button.black:hover {
  color: var(--color-black);
}
.button.gray {
  background-color: #F1F4F3;
  color: var(--color-text-base);
}
.button.gray::before {
  background: linear-gradient(90deg, var(--color-black), var(--color-black)) no-repeat 100% 100%/0 100%;
}
.button.gray:hover {
  color: #F1F4F3;
}
.button.white {
  color: var(--color-text-base);
  border-color: var(--color-text-base);
}
.button.white::before {
  background: linear-gradient(90deg, var(--color-black), var(--color-black)) no-repeat 100% 100%/0 100%;
}
.button.white:hover {
  color: #fff;
}
.button.transparent::before {
  background: linear-gradient(90deg, var(--color-black), var(--color-black)) no-repeat 100% 100%/0 100%;
}
.button.transparent:hover {
  color: #fff;
}
@media (min-width: 961px) {
  .button.large {
    width: 450px;
  }
  .button.large.mypage {
    gap: 20px;
  }
  .button.large.mypage i {
    width: 40px;
  }
}
@media (max-width: 960px) {
  .button.large.mypage {
    gap: 12px;
  }
  .button.large.mypage i {
    width: 36px;
  }
}
@media (min-width: 961px) {
  .button.medium {
    width: 340px;
  }
}
.button.mypage i {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--color-black);
}
.button.down::after {
  content: "\f063";
}
.button:hover::before {
  background-position: 0 100%;
  background-size: 100% 100%;
}
.button:hover img {
  opacity: 1;
}

/* フォーム要素のボタン */
.submit-button {
  display: grid;
  justify-items: start;
  gap: 20px;
  /* position: relative;
  display: inline-block;
  @include fa;
  &::after {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 2;
    content: '\f061';
    color: #fff;
  } */
}
@media (max-width: 960px) {
  .submit-button .button {
    width: 100%;
  }
}

@media (min-width: 961px) {
  .button-back-top {
    margin-bottom: 150px;
  }
}
@media (max-width: 960px) {
  .button-back-top {
    margin-bottom: 50px;
  }
}

/* チェックして表示されるコンテンツ */
.hide-content {
  border-top: 1px solid var(--color-gray);
  opacity: 0;
  display: none;
  overflow: hidden;
  transition: 0.5s;
}
.hide-content.isActive {
  opacity: 1;
  display: grid;
  height: inherit;
}
@media (min-width: 961px) {
  .hide-content {
    margin-top: 200px;
    padding-top: 60px;
  }
}
@media (max-width: 960px) {
  .hide-content {
    margin-top: 60px;
    padding-top: 60px;
  }
}

/* intersection */
.intersection.fadeUp {
  opacity: 0;
  transition: transform 1.5s, opacity 1s;
}
.intersection.bulr {
  filter: blur(8px);
  transform: translateY(5px);
  opacity: 0;
  transition: 1s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
.intersection.view.bulr {
  filter: blur(0);
  transform: none;
  opacity: 1;
}
.intersection.delay1 {
  transition-delay: 0.2s;
}
.intersection.delay2 {
  transition-delay: 0.4s;
}
.intersection.delay3 {
  transition-delay: 0.6s;
}

/* button */
.link-rightbutton {
  position: relative;
  background: linear-gradient(currentcolor, currentcolor) no-repeat 100% 100%/100% 1px;
  text-decoration: none;
}
.link-rightbutton::before, .link-rightbutton::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  text-rendering: auto;
  flex-shrink: 0;
}
.link-rightbutton:hover {
  animation: linkUnderline 0.35s cubic-bezier(0.18, 0.06, 0.23, 1) forwards;
}
.link-rightbutton::after {
  position: absolute;
  left: calc(100% + 1em);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  aspect-ratio: 1;
  content: "\f061";
  background-color: var(--color-text-base);
  border-radius: 50%;
  color: #fff;
  font-size: 55%;
}

.link-leftbutton {
  position: relative;
  background: linear-gradient(currentcolor, currentcolor) no-repeat 100% 100%/100% 1px;
  text-decoration: none;
  margin-left: 20px;
}
.link-leftbutton::before, .link-leftbutton::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  text-rendering: auto;
  flex-shrink: 0;
}
.link-leftbutton:hover {
  animation: linkUnderline 0.35s cubic-bezier(0.18, 0.06, 0.23, 1) forwards;
}
.link-leftbutton::after {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  aspect-ratio: 1;
  content: "\f060";
  background-color: var(--color-text-base);
  border-radius: 50%;
  color: #fff;
  font-size: 55%;
}

.link-downbutton {
  position: relative;
  background: linear-gradient(currentcolor, currentcolor) no-repeat 100% 100%/100% 1px;
  text-decoration: none;
}
.link-downbutton::before, .link-downbutton::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  text-rendering: auto;
  flex-shrink: 0;
}
.link-downbutton:hover {
  animation: linkUnderline 0.35s cubic-bezier(0.18, 0.06, 0.23, 1) forwards;
}
.link-downbutton::after {
  position: absolute;
  left: calc(100% + 1em);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  aspect-ratio: 1;
  content: "\f063";
  background-color: var(--color-text-base);
  border-radius: 50%;
  color: #fff;
  font-size: 55%;
}

/* 地域の色分け */
.areas {
  display: grid;
  align-items: center;
  font-size: 12rem;
  line-height: 1.45;
}
.areas > span::before {
  margin-right: 0.3em;
  content: "⚫︎";
}
.areas .tokyo::before {
  color: #C40018;
}
.areas .osaka::before {
  color: #242982;
}
.areas .sapporo::before {
  color: #385A7F;
}
.areas .sendai::before {
  color: #A5A73F;
}
.areas .nagoya::before {
  color: #D83357;
}
.areas .hiroshima::before {
  color: #53AF9A;
}
.areas .fukuoka::before {
  color: #7D5C89;
}

/* アコーディオン */
details {
  overflow: hidden;
  border-top: 1px solid var(--color-light-gray);
}
details summary {
  list-style-type: none;
  position: relative;
  cursor: pointer;
}
details summary::-webkit-details-marker {
  display: none;
}
details summary {
  padding-block: 30px;
  position: relative;
  background: url(../img/common/mrk-down.svg) no-repeat 100% 50%/16px;
}
details summary::after {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  content: "開く";
  text-decoration: underline;
}
details summary:hover {
  background-color: #F1F4F3;
}
details[open] summary {
  background-image: url(../img/common/mrk-up.svg);
}
details[open] summary::after {
  content: "閉じる";
}
details[open] summary:hover {
  background-color: #F1F4F3;
}

/* 日付・時間・場所 */
[class^=meta] {
  display: flex;
  align-items: center;
  gap: 1em;
}
[class^=meta] .date {
  background: url(../img/common/ico-date.svg) no-repeat 0 35%/14px;
  padding-left: 24px;
}
[class^=meta] .time {
  background: url(../img/common/ico-time.svg) no-repeat 0 35%/16px;
  padding-left: 24px;
}
[class^=meta] .place {
  background: url(../img/common/ico-place.svg) no-repeat 0 35%/16px;
  padding-left: 24px;
}
[class^=meta] .search {
  background: url(../img/common/ico-search.svg) no-repeat 0 35%/16px;
  padding-left: 24px;
}

/* モーダル */
.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.modal::-webkit-scrollbar {
  display: none;
}
.modal .modal-content {
  position: relative;
  background-color: #fff;
  margin: 5% auto;
  border: 1px solid #888;
  width: 960px;
  max-width: 90%;
}
@media (min-width: 961px) {
  .modal .modal-content {
    padding: 80px 40px;
  }
}
@media (max-width: 960px) {
  .modal .modal-content {
    padding: 60px 20px;
  }
}
.modal .close {
  position: absolute;
  top: 20px;
  right: 40px;
  width: 30px;
  aspect-ratio: 1;
  background: url(../img/home/mrk-close.svg) no-repeat center/100%;
  cursor: pointer;
}
@media (max-width: 960px) {
  .modal .close {
    right: 20px;
    width: 20px;
  }
}

/* 絞り込み検索 */
.search dl {
  border-top: 1px solid var(--color-light-gray);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-block: 30px 40px;
}
.search dt {
  width: 100%;
  margin-bottom: 10px;
  font-weight: 600;
}
.search label input[type=checkbox] {
  display: none;
}
.search label ::-moz-selection {
  background-color: transparent;
}
.search label ::selection {
  background-color: transparent;
}
.search label span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 38px;
  padding: 0 20px;
  border: 1px solid var(--color-light-gray);
  border-radius: 30px;
  font-size: 14rem;
  cursor: pointer;
  gap: 0.7em;
}
.search label span::before {
  content: "";
  width: 12px;
  aspect-ratio: 1;
  border: 1px solid var(--color-light-gray);
  border-radius: 50%;
  background-color: #fff;
}
.search label span::after {
  position: absolute;
  top: 50%;
  left: 22px;
  transform: translateY(-55%);
  content: url(../img/common/mrk-check-small.svg);
  opacity: 0;
}
.search label span:hover {
  outline: 1px solid var(--color-light-gray);
}
.search label input[type=checkbox]:checked + span {
  background-color: #000;
  color: #fff;
}
.search label input[type=checkbox]:checked + span::before {
  border-color: transparent;
}
.search label input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.search .form-input {
  width: 100%;
}
.search .buttons {
  display: grid;
  gap: 25px;
}
@media (min-width: 961px) {
  .search .buttons {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (min-width: 769px) {
  .search .buttons {
    grid-template-columns: repeat(2, 1fr);
  }
  .search .buttons > * {
    width: 340px;
  }
}
@media (max-width: 960px) {
  .search .buttons {
    gap: 20px;
  }
  .search .buttons > * {
    width: 100%;
  }
}
.search .buttons .filtering::after {
  content: "\f002";
}
.search .buttons .clear::after {
  content: "\f00d";
}

/* PFDアイコン */
.link-pdf {
  background: linear-gradient(currentcolor, currentcolor) no-repeat 100% 100%/100% 1px;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.link-pdf:hover {
  animation: linkUnderline 0.35s cubic-bezier(0.18, 0.06, 0.23, 1) forwards;
}
.link-pdf::after {
  position: absolute;
  top: 50%;
  transform: translateY(-36%);
  left: calc(100% + 10px);
  content: url(../img/common/ico-pdf.svg);
}

/* セミナー・来場のお申し込み（20250508追加） */
.venue-buttons {
  display: flex;
  gap: 10px;
}
@media (max-width: 960px) {
  .venue-buttons {
    flex-direction: column;
  }
}
.venue-buttons .button .areas {
  font-size: 20rem;
}/*# sourceMappingURL=base.css.map */