@charset "utf-8";

*,
*::before,
*::after {
  box-sizing: border-box;
}
*:focus {
  outline: none;
}
@media (hover: hover) {
  a:focus-visible,
  button:focus-visible {
    outline: 2px solid;
    outline-offset: -2px;
  }
}
ul,
ol {
  list-style: none;
  padding: 0;
}
img,
svg,
video,
iframe {
  vertical-align: middle;
}
img[height],
video[height],
picture > img {
  height: auto;
}
input,
button,
textarea,
select,
small {
  font: inherit;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
img,
picture,
video,
iframe {
  display: inline-block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: inherit;
  text-decoration-skip-ink: auto;
}
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  padding: 0;
  background: none;
}
sub {
  vertical-align: baseline;
}

:root {
  --themecolor: #349aa6;
  --easeIn: cubic-bezier(0.3, 0, 0.7, 0);
  --easeOut: cubic-bezier(0.3, 1, 0.7, 1);
  --easeInOut: cubic-bezier(0.7, 0, 0.3, 1);
  --breakout: calc(50% - 50vw);
  --drawersize: 60px;
  --scrollBarWidth: 0;
  --montserrat: "Montserrat", sans-serif;
  --attentionShift: 0;
  --attentionHeight: 0;
  --vh: 100vh; /* fallback */
  --vh2: 100vh; /* fallback */
}
@supports (height: 100dvh) {
  :root {
    --vh: 100dvh;
    --vh2: 100dvh;
  }
}

.has-scrollbar {
  --breakout: calc(50% - 50vw + var(--scrollBarWidth) / 2);
}

/**
 * mediaquery について
 * default style (desktop/mobile 共通の style)
 * @media print, (min-width: 480px) {} mobile には適用したくない style
 * @media print, (min-width: 768px) {} desktop だけの style
 * @media print, (min-width: 1025px) {}
 * @media screen and (max-width: 1024px) {}
 * @media screen and (max-width: 767px) {} desktop には適用したくない style
 * @media screen and (max-width: 479px) {} mobile だけの style
 * @media screen and (max-width: 359px) {} small mobile style
 * MEMO:
 * -------------------------------------------------- */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  overscroll-behavior: auto;
  color: #333;
  font-size: 1em;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background: white;
}
body.is-scroll-lock {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
}
.has-scrollbar body {
  overflow-x: hidden;
  overflow-y: scroll;
}
.v-md {
  display: none;
}

@media screen and (max-width: 767px) {
  :where(html:not(.is-tablet)) .v-dt {
    display: none;
  }
  :where(html:not(.is-tablet)) .v-md {
    display: unset;
  }
}
@media screen and (max-width: 479px) {
  :where(html:not(.is-tablet)) body {
    font-size: 0.9375em;
  }
}

/**
 * Loading
 * ---------------------------------------- */
