*,
*:before,
*:after {
  /* box-sizing: border-box;チェックボックスが崩れる */
}

html {
  font-size: 18px;
}

body {
  color: #000;
  font-size: 1.2em;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}


/* ハンバーガーメニュー */
.logout_block {
      font-size: 12px;
    margin-top: 8px;
    width: 100%;
    text-align: center;
    margin-right: 5px;
    margin-top: 16px;
}


.logout_block a {
  color: #fff;
  text-decoration: none;
  /* font-weight: bold; */
  background-color: rgba(0, 0, 0, 0.3);
  /* padding: 8px 12px; */
  border-radius: 4px;
  transition: 0.3s;
  padding: 5px;

}

.logout_block a:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.menu_wrap .menu {
  /* position: absolute; */
  position: fixed;
  right: -100px;
  top: -100px;
  z-index: 100;
  width: 200px;
  height: 200px;
  background: #6dabdd;
  border-radius: 50% 50% 50% 50%;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  box-shadow: 0 0 0 0 #6dabdd, 0 0 0 0 #6dabdd;
  cursor: pointer;

}

.menu_wrap .hamburger {
  position: absolute;
  top: 135px;
  left: 50px;
  width: 30px;
  height: 2px;
  background: #fff;
  display: block;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.menu_wrap .hamburger:after,
.menu_wrap .hamburger:before {
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
}

.menu_wrap .hamburger:before {
  top: -10px;
}

.menu_wrap .hamburger:after {
  bottom: -10px;
}

.menu_wrap input {
  display: none;
}

.menu_wrap input:checked+.menu {
  box-shadow: 0 0 0 100vw #6dabdd, 0 0 0 100vh #6dabdd;
  border-radius: 0;

}

.menu_wrap input:checked+.menu .hamburger {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);

}

.menu_wrap input:checked+.menu .hamburger:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  bottom: 0;

}

.menu_wrap input:checked+.menu .hamburger:before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 0;

}

.menu_wrap input+.menu+ul {
  display: none;
}

.menu_wrap ul {
  display: none;
}

/* .menu_wrap input:checked+.menu+ul {
  opacity: 1;
  display: block;
} */
.menu_wrap input:checked~ul {
  opacity: 1;
  display: block;
}


.menu_wrap ul {
  z-index: 200;
  /* position: absolute; */
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: .25s 0s ease-in-out;
  transition: .25s 0s ease-in-out;
}

.menu_wrap a {
  margin-bottom: 1em;
  display: block;
  color: #fff;
  text-decoration: none;

}

.login-info_box {
  position: fixed;
  max-width: 100%;
  width: 208px;
  height: 164px;
  background-image: url(/assets/images/top/bg_board.webp);
  bottom: 26px;
  left: 22px;
  background-size: 100%;
  background-repeat: no-repeat;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}

.login-info {
  font-size: 14px;
  text-align: center;
  padding-top: 59px;
}

/* ハンバーガーメニュー　END */


/* ぱんくず */
.breadcrumb {
  padding: 37px 0 40px;
}

@media screen and (min-width: 1px) and (max-width: 768px) {
  .breadcrumb {
    display: none;
  }
}

.breadcrumb .l-inner {
  max-width: 100%;
  padding: 0 65px;
}

@media screen and (min-width: 1px) and (max-width: 768px) {
  .breadcrumb .l-inner {
    padding: 0 13px;
  }
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
}

.breadcrumb__item:not(:first-of-type)::before {
  display: inline-block;
  margin: 0.5em;
  content: "/";
}

/* Q&A */
.qanda {
  display: block;

}

.qanda span {
  font-size: 50px;
  font-weight: 700;
}

.qanda span:nth-child(1) {
  color: #6ca3db;
}

.qanda span:nth-child(2) {
  padding: 0 5px;
  font-size: 40px;
}

.qanda span:nth-child(3) {
  color: #ef7276;
}


.accordion {
  max-width: 100%;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 7px 15px -5px rgb(0 0 0 / 5%);
  background-color: #fff;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.3s ease-out;
}

.accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  color: #333333;
  font-weight: 600;
  cursor: pointer;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #333333b3;
  border-right: 3px solid #333333b3;
  content: '';
  transition: transform .3s;
}

.accordion[open] summary::after {
  transform: rotate(225deg);
}

.accordion p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3em 2em 1.5em;
  color: #333333;
  transition: transform .5s, opacity .5s;
}

.accordion:not([open]) {}


.accordion[open] {
  max-height: 500px;
  /* 内容によって適宜調整 */
  padding-bottom: 10px;
}

.accordion[open] p {
  transform: none;
  opacity: 1;
}

/* Q&A END*/


/* アイキャッチ 日付 */
.Eyecatch-imgInner {
  position: relative;
}

.Eyecatch-imgInner img {
  width: 100%;
}


.Eyecatch-imgInner .Eyecatch-sideInner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-area: side;
  gap: 20px;
  font-family: var(--font-en);
  font-size: 22px;
  text-transform: uppercase;
  font-weight: normal;
  position: absolute;
  left: -42px;
  top: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .Eyecatch-imgInner .Eyecatch-sideInner {
    gap: 13px;
    font-size: 13px;
    left: -31px;
}
  .Eyecatch-imgInner {
    margin-left: auto;
    text-align: right;
    width: 92%;
    margin-right: 0;
}
  .Eyecatch-imgInner .Eyecatch-sideInner {
  font-size: 13px;
}
}
.Eyecatch-sideInner>* {
  writing-mode: tb;
  scale: -1;
}

.Eyecatch-sideInner hr {
  display: block;
  width: 24px;
  height: 1px;
  border-color: #707070;
  translate: 1px 0;
}

.Eyecatch-sideInner>* {
  writing-mode: tb;
  scale: -1;
}

/* なんか良く使いそうなやつ */
:root {
  --font-futura: futura-pt, sans-serif;
  --font-en: var(--font-futura);
}

.centerImage {
  width: auto;
  max-width: 100%;
  display: block;
  margin: auto;
}

.text-14 {
  font-size: 14px;
}

.text-29 {
  font-size: 29px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-200 {
  margin-top: 200px;
}

.font-bold {
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.font-red {
  color: #e00b12;
}