@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");

/* reset */
*,*::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;color-scheme:dark light;tab-size:2;scrollbar-gutter:stable}:where(html:has(dialog:modal[open])){overflow:clip}@media (prefers-reduced-motion:no-preference){:where(html:focus-within){scroll-behavior:smooth}}:where(body){line-height:1.5;font-family:system-ui,sans-serif;-webkit-font-smoothing:antialiased}:where(button){all:unset}: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(a){color:inherit;text-underline-offset:.2ex}:where(ul,ol){list-style:none}:where(img,svg,video,canvas,audio,iframe,embed,object){display:block}:where(img,picture,svg,video){max-inline-size:100%;block-size:auto}:where(p,h1,h2,h3,h4,h5,h6){overflow-wrap:break-word}:where(h1,h2,h3){line-height:calc(1em + 0.5rem);text-wrap:balance}:where(hr){border:none;border-block-start:1px solid;color:inherit;block-size:0;overflow:visible}:where(dialog){border:none;background:none;inset:unset;max-width:unset;max-height:unset}:where(dialog:not([open])){display:none!important}:where(:focus-visible){outline:none;/*outline:3px solid CanvasText;box-shadow:0 0 0 5px Canvas;outline-offset:1px*/}:where(:focus-visible,:target){scroll-margin-block:8vh}:where(.visually-hidden:not(:focus-within,:active)){clip-path:inset(50%)!important;height:1px!important;width:1px!important;overflow:hidden!important;position:absolute!important;white-space:nowrap!important;border:0!important}

html,body {
  font-size: 10px;
  height: 100%;
  min-height: 100vh;
}
body {
  font-size: 1.6rem;
  font-family: "Noto Sans JP","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

a {
  text-decoration: none;
}

.flex-container {
  display: flex;
}
.grid-container {
  display: grid;
}
input, textarea {
  outline: none;
}
input.width-full,
textarea.width-full {
  width: 100%;
}
.hide {
  display: none !important;
}
.nowrap {
  white-space: nowrap !important;
}
.no-scroll {
  overflow-y: hidden !important;
}
@media screen and (min-width:601px) {
  .sp-only {
    display: none;
  }
}
@media screen and (max-width:600px) {
  .pc-only {
    display: none;
  }
}

/* サイトの基本設定 */
:root {
  --color-primary: #4B65F0;
  --color-white: #ffffff;
  color-scheme: light;
}

/* サイト全体の共通項目 */
footer {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: .3em 20px;
}
footer a {
  display: inline-block;
}
footer .logo-footer {
  width: 100%;
  max-width: 120px;
  aspect-ratio: 29 / 15;
}
footer .logo-footer img {
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
}
footer .content-inner {
  padding: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 40px;
  row-gap: 20px;
  flex-wrap: wrap;
}
footer .footer-menu{
  align-items: center;
  column-gap: 40px;
  font-weight: 700;
  flex-wrap: wrap;
    row-gap: 20px;
}
footer .footer-menu ul,
footer .footer-menu-sub ul {
  width: 100%;
  display: flex;
  column-gap: 30px;
  row-gap: 1em;
  position: relative;
}
@media screen and (min-width: 451px) {
  footer .footer-menu ul,
  footer .footer-menu-sub ul {
    width: fit-content;
  }
}
@media screen and (max-width: 600px) {
  footer .content-inner {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 450px) {
  footer .content-inner,
  footer .footer-menu {
    display: block;
  }
  footer .footer-menu {
    display: block;
  }
  footer .footer-menu-sub {
    margin-top: 20px;
  }
  footer .footer-menu ul,
  footer .footer-menu-sub ul {
    display: block;
    text-align: center;
  }
  footer .footer-menu ul li,
  footer .footer-menu-sub ul li {
    padding: .5em 0;
  }
  footer .footer-menu-sub ul::before {
    content: '';
    margin-left: auto;
    margin-right: auto;
    top: 0;
    display: block;
    height: 2px;
    width: 50px;
    background-color: #fff;
    margin-bottom: 20px;
  }
}
.btn-area a.gototop {
  background: var(--color-white);/* ;#F4500B; */
  color: var(--color-primary);
  padding: .3em 2em;
  border-radius: 10em;
  border-style: solid;
  border-color: var(--color-primary);
  border-width: 2px;
  display: block;
  width: fit-content;
  margin: 0 auto;
  white-space: nowrap;
  height: fit-content;
}

#wrapper {
  height: 100%;
}