.l-loader {
  display: grid;
  align-content: center;
  z-index: 4;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: white;
}
.l-loader .logo {
  --ease: cubic-bezier(0.5, 0, 0.2, 1);
  display: grid;
  justify-items: center;
  line-height: 1.4;
  text-align: center;
  fill: currentcolor;
  opacity: 0;
}
.l-loader .logo b {
  margin-top: 0.3em;
  font-weight: 700;
}
.l-loader .logo span {
  margin-top: 0.3em;
  font-size: 0.75rem;
  font-family: var(--montserrat);
  font-weight: 600;
}
.l-loader .logo .part1,
.l-loader .logo .part2 {
  transform-origin: center center;
}
/* animation */
.l-loader.is-loading .logo {
  animation: fadein 0.4s both;
}
.l-loader.is-loading .logo .part1,
.l-loader.is-loading .logo .part2 {
  animation: rotate1 1.6s cubic-bezier(0.45, 0.55, 0.8, 1) both;
}
.l-loader.is-loading .logo .part2 {
  animation-name: rotate2;
}
.l-loader.is-loading .logo b,
.l-loader.is-loading .logo span {
  animation: dn 0.6s 1.8s var(--ease) both;
}
.l-loader.is-loading .logo .symbol {
  animation: up 0.6s 1.8s var(--ease) both;
}
.l-loader.is-loaded {
  opacity: 0;
  transition: opacity 0.6s 0.4s;
}
.l-loader.is-loaded .logo {
  transform: scale(0.92);
  transition: transform 0.6s 0.2s var(--easeOut);
  animation: fadeout 0.6s 0.2s both;
}
.l-loader.is-skip {
  animation: fadeout 0.4s both;
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes rotate1 {
  from {
    transform: rotate(-500deg);
  }
  to {
    transform: none;
  }
}
@keyframes rotate2 {
  from {
    transform: rotate(500deg);
  }
  to {
    transform: none;
  }
}
@keyframes up {
  from {
    transform: translateY(40px);
  }
  to {
    transform: none;
  }
}
@keyframes dn {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/**
 * 重要なお知らせ
 * ---------------------------------------- */
.l-attention {
  display: flex;
  align-items: center;
  column-gap: 1.2em;
  z-index: 2;
  position: relative;
  min-height: 60px;
  padding: 0.8em 25px;
  background: #eee;
}
.l-attention::after {
  content: "";
  dispaly: block;
  height: 1em;
  border-left: 1px solid #999;
}
.l-attention dt {
  font-size: 0.875rem;
  font-weight: 700;
}
.l-attention dd {
  order: 1;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  :where(html:not(.is-tablet)) .l-attention {
    flex-direction: column;
    align-items: unset;
    padding: 25px;
  }
  :where(html:not(.is-tablet)) .l-attention::after {
    display: none;
  }
  :where(html:not(.is-tablet)) .l-attention dt {
    font-size: 1rem;
    font-size: 0.875rem;
  }
  :where(html:not(.is-tablet)) .l-attention dd {
    margin-top: 0.2em;
    font-size: 0.875rem;
  }
}
.l-attention ~ .l-header .logo,
.l-attention ~ .l-header::before,
.l-attention ~ .l-header::after,
.l-attention ~ .l-header .drawer:not(.is-active),
.l-attention ~ .l-main .fixed_link {
  transform: translate3d(0, var(--attentionShift), 0);
}

/**
 * header
 * ---------------------------------------- */
.l-header {
  width: 100%;
}
.l-header::before {
  pointer-events: none;
  content: "";
  z-index: 1;
  position: fixed;
  top: -1em;
  right: 0;
  left: 0;
  height: 144px;
  background: linear-gradient(to top, #fff0, #fff2 22%, #fffe);
  transition: transform 0.3s var(--easeOut);
}
.l-header:not(.is-underlay)::before {
  opacity: 0;
  transform: translateY(-50%);
}
/* logo */
.l-header .logo {
  z-index: 1;
  position: fixed;
  top: 25px;
  left: 25px;
  width: 168px;
}
.l-header .logo img {
  width: 100%;
  height: auto;
  max-width: none;
}
.l-header .logo:focus-visible {
  outline-offset: 2px;
}

/* 入試情報 */
.fixed_link {
  display: flex;
  align-items: center;
  z-index: 1;
  position: fixed;
  top: 0;
  right: var(--drawersize);
  height: var(--drawersize);
  padding-right: 3em;
  padding-left: 3em;
  color: white;
  font-weight: 700;
  background: var(--themecolor);
}
.fixed_link .arr {
  width: 0.875em;
  margin: 0.05em 0 0 0.7em;
}
@media (hover: hover) {
  .fixed_link {
    background: white;
  }
  .fixed_link::before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--themecolor);
    transition: background 0.3s;
  }
  .fixed_link:hover::before {
    background: #349aa6cc;
  }
}
@media screen and (max-width: 767px) {
  .l-header .logo {
    width: 168px;
  }
  :where(html:not(.is-tablet)) .fixed_link {
    justify-content: center;
    position: fixed;
    top: auto;
    right: auto;
    bottom: 0;
    width: 100%;
    margin-right: calc(var(--sidegap) * -1);
    margin-left: calc(var(--sidegap) * -1);
    box-shadow: 0 -4px 4px rgb(0 0 0 / 20%);
  }
  :where(html:not(.is-tablet)) .l-attention ~ .l-main .fixed_link {
    transform: none;
  }
}
/* メニューボタン */
.l-header::after {
  content: "";
  z-index: 1;
  position: fixed;
  top: 0;
  right: 0;
  width: var(--drawersize);
  height: var(--drawersize);
  background: white;
}
.l-header .drawer {
  cursor: pointer;
  z-index: 3;
  position: fixed;
  top: 0;
  right: 0;
  width: var(--drawersize);
  height: var(--drawersize);
  color: var(--themecolor);
}
.l-header .drawer .bar {
  position: absolute;
  top: calc(50% - 2.5px);
  left: 25%;
  right: 25%;
  width: 50%;
  fill: none;
  stroke: currentcolor;
  transition: color 0.4s;
}
.l-header .drawer .bar.-b1 {
  transform: translateY(-8px);
}
.l-header .drawer .bar.-b3 {
  transform: translateY(8px);
}
.l-header .drawer.is-active:focus-visible {
  outline-color: white;
}

/* animation */
.l-header .drawer.is-active .bar {
  color: white;
}
.l-header .drawer.is-active .bar.-b1 {
  transform: rotate(45deg);
}
.l-header .drawer.is-active .bar.-b2 {
  transform: scaleX(0);
}
.l-header .drawer.is-active .bar.-b3 {
  transform: rotate(-45deg);
}
.l-header .drawer.is-anim {
  transition: transform 0.4s var(--easeOut);
}
.l-header .drawer.is-anim .bar {
  animation: drawerClose 0.4s var(--easeOut) both;
}
.l-header .drawer.is-anim .bar.-b1 {
  animation-name: drawer_bar1_r;
}
.l-header .drawer.is-anim .bar.-b2 {
  animation-name: drawer_bar2_r;
}
.l-header .drawer.is-anim .bar.-b3 {
  animation-name: drawer_bar3_r;
}
.l-header .drawer.is-anim.is-active .bar.-b1 {
  animation-name: drawer_bar1;
}
.l-header .drawer.is-anim.is-active .bar.-b2 {
  animation-name: drawer_bar2;
}
.l-header .drawer.is-anim.is-active .bar.-b3 {
  animation-name: drawer_bar3;
}
@keyframes drawer_bar1 {
  from {
    transform: translateY(-8px);
  }
  30% {
    transform: none;
  }
  to {
    transform: rotate(45deg);
  }
}
@keyframes drawer_bar2 {
  from {
    transform: none;
  }
  30%,
  to {
    transform: scaleX(0);
  }
}
@keyframes drawer_bar3 {
  from {
    transform: translateY(8px);
  }
  30% {
    transform: none;
  }
  to {
    transform: rotate(-45deg);
  }
}
@keyframes drawer_bar1_r {
  from {
    transform: rotate(45deg);
  }
  30% {
    transform: none;
  }
  to {
    transform: translateY(-8px);
  }
}
@keyframes drawer_bar2_r {
  to,
  30% {
    transform: none;
  }
  from {
    transform: scaleX(0);
  }
}
@keyframes drawer_bar3_r {
  from {
    transform: rotate(-45deg);
  }
  30% {
    transform: none;
  }
  to {
    transform: translateY(8px);
  }
}
.l-header::after {
  border-bottom: 1px solid #349aa6;
}
@media screen and (max-width: 767px) {
  .l-header::after {
    border-left: 1px solid #349aa6;
  }
}

/**
 * menu
 * ---------------------------------------- */
.l-menu {
  overflow: hidden auto;
  overscroll-behavior: none;
  z-index: 2;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* overlay */
.l-menu .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff8;
}
html.is-mobile .l-menu .overlay,
html.is-tablet .l-menu .overlay {
  height: calc(var(--vh2) + 0.5px);
}
/* パネル */
.menu_panel {
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 33px 26px;
  max-width: 380px;
  color: white;
  line-height: 1.2;
  font-weight: 700;
  background: var(--themecolor);
}
.l-menu,
.menu_panel {
  scrollbar-width: none;
  scrollbar-color: transparent;
}
.l-menu::-webkit-scrollbar,
.menu_panel::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.l-menu::-webkit-scrollbar-thumb,
.menu_panel::-webkit-scrollbar-thumb {
  background: transparent;
}
.l-menu::-webkit-scrollbar-track,
.menu_panel::-webkit-scrollbar-track {
  background: transparent;
}
.is-lock .l-menu .overlay {
  height: calc(100% + 0.5px);
}
.is-lock .menu_panel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: calc(100% + 0.5px);
}
html.is-mobile .menu_panel::after,
html.is-tablet .menu_panel::after {
  height: calc(var(--vh2) + 0.5px);
}
.menu_panel .logo a {
  fill: currentcolor;
}
.menu_list {
  display: flex;
  flex-direction: column;
}
.menu_list .label {
  padding: 0;
  font-size: 1.125rem;
  text-transform: uppercase;
}
.menu_list a {
  display: block;
  width: 100%;
  padding: 0.6em;
  padding-left: calc(20px + 0.7em);
  transition: color 0.5s;
}
/* .menu_list a:focus-visible {
	outline: none;
} */
.menu_list .ico {
  width: 1em;
  margin: -0.1em 0.5em 0 0;
}
@media (hover: hover) {
  .menu_list:hover a,
  .menu_list:hover .label a,
  .menu_list:focus-within a {
    color: #155158;
  }
  .menu_list .menu_group a:hover,
  .menu_list .menu_group:hover .label a {
    color: white;
  }
  .menu_list .menu_group:focus-within .label a,
  .menu_list .menu_group .item a:focus-visible {
    color: white;
  }
}
.menu_group .label._montserrat {
  font-family: var(--montserrat);
}
.menu_group:first-child {
  padding-bottom: 5px;
}
.menu_group .label a {
  margin-left: 0;
  padding-left: 5px;
}

