<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&amp;display=block");
.header {
  width: 100%;
  height: 54px;
  padding: 8px 10px 8px;
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 100;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .header {
    height: 88px;
    padding: 10px 30px;
  }
}
@media (min-width: 1200px) {
  .header {
    height: 110px;
    padding: 20px 30px;
  }
}
.header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header__logo {
  display: flex;
  align-items: center;
  height: 38px;
  z-index: 1000;
}
@media (min-width: 768px) {
  .header__logo {
    height: 60px;
  }
}
@media (min-width: 1200px) {
  .header__logo {
    height: 70px;
  }
}
.header__logo a {
  display: block;
}
.header__logo .oobayashi {
  height: 38px;
  padding-right: 10px;
  border-right: 1px solid #8b8f93;
}
@media (min-width: 768px) {
  .header__logo .oobayashi {
    height: 60px;
    padding-right: 15px;
  }
}
@media (min-width: 1200px) {
  .header__logo .oobayashi {
    height: 70px;
    padding-right: 25px;
  }
}
.header__logo .oobayashi img {
  height: 100%;
}
.header__logo .divercity {
  width: 200px;
  padding-left: 10px;
}
@media (min-width: 768px) {
  .header__logo .divercity {
    width: 260px;
    padding-left: 15px;
  }
}
@media (min-width: 1200px) {
  .header__logo .divercity {
    width: 290px;
    padding-left: 25px;
  }
}
.header__logo .divercity img {
  width: 100%;
  height: auto;
}
.header__toggle {
  width: 22px;
  height: 22px;
  display: block;
  border: none;
  background: transparent;
  position: relative;
  z-index: 100;
}
.header__toggle:hover {
  cursor: pointer;
}
@media (min-width: 768px) {
  .header__toggle {
    width: 30px;
    height: 30px;
  }
}
@media (min-width: 1200px) {
  .header__toggle {
    display: none;
  }
}
.header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #8b8f93;
  position: absolute;
  transition: 0.3s all;
}
.header__toggle span:nth-of-type(1) {
  top: 0;
}
.header__toggle span:nth-of-type(2) {
  top: 50%;
}
.header__toggle span:nth-of-type(3) {
  bottom: 0;
}
.header__toggle span.active:nth-of-type(1) {
  top: 10px;
  transform: rotate(45deg);
}
@media (min-width: 768px) {
  .header__toggle span.active:nth-of-type(1) {
    top: 13px;
  }
}
.header__toggle span.active:nth-of-type(2) {
  opacity: 0;
}
.header__toggle span.active:nth-of-type(3) {
  bottom: 10px;
  transform: rotate(-45deg);
}
@media (min-width: 768px) {
  .header__toggle span.active:nth-of-type(3) {
    bottom: 14px;
  }
}
.header .header__nav {
  width: 90%;
  height: 100vh;
  max-width: 400px;
  margin-top: 54px;
  position: absolute;
  z-index: 10;
  visibility: hidden;
  top: -8px;
  right: -10px;
  background: #fff;
  transform: translateX(100%);
  transition: 0.3s;
  transition-property: transform;
}
@media (min-width: 768px) {
  .header .header__nav {
    margin-top: 88px;
    top: -10px;
    right: -30px;
  }
}
@media (min-width: 1200px) {
  .header .header__nav {
    display: block;
    max-width: none;
    width: auto !important;
    height: auto;
    margin-top: 0;
    padding-top: 0;
    top: auto;
    right: 0;
    transform: translateX(0);
    visibility: visible;
  }
}
@media (max-width: 1199px) {
  .header .header__nav.show {
    transform: translateX(0);
    visibility: visible;
  }
}
.header .header__nav .other_langage {
  display: none;
}
@media (min-width: 1200px) {
  .header .header__nav .other_langage {
    display: flex;
    justify-content: flex-end;
  }
}
.header .header__nav .other_langage-sp {
  display: block;
}
@media (min-width: 1200px) {
  .header .header__nav .other_langage-sp {
    display: none;
  }
}
@media (min-width: 1200px) {
  .header .header__nav .other_langage__link {
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
    color: #666;
    padding: 0 0 10px;
  }
}
.header .header__nav-list {
  list-style-type: none;
  border-top: 1px solid #eee;
}
@media (min-width: 1200px) {
  .header .header__nav-list {
    display: flex;
    align-items: center;
    border-top: none;
  }
}
.header .header__nav-list li {
  border-bottom: 1px solid #eee;
}
@media (min-width: 1200px) {
  .header .header__nav-list li {
    margin-right: 32px;
    border-bottom: 0;
  }
}
.header .header__nav-list li.end {
  margin-right: 0;
}
.header .header__nav-list li:last-of-type {
  border-bottom: 0;
}
.header .header__nav-list li a {
  display: block;
  padding: 15px;
  color: #666;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
}
@media (min-width: 1200px) {
  .header .header__nav-list li a {
    padding: 0;
  }
}