/* isMobile */
@media screen and (max-width: 767px) {
  .menu_list {
    margin-top: 20px;
  }
  .menu_group {
    padding-top: 0;
  }
  .menu_panel {
    padding: 40px 20px;
  }
  .l-menu .overlay {
    background: var(--themecolor);
  }
  .menu_panel {
    overscroll-behavior: none;
    max-width: 100%;
    background: none;
  }
  .menu_panel > * {
    max-width: 335px;
    margin-right: auto;
    margin-left: auto;
  }
  .menu_panel .logo svg,
  .menu_panel .logo img {
    width: 168px;
    height: auto;
  }
}
/* デジタルパンフレット */
.menu_link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  margin-top: 2em;
  border: 1px solid currentcolor;
  border-radius: 10px;
}
.menu_link .arr {
  width: 0.875em;
  margin: 0.1em 0 0 0.5em;
}

@media (hover: hover) {
  .menu_link {
    transition: background 0.3s;
  }
  .menu_link:hover,
  .menu_link:focus-visible {
    background: #fff3;
  }
}
@media print, (min-width: 768px) {
  .menu_panel .logo {
    display: none;
  }
}
/* comingsoon */
.menu_link:not([href]) {
  pointer-events: none;
  display: grid;
  align-content: center;
  row-gap: 0.4em;
  color: #1a6169;
  background: var(--themecolor);
}
.menu_link:not([href])::after {
  content: "Coming Soon";
  font-size: 0.875rem;
  font-family: var(--montserrat);
  font-weight: 400;
  text-transform: uppercase;
}
.menu_link:not([href]) .arr {
  grid-column: 2;
}

/* animation */
.l-menu:not(.is-active) {
  pointer-events: none;
  opacity: 0;
}
.l-menu .overlay:not(.is-active) {
  opacity: 0;
}
:where(html:not(.is-mobile)) .l-menu .overlay.is-anim,
:where(html:not(.is-mobile)) .l-menu .overlay.is-active {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.l-menu .menu_panel:not(.is-active) {
  opacity: 0;
  transform: translateX(50%);
}
.l-menu .overlay.is-anim {
  transition: opacity 0.4s;
}
.l-menu .menu_panel.is-anim {
  transition:
    opacity 0.2s,
    transform 0.2s var(--easeOut);
}
.l-menu .overlay.is-anim.is-active,
.l-menu .menu_panel.is-anim.is-active {
  transition-duration: 0.4s;
}
/* isMobile */
@media screen and (max-width: 767px) {
  .l-menu .overlay:not(.is-active) {
    transform: scale(0.92);
  }
  .l-menu .menu_panel:not(.is-active) {
    transform: scale(0.96);
  }
  .l-menu .overlay.is-anim,
  .l-menu .menu_panel.is-anim {
    transition:
      opacity 0.2s,
      transform 0.2s var(--easeOut);
  }
  .l-menu .overlay.is-anim:not(.is-active),
  .l-menu .menu_panel.is-anim.is-active {
    transition-delay: 0.2s;
  }
  .l-menu .overlay.is-anim:not(.is-active) {
    transition-timing-function: ease, var(--easeIn);
  }
}

/**
 * main
 * ---------------------------------------- */
.l-main {
  --sidegap: min(115vw / 12.8, 115px);
  min-height: calc(100vh - 356px);
  padding-right: var(--sidegap);
  padding-left: var(--sidegap);
}
@media screen and (max-width: 767px) {
  :where(html:not(.is-tablet)) .l-main {
    --sidegap: max(50vw / 7.68, 25px);
  }
}

/**
 * footer
 * ---------------------------------------- */
.l-footer {
  --sidegap: clamp(25px, 40vw / 7.68, 40px);
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding: 50px var(--sidegap) 0;
  border-image: linear-gradient(white, white) 0 fill / 0 / 0 calc(50vw - 640px);
}
@media screen and (max-width: 767px) {
  :where(html:not(.is-tablet)) .l-footer {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

/* :::::: links :::::: */
.footer_links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.footer_links .link {
  position: relative;
  z-index: 0;
  display: grid;
  align-content: center;
  border: 2px solid var(--themecolor);
  border-radius: 15px;
  line-height: 1.6;
  white-space: nowrap;
  backface-visibility: hidden;
}
.footer_links .link:focus-visible {
  outline: none;
}
.footer_links .link .ico {
  width: 1em;
  justify-self: end;
  align-self: center;
}
.footer_links .link .arr {
  width: 0.9em;
  margin: -0.18em 0 0 0.4em;
}
.footer_links .link .main,
.footer_links .link .sub {
  margin-left: 1%;
}
.footer_links .link .main {
  grid-column: 2;
  font-weight: 700;
}
.footer_links .link .sub {
  grid-area: 2 / 2 / 3 / 3;
  font-size: 0.75rem;
  font-family: var(--montserrat);
  font-weight: 400;
  text-transform: uppercase;
}
.footer_links .link .deco {
  z-index: 1;
  position: absolute;
  right: -15%;
  width: 55%;
  height: auto;
  opacity: 0.3;
  fill: #176771;
  align-self: center;
}
.footer_links .link:where(.is-hov) .deco {
  fill: var(--themecolor);
}

/* 大きいリンク（PC 3カラムでは1セル、SP/タブレットでは2カラム幅） */
.footer_links .link.-l {
  grid-template-columns: 3.5em 1fr;
  align-content: center;
  grid-template-rows: repeat(2, auto);
  row-gap: 0.5em;
  overflow: hidden;
  height: 150px;
  color: white;
  background: var(--themecolor);
}
.footer_links .link.-l .main {
  grid-row: 1;
  grid-column: 2;
  font-size: 1.25rem;
}
.footer_links .link.-l .ico {
  grid-area: 1 / 1 / 3 / 2;
  width: 2em;
}
.footer_links .link.-l .arr {
  margin-left: 0.5em;
}
.footer_links .link.-l .hov::after {
  background: white;
}
.footer_links .link.-l:where(.is-hov) {
  color: var(--themecolor);
}
@media (hover: hover) {
  .footer_links .link.-l:focus-visible {
    color: var(--themecolor);
    background: white;
    transition-delay: 0s;
  }
  .footer_links .link.-l:focus-visible .ico {
    fill: var(--themecolor);
    transition-delay: 0s;
  }
}
/* comingsoon */
.footer_links .link.-l:not([href]) {
  pointer-events: none;
  display: grid;
  align-content: center;
  row-gap: 0.4em;
  color: #1a6169;
  background: var(--themecolor);
}
.footer_links .link.-l:not([href])::after {
  grid-area: 2 / 2 / 3 / 3;
  content: "Coming Soon";
  margin-left: 5%;
  font-size: 0.875rem;
  font-family: var(--montserrat);
  font-weight: 400;
  text-transform: uppercase;
}
.footer_links .link:not([href]) .sub {
  display: none;
}

/* 小さいリンク */
.footer_links .link.-s {
  grid-template-columns: 2.8em 1fr;
  height: 80px;
  background: white;
}
.footer_links .link.-s .ico {
  grid-column: 1;
  width: 1.25em;
  fill: var(--themecolor);
}
.footer_links .link.-s .hov::after {
  background: var(--themecolor);
}
.footer_links .link.-s:where(.is-hov) {
  color: white;
}
.footer_links .link.-s:where(.is-hov) .ico {
  fill: white;
}
@media (hover: hover) {
  .footer_links .link.-s:focus-visible {
    color: white;
    background: var(--themecolor);
    transition-delay: 0s;
  }
  .footer_links .link.-s:focus-visible .ico {
    fill: white;
    transition-delay: 0s;
  }
}

@media screen and (max-width: 1024px) {
  :where(html:not(.is-tablet)) .footer_links {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  :where(html:not(.is-tablet)) .footer_links .link.-l {
    grid-column: span 2;
  }
}
@media screen and (max-width: 767px) {
  :where(html:not(.is-tablet)) .footer_links .link.-l {
    grid-template-columns: min(14%, 80px) 1fr;
    height: 160px;
  }
  :where(html:not(.is-tablet)) .footer_links .link.-s {
    grid-template-columns: min(12%, 70px) 1fr;
    height: 80px;
  }
}
@media screen and (max-width: 479px) {
  :where(html:not(.is-tablet)) .footer_links {
    grid-template-columns: unset;
  }
  .footer_links .link .main,
  .footer_links .link .sub {
    margin-left: 3%;
  }
  /* :where(html:not(.is-tablet)) .footer_links .link .main {
    margin-left: 5%;
  } */
  :where(html:not(.is-tablet)) .footer_links .link.-l {
    grid-column: 1;
  }
  :where(html:not(.is-tablet)) .footer_links .link.-l .main {
    font-size: 1.125rem;
  }
}

/* :::::: contentsinfo :::::: */
.contentsinfo {
  display: grid;
  grid-template-columns: 1fr 200px 1fr;
  align-items: center;
  column-gap: 40px;
  min-height: 120px;
  margin-top: 50px;
  border-top: 1px solid #ccc;
}
.contentsinfo .list {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 700;
}
.contentsinfo .list a {
  display: block;
  padding: 0.3em 1em;
}
.contentsinfo .ochanomizu {
  justify-self: center;
}
.contentsinfo .ochanomizu a {
  display: block;
}
.contentsinfo .ochanomizu a:focus-visible {
  outline-offset: 2px;
}
.contentsinfo .ochanomizu img {
  width: 200px;
}
.contentsinfo .copyright {
  text-align: end;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.2;
  white-space: nowrap;
}
@media print, (min-width: 768px) {
  .contentsinfo .list {
    margin-left: -1em;
  }
}
@media screen and (max-width: 767px) {
  :where(html:not(.is-tablet)) .contentsinfo {
    grid-template-columns: auto;
    column-gap: 0;
    margin-top: 40px;
    padding-bottom: 40px;
  }
  :where(html:not(.is-tablet)) .contentsinfo .list {
    display: block;
    padding-top: 20px;
    padding-bottom: 18px;
  }
  :where(html:not(.is-tablet)) .contentsinfo .list a {
    width: fit-content;
    padding: 0.7em 0;
  }
  :where(html:not(.is-tablet)) .contentsinfo .ochanomizu {
    justify-self: auto;
    padding-top: 46px;
    border-top: 1px solid #ccc;
  }
  :where(html:not(.is-tablet)) .contentsinfo .copyright {
    text-align: inherit;
    margin-top: 1.4em;
  }
}

/**
 * utility / javascript
 * -------------------------------------------------- */
.u-visuallyhidden {
  position: absolute;
  top: 0;
  left: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
  width: 1px;
  height: 1px;
}
.u-visible-pc {
  display: block;
}
.u-visible-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  :where(html:not(.is-tablet)) .u-visible-pc {
    display: none;
  }
  :where(html:not(.is-tablet)) .u-visible-sp {
    display: block;
  }
}