/*ヘッダーここまで*/
.footer {
  width: 100%;
  height: 170px;
  padding: 8px 10px;
  background: #fff;
  box-sizing: border-box;
}
@media (min-width: 576px) {
  .footer {
    padding: 8px 60px 8px 10px;
    height: 72px;
  }
}
@media (min-width: 768px) {
  .footer {
    padding: 10px 80px 10px 30px;
    height: 92px;
  }
}
@media (min-width: 1200px) {
  .footer {
    padding: 18px 80px 18px 36px;
    height: 110px;
  }
}
@media (min-width: 576px) {
  .footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.footer__inner .logo {
  text-align: center;
}
@media (min-width: 576px) {
  .footer__inner .logo {
    text-align: left;
  }
}
.footer__inner .logo a {
  display: block;
  width: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .footer__inner .logo a {
    margin: 0;
    width: 40px;
  }
}
@media (min-width: 768px) {
  .footer__inner .logo a {
    width: 50px;
  }
}
.footer__inner .logo a img {
  width: 100%;
  height: auto;
}
.footer__nav-list {
  margin-top: 8px;
  list-style-type: none;
}
@media (min-width: 576px) {
  .footer__nav-list {
    margin-top: 0;
    display: flex;
  }
}
.footer__nav-list li {
  margin-bottom: 10px;
  padding-right: 0;
  text-align: center;
}
@media (min-width: 576px) {
  .footer__nav-list li {
    margin-bottom: 0;
    margin-right: 28px;
    text-align: left;
  }
}
@media (min-width: 768px) {
  .footer__nav-list li {
    margin-right: 40px;
  }
}
@media (min-width: 992px) {
  .footer__nav-list li {
    margin-right: 65px;
  }
}
.footer__nav-list li:last-of-type {
  margin-top: 0;
  margin-right: 0;
}
.footer__nav-list li a {
  display: block;
  margin-top: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 12px;
  color: #969696;
  line-height: 1;
}
.footer__nav-list li a:first-of-type {
  margin-top: 0;
}
@media (min-width: 576px) {
  .footer__nav-list li a {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .footer__nav-list li a {
    font-size: 13px;
  }
}
@media (min-width: 992px) {
  .footer__nav-list li a {
    font-size: 15px;
  }
}
.footer__nav .copy {
  margin-top: 12px;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  color: #969696;
  text-align: center;
}
@media (min-width: 576px) {
  .footer__nav .copy {
    text-align: right;
  }
}
@media (min-width: 768px) {
  .footer__nav .copy {
    margin-top: 16px;
  }
}
@media (min-width: 992px) {
  .footer__nav .copy {
    margin-top: 20px;
    font-size: 15px;
  }
}

/*フッターここまで*/
/*トップに戻るボタン*/
.btn-top {
  width: 52px;
  height: 52px;
  background: #929292;
  position: fixed;
  bottom: 118px;
  right: 0;
  z-index: 10;
  opacity: 0;
  transition: 0.3s all;
}
@media (min-width: 576px) {
  .btn-top {
    bottom: 10px;
  }
}
@media (min-width: 768px) {
  .btn-top {
    bottom: 40px;
  }
}
@media (min-width: 1200px) {
  .btn-top {
    bottom: 58px;
  }
}
.btn-top.show {
  opacity: 1;
}
.btn-top button {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}
.btn-top p {
  width: 20px;
  height: 20px;
  margin: 14px auto 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}

/*トップに戻るボタンここまで*/
/*キービジュアル*/
.key-v {
  width: 100%;
  position: relative;
  margin-top: 54px;
}
@media (min-width: 576px) {
  .key-v {
    margin-top: 0;
  }
}
.key-v img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.key-v .catch {
  width: 100%;
  color: #fff;
  font-size: 4vw;
  font-size: clamp(20px, 4vw, 52px);
  font-weight: bold;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 576px) {
  .key-v .catch {
    margin-top: 27px;
  }
}
@media (min-width: 768px) {
  .key-v .catch {
    margin-top: 44px;
  }
}
@media (min-width: 1200px) {
  .key-v .catch {
    margin-top: 55px;
  }
}

.title {
  text-align: center;
}
.title h2 {
  color: #e9a53c;
  font-size: 4vw;
  font-size: clamp(18px, 4vw, 45px);
}
.title.taisei h2 {
  color: #dc712d;
  font-size: clamp(18px, 3vw, 32px);
}
.title.suisin h2 {
  color: #009e41;
  font-size: clamp(18px, 4vw, 40px);
}
.title.data h2 {
  color: #18108a;
}
.title.data h2 .small {
  font-size: clamp(14px, 2vw, 23px);
}

/*ページ下部メニュー*/
.menu {
  display: flex;
  flex-direction: column;
  margin-top: 60px;
  padding: 0 !important;
}
@media (min-width: 576px) {
  .menu {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .menu {
    margin-top: 85px;
  }
}
.menu.taisei {
  margin-top: 95px;
}
@media (min-width: 576px) {
  .menu.taisei {
    margin-top: 125px;
  }
}
@media (min-width: 992px) {
  .menu.taisei {
    margin-top: 185px;
  }
}
.menu.fortop {
  margin-top: 0;
}

.menu__item {
  width: 100%;
  padding-top: 68.5714%;
  position: relative;
  text-decoration: none;
  transition: 0.3s all;
}
@media (min-width: 576px) {
  .menu__item {
    width: 33.3333%;
    padding-top: 22.8569%;
  }
}
.menu__item:hover {
  opacity: 0.7;
}
.menu__item::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  z-index: 0;
  top: 0;
}
.menu__item.menu1::before {
  background-image: url("../img/home/menu/bg01.png");
}
.menu__item.menu2::before {
  background-image: url("../img/home/menu/bg02.png");
}
.menu__item.menu3::before {
  background-image: url("../img/home/menu/bg03.png");
}
.menu__item.menu4::before {
  background-image: url("../img/home/menu/bg04.png");
}
.menu__item.menu5::before {
  background-image: url("../img/home/menu/bg05.png");
}
.menu__item p {
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 576px) {
  .menu__item p {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .menu__item p {
    font-size: 24px;
    font-size: clamp(20px, 1.56vw, 32px);
    font-weight: normal;
  }
}

/*SNS*/
.sns {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .sns {
    padding: 80px 0;
  }
}
.sns__inner &gt; p {
  text-align: center;
  font-size: 14px;
}
@media (min-width: 768px) {
  .sns__inner &gt; p {
    font-size: 16px;
  }
}
.sns__inner .twitter {
  display: flex;
  justify-content: center;
}
.sns__inner .twitter a {
  display: flex;
  align-items: center;
  margin-top: 14px;
  font-size: 12px;
  color: #8b8f93;
  text-decoration: none;
  text-align: center;
}
@media (min-width: 768px) {
  .sns__inner .twitter a {
    margin-top: 20px;
    font-size: 14px;
  }
}
.sns__inner .twitter a::before {
  content: "";
  display: block;
  width: 23px;
  height: 19px;
  background-image: url("../img/home/logo-black.png");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 8px;
}

.pc-only {
  display: block;
}
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: block;
}
@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.news {
  margin-top: 60px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .news {
    margin-top: 80px;
    padding: 0;
  }
}
.news__inner {
  width: 100%;
  max-width: 740px;
  max-width: 770px;
  margin: 0 auto;
}
.news__inner .intro {
  margin-bottom: 30px;
  color: #000;
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}
@media (min-width: 768px) {
  .news__inner .intro {
    margin-bottom: 60px;
    font-size: 16px;
  }
}
.news__inner .title {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .news__inner .title {
    margin-bottom: 20px;
  }
}
.news__list {
  border-top: 1px solid #8b8f93;
}
.news__list li {
  list-style: none;
}
.news__list li a, .news__list li p {
  padding: 12px 0;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  color: #505050;
  text-decoration: none;
  border-bottom: 1px solid #8b8f93;
}
@media (min-width: 768px) {
  .news__list li a, .news__list li p {
    padding: 20px 0;
    font-size: 16px;
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .news__list li a .date, .news__list li p .date {
    margin-right: 30px;
  }
}
.news__btn {
  margin-top: 35px;
}
@media (min-width: 768px) {
  .news__btn {
    margin-top: -55px;
    margin-bottom: 30px;
  }
}
.news__btn a {
  display: block;
  width: 140px;
  height: 44px;
  margin: 0 0 0 auto;
  line-height: 44px;
  text-align: center;
  font-size: 14px;
  color: #505050;
  text-decoration: none;
  border: 1px solid #505050;
  position: relative;
}
.news__btn a::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 1px solid #505050;
  border-right: 1px solid #505050;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
}

.menu-home {
  display: flex;
  flex-direction: column;
  margin-top: 60px;
}
@media (min-width: 576px) {
  .menu-home {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .menu-home {
    margin-top: 85px;
  }
}
.menu-home__item {
  width: 100%;
  padding-top: 68.5714%;
  position: relative;
  text-decoration: none;
  transition: 0.3s all;
}
@media (min-width: 576px) {
  .menu-home__item {
    width: 50%;
    padding-top: 34.28%;
  }
}
.menu-home__item:hover {
  opacity: 0.7;
}
.menu-home__item::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  z-index: 0;
  top: 0;
}
.menu-home__item.menu1::before {
  background-image: url("../img/home/menu/bg01.png");
}
.menu-home__item.menu2::before {
  background-image: url("../img/home/menu/bg02.png");
}
.menu-home__item.menu3::before {
  background-image: url("../img/home/menu/bg03.png");
}
.menu-home__item.menu4::before {
  background-image: url("../img/home/menu/bg04.png");
}
.menu-home__item.menu5::before {
  background-image: url("../img/home/menu/bg05.png");
}
.menu-home__item p {
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .menu-home__item p {
    font-size: 28px;
    font-weight: normal;
    font-size: clamp(24px, 2.29vw, 44px);
  }
}

.taisei {
  width: 100%;
  margin-top: 40px;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (min-width: 576px) {
  .taisei {
    margin-top: 60px;
    padding: 0 30px;
  }
}
@media (min-width: 992px) {
  .taisei {
    margin-top: 80px;
  }
}
.taisei__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.taisei__inner .intro {
  color: #000;
  font-size: 14px;
  line-height: 1.8;
}
@media (min-width: 576px) {
  .taisei__inner .intro {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .taisei__inner .intro {
    font-size: 20px;
    line-height: 1.9;
  }
}
.taisei__inner .image {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  margin: 20px auto 0;
}
@media (min-width: 768px) {
  .taisei__inner .image {
    margin: 30px auto 0;
  }
}
.taisei__inner .image img {
  width: 100%;
  height: auto;
}

.torikumi {
  width: 100%;
  margin-top: 40px;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (min-width: 576px) {
  .torikumi {
    margin-top: 60px;
    padding: 0 30px;
  }
}
@media (min-width: 992px) {
  .torikumi {
    margin-top: 80px;
  }
}

.torikumi-half {
  width: 100%;
  margin-top: 20px;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (min-width: 576px) {
  .torikumi-half {
    margin-top: 30px;
    padding: 0 30px;
  }
}
@media (min-width: 992px) {
  .torikumi-half {
    margin-top: 40px;
  }
}

.torikumi__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.torikumi__list {
  padding-top: 15px;
}
@media (min-width: 768px) {
  .torikumi__list {
    padding-top: 30px;
  }
}
.torikumi__list:first-of-type {
  padding-top: 0;
}
.torikumi__list .summary {
  height: 45px;
  padding: 0 20px;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: #fff;
  background: #cb3267;
  box-sizing: border-box;
}
.torikumi__list .summary:hover {
  cursor: pointer;
}
.torikumi__list .summary.number1 {
  margin-bottom: 0 !important;
}
.torikumi__list .summary.number8 {
  pointer-events: none !important;
}
.torikumi__list .summary.number7 {
  pointer-events: none !important;
  margin-bottom: 0 !important;
}
@media (min-width: 768px) {
  .torikumi__list .summary {
    height: 60px;
    padding: 0 26px 0 14px;
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .summary {
    font-weight: normal;
    height: 70px;
    padding: 0 38px 0 25px;
    font-size: 30px;
  }
}
@media (min-width: 1200px) {
  .torikumi__list .summary {
    height: 90px;
    font-size: 40px;
  }
}
.torikumi__list .summary &gt; p {
  display: flex;
  align-items: center;
}
.torikumi__list .summary &gt; p .number {
  margin-right: 20px;
}
@media (min-width: 768px) {
  .torikumi__list .summary &gt; p .number {
    margin-right: 30px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .summary &gt; p .number {
    margin-right: 38px;
  }
}
@media (min-width: 1200px) {
  .torikumi__list .summary &gt; p .number {
    margin-right: 45px;
  }
}
@media (max-width: 767px) {
  .torikumi__list .summary &gt; p .long span {
    display: block;
  }
}
.torikumi__list .summary &gt; p .small {
  font-size: 12px;
}
@media (max-width: 767px) {
  .torikumi__list .summary &gt; p .small.number7 {
    margin-top: -3px;
  }
}
@media (min-width: 768px) {
  .torikumi__list .summary &gt; p .small {
    font-size: 18px;
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .torikumi__list .summary &gt; p .small {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .torikumi__list .summary &gt; p .small {
    font-size: 32px;
  }
}
.torikumi__list .summary .icon {
  width: 20px;
  height: 20px;
  position: relative;
}
@media (min-width: 768px) {
  .torikumi__list .summary .icon {
    width: 30px;
    height: 30px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .summary .icon {
    width: 38px;
    height: 38px;
  }
}
@media (min-width: 1200px) {
  .torikumi__list .summary .icon {
    width: 45px;
    height: 45px;
  }
}
.torikumi__list .summary .icon span {
  width: 20px;
  height: 4px;
  display: block;
  background-color: #fff;
  position: absolute;
  transition: 0.3s all;
}
@media (min-width: 768px) {
  .torikumi__list .summary .icon span {
    width: 30px;
    height: 5px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .summary .icon span {
    width: 38px;
    height: 6px;
  }
}
@media (min-width: 1200px) {
  .torikumi__list .summary .icon span {
    width: 45px;
    height: 7px;
  }
}
.torikumi__list .summary .icon span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%);
}
.torikumi__list .summary .icon span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}
.torikumi__list .summary .icon.open span:nth-of-type(2) {
  transform: translateY(-50%) rotate(0);
}
.torikumi__list .content {
  margin-bottom: 60px;
  padding-top: 13px;
}
.torikumi__list .content.number1 {
  padding-top: 0;
}
.torikumi__list .content.number8 {
  display: block;
}
.torikumi__list .content.number7 {
  display: block;
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  .torikumi__list .content.number7 {
    margin-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .content.number7 {
    margin-bottom: 70px;
  }
}
@media (min-width: 576px) {
  .torikumi__list .content {
    margin-bottom: 80px;
  }
}
@media (min-width: 768px) {
  .torikumi__list .content {
    padding-top: 24px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .content {
    padding-top: 38px;
    margin-bottom: 110px;
  }
}
@media (min-width: 1200px) {
  .torikumi__list .content {
    padding-top: 46px;
  }
}
.torikumi__list .inner {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .torikumi__list .inner {
    width: 82%;
  }
}
.torikumi__list .list {
  box-sizing: border-box;
  background: #fff;
  padding: 15px;
}
@media (min-width: 768px) {
  .torikumi__list .list {
    padding: 24px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .list {
    padding: 36px;
  }
}
.torikumi__list .list.goal3 {
  margin-top: 28px;
}
@media (min-width: 768px) {
  .torikumi__list .list.goal3 {
    margin-top: 48px;
  }
}
.torikumi__list .list ul {
  list-style: none;
}
.torikumi__list .list ul li {
  display: flex;
  margin-top: 10px;
  font-size: 14px;
}
.torikumi__list .list ul li:first-of-type {
  margin-top: 0;
}
@media (min-width: 768px) {
  .torikumi__list .list ul li {
    font-size: 16px;
    margin-top: 12px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .list ul li {
    font-size: 18px;
    margin-top: 14px;
  }
}
@media (min-width: 1200px) {
  .torikumi__list .list ul li {
    font-size: 20px;
    margin-top: 16px;
  }
}
.torikumi__list .list ul li::before {
  content: "";
  width: 14px;
  height: 14px;
  margin: 5px 5px 0 0;
  border-radius: 50%;
  background: #cb3267;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .torikumi__list .list ul li::before {
    width: 18px;
    height: 18px;
    margin: 3px 5px 0 0;
  }
}
@media (min-width: 992px) {
  .torikumi__list .list ul li::before {
    width: 22px;
    height: 22px;
  }
}
@media (min-width: 1200px) {
  .torikumi__list .list ul li::before {
    width: 26px;
    height: 26px;
  }
}
.torikumi__list .list ul li span {
  font-size: 12px;
}
@media (min-width: 768px) {
  .torikumi__list .list ul li span {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .list ul li span {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .torikumi__list .list ul li span {
    font-size: 18px;
  }
}
.torikumi__list .list ul li span.color {
  font-size: 14px;
}
@media (min-width: 768px) {
  .torikumi__list .list ul li span.color {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .list ul li span.color {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .torikumi__list .list ul li span.color {
    font-size: 20px;
  }
}
.torikumi__list .list .text {
  text-align: right;
  font-size: 13px;
}
@media (min-width: 768px) {
  .torikumi__list .list .text {
    font-size: 15px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .list .text {
    font-size: 17px;
  }
}
.torikumi__list .link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
@media (min-width: 576px) {
  .torikumi__list .link-list {
    margin-top: 50px;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}
.torikumi__list .link-list__item {
  width: 47%;
  margin-right: 0;
}
.torikumi__list .link-list__item:nth-child(n+3) {
  margin-top: 20px;
}
@media (min-width: 576px) {
  .torikumi__list .link-list__item {
    width: 23%;
    margin-right: 25px;
  }
  .torikumi__list .link-list__item:nth-child(n+3) {
    margin-top: 0;
  }
  .torikumi__list .link-list__item:nth-child(4n) {
    margin-right: 0;
  }
}
.torikumi__list .link-list__item &gt; div,
.torikumi__list .link-list__item &gt; a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  color: #000;
  text-decoration: none;
  text-align: center;
}
.torikumi__list .link-list__item &gt; div img,
.torikumi__list .link-list__item &gt; a img {
  width: 100%;
  height: auto;
}
.torikumi__list .link-list__item &gt; div.link,
.torikumi__list .link-list__item &gt; a.link {
  text-decoration: underline;
  color: #cb3267;
}
.torikumi__list .link-list__item &gt; div .image,
.torikumi__list .link-list__item &gt; a .image {
  width: 100%;
  padding-top: 100%;
  position: relative;
}
.torikumi__list .link-list__item &gt; div .image img,
.torikumi__list .link-list__item &gt; a .image img {
  width: auto;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.torikumi__list .link-list__item &gt; div .image img.yoko,
.torikumi__list .link-list__item &gt; a .image img.yoko {
  width: 100%;
  height: auto;
}
.torikumi__list .link-list__item &gt; div .caption,
.torikumi__list .link-list__item &gt; a .caption {
  margin-top: 10px;
  font-size: 12px;
}
@media (min-width: 768px) {
  .torikumi__list .link-list__item &gt; div .caption,
.torikumi__list .link-list__item &gt; a .caption {
    font-size: 14px;
  }
}







.torikumi__list .link-list_02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
@media (min-width: 576px) {
  .torikumi__list .link-list_02 {
    margin-top: 50px;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}
.torikumi__list .link-list_02__item {
  width: 100%;
  margin-right: 0;
}
.torikumi__list .link-list_02__item:nth-child(n+2) {
  margin-top: 20px;
}
@media (min-width: 576px) {
  .torikumi__list .link-list_02__item {
    width: 33%;
    margin-right: 25px;
  }
  .torikumi__list .link-list_02__item:nth-child(n+2) {
    margin-top: 0;
  }
  .torikumi__list .link-list_02__item:nth-child(3n) {
    margin-right: 0;
  }
}
.torikumi__list .link-list_02__item &gt; div,
.torikumi__list .link-list_02__item &gt; a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  color: #000;
  text-decoration: none;
  text-align: center;
}
.torikumi__list .link-list_02__item &gt; div img,
.torikumi__list .link-list_02__item &gt; a img {
  width: 100%;
  height: auto;
}
.torikumi__list .link-list_02__item &gt; div.link,
.torikumi__list .link-list_02__item &gt; a.link {
  text-decoration: underline;
  color: #cb3267;
}
.torikumi__list .link-list_02__item &gt; div .image,
.torikumi__list .link-list_02__item &gt; a .image {
  width: 100%;
  padding-top: 65%;
  position: relative;
}
.torikumi__list .link-list_02__item &gt; div .image img,
.torikumi__list .link-list_02__item &gt; a .image img {
  width: auto;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.torikumi__list .link-list_02__item &gt; div .image img.yoko,
.torikumi__list .link-list_02__item &gt; a .image img.yoko {
  width: 100%;
  height: auto;
}
.torikumi__list .link-list_02__item &gt; div .caption,
.torikumi__list .link-list_02__item &gt; a .caption {
  margin-top: 10px;
  font-size: 14px;
  text-align: left;
}
@media (min-width: 768px) {
  .torikumi__list .link-list_02__item &gt; div .caption,
  .torikumi__list .link-list_02__item &gt; a .caption {
    font-size: 18px;
  }
}

.torikumi__list .link-list_02__item &gt; div .caption .date,
.torikumi__list .link-list_02__item &gt; a .caption .date {
  margin: 10px 0 15px 0;
  font-size: 12px;
  text-align: left;
}

@media (min-width: 768px) {
  .torikumi__list .link-list_02__item &gt; div .caption .date,
  .torikumi__list .link-list_02__item &gt; a .caption .date {
    font-size: 14px;
  }
}

.ml-16 {
  margin-left: 16%;
}

.ml-33 {
  margin-left: 33%;
}

.entry-img {
  text-align: center;
  margin-bottom: 30px;
}

.entry-content .link {
  text-align: right;
}

.entry-content .link a::before {
  flex: 0 0 auto;
  display: inline-block;
  content: "";
  width: 5px;
  height: 5px;
  margin-top: 8px;
  margin-right: 5px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  transform: rotate(45deg);
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

article.torikumi__list-item p {
  font-size: 14px;
  line-height: 1.95;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  article.torikumi__list-item p {
    font-size: 20px;
  }
}

article.torikumi__list-item h3 {
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #999;
  padding: 0 0 10px 10px;
  margin: 30px 0;
  color: #db7095;
}
@media (min-width: 768px) {
  article.torikumi__list-item h3 {
    font-size: 30px;
  }
}

article.torikumi__list-item h2 {
  font-size: 24px;
  font-weight: 600;
  border-bottom: 1px solid #999;
  padding-bottom: 10px;
  margin-bottom: 50px;
  color: #cb3267;
}
@media (min-width: 768px) {
  article.torikumi__list-item h2 {
    font-size: 40px;
  }
}











.torikumi__list .connection {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .torikumi__list .connection {
    margin-top: 55px;
  }
}
.torikumi__list .connection .ttl {
  color: #8b8f93;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .torikumi__list .connection .ttl {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .connection .ttl {
    font-size: 23px;
  }
}
.torikumi__list .connection .text {
  color: #000;
  font-size: 14px;
  margin-top: 5px;
}
@media (min-width: 768px) {
  .torikumi__list .connection .text {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .connection .text {
    margin-top: 12px;
    font-size: 18px;
  }
}
.torikumi__list .connection ul {
  width: 100%;
  margin-top: 15px;
  list-style: none;
}
@media (min-width: 768px) {
  .torikumi__list .connection ul {
    margin-top: 25px;
  }
}
.torikumi__list .connection ul li {
  margin-top: 5px;
  display: flex;
}
@media (min-width: 768px) {
  .torikumi__list .connection ul li {
    margin-top: 8px;
  }
}
.torikumi__list .connection ul li::before {
  flex: 0 0 auto;
  display: block;
  content: "";
  width: 5px;
  height: 5px;
  margin-top: 8px;
  margin-right: 5px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  transform: rotate(45deg);
}
@media (min-width: 768px) {
  .torikumi__list .connection ul li::before {
    width: 6px;
    height: 6px;
    margin-right: 10px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .connection ul li::before {
    width: 8px;
    height: 8px;
  }
}
.torikumi__list .connection ul li a {
  display: block;
  color: #000;
  text-decoration: none;
  font-size: 14px;
}
@media (min-width: 768px) {
  .torikumi__list .connection ul li a {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .connection ul li a {
    font-size: 18px;
  }
}
.torikumi__list .connection ul li a:hover {
  opacity: 0.7;
}
.torikumi__list .connection ul li.arrow_none::before {
  border-top: none;
  border-right: none;
}
.torikumi__list .connection ul.listnone li::before {
  border-radius: 0%;
  background-color: transparent;
}
.torikumi__list .text-area {
  margin-top: 50px;
}
.torikumi__list .text-area.number7, .torikumi__list .text-area.number1 {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .torikumi__list .text-area.number7, .torikumi__list .text-area.number1 {
    margin-top: 20px;
  }
}
.torikumi__list .text-area.number8 {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .torikumi__list .text-area.number8 {
    margin-top: 25px;
  }
}
@media (min-width: 576px) {
  .torikumi__list .text-area {
    margin-top: 60px;
  }
}
@media (min-width: 768px) {
  .torikumi__list .text-area {
    margin-top: 75px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .text-area {
    margin-top: 90px;
  }
}
.torikumi__list .text-area.goal3 {
  margin-top: 0;
}
.torikumi__list .text-area.goal7 {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .torikumi__list .text-area.goal7 {
    margin-top: 25px;
  }
}
.torikumi__list .text-area &gt; div {
  margin-top: 20px;
}
@media (min-width: 576px) {
  .torikumi__list .text-area &gt; div {
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .text-area &gt; div {
    margin-top: 50px;
  }
}
.torikumi__list .text-area &gt; div:first-of-type {
  margin-top: 0;
}
.torikumi__list .text-area .ttl {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #cb3267;
}
@media (min-width: 768px) {
  .torikumi__list .text-area .ttl {
    margin-bottom: 14px;
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .text-area .ttl {
    margin-bottom: 16px;
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  .torikumi__list .text-area .ttl {
    margin-bottom: 20px;
    font-size: 26px;
  }
}
.torikumi__list .text-area .text {
  color: #000;
  font-size: 14px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .torikumi__list .text-area .text {
    font-size: 16px;
    line-height: 1.9;
  }
}
@media (min-width: 992px) {
  .torikumi__list .text-area .text {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .torikumi__list .text-area .text {
    font-size: 20px;
    line-height: 1.95;
  }
}
.torikumi__list .text-area .example {
  margin-top: 5px;
  color: #000;
  font-size: 14px;
  line-height: 1.8;
  display: flex;
}
@media (min-width: 768px) {
  .torikumi__list .text-area .example {
    margin-top: 10px;
  }
}
@media (min-width: 768px) {
  .torikumi__list .text-area .example {
    font-size: 16px;
    line-height: 1.9;
  }
}
@media (min-width: 992px) {
  .torikumi__list .text-area .example {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .torikumi__list .text-area .example {
    font-size: 20px;
    line-height: 1.95;
  }
}
.torikumi__list .table {
  margin-top: 20px;
}
@media (min-width: 576px) {
  .torikumi__list .table {
    margin-top: 50px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .table {
    margin-top: 60px;
  }
}
.torikumi__list .table.goal7 {
  padding-bottom: 35px;
}
@media (min-width: 576px) {
  .torikumi__list .table.goal7 {
    padding-bottom: 55px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .table.goal7 {
    padding-bottom: 73px;
  }
}
.torikumi__list .table table {
  width: 100%;
  border-collapse: collapse;
}
.torikumi__list .table table tr:nth-of-type(even) th {
  background: #df88a5;
}
.torikumi__list .table table tr:nth-of-type(even) td {
  background: #f8e4eb;
}
.torikumi__list .table table tr:nth-of-type(odd) th {
  background: #e598b3;
}
.torikumi__list .table table tr:nth-of-type(odd) td {
  background: #fff;
}
.torikumi__list .table table th {
  width: 10.61%;
}
@media (min-width: 768px) {
  .torikumi__list .table table th {
    box-sizing: border-box;
  }
}
.torikumi__list .table table th .goal {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) {
  .torikumi__list .table table th .goal {
    font-size: 26px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .table table th .goal {
    font-size: 32px;
  }
}
.torikumi__list .table table th .goal span {
  font-size: 12px;
}
@media (min-width: 768px) {
  .torikumi__list .table table th .goal span {
    font-size: 17px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .table table th .goal span {
    font-size: 21px;
  }
}
.torikumi__list .table table td {
  padding: 13px 8px;
}
@media (min-width: 768px) {
  .torikumi__list .table table td {
    width: 89.76%;
    padding: 26px 17px;
  }
}
.torikumi__list .table table td .ttl {
  font-size: 14px;
  font-weight: bold;
  color: #cb3267;
}
@media (min-width: 768px) {
  .torikumi__list .table table td .ttl {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .table table td .ttl {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .torikumi__list .table table td .ttl {
    font-size: 21px;
  }
}
.torikumi__list .table table td .attempt {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .torikumi__list .table table td .attempt {
    margin-top: 10px;
  }
}
.torikumi__list .table table td .attempt &gt; p {
  font-size: 13px;
}
@media (min-width: 768px) {
  .torikumi__list .table table td .attempt &gt; p {
    font-size: 15px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .table table td .attempt &gt; p {
    font-size: 16px;
  }
}
.torikumi__list .table table td .attempt ul {
  list-style: none;
  margin-top: 5px;
}
@media (min-width: 768px) {
  .torikumi__list .table table td .attempt ul {
    margin-top: 0;
  }
}
.torikumi__list .table table td .attempt ul li {
  display: flex;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.6;
}
.torikumi__list .table table td .attempt ul li:first-of-type {
  margin-top: 0;
}
@media (min-width: 768px) {
  .torikumi__list .table table td .attempt ul li {
    font-size: 14px;
    margin-top: 6px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .table table td .attempt ul li {
    margin-top: 4px;
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .torikumi__list .table table td .attempt ul li {
    font-size: 18px;
  }
}
.torikumi__list .table table td .attempt ul li::before {
  content: "";
  width: 12px;
  height: 12px;
  margin: 3px 5px 0 0;
  border-radius: 50%;
  background: #cb3267;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .torikumi__list .table table td .attempt ul li::before {
    width: 14px;
    height: 14px;
    margin: 5px 5px 0 0;
  }
}
@media (min-width: 992px) {
  .torikumi__list .table table td .attempt ul li::before {
    width: 16px;
    height: 16px;
  }
}
@media (min-width: 1200px) {
  .torikumi__list .table table td .attempt ul li::before {
    width: 18px;
    height: 18px;
    margin: 7px 5px 0 0;
  }
}
.torikumi__list .table.number8 {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .torikumi__list .table.number8 {
    margin-top: 25px;
  }
}
.torikumi__list .table.number8 table th {
  width: 25% !important;
  padding: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: normal;
  text-align: left;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .torikumi__list .table.number8 table th {
    width: 20% !important;
    font-size: 15px;
    font-weight: bold;
    padding: 0 17px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .table.number8 table th {
    font-size: 16px;
  }
}
.torikumi__list .table.number8 table td {
  width: 75% !important;
  font-size: 13px;
}
@media (min-width: 768px) {
  .torikumi__list .table.number8 table td {
    width: 80% !important;
    font-size: 15px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .table.number8 table td {
    font-size: 16px;
  }
}
.torikumi__list .flex {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 576px) {
  .torikumi__list .flex {
    flex-direction: row;
    justify-content: space-between;
  }
}
.torikumi__list .flex .image {
  width: 100%;
  margin-top: 13px;
  padding-top: 65.217%;
  background-color: #8b8f93;
}
@media (min-width: 576px) {
  .torikumi__list .flex .image {
    width: 46%;
    margin-top: 0;
    padding-top: 30%;
  }
}
.torikumi__list .flex .text {
  width: 100%;
  font-size: 14px;
  line-height: 1.8;
}
@media (min-width: 576px) {
  .torikumi__list .flex .text {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .torikumi__list .flex .text {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .flex .text {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .torikumi__list .flex .text {
    font-size: 20px;
  }
}
.torikumi__list .color {
  color: #cb3267;
  text-decoration: underline;
}
.torikumi__list .sub {
  margin-top: 30px !important;
}
.torikumi__list .sub.number8 {
  margin-top: 0 !important;
}
@media (min-width: 768px) {
  .torikumi__list .sub {
    margin-top: 50px !important;
  }
}
@media (min-width: 992px) {
  .torikumi__list .sub {
    margin-top: 70px !important;
  }
}
.torikumi__list .sub__list-item {
  padding-top: 15px;
}
.torikumi__list .sub__list-item:first-of-type {
  padding-top: 0;
}
@media (min-width: 768px) {
  .torikumi__list .sub__list-item {
    padding-top: 23px;
  }
}
.torikumi__list .sub__summary {
  height: 38px;
  line-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  font-weight: bold;
  color: #fff;
  background: #db7095;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .torikumi__list .sub__summary.number1 {
    font-size: 15px;
  }
}
.torikumi__list .sub__summary:hover {
  cursor: pointer;
}
@media (min-width: 768px) {
  .torikumi__list .sub__summary {
    height: 42px;
    line-height: 42px;
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .sub__summary {
    height: 50px;
    line-height: 50px;
    padding: 0 24px;
    font-size: 22px;
    font-weight: normal;
  }
}
@media (min-width: 1200px) {
  .torikumi__list .sub__summary {
    height: 60px;
    line-height: 60px;
    padding: 0 24px;
    font-size: 27px;
  }
}
.torikumi__list .sub__summary .icon {
  width: 16px;
  height: 16px;
  position: relative;
}
@media (min-width: 768px) {
  .torikumi__list .sub__summary .icon {
    width: 22px;
    height: 22px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .sub__summary .icon {
    width: 26px;
    height: 26px;
  }
}
@media (min-width: 1200px) {
  .torikumi__list .sub__summary .icon {
    width: 30px;
    height: 30px;
  }
}
.torikumi__list .sub__summary .icon span {
  width: 16px;
  height: 3px;
  display: block;
  background-color: #fff;
  position: absolute;
  transition: 0.3s all;
}
@media (min-width: 768px) {
  .torikumi__list .sub__summary .icon span {
    width: 22px;
    height: 4px;
  }
}
@media (min-width: 992px) {
  .torikumi__list .sub__summary .icon span {
    width: 26px;
    height: 5px;
  }
}
@media (min-width: 1200px) {
  .torikumi__list .sub__summary .icon span {
    width: 30px;
  }
}
.torikumi__list .sub__summary .icon span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%);
}
.torikumi__list .sub__summary .icon span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}
.torikumi__list .sub__summary .icon.open span:nth-of-type(2) {
  transform: translateY(-50%) rotate(0);
}
.external::after {
  content: "";
  display: inline-block;
  margin: 0 0 0 3px;
  font-family: "Font Awesome 5 Free";
  content: "\f35d";
  font-weight: 900;
}

.suisin {
  width: 100%;
  margin-top: 40px;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (min-width: 576px) {
  .suisin {
    margin-top: 55px;
    padding: 0 30px;
  }
}
@media (min-width: 992px) {
  .suisin {
    margin-top: 75px;
  }
}
.suisin__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.suisin .massage {
  margin-top: 25px;
}
@media (min-width: 576px) {
  .suisin .massage {
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  .suisin .massage {
    margin-top: 42px;
  }
}
.suisin .massage .catch {
  text-align: center;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.7;
}
@media (min-width: 576px) {
  .suisin .massage .catch {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .suisin .massage .catch {
    font-size: 27px;
  }
}
.suisin .massage .text {
  margin-top: 25px;
  color: #000;
  font-size: 14px;
  line-height: 1.8;
}
@media (min-width: 576px) {
  .suisin .massage .text {
    margin-top: 30px;
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .suisin .massage .text {
    margin-top: 42px;
    font-size: 20px;
    line-height: 1.9;
  }
}
.suisin .massage .image {
  margin-top: 36px;
}
@media (min-width: 576px) {
  .suisin .massage .image {
    margin-top: 54px;
  }
}
@media (min-width: 992px) {
  .suisin .massage .image {
    margin-top: 60px;
  }
}
.suisin .massage .image img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.d-and-i {
  width: 100%;
  margin-top: 40px;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (min-width: 576px) {
  .d-and-i {
    margin-top: 60px;
    padding: 0 30px;
  }
}
@media (min-width: 992px) {
  .d-and-i {
    margin-top: 80px;
  }
}
.d-and-i__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.d-and-i__inner .intro {
  color: #000;
  font-size: 14px;
  line-height: 1.8;
  text-align: justify;
}
@media (min-width: 576px) {
  .d-and-i__inner .intro {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .d-and-i__inner .intro {
    font-size: 20px;
    line-height: 1.9;
  }
}
.d-and-i__inner .title {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .d-and-i__inner .title {
    margin-top: 60px;
  }
}
.d-and-i__graph {
  margin-top: 25px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .d-and-i__graph {
    margin-top: 50px;
    padding: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
  }
}
.d-and-i__graph-item {
  width: 100%;
  margin-top: 30px;
}
.d-and-i__graph-item:first-of-type {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .d-and-i__graph-item {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .d-and-i__graph-item:nth-child(n+3) {
    margin-top: 20px;
  }
}
@media (min-width: 992px) {
  .d-and-i__graph-item:nth-child(n+3) {
    margin-top: 30px;
  }
}
@media (min-width: 768px) {
  .d-and-i__graph-item {
    width: 48%;
  }
}
.d-and-i__graph-item img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.d-and-i__link {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .d-and-i__link {
    margin-top: 50px;
  }
}
.d-and-i__link a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #000;
  text-decoration: none;
  text-align: right;
  line-height: 1;
  font-size: 14px;
}
@media (min-width: 768px) {
  .d-and-i__link a {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .d-and-i__link a {
    font-size: 20px;
  }
}
.d-and-i__link a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-top: #000 2px solid;
  border-right: #000 2px solid;
  transform: rotate(45deg);
}
@media (min-width: 768px) {
  .d-and-i__link a::before {
    width: 12px;
    height: 12px;
    margin-right: 10px;
    border-top: #000 3px solid;
    border-right: #000 3px solid;
  }
}

* {
  margin: 0;
  padding: 0;
}

html, body {
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
}

body {
  background-color: rgba(73, 164, 211, 0.3);
}

.mv {
  margin-top: 54px;
  position: relative;
  background: url(../img/home/mv/parts/bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .mv {
    margin-top: 88px;
  }
}
@media (min-width: 1200px) {
  .mv {
    margin-top: 110px;
  }
}
.mv .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9;
  transform: translate(-50%, -50%);
  width: 47%;
}
.mv .logo .wrapper {
  position: relative;
  width: 100%;
}
.mv .logo img {
  width: 100%;
  opacity: 0;
  transition: 1s all ease-out;
}
.mv .logo img.top, .mv .logo img.btm {
  position: absolute;
  left: 0;
  top: 0;
}
.mv .logo img.top {
  transform: translateY(-100%);
}
.mv .logo img.btm {
  transform: translateY(100%);
}
.mv .logo.show img {
  opacity: 1;
}
.mv .logo.show img.top {
  transform: translateY(0);
}
.mv .logo.show img.btm {
  transform: translateY(0);
}
.mv .logo.show img.full {
  opacity: 0;
}
.mv .parts {
  position: relative;
  width: 100%;
  background-color: #eee;
  overflow: hidden;
  transition: all 2s;
}
.mv .parts::after {
  content: "";
  display: block;
  padding-top: 40.6315789474%;
}
.mv .parts img {
  position: absolute;
  display: none;
  transition: 3s all ease-in;
}
.mv .parts img:nth-child(1) {
  display: block;
  left: 0;
  top: 0;
  transform: translate(-25%, -10%);
  width: 12%;
  transition: 3.4s all ease-in;
}
.mv .parts img:nth-child(2) {
  display: block;
  left: 40%;
  top: 0;
  transform: translate(0, -80%);
  width: 10.5%;
}
.mv .parts img:nth-child(3) {
  display: block;
  left: 25%;
  top: 10%;
  width: 10%;
  transition: 3.3s all ease-in;
}
.mv .parts img:nth-child(4) {
  display: block;
  left: 50%;
  top: 0;
  transform: translate(0, 10%);
  width: 10.5%;
}
.mv .parts img:nth-child(5) {
  display: block;
  left: 70%;
  top: 18%;
  width: 6.8%;
  transition: 3.2s all ease-in;
}
.mv .parts img:nth-child(6) {
  display: block;
  left: 86%;
  top: 10%;
  width: 10.5%;
}
.mv .parts img:nth-child(7) {
  display: block;
  left: 14%;
  top: 22%;
  width: 4.5%;
}
.mv .parts img:nth-child(8) {
  display: block;
  left: 36%;
  top: 28%;
  width: 5.15%;
}
.mv .parts img:nth-child(9) {
  display: block;
  left: 58%;
  top: 37%;
  width: 4.5%;
  transition: 3.8s all ease-in;
}
.mv .parts img:nth-child(10) {
  display: block;
  left: 92%;
  top: 40%;
  width: 4.5%;
}
.mv .parts img:nth-child(11) {
  display: block;
  left: 0;
  top: 34%;
  width: 6.6%;
  transform: translate(-50%, 0);
  transition: 3.3s all ease-in;
}
.mv .parts img:nth-child(12) {
  display: block;
  left: 15%;
  top: 42%;
  width: 10.5%;
  transition: 3.2s all ease-in;
}
.mv .parts img:nth-child(13) {
  display: block;
  left: 77%;
  top: 60%;
  width: 4.5%;
}
.mv .parts img:nth-child(14) {
  display: block;
  left: 92%;
  top: 65%;
  width: 7.64%;
  transform: translate(30%, 0);
  transition: 3.4s all ease-in;
}
.mv .parts img:nth-child(15) {
  display: block;
  left: 5%;
  top: 61%;
  width: 6.8%;
}
.mv .parts img:nth-child(16) {
  display: block;
  left: 32%;
  top: 71%;
  width: 6.6%;
  transition: 3.4s all ease-in;
}
.mv .parts img:nth-child(17) {
  display: block;
  left: 56%;
  top: 71%;
  width: 10%;
}
.mv .parts img:nth-child(18) {
  display: block;
  left: 72%;
  top: 78%;
  width: 5.1%;
  transition: 3.4s all ease-in;
}
.mv .parts img:nth-child(19) {
  display: block;
  left: 2%;
  top: 85%;
  width: 4.5%;
}
.mv .parts img:nth-child(20) {
  display: block;
  left: 15%;
  top: 79%;
  width: 12%;
  transition: 3.4s all ease-in;
}
.mv .parts img:nth-child(21) {
  display: block;
  left: 42%;
  top: 90%;
  width: 12%;
}
.mv .parts img:nth-child(22) {
  display: block;
  left: 80%;
  top: 84%;
  width: 10.6%;
  transition: 3.3s all ease-in;
}
.mv .parts.stick img {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.mv .parts.move img:nth-child(1) {
  top: 25%;
  left: 25%;
  transform: scale(0.4);
}
.mv .parts.move img:nth-child(2) {
  top: 35%;
  left: 30%;
  transform: scale(0.4);
}
.mv .parts.move img:nth-child(3) {
  top: 30%;
  left: 30%;
  transform: scale(0.4);
}
.mv .parts.move img:nth-child(4) {
  top: 30%;
  left: 60%;
  transform: scale(0.4);
}
.mv .parts.move img:nth-child(5) {
  top: 30%;
  left: 60%;
  transform: scale(0.4);
}
.mv .parts.move img:nth-child(6) {
  top: 30%;
  left: 65%;
  transform: scale(0.4);
}
.mv .parts.move img:nth-child(7) {
  top: 60%;
  left: 30%;
  transform: scale(0.4);
}
.mv .parts.move img:nth-child(8) {
  top: 35%;
  left: 55%;
  transform: scale(0.4);
}
.mv .parts.move img:nth-child(9) {
  top: 43%;
  left: 60%;
  transform: scale(0.4);
}
.mv .parts.move img:nth-child(10) {
  top: 65%;
  left: 55%;
  transform: scale(0.4);
}
.mv .parts.move img:nth-child(11) {
  top: 35%;
  left: 27%;
  transform: scale(0.4);
}
.mv .parts.move img:nth-child(12) {
  top: 35%;
  left: 20%;
  transform: scale(0.4);
}
.mv .parts.move img:nth-child(13) {
  top: 57%;
  left: 60%;
  transform: scale(0.4);
}
.mv .parts.move img:nth-child(14) {
  top: 50%;
  left: 60%;
  transform: scale(0.4);
}
.mv .parts.move img:nth-child(15) {
  top: 60%;
  left: 26%;
  transform: scale(0.4);
}
.mv .parts.move img:nth-child(16) {
  top: 58%;
  left: 35%;
  transform: scale(0.4);
}
.mv .parts.move img:nth-child(17) {
  top: 55%;
  left: 58%;
  transform: scale(0.4);
}
.mv .parts.move img:nth-child(18) {
  top: 55%;
  left: 58%;
  transform: scale(0.4);
}
.mv .parts.move img:nth-child(19) {
  top: 60%;
  left: 28%;
  transform: scale(0.4);
}
.mv .parts.move img:nth-child(20) {
  top: 55%;
  left: 32%;
  transform: scale(0.4);
}
.mv .parts.move img:nth-child(21) {
  top: 45%;
  left: 60%;
  transform: scale(0.4);
}
.mv .parts.move img:nth-child(22) {
  top: 50%;
  left: 50%;
  transform: scale(0.4);
}
.mv .parts.fadeout {
  background-color: rgba(255, 255, 255, 0.5);
}
.mv .parts.fadeout img {
  transition: 1s all ease-out;
  opacity: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 0;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 0;
  }
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 600;
  color: #043c6d;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #333;
  content: "/";
}

.breadcrumbs a {
  color: #333;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: #999;
  text-decoration: none;
}

/*ウェルビーイング向上の取り組み*/
.wellbeing {
  width: 100%;
  margin-top: 40px;
  padding: 0 20px;
  box-sizing: border-box;
}

@media (min-width: 576px) {
  .wellbeing {
    margin-top: 55px;
    padding: 0 30px;
  }
}

@media (min-width: 992px) {
  .wellbeing {
    margin-top: 75px;
  }
}

.wellbeing__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.wellbeing__text01 {
  font-size: 14px;
  line-height: 1.9;
}

@media (min-width: 768px) {
  .wellbeing__text01 {
    font-size: 20px;
  }
}

.wellbeing__text01 a {
  display: block;
  margin-top: 5px;
  color: #000;
  text-decoration: none;
  line-height: 1.3;
  font-size: 14px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .wellbeing__text01 a {
    font-size: 20px;
    line-height: 1;
  }
}

.wellbeing__text01 a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-top: #000 3px solid;
  border-right: #000 3px solid;
  transform: rotate(45deg);
}

@media (min-width: 768px) {
  .wellbeing__text01 a::before {
    width: 12px;
    height: 12px;
    margin-right: 10px;
  }
}

.wellbeing__text01 a::after {
  display: inline-block;
  margin: 0 0 0 5px;
  font-family: "Font Awesome 5 Free";
  content: "\f35d";
  font-weight: 900;
  font-size: 14px;
  color: #505050;
}

@media (min-width: 768px) {
  .wellbeing__text01 a::after {
    font-size: 16px;
  }
}

.wellbeing__text02 {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.9;
}

@media (min-width: 768px) {
  .wellbeing__text02 {
    margin-top: 35px;
    font-size: 20px;
  }
}

.wellbeing__content {
  margin-top: 50px;
}

@media (min-width: 768px) {
  .wellbeing__content {
    margin-top: 80px;
  }
}

.wellbeing__title {
  display: flex;
  align-items: center;
  min-height: 45px;
  padding: 4px 20px;
  font-size: 18px;
  font-weight: normal;
  color: #fff;
  background-color: #0B1F65;
}

@media (min-width: 768px) {
  .wellbeing__title {
    min-height: 90px;
    padding: 4px 25px;
    font-size: 40px;
  }
}

.wellbeing__effort {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .wellbeing__effort {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    margin-top: 60px;
  }
}

@media (min-width: 768px) {
  .wellbeing__effort:nth-child(2n + 1) {
    flex-direction: row-reverse;
  }
}

.wellbeing__effort__image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 320px;
  aspect-ratio: 500 / 300;
  position: relative;
}

.wellbeing__effort__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.wellbeing__effort__title {
  font-size: 20px;
  font-weight: normal;
  color: #fff;
  text-align: center;
  line-height: 1.333;
  position: relative;
}

@media (min-width: 768px) {
  .wellbeing__effort__title {
    font-size: 30px;
  }
}

.wellbeing__effort__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: none;
}

@media (min-width: 768px) {
  .wellbeing__effort__list {
    gap: 25px;
    max-width: 460px;
  }
}

.wellbeing__effort__item {
  list-style-type: none;
}

.wellbeing__effort__subtitle {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.9;
  color: #0B1F65;
}

@media (min-width: 768px) {
  .wellbeing__effort__subtitle {
    font-size: 20px;
  }
}

.wellbeing__effort__text {
  font-size: 14px;
  line-height: 1.9;
}

@media (min-width: 768px) {
  .wellbeing__effort__text {
    font-size: 20px;
    line-height: 1.9;
  }
}

.wellbeing__information {
  margin: 30px 0 10px;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  color: #8B8F93;
}

@media (min-width: 768px) {
  .wellbeing__information {
    margin: 40px 0 50px;
    font-size: 23px;
  }
}

.wellbeing__link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #000;
  text-decoration: none;
  text-align: left;
  line-height: 1.9;
  font-size: 14px;
}

@media (min-width: 768px) {
  .wellbeing__link {
    font-size: 20px;
  }
}

.wellbeing__link::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-top: #000 3px solid;
  border-right: #000 3px solid;
  transform: rotate(45deg);
}

@media (min-width: 768px) {
  .wellbeing__link::before {
    width: 12px;
    height: 12px;
  }
}

.wellbeing__program {
  max-width: 820px;
  margin: 25px auto 0;
}

@media (min-width: 768px) {
  .wellbeing__program {
    margin: 60px auto 0;
  }
}

.wellbeing__program__year {
  display: flex;
  align-items: center;
  height: 38px;
  padding: 0 45px 0 20px;
  font-size: 15px;
  font-weight: normal;
  color: #fff;
  background: #4159AE;
  position: relative;
  cursor: pointer;
}

@media (min-width: 768px) {
  .wellbeing__program__year {
    height: 60px;
    padding: 0 70px 0 25px;
    font-size: 27px;
  }
}

.wellbeing__program__year::before {
  content: '';
  display: block;
  width: 16px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  transition: 0.3s all;
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .wellbeing__program__year::before {
    width: 30px;
    height: 5px;
    right: 24px;
  }
}

.wellbeing__program__year::after {
  content: '';
  display: block;
  width: 16px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  transition: 0.3s all;
  transform: translateY(-50%) rotate(90deg);
}

@media (min-width: 768px) {
  .wellbeing__program__year::after {
    width: 30px;
    height: 5px;
    right: 24px;
  }
}

.wellbeing__program__year.open::after {
  transform: translateY(-50%) rotate(0);
}

.wellbeing__program__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 25px;
}

@media (min-width: 768px) {
  .wellbeing__program__list {
    margin-top: 60px;
  }
}

.wellbeing__program__item {
  padding: 8px;
  background-color: #fff;
  list-style-type: none;
}

@media (min-width: 768px) {
  .wellbeing__program__item {
    padding: 16px;
  }
}

.wellbeing__program__date {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  line-height: 2.0;
}

@media (min-width: 768px) {
  .wellbeing__program__date {
    font-size: 18px;
  }
}

.wellbeing__program__date .category {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 50px;
  height: 20px;
  padding: 0 5px;
  font-size: 12px;
  text-align: center;
  background-color: #E2E2E2;
}

@media (min-width: 768px) {
  .wellbeing__program__date .category {
    min-width: 72px;
    height: 28px;
    font-size: 16px;
  }
}

.wellbeing__program__date .category.blue {
  background-color: #A9E2F4;
}

.wellbeing__program__date .category.green {
  background-color: #BFECC3;
}

.wellbeing__program__date .category.purple {
  background-color: #CFDAFF;
}

.wellbeing__program__date .category.pink {
  background-color: #E7CFFF;
}

.wellbeing__program__title {
  font-size: 12px;
  line-height: 2.0;
}

@media (min-width: 768px) {
  .wellbeing__program__title {
    font-size: 18px;
  }
}

.wellbeing__program__detail {
  font-size: 12px;
  line-height: 2.0;
}

@media (min-width: 768px) {
  .wellbeing__program__detail {
    font-size: 18px;
  }
}</pre></body></html>