/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

@charset "utf-8";
/*
* Skeleton V2.0.4
* Copyright 2014, kyoto-info
* 12/29/2014
*/

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Hiragino Maru Gothic W4 JIS2004", "游ゴシック", YuGothic,
    "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo,
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a img:hover {
  opacity: 0.8;
}

p.mb-none {
  margin-bottom: 0 !important;
}

/*page-all*/
.page-bg {
  background-image: url(../img/bg.png);
  width: 100%;
}

.tablet-only {
  display: none;
}

.pc-only {
  display: none;
}

.sm-only {
  display: block;
}

.questionnaire {
  text-align: center;
  padding: 20px 15px 0;
}

.questionnaire p {
  margin-bottom: 0;
}

.questionnaire img {
  max-width: 100%;
}

.bxslider {
  max-width: 100%;
}

/*.container .row {
    margin: 1rem;
}*/

/* 画像系 */
.w-100 {
  width: 100%;
}

/*flex-box関連*/

.f-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.f-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.g-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

/* css grid関連*/
.g-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.grid-cont-one {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1em 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 1fr 1em 1fr 1em 1fr;
  grid-template-rows: repeat(3, 1fr);
  grid-template-areas:
    "catch main-img"
    "sub-img main-img"
    "sub-img main-img";
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  margin: 2em 1em;
}

.one-obj1 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: catch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 1.5em;
}
.one-obj1 img {
  width: 80%;
}

.one-obj2 {
  -ms-grid-row: 3;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-area: sub-img;
}

.one-obj3 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 5;
  -ms-grid-column: 3;
  grid-area: main-img;
}

.grid-cont-two {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1em 0.5fr 1em 1fr 1em 1fr;
  grid-template-columns: 1fr 0.5fr repeat(2, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-template-areas:
    "catch2 catch2 catch2 catch2"
    "main-img2 main-img2 second-img fifth-img"
    "main-img2 main-img2 therd-img fifth-img"
    "main-img2 main-img2 therd-img fourth-img";
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  margin: 2em 1em;
}

.two-obj1 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
  grid-area: catch2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 2em;
  margin-left: 1em;
}

.two-obj1 img {
  width: 50%;
}

.two-obj2 {
  -ms-grid-row: 3;
  -ms-grid-row-span: 5;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: main-img2;
}

.two-obj2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.two-obj3 {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
  grid-area: second-img;
}

.two-obj4 {
  -ms-grid-row: 5;
  -ms-grid-row-span: 3;
  -ms-grid-column: 5;
  grid-area: therd-img;
}

.two-obj5 {
  -ms-grid-row: 7;
  -ms-grid-column: 7;
  grid-area: fourth-img;
}

.two-obj6 {
  -ms-grid-row: 3;
  -ms-grid-row-span: 3;
  -ms-grid-column: 7;
  grid-area: fifth-img;
}

.contents p.grid-cap {
  color: #696969;
  font-size: 1.2rem;
  line-height: 1.5em;
  margin: initial;
  margin: 0.5em;
}

.grid-cont-three {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1em 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 1fr 1em 1fr 1em 1fr;
  grid-template-rows: repeat(3, 1fr);
  grid-template-areas:
    "main-img3 catch3"
    "main-img3 sub-img2"
    "main-img3 sub-img2";
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  margin: 2em 1em;
}

.three-obj1 {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: catch3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 1.5em;
}

.three-obj1 img {
  width: 80%;
}

.three-obj2 {
  -ms-grid-row: 3;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  grid-area: sub-img2;
}

.three-obj3 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 5;
  -ms-grid-column: 1;
  grid-area: main-img3;
}

/*css grid SP版*/
@media (max-width: 540px) {
  .grid-cont-one {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    grid-template-areas:
      "catch"
      "main-img"
      "sub-img";
  }

  .grid-cont-two {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    grid-template-areas:
      "catch2"
      "main-img2"
      "fifth-img"
      "fourth-img"
      "second-img"
      "therd-img";
  }

  .two-obj1 img {
    width: 100%;
  }

  .grid-cont-three {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    grid-template-areas:
      "catch3"
      "main-img3"
      "sub-img2";
  }
  .one-obj1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .one-obj2 {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }
  .one-obj3 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }

  .two-obj1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }

  .two-obj2 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }

  .two-obj3 {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }

  .two-obj4 {
    -ms-grid-row: 6;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }

  .two-obj5 {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
  }

  .two-obj6 {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }

  .three-obj1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .three-obj2 {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }

  .three-obj3 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }
}

/**/

@media (min-width: 750px) {
  .tablet-only {
    display: block;
  }
  .sm-only {
    display: none;
  }
  .questionnaire {
    position: fixed;
    bottom: 10px;
    right: 10px;
    padding: 0;
    z-index: 10;
  }
  .questionnaire img {
    max-width: 70%;
  }
}

@media (min-width: 950px) {
  .tablet-only {
    display: none;
  }
  .sm-only {
    display: none;
  }
  .pc-only {
    display: block;
  }
}

@media (min-width: 1740px) {
  .questionnaire {
    /*top: 30px;*/
    right: 10px;
    padding: 0;
  }
  .questionnaire img {
    max-width: 85%;
  }
}

h1.logo {
  margin: 30px auto 30px;
  width: 88px;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  line-height: 2.5em;
  color: #001f6f;
}

h1.top {
  font-size: 16px;
  margin: 30px 0 15px 10px;
  color: #001f6f;
  font-weight: bold;
}

h1.ichiran {
  margin-top: 16px;
  font-weight: bold;
}

h2 {
  font-size: 16px;
  margin: 30px 0 15px 10px;
  color: #001f6f;
  font-weight: bold;
}

h2.g-medal {
  color: #fff;
  background-color: #ac9839;
  display: inline-block;
  border-radius: 8px;
  padding: 5px 15px;
  margin: 20px 3px !important;
}

@media (min-width: 750px) {
  h1.top {
    font-size: 20px;
    font-weight: normal;
  }

  h1.ichiran {
    margin-top: 20px;
    font-weight: normal;
  }
  h2 {
    font-size: 20px;
    font-weight: normal;
  }

  h2.h2-sp {
    margin: 1em 1em 0 !important;
  }
}

.top .column img,
.top .column02 img,
.top .columns img,
.top .columns02 img {
  width: 100%;
  vertical-align: bottom;
}

.column .tag img,
.column02 .tag img,
.columns .tag img,
.columns02 .tag img {
  width: auto;
  vertical-align: text-bottom;
}

/* 縦書き関連  (保留)*/

/*.vartical {
    text-align: left;
    line-height: 3rem;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    display: inline-block;
    text-orientation: upright;
}

@media(max-width: 750px) {
    .vartical {
        writing-mode: initial;
    }
}*/

/*p関連*/
.contents p.small {
  font-size: 1.1rem;
  margin: initial !important;
  padding: 1em;
  text-align: justify;
}

p.vartical {
  margin: initial;
}

/*menu*/

nav {
  width: 100%;
  z-index: 1;
}

#menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: initial;
  width: 100%;
  max-width: 1080px;
  background: #ffffff;
}

#menu li {
  display: block;
  /*float: left;*/
  margin: 0;
  padding: 0;
}

#menu li a {
  display: block;
  font-weight: bold;
  font-size: 14px;
  padding: 8px 6px 7px;
  color: #001f6f;
  text-align: center;
  text-decoration: none;
  position: relative;
  width: 100%;
}

#menu li a i {
  font-size: 21px;
}

#menu .bor_r2 {
  border-right: 2px #999 solid;
}

#menu .bor_none {
  border-right: none;
}

#menu li a:hover {
  color: #0045f5;
}

#toggle {
  display: none;
}

#menu li .toppage {
  background: #751485;
}

#menu li ul {
  position: absolute;
  /*left: calc(900px - 90px);*/
  z-index: 2;
  margin: 0;
}

/*Dropdown*/

#menu li ul li {
  overflow: hidden;
  height: 0;
  background-color: #ffffff;
  width: 180px;

  -webkit-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}

#menu li:hover > ul > li {
  overflow: visible;
  height: 37px;
  border-top: #091f6f 1px solid;
}

@media (max-width: 750px) {
  #menu {
    display: none;
    padding: 0;
    width: 100%;
  }

  #menu li {
    width: 100%;
    border-bottom: 1px #999 solid;
  }

  #menu li a {
    border-right: none;
    border: none;
    padding: 12px;
    color: #fff;
    width: 100%;
    font-size: 13px;
  }
  #menu li .select {
    padding: 12px;
    border: none;
  }
  #menu li a:hover {
    padding: 12px;
    border: none;
  }
  #menu li .select:hover {
    padding: 12px;
    border: none;
  }
  #menu li .toppage {
    background: #666;
  }

  #menu li .nav {
    background: #666;
    border: none;
  }

  #menu li .nav:hover {
    border: none;
    padding-bottom: 12px;
  }

  #menu li a:hover {
    background: #444;
  }

  #menu li ul {
    position: static;
    z-index: -1;
    margin: 0;
    height: 44px;
    border-top: #999 1px solid;
    background-color: #444;
  }

  #menu li ul li {
    overflow: visible;
    float: left;
    height: 44px;
    width: 50%;
    background-color: #666;
  }

  #menu li ul li a {
    padding: 12px 0px;
  }

  #menu li ul li a:hover {
    padding: 12px 0px;
  }

  #menu li:hover > ul > li {
    height: 44px;
    border-top: none;
    background-color: #666;
  }

  #menu .bor_r2 {
    border-left: none;
  }

  #toggle {
    display: block;
    position: relative;
    width: 100%;
  }

  #toggle a {
    display: block;
    position: relative;
    padding: 8px 0 8px;
    border-bottom: 1px solid #999;
    color: #fff;
    font-size: 0.8em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background: #444;
  }

  #toggle:before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    background: #fff;
  }

  #toggle a:before,
  #toggle a:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 20px;
    height: 4px;
    background: #fff;
  }

  #toggle a:before {
    margin-top: -6px;
  }

  #toggle a:after {
    margin-top: 2px;
  }
}

/* マウスオーバー　ポップアップ*/

a.p-up:hover {
  position: relative;
  text-decoration: none;
  opacity: 1 !important;
}
a.p-up span {
  display: none;
  position: absolute;
  top: -25em;
  left: 0em;
}
a.p-up:hover span {
  border: none;
  display: block;
  width: 680px;
  opacity: 1 !important;
}

a.p-up:hover span img {
  opacity: 1 !important;
}

@media (max-width: 400px) {
  a.p-up span {
    display: none;
    position: absolute;
    top: -18em;
    left: 3em;
  }
  a.p-up:hover span {
    width: 360px;
    padding: 0;
  }
}

/*hyoshi*/
.hyoshi {
  background-color: #001f6f;
  margin-top: 0px;
}

.hyoshi h1 {
  font-size: 16px;
  margin: 20px;
  color: #fff;
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
}

.hyoshi h2 {
  font-size: 14px;
  margin: 20px;
  color: #fff;
  font-weight: bold;
}

.hyoshi .honbun {
  margin: 0 20px 15px 20px;
  font-size: 14px;
  color: #fff;
}

@media (min-width: 750px) {
  .hyoshi h1 {
    font-weight: bold;
    font-size: 16px;
    margin: 10px 20px;
    padding-bottom: 10px;
  }
  .hyoshi h2 {
    font-size: 14px;
    font-weight: bold;
    margin: 5px 20px;
  }
  .hyoshi .honbun {
    font-size: 13px;
  }
}

@media (min-width: 900px) {
  .hyoshi h1 {
    font-size: 20px;
    margin: 20px;
    padding-bottom: 20px;
    font-weight: normal;
  }

  .hyoshi h2 {
    font-size: 16px;
    margin: 20px;
    font-weight: normal;
  }
  .hyoshi .honbun {
    font-size: 14px;
  }
}

/*bg-color*/
.white {
  background-color: #fff;
  border: #e0e0e0 1px solid;
}

/*tokushu*/
.tokushu {
  margin-top: 0px;
}

.tokushu.window {
  background: url(../img/window.png) no-repeat #fff;
  background-position: 95% 90%;
}

@media (min-width: 750px) {
  .tokushu.window {
    background: url(../img/window02.png) no-repeat #fff;
    background-position: 95% 90%;
  }
}

@media (min-width: 950px) {
  .tokushu.window {
    background: url(../img/window.png) no-repeat #fff;
    background-position: 95% 90%;
  }
}

.tokushu .category {
  font-size: 13px;
  font-weight: bold;
  -webkit-text-stroke: 0px;
  margin: 0px 0px 15px;
  background-color: #001f6f;
  padding: 3px 20px;
  color: #fff;
}

.tokushu .l-h1-1 {
  line-height: 1.1em;
}

.tokushu h1 {
  margin: 0 20px 15px;
  font-size: 16px;
  line-height: 1.3em;
}

.tokushu .profile {
  margin: 0 20px 15px;
  font-size: 13px;
  line-height: 1.2em;
}

.tokushu .date {
  margin: 0 20px 0px;
  font-size: 14px;
  font-weight: bold;
  -webkit-text-stroke: 0px;
}

.tokushu .tag {
  margin: 0 20px 20px;
  font-size: 13px;
}

@media (min-width: 950px) {
  .tokushu h1 {
    font-size: 18px;
  }
}

/*topics*/
.topics .category {
  font-size: 13px;
  font-weight: bold;
  -webkit-text-stroke: 0px;
  margin: 0px 0px 15px;
  background-color: #001f6f;
  padding: 3px 15px;
  color: #fff;
}

.topics h1 {
  margin: 0 15px 15px;
  font-size: 15px;
  line-height: 1.6em;
}

.topics .profile {
  margin: 0 15px 15px;
  font-size: 13px;
  padding-bottom: 5px;
  line-height: 1.5em;
}

.topics .date {
  margin: 0 15px 0px;
  font-size: 13px;
  font-weight: bold;
  -webkit-text-stroke: 0px;
}

.topics .tag {
  margin: 0 15px 15px;
  font-size: 13px;
}

.topics .row {
  margin-top: 0px;
}

.topics .m-t15 {
  margin-top: 15px;
}

.topics .mar40,
.tokushu .mar40 {
  margin-top: 24px;
}

@media (min-width: 750px) {
  .topics .min-h340 {
    margin-top: 0px;
    min-height: 300px;
  }
  .topics .min-h380 {
    margin-top: 0px;
    min-height: 300px;
  }
  .topics .min-h352 {
    margin-top: 0px;
    min-height: 265px;
  }
  .topics .min-h300 {
    margin-top: 0px;
    min-height: 280px;
  }
}

/* YouTube 関連*/

.youtube {
  position: relative;
  width: 100%;
}

.youtube:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.youtube2 {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube2 iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/*ここから下が記事ページのCSS*/

/*page-pankuzu*/
.pankuzu {
  background-color: #001f6f;
  padding: 5px 0;
  color: #fff;
}

.pankuzu p {
  font-size: 13px;
  margin: 0px 5px 0px;
  line-height: 1.6em;
}

.pankuzu a {
  color: #fff;
}

/*page-contents*/

.contents {
  background-color: #fff;
  padding: 0px 0px 40px;
  border: #e0e0e0 1px solid;
  border-top: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .contents {
    padding-top: 0px;
  }
}

.contents.column img,
.contents.column02 img,
.contents.columns img,
.contents.columns02 img {
  max-width: 100%;
  vertical-align: bottom;
}

.contents h1 {
  font-size: 20px;
  margin: 0 15px 10px;
}

.contents h1 .mini {
  font-size: 16px;
}

.contents h2 {
  font-size: 16px;
  font-weight: bold;
  margin: 2rem 15px;
  margin-bottom:1rem;
  margin-top:2.5rem;
  /*margin-bottom: 2rem;*/
}

.contents h3 {
  font-size: 15px;
  font-weight: bold;
  margin: 0 15px 0.5rem;
  color: darkred;
}

.contents p {
  font-size: 14px;
  margin: 0.5rem 15px 1rem 15px;
}

.contents ul {
  list-style: none;
  margin: 15px 15px 0;
  font-size: 14px;
}

.contents ol {
  margin: 15px 15px 0;
  font-size: 14px;
}

.contents p.big {
  font-size: 16px;
}

.contents table {
  margin: 15px 15px 0;
}

.contents table th {
  background-color: #eee;
  padding-left: 8px;
  padding-right: 8px;
}

.contents .lead {
  font-weight: bold;
  line-height: 2.3rem;
  margin-top: initial;
}

.contents .date {
  font-size: 13px;
  margin: 15px 15px 10px;
}

.contents .category {
  font-size: 13px;
  font-weight: bold;
  margin: 0 15px 10px;
  color: #001f6f;
}

.contents .profile {
  font-size: 13px;
  margin: 0 15px 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #333;
}

.contents .caption {
  font-size: 1.2rem;
  color: #696969;
  line-height: 1.8rem;
  margin: 0 30px 20px;
  text-align: left;
}

.wrappernomal {
  margin: 1.5em 1em;
  padding: 2em 0em;
  background-color: none;
  color: #000000;
  border-style: solid;
  border-color: #e6e8fa;
  border-radius: 8px;
}

.wrappernobel {
  margin: 1.5em 1em;
  padding: 2em 0em;
  background-color: none;
  color: #000000;
  border-style: solid;
  border-color: #ac9839;
  border-radius: 8px;
}

.wrapperprof {
  margin: 1em;
  padding: 1em;
  background-color: #e6e8fa;
  color: #000000;
  border-radius: 8px;
}

.wrapperprof-nuevo{
  margin: 1em;
  padding: 1em;
  color: #000000;
  font-weight: bold;
  background-image: url(../202509/essay/img/essay48-fondo-papel.jpg);
  border-radius: 8px;
}
.wrapperprof-investigacion{
  margin: 1em;
  padding: 1em;
  color: #ffffff;
  font-weight: bold;
  border-radius: 8px;
  background-image: url(../202509/kenkyushitsu/img/lab48_fondo2.JPG);
 /* background-image: url(../202509/kenkyushitsu/img/lab48_papel3.jpg)
 background-color: #083824; */
}

.wrapperprof-fondo{
  margin: 1em;
  padding: 1em;
  color: #000000;
  font-weight: bold;
  background-image: url(../202509/spirit/img/spirit48-papel-fondo.jpg);
  border-radius: 8px;
}
.wrapperprof-fondo-spirit2{
  margin: 1em;
  padding: 1em;
  color: #ffffff;
  font-weight: bold;
  background-image: url(../202509/spirit/img/spirit48-spirit2-photo5.JPG);
  border-radius: 8px;
}


.wrapper1 {
  margin-bottom: 2em;
  padding: 1.5em 1em;
  background-color: #007aa5;
  color: #ffffff;
  border-radius: 8px;
}

.wrapper2 {
  margin-bottom: 2em;
  padding: 1.5em 1em;
  background-color: #e9d66b;
  color: #000000;
  border-radius: 8px;
}

.wrapper3 {
  margin: 2em 2em;
  padding: 1em 1em;
  background-color: #e9d66b;
  color: #000000;
  border-radius: 8px;
}

.contents .wrapper3 h2 {
  margin-top: 1em;
}

.wrapper4 {
  margin: 1.5em 1em;
  padding: 1em 0em;
  background-color: none;
  color: #000000;
  border-style: solid;
  border-color: coral;
  border-radius: 15px;
  position: relative;
  margin: 30px 10px 10px 30px;
}

.wrapper4-2 {
  margin: 1.5em 1em;
  padding: 1em 0em;
  background-color: none;
  color: #000000;
  border-style: solid;
  border-color: coral;
  border-radius: 15px;
  position: relative;
  margin: 20% 10px 10px 30px;
}

@media (max-width: 750px) {
  .wrapper4-2 {
    margin: 30px 10px 10px 20px;
  }
  .wrapper4-2 ul {
    margin-left: 3rem;
  }

  .wrapper4 {
    margin: 90px 10px 10px 20px;
  }

  .wrapper4 ul {
    margin-left: 3rem;
  }
}

.wrap4-title {
  color: #fff;
  background-color: coral;
  padding: 10px 15px;
  border-radius: 10px;
  display: inline-block;
  z-index: 0;
  position: absolute;
  top: -25px;
  left: -20px;
}

@media screen and (max-width: 750px) {
  .wrap4-title {
    padding: 10px 15px;
    border-radius: 10px;
    display: inline-block;
    z-index: 0;
    position: absolute;
    top: -40px;
    left: 0;
  }
}

.wrap-title {
  color: #fff;
  background-color: coral;
  padding: 10px 15px;
  border-radius: 10px;
  display: inline-block;
}

/*色付きドット*/

.red {
  color: red;
}

.usumurasaki {
  color: #b9bbda;
}

.orange {
  color: hsla(46, 86%, 69%, 1);
}

.orange2 {
  color: #ff4500;
}

.dodgerblue {
  color: #0f58a3;
}

.aka {
  color: #e60012;
}

.ao {
  color: #00a0e9;
}

.mido {
  color: #009944;
}

p.kon {
  color: #35599a;
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-weight: 600;
}

/*枠線*/
.border-1 {
  border: #fff solid 2.5px;
  border-radius: -8px;
}

.border-39 {
  border: #35599a solid 0.5px;
  margin: 2rem 1rem;
  padding: 1rem;
  position: relative;
}

mar.contents .wrappernomal h2 {
  margin-top: 0;
}

.contents .m-t20 {
  margin-top: 20px;
}

.contents .m-t30 {
  margin-top: 30px;
}

.contents .blue {
  color: #001f6f;
}

.hidari img,
.migi img {
  margin-bottom: 0.5rem !important;
}

.contents .max-w180 {
  max-width: 180px;
}

.contents .max-w280 {
  max-width: 280px;
}

.contents .max-w320 {
  max-width: 320px;
}

.contents .max-w400 {
  max-width: 400px;
}

.contents .max-w140 {
  max-width: 140px;
}

.contents .max-w80 {
  max-width: 80px;
}

.contents .max-w600 {
  max-width: 700px;
}



@media (max-width: 750px) {
  .contents .max-w280 {
    max-width: 750px;
  }

  .contents .max-w400 {
    max-width: 750px;
  }

  .contents .max-w320 {
    max-width: 750px;
  }

  .contents .max-w180 {
    max-width: 750px;
  }

  .contents .max-w140 {
    max-width: 750px;
  }

  .contents .max-w80 {
    max-width: 750px;
  }
}

.contents .t-a-center {
  text-align: center;
}

.contents .t-a-r {
  text-align: right;
}

.contents .m-l-auto {
  margin-left: auto;
}

.contents .m-r-auto {
  margin-right: auto;
}

@media (min-width: 450px) {
  .wrapper1 {
    padding: 2em;
  }

  .wrapper2 {
    padding: 2em;
  }
  .wrappernomal {
    padding: 2em 1em;
    margin: 2em;
  }
  .wrappernomal-div {
    padding: 2em 1em;
    margin: 2em;
  }
}

@media (min-width: 750px) {
  .contents h1 {
    margin: 0 30px 10px;
  }

  .contents h2 {
    margin: 0 3rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
  }
  .title h2 {
      margin-left: 0 !important;  /* Asegura que esté pegado a la izquierda */
      margin-right: 0 !important; /* Evita que se desplace a la derecha */
    }
  .contents h3 {
    margin: 0 30px 0.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .contents p {
    margin: 0 30px 1.5rem;
  }
  .contents ul,
  .contents ol {
    margin: 0 30px 1.5rem;
  }
  .contents table {
    margin: 0 20px 1.5rem;
  }
  .contents .date {
    margin: 10px 30px 15px;
  }

  .contents .category {
    margin: 0 30px 10px;
  }

  .contents .profile {
    margin: 0 30px 15px;
  }

  .shadow {
    -webkit-box-shadow: 5px 5px;
    box-shadow: 5px 5px;
    border: 1px solid #000;
    width: 100px;
    height: 50px;
  }
  .hidari {
    float: left;
    margin-right: 1em;
  }

  .migi {
    float: right;
    margin-left: 1em;
  }
  .clear {
    clear: both;
  }
  .contents .m-r0 p {
    margin-right: 0;
  }
  .contents .m-l0 p {
    margin-left: 0;
  }

  /*施設探訪関連*/
  .shisetsu02 .hidari,
  .contents .icon {
    margin-right: 10px;
  }
  .contents.shisetsu02 .wrappernomal p {
    margin: 0;
  }
  .shisetsu02 h3 {
    margin: 30px 30px 0;
  }
  .shisetsu02 .wrappernomal h3 {
    margin: 0;
  }

    .shisetsu  {
    font-size: 2.2rem;
    font-weight: 600;
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(60%, transparent),
      color-stop(50%, lavender)
    );
    background: -o-linear-gradient(transparent 60%, lavender 50%);
    background: linear-gradient(transparent 60%, lavender 50%);
    margin: initial;
    margin-top: 2rem;
    margin-bottom: 2rem;
  
    }   
    
  h2.shisetsu {
    font-size: 2.2rem;
    font-weight: 600;
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(60%, transparent),
      color-stop(50%, lavender)
    );
    background: -o-linear-gradient(transparent 60%, lavender 50%);
    background: linear-gradient(transparent 60%, lavender 50%);
    margin: initial;
    margin-top: 2rem;
    margin-bottom: 2rem;
    margin-left: 30px;
    margin-right: 30px;
    padding-left: 2rem;
  }
    
   h2.shisetsu-sup{
     background: linear-gradient(transparent 60%, lavender 50%);
     font-size: 2.2rem;
    }

    .circle_number{
           display: flex;
          align-items: center;
          text-align: center;
          justify-content: center;
          background: #0f58a3;
          border-radius: 50%;
          width: 60px;
          height: 60px;
          color: #fff;
          font-size: 20px;
        
        }
    
  .col-obj {
    margin-top: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .maru-39 img {
    width: 100px;
    max-width: 100px;
    position: absolute;
    top: -4rem;
    left: -2rem;
  }

  /*施設スライド*/

  .contents ul.aqua-1 {
    max-width: 80%;
  }

  ul .aqua-1 li {
    width: 100%;
    margin: 0 auto;
    -o-object-fit: cover;
    object-fit: cover;
  }

  /*まなび遊山関連*/
  .contents.manabi h3 {
    margin: 0px 30px 0;
  }
  .contents.manabi ul {
    margin: 0 30px 25px 30px;
  }
  .contents .row .columns02 p {
    margin: 0.5rem 20px 1rem 20px;
  }
  .contents .row .columns02 h3 {
    margin: 20px 20px 0;
    line-height: 2.3rem;
  }
}

h3.kakomi-39 {
  color: #fff !important;
  background-color: #35599a;
  padding: 0.5rem 1rem;
  width: 60%;
  border-radius: 25px;
  text-align: center;
}

.maru-img {
  padding: 1rem;
}

.maru-img img {
  border-radius: 50%;
}

@media screen and (max-width: 750px) {
  .border-39 h3 {
    margin-top: 6rem;
  }
  .maru-39 img {
    width: 75px;
    position: absolute;
    top: -4rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
}

@media (min-width: 950px) {
  .contents img.img-mini {
    max-width: 500px;
  }
}

/*ボタン関連*/
.btn-001 {
  color: #fff;
  background-color: #35599a;
  padding: 3px 10px;
  text-align: center;
  margin: 2em 0;
  -webkit-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}

.btn-001:hover {
  color: #35599a;
  background-color: #fff;
}

.btn-001 a {
  text-decoration: none;
  color: #fff;
  -webkit-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}

.btn-001 a:hover {
  color: #35599a;
}

/*page-r-nav*/

.r-nav {
  position: sticky;
  top: 10px;
}

.r-nav .white-box {
  background-color: #fff;
  padding: 15px;
  border: #e0e0e0 1px solid;
}

.r-nav .white-box p {
  margin-bottom: 3px;
}

.r-nav h3 {
  font-size: 14px;
  font-weight: bold;
  margin: 20px 0 0;
  padding: 8px;
  background-color: #001f6f;
  color: #fff;
  border: #e0e0e0 1px solid;
}

.r-nav h3.ichiran {
  margin-bottom: 20px;
}

.r-nav h4 {
  font-size: 14px;
  font-weight: bold;
  margin: 20px 0 5px;
}

.r-nav .m-t20 {
  margin-top: 20px;
}

.r-nav img {
  margin-right: 10px;
}

@media (max-width: 750px) {
  .r-nav h3 {
    margin: 20px 15px 0;
  }
  .r-nav h4 {
    margin: 20px 15px 5px;
  }
  .r-nav .white-box,
  .r-nav .m-t20 {
    margin-left: 15px;
    margin-right: 15px;
  }
  .r-nav .m-t20 {
    text-align: center;
  }
  .r-nav .m-t20 a {
    display: inline-block;
    margin: 0 6px;
  }
  .r-nav .m-t20 img {
    margin-right: 0;
  }
}

/*video*/
video {
  width: 100%;
}

/*gallery*/

.gallery {
  background-color: #001f6f;
}

.gallery video {
  vertical-align: middle;
  line-height: 1em;
  font-size: 0;
}

.gallery h1 {
  font-size: 16px;
  color: #fff;
  margin: 20px;
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
}

.gallery h1 .thin {
  font-weight: normal;
}

.gallery h2 {
  font-size: 14px;
  color: #fff;
  margin: 20px 0 0px 20px;
  font-weight: bold;
}

.gallery p {
  color: #fff;
  font-size: 14px;
  margin: 5px 20px;
}

.gallery .profile {
  margin: 0 20px 10px 20px;
  font-size: 13px;
}

.gallery .honbun {
  margin: 0 20px 15px 20px;
}

@media (min-width: 750px) {
  .gallery h1 {
    display: none;
  }
}

@media (min-width: 1080px) {
  .gallery h1 {
    display: block;
    font-size: 20px;
  }
}

@media (min-width: 750px) {
  .gallery h2 {
    display: none;
  }
  .gallery p {
    margin-top: 10px;
  }
}

@media (min-width: 865px) {
  .gallery p {
    margin-top: 25px;
  }
}

@media (min-width: 975px) {
  .gallery h2 {
    display: block;
    font-size: 16px;
  }
  .gallery p {
    margin-top: 5px;
  }
}

/*ギャラリーページ画像キャプション*/

.gal-cap p {
  text-align: left !important;
  font-size: 1.2rem !important;
  padding: 0 1.5em;
}

/*gallery-page*/

.gallery-page {
  text-align: center;
  background: #fff;
  border: #e0e0e0 1px solid;
  border-top: none;
  padding-bottom: 40px;
}

.gallery-page video {
  vertical-align: top;
}

.gallery-page h2 {
  font-size: 16px;
  margin: 30px 0 10px 0;
  color: #001f6f;
  font-weight: bold;
}

.gallery-page h3 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
  margin-left: auto;
  margin-right: auto;
  color: #333;
}

.gallery-page p {
  font-size: 14px;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
  max-width: 480px;
}

.gallery-page p.comment {
  text-align: justify;
}

.gallery-page .l-h18 {
  line-height: 1.8em;
}

.gallery-page .f-s16 {
  font-size: 16px;
}

.gallery-page .m-t30 {
  margin-top: 30px;
}

.gallery-page .bg-yajirushi {
  background: url(../gallery/img/yajirushi.png) center no-repeat;
}

.gallery-page .bg-yajirushi2 {
  background-position: center -120pt;
}

.gallery-page p.max-w-auto {
  max-width: 100%;
}

.gallery-page img {
  max-width: 100%;
}

@media (max-width: 850px) {
  .gallery-page h2 {
    font-size: 18px;
    line-height: 32px;
    font-weight: normal;
    margin: 30px 0 10px 0;
  }

  .gallery-page p {
    font-size: 14px;
    margin-bottom: 15px;
    padding: 0 1em !important;
  }
}

.player {
  margin: 3rem 0;
  padding: 1rem;
  display: inline-block;
  /*background-color: #fff;
    border: gray solid 2px;
    border-radius: 5px;*/
}

/*同窓会ページ関連*/

h3.info-topic {
  color: #fff;
  background-color: #001f6f;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  display: inline-block;
}

p.mid-info {
  font-size: 1.2rem;
  font-weight: 400;
  margin-left: initial !important;
  margin-left: 3rem !important;
}

/*Footer*/

footer {
  padding: 30px 0 0;
}

footer strong {
  color: #666;
}

footer a.kouki {
  padding: 10px;
  background-color: #001f6f;
  color: #fff;
  text-decoration: none;
  margin-left: 1rem;
}

footer a.kouki:hover {
  background-color: #1c2c54;
  text-decoration: underline;
}

footer p {
  margin-bottom: 20px;
  font-size: 13px;
  text-align: center;
}

.icon {
  width: 40px;
}

.note {
  color: red;
  position: relative;
}

.note:hover::after {
  color: black;
  display: inline-block;
  position: absolute;
  top: 1.3em;
  left: -1em;
  background: #e6e8fa;
  font-size: 90%;
  content: attr(name);
  z-index: 2;
  border: 2px solid #b0c4de;
  border-radius: 5px;
  width: 15em;
  padding: 0.5em;
}

@media (max-width: 750px) {
  .note:hover:after {
    position: fixed;
    left: 50%;
    margin-left: -7.5em;
    top: 50%;
  }
}

div.history,
div.history2,
div.history3,
div.map {
  overflow-x: scroll;
  width: 100%;
}

p.map img {
  min-width: 737px;
  max-width: 737px;
  height: auto;
}

img.history,
h2.history {
  width: 1300px !important;
  max-width: 1300px !important;
  text-align: right;
}

img.history2,
h2.history2 {
  width: 1800px !important;
  max-width: 1800px !important;
  text-align: right;
}

img.history3,
h2.history3 {
  width: 800px !important;
  max-width: 800px !important;
  text-align: right;
}

.contents.manabi h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 0px 15px 0;
  padding-top: 30px;
  color: #555;
}

.contents.manabi h2 {
  margin-top: 10px;
  padding-top: 30px;
}

.contents.manabi hr {
  margin-bottom: 10px;
}

.contents.manabi blockquote {
  background-color: #f0f0f0;
  padding: 15px 20px;
}

.contents.manabi blockquote p {
  margin: 0;
}

.contents.manabi ul {
  list-style: none;
  margin: 0 15px 25px 15px;
}

img[usemap] {
  max-width: 100%;
  height: auto;
}

.contents .m-b60 {
  margin-bottom: 60px;
}

/**/

.contents.ken02 h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 0px 20px 0;
  padding-top: 15px;
  color: orangered;
}

.clear {
  clear: both;
}

.contents.shisetsu02 h3 {
  font-size: 16px;
  font-weight: bold;
  color: dodgerblue;
  margin: 30px 15px 0;
}

.shisetsu02 .wrappernomal h3 {
  margin: 0 15px;
}

.shisetsu02 .hidari,
.cf .hidari {
  float: left;
}

.contents.shisetsu02 .wrappernomal p {
  margin: 0 15px;
}

.contents.shisetsu02 .wrappernomal .hidari {
  margin-right: 10px;
}

.point {
  color: rebeccapurple;
  font-size: 16px;
  display: block;
  margin-bottom: 15px;
}

.cf:before,
.cf:after {
  content: " ";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
}

.wrappernomal-div {
  margin: 1.5em 1em;
  padding: 2em 0em;
  background-color: none;
  color: #000000;
  border-style: solid;
  border-color: #e6e8fa;
  border-radius: 8px;
}

.contents .wrappernomal-div p {
  margin-left: 0;
  margin-right: 0;
}

/*トップページ 全幅画像使用時*/

.jumbo h1 {
  margin: 0px;
}

.jumbo img {
  width: 100%;
}

/*ポップアップモダール 配置用
.popupModal1 {
	height: 10px;
}

label[for=pop11]  {
	color: dodgerblue;
	margin-left: 2em;
	padding-top: 5px;
}

/*modaaaaal 用*/

.modaal {
  display: none;
}

/* Modal content */
.modal-inner {
  position: relative;
  margin: 60px 5% 5%;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 1);
  z-index: 10;
}
.modal-inner h2 {
  border-bottom: 1px solid;
  padding-bottom: 20px;
  text-align: center;
}

.modaal-wrapper img {
  max-width: 100%;
}

.modaal-wrapper.columns02 {
  margin-right: 20px;
}

/*モダール内テキスト*/

p.modaal-p {
  font-size: 1.3rem;
  color: #000;
  text-align: center;
  margin: 0 10px 5px 10px;
}

p.modaal-p img {
  text-align: center;
}

table {
  border: none;
}

/* digest table*/

table.digest {
  margin: 15px auto;
  border: solid 1px #ccc;
}
table.digest th {
  white-space: nowrap;
  background: #ac9839;
  border: solid 1px #ccc;
  color: #fff;
  padding: 10px !important;
}
table.digest td {
  border: solid 1px #ac9839;
  padding: 10px !important;
}

@media screen and (max-width: 640px) {
  .last td:last-child {
    border-bottom: solid 1px #ac9839;
    width: 100%;
  }
  table.digest {
    width: 80%;
    border: none;
  }
  table.digest th,
  table.digest td {
    border-bottom: none;
    display: block;
    width: 100%;
  }
}

/*傍点*/

.bouten {
  -webkit-text-emphasis: sesame;
  text-emphasis: sesame;
}

/*略年表*/

.t-left {
  font-size: 0.8rem;
  font-weight: 400;
  white-space: nowrap;
}

/*枠線をずらす*/

.waku-zure {
  position: relative;
}

.waku-zure p {
  background-color: #de7405;
  color: #fff;
  width: 20%;
  height: 25px;
  margin: 2em 20px;
  padding: 5px 15px;
  border-radius: 5px;
}

.waku-zure p.zure-waku {
  width: 19.5%;
  height: 22px;
  border: #000 solid 2px;
  background: none;
  z-index: 1;
  position: absolute;
  top: -32px;
  left: -6px;
}

@media screen and (max-width: 750px) {
  .waku-zure p {
    width: 50%;
    height: 25px;
    margin: 2em 20px;
    padding: 5px 15px;
    border-radius: 5px;
  }
  .waku-zure p.zure-waku {
    width: 49.5%;
    height: 22px;
    z-index: 1;
    position: absolute;
    top: -32px;
    left: -6px;
  }
}

/*おもしろ学問 黒板--*/
.row.b-bord {
  width: 100%;
  background-color: #265f5d;
  margin: 2rem 0;
  padding: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: #d2691e solid 10px;
}

.b-bord {
  position: relative;
}

.hamidashi-img {
  position: absolute;
  left: -50px;
  bottom: -100px;
}

.w-bord {
  background-color: #ede9da;
  padding: 1.5rem;
  -webkit-box-shadow: 2px 2px 5px #000;
  box-shadow: 2px 2px 5px #000;
}

.w-bord p {
  margin: 0 0 1rem 0;
}

.w-bord img {
  width: 95%;
  margin: 0 0 0 1rem;
}

.row-in-p {
  margin: initial;
  margin: 1em 0 1em 2.2em !important;
}

p.clip {
  font-size: 1.2rem;
}

.pc-padding-one {
  padding: 1em;
}

@media screen and (max-width: 750px) {
  .row-in-p {
    margin: initial;
    margin: 1em !important;
  }

  .u-850 {
    width: 63%;
  }

  .w-bord p {
    margin: 1rem 0 1rem 0;
  }

  .pc-padding-one {
    padding: 0;
  }
}

/*供述リスト*/
.testimony {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 2rem;
}

.testimony p.aka-obi {
  display: block;
  background-color: red;
  text-align: center;
  padding: 0.5rem 1rem;
  margin: 0 1rem 1rem 1rem !important;
  /*margin-bottom: 1rem!important;*/
  color: #fff;
}

.testimony p.und-arrow {
  display: block;
  text-align: center;
  width: 3rem;
  height: 3rem;
  background-color: initial;
  margin: 0 1rem 1rem 1rem !important;
}

.testimony p {
  display: block;
  background-color: #fff;
  padding: 0.5rem 1rem;
  margin: 0 1rem 1rem 1rem !important;
  /*margin-bottom: 1rem!important;*/
  color: #000;
}

/*おもしろ学問 わく*/
.toi-waku {
  background-color: #fff;
  border: #00a0e9 solid 3px;
  border-radius: 10px;
  width: 75%;
  margin: 0 auto;
  margin-top: 5rem;
  margin-bottom: 3rem;
  padding: 2.5rem;
  position: relative;
}

.toi-waku .toi {
  display: inline-block;
  color: #000;
  background-color: gold;
  padding: 0.5rem 1.5rem;
  position: absolute;
  top: -20%;
  left: -5%;
}

.toi-waku p {
  margin: initial !important;
}

/*おもしろ学問 クイズ形式--*/
.quiz {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

/*まる文字 ？*/
.maru-q {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  line-height: 5rem;
  text-align: center;
  background: yellow;
  font-size: 2.5rem;
  font-weight: 600;
  padding-left: 0.1rem;
  color: #265f5d;
  position: absolute;
  top: 50%;
  left: 12%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  aspect-ratio: 1/1;
}

.quiz-wrap {
  width: 70%;
  border: orange solid 3px;
  border-radius: 25px;
  padding: 1rem 2rem;
}

.quiz-wrap p {
  font-size: 1.8rem;
  font-weight: 600;
  color: orange;
  text-align: center;
  margin: initial;
  margin-bottom: 2rem;
}

.chioce-wrap {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-left: 3rem;
}
.choices {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.choices p {
  margin: initial;
  margin-left: 1rem;
  font-size: 1.6rem;
  color: #000;
  text-align: left;
}

/*まる文字 大*/
.maru-moji {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  line-height: 2.7rem;
  text-align: center;
  background: #265f5d;
  font-size: 1.6rem;
  padding-left: 0.1rem;
  color: #fff;
  aspect-ratio: 1/1;
}

/*まる文字 小*/
.maru-sho {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  flex-flow: column;
  vertical-align: top;
  height: 15px;
  width: 15px;
  line-height: 3rem;
  text-align: center;
  background: #265f5d;
  font-size: 1rem;
  margin-top: 0.3rem;
  color: #fff;
}

/*まる文字 maru*/

.maru-moji-en {
display: inline-block;
 background-color:rgb(52, 170, 243);
  border-radius: 50%;
  width: 15px;
  height: 15px;
  color: #fff;
  font-size: 15px;
  text-align: center;
  line-height: 15px;
}


/*学生の発言*/
.stu-voice {
  font-weight: 600;
  color: #265f5d;
}

/*黒板内*/

.c-back {
  margin: 1rem;
  padding: 1rem;
  background-color: #ede9da;
}

/*一番目*/
.b-one {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.b-one-l {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 50%;
}

.b-one-r {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
}

.l-l img,
.r-r img {
  width: 100%;
  max-width: 18rem !important;
}

.l-l span,
.r-r span {
  color: #fff;
}

.b-one-top {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #ede9da;
}

.b-one-top p {
  margin: 1.5rem;
}

.b-one-top img {
  width: 100%;
  max-width: 18rem !important;
}

.b-one-bottom p {
  color: #fff;
}

.w {
  color: #fff;
}

.bb {
  color: #000;
  font-weight: 600;
}

/*二番目*/

.b-two {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.b-two-top {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.two-top-l,
.two-top-r {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
}

.two-top-l img,
.two-top-r img {
  width: 100%;
  max-width: 280px !important;
}

/*二番目 下*/
.b-two-bot {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.two-bot-l {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.two-l-l,
.two-l-r {
  width: 50%;
}

.two-l-l img,
.two-l-r img {
  width: 100%;
  max-width: 18rem !important;
}

.two-bot-r {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 1.5rem;
  background-color: #ede9da;
}

.two-bot-r p {
  color: rgb(71, 36, 36);
  margin: initial;
  margin-top: 1rem;
}

.two-bot-r img {
  width: 100%;
  max-width: 28rem !important;
}

/*三番目*/
.b-three {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #ede9da;
}

.three-l {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  gap: 1rem;
}

.three-l img {
  width: 100%;
  max-width: 28rem !important;
}

.three-r {
  width: 50%;
}

.three-r p {
  margin: initial;
  padding: 1rem;
}

/*5番目*/
.b-five {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.five-l {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
}

.five-r {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  background-color: #ede9da;
  padding: 1rem;
}

.five-l img {
  width: 100%;
  max-width: 32rem !important;
}

.five-r img {
  width: 100%;
  max-width: 28rem !important;
}

/*6番目*/
.b-six {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.six-l {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60%;
}

.six-r {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40%;
}

.six-l p {
  margin: initial;
}

.six-l img {
  width: 100%;
  max-width: 32rem !important;
}

.six-r img {
  width: 100%;
  max-width: 28rem !important;
}

@media screen and (max-width: 980px) {
  .b-bord-inner.b-one {
    flex-direction: column;
    gap: 1rem;
  }
  .b-one-l {
    flex-direction: row;
    width: 100%;
  }
  .b-one-r {
    width: 100%;
  }

  /*2番目*/

  .b-two {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }

  .b-two-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }

  .two-top-l,
  .two-top-r {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }

  .two-top-l img,
  .two-top-r img {
    width: 100%;
    max-width: 280px !important;
  }

  /*二番目 下*/
  .b-two-bot {
    display: flex;
    flex-direction: column;
  }

  .two-l-l,
  .two-l-r {
    width: 50%;
  }

  .two-l-l img,
  .two-l-r img {
    width: 100%;
    max-width: 18rem !important;
  }

  .two-bot-r {
    width: 90%;
  }

  /*3番目*/
  .b-three {
    display: flex;
    flex-direction: column;
  }

  .three-l {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .three-l img {
    max-width: 36rem !important;
  }

  .three-r {
    width: 90%;
  }

  /*5番目*/
  .b-five {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .five-l {
    width: 100%;
  }

  .five-r {
    display: flex;
    flex-direction: column;
    width: 90%;
  }

  .five-l img {
    width: 100%;
    max-width: 32rem !important;
  }

  .five-r img {
    width: 100%;
    max-width: 28rem !important;
  }

  /*6番目*/
  .b-six {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .six-l {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .six-r {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .six-l img {
    width: 100%;
    max-width: 32rem !important;
  }

  .six-r img {
    width: 100%;
    max-width: 32rem !important;
  }
}

/*スマホ時非表示*/
@media screen and (max-width: 750px) {
  .sp-hide {
    display: none;
  }
}

/*著作紹介*/

/*.row.work {
	margin: 15px;
}*/

.works {
  background-color: #ffffe0;
  border-radius: 8px;
  -webkit-box-shadow: 2px 1px 2px 1px #f5deb3 inset;
  box-shadow: 2px 1px 2px 1px #f5deb3 inset;
  display: inline-block;
  margin: 15px;
}

.columns02.work-inner p {
  padding: 5px;
}

p.novel {
  font-family: "Sawarabi Mincho", sans-serif;
  text-align: justify;
}

/*h3 下線*/

.ul-h3 {
  padding: 0;
  font-weight: 700;
  border-bottom: #000 solid 2px;
}

/*テキストカラー*/

.col-g {
  color: #006239;
}

/*游明朝指定*/

.waka-min {
  font-family: "YuMincho", "Yu Mincho", "游明朝体";
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 2.8rem;
}

.waka-ind {
  padding-left: 1em;
  /*text-indent: -1em;*/
}

/*基金ページ関連*/

.obi-prim {
  color: #fff;
  background-color: #001f6f;
  padding: 5px;
  margin-bottom: 2rem;
  margin-top: 2rem;
  text-align: center;
  font-weight: 600;
}

.step-arrow {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 8rem;
  /*border-bottom: #000 solid 0.5px;*/
}

.step-arrow:before {
  position: absolute;
  content: url(../202109/info/img/arrow-down.svg);
  display: inline-block;
  bottom: -6rem;
}

.step-arrow.arrow-none:before {
  position: absolute;
  content: "";
  display: inline-block;
  bottom: -6rem;
}

.step-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 80%;
}

.step-inner p {
  margin: initial;
  margin-bottom: 1.5rem;
  /*text-align: center;*/
  color: #001f6f;
  font-size: 1.5rem;
  font-weight: 600;
}

p.step-gray {
  color: #424242;
}

.step-inner ul {
  margin: initial;
  margin-left: 3rem;
}

.step-inner ul li {
  list-style-type: disc;
}

.qr-flex {
  display: flex;
}

/*------------------- ねほはほ画像　-----------------*/

/*ロゴ*/
.neho-logo {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.neho-logo img {
  width: 100%;
  max-width: 8rem !important;
}

.pics-midashi {
  border: #183c17 solid 3px;
  background-color: #fff;
  padding: 1.5rem;
  margin-bottom: 3rem;
}

.pics-midashi h2 {
  font-size: 2.3rem;
  font-weight: 600;
  color: #183c17;
  margin: initial;
  text-align: center;
}

.pics-midashi h2 span {
  font-size: 1.8rem;
}

/*pic section*/
.pic-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top: #183c17 solid 5px;
  /*border-bottom: rgb(24, 60, 23) solid 5px;*/
  padding: 2rem 0;
  margin-bottom: 3rem;
}

.pic-sec-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*align-items: center;*/
  margin-bottom: 2rem;
  padding: 0 1.5rem;
}

.pic-sec-wrap h4 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #5e1f23;
  text-align: center;
}

.pic-sec-wrap p {
  margin-bottom: 2rem;
}

.pics-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

.single-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 65%;
}

.single-side img {
  width: 100%;
  max-width: 100%;
  margin: initial;
}

.col-pics {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 35%;
}

.col-pics img {
  width: 100%;
  max-width: 18rem;
  margin: initial;
}

/*一枚物*/
.single-pic {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.single-pic img {
  width: 80%;
  /*max-width: 68rem!important;*/
}

/*横並び*/
.row-pics {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.l-pics,
.r-pics {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.l-pics img,
.r-pics img {
  width: 100%;
  /*max-width: 28rem!important;*/
  margin: initial;
}

.l-pics p,
.r-pics p {
  width: 100%;
  /*max-width: 28rem!important;*/
  padding: 0 0.5rem;
  margin: initial;
}

.l-pics p.caption,
.r-pics p.caption {
  margin: initial;
  margin-top: 0.5rem;
}

@media screen and (max-width: 900px) {
  .pics-wrap {
    flex-direction: column;
  }
  .single-side {
    width: 100%;
  }
  .col-pics {
    width: 100%;
  }

  .row-pics {
    flex-direction: column;
    gap: 2rem;
  }

  .l-pics,
  .r-pics {
    width: 100%;
  }
}

/*flex-wrap 仕様*/
.wrap-pics {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.w-pic {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 23rem;
}

@media screen and (max-width: 780px) {
  .w-pic {
    width: 80%;
  }
}

/*かこい枠*/

.kakoi {
  border: rgb(24, 60, 23) solid 2px;
  border-radius: 15px;
  padding: 1.5rem;
  margin: 2rem 1rem;
}

/*沿革史*/
.enkaku {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(../202203/kenkyushitsu/img/sim07.jpg);
  margin: 2rem;
}

.enkaku-wrap {
  width: 100%;
  padding: 3rem 1rem;
}

.enkaku-wrap .pic-sec-wrap {
  padding: 0 3rem;
}

.enkaku-midashi {
  background-color: #5e1f23;
  display: block;
  width: 100%;
  margin-bottom: 3rem;
}

.enkaku-midashi h4 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: initial;
  padding: 1rem;
}

.r-pic {
  width: 100%;
  max-width: 28rem !important;
}

/*ねほはほ ドアをあけたら、、*/
.open-door {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  margin: initial;
  padding: 3rem 2rem;
  background-color: #f5deb3;
}

h2.od-h2 {
  font-size: 24px;
  color: #375730;
  font-family: "Kaisei Opti", serif;
}

.door-logo img {
  display: block;
}

ul.od-cap {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 3rem;
}

ul.od-cap li {
  margin-bottom: 0.5rem;
}

/* 枠内 文字*/
.od-waku {
  width: 100%;
  box-sizing: border-box;
  border: #732d3e solid 3px;
  padding: 3rem 2rem;
  position: relative;
}

/*枠に画像をのせる*/
.od-waku .with-img {
  position: absolute;
  top: -6rem;
  left: 30%;
  transform: translate(0, -1rem);
  -webkit-transform: translate(0, -1rem);
  z-index: 10;
}

.od-waku .with-img img {
  width: 100%;
  max-width: 160px;
  aspect-ratio: initial !important;
}

.od-waku .with-img1 {
  position: absolute;
  top: -7rem;
  transform: translate(0, -1rem);
  -webkit-transform: translate(0, -1rem);
  z-index: 10;
}

.od-waku .with-img1 img {
  width: 100%;
  max-width: 160px;
  aspect-ratio: initial !important;
}

.od-waku h3 {
  font-size: 16px !important;
  margin: initial !important;
  padding: initial !important;
  margin-bottom: 2rem !important;
  color: #732d3e !important;
}

.od-waku p {
  font-size: 14px !important;
  margin: initial !important;
  padding: initial !important;
}

/*ドアを開けたら、、、画像横並び*/
.card-duo {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-bottom: 5rem;
}

.card-duo .duo-parts {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
}

.card-duo .duo-parts img {
  width: 90%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

@media screen and (max-width: 1150px) {
  .card-duo {
    flex-direction: column;
  }

  .card-duo .duo-parts {
    width: 100%;
  }

  .od-waku .with-img {
    top: -6rem;
    left: 40%;
    transform: translate(0, -1rem);
    -webkit-transform: translate(0, -1rem);
  }
}

@media screen and (max-width: 750px) {
  .od-waku .with-img {
    top: -6rem;
    left: 35%;
    transform: translate(0, -1rem);
    -webkit-transform: translate(0, -1rem);
  }
}

/*施設探訪（41より）*/
.sketch {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*align-items: center;*/
  background-color: rgb(205, 230, 255);
  padding: 2rem;
  margin-bottom: 5rem;
}

.sketch-wrap {
  margin-bottom: 3rem;
}

.sketch-title {
  font-size: 1.8rem;
  font-weight: 600;
  border-left: #33518c solid 1.8rem;
  padding-left: 1rem;
}

h3.sketch-title {
  margin: initial !important;
  margin-bottom: 2rem !important;
  color: #000 !important;
}

.m-initial {
  margin: initial !important;
}

.wide-img {
  width: 100%;
  margin-bottom: 2rem;
}

/*青枠キャプション*/
.ao-waku {
  background-color: #fff;
  border: #497ce4 solid 2px;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.ao-waku h5 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #000;
  text-align: center;
  margin: initial;
  margin-bottom: 1rem;
}

.ao-waku p {
  font-size: 1.2rem;
  color: #000;
  width: 100%;
  margin-bottom: 1rem;
  padding: initial;
}

.floar-no {
  background-color: #33518c;
  padding: 0.5rem;
  display: inline-block;
  width: 100%;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.floar-no p {
  color: #fff;
  text-align: center;
  width: 100%;
}

/*左にラインの入った枠*/
.side-line-blue {
  margin: 0 2rem;
  padding: 2rem;
  border-left: #33518c solid 10px;
  border-image: linear-gradient(
    0deg,
    rgba(161, 184, 231, 1) 7%,
    rgba(51, 81, 140, 1) 100%
  );
  border-image-slice: 1;
  background-color: #ede9da;
  margin-bottom: 5rem;
}

.slb-wrap h3 {
  color: #33518c !important;
}

p.blue-text {
  font-weight: 600;
  color: #497ce4;
}

/*立体的な囲み*/
.solid-border {
  border-radius: 10px;
  background-color: #fff;
  border: 5px ridge #497ce4;
  margin: 2rem;
  padding-top: 5rem;
  position: relative;
}

.s-b-title {
  background-color: #fff;
  border: 5px double #497ce4;
  display: inline-block;
  padding: 0.5rem 3rem;
  position: absolute;
  top: -2.4rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.s-b-wrap h3 {
  margin-left: 3rem !important;
  margin-bottom: 2rem !important;
}

/*巻頭座談 (41号より)*/
.prof-pic {
  display: flex;
  flex-direction: column;
  margin: 1.5rem 3rem;
}

.prof-name {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 2rem;
}

.prof-name span {
  font-size: 1.2rem;
  font-weight: 500;
}

/*アンダーラインカラー*/
.b-red {
  border-bottom: red solid 2px;
}

.b-blue {
  border-bottom: #0f58a3 solid 2px;
}

.b-orange {
  border-bottom: hsla(46, 86%, 69%, 1) solid 2px;
}

.b-green {
  border-bottom: #009944 solid 2px;
}

.b-purpel {
  border-bottom: #CAA4D4 solid 2px;
}

p.prof-disc {
  font-size: 1.2rem;
  margin: initial;
}

/*アスペクト比固定*/

.aspect-one img {
  aspect-ratio: 3/2;
  object-fit: cover;
}

.aspect-two img {
  aspect-ratio: 16/9;
  object-fit: cover;
}

/*下部のマージン*/
.mar-b30 {
  margin-bottom: 3rem !important;
}

.mar-b50 {
  margin-bottom: 5rem !important;
}

/*支援制度関連*/
.support-pink {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /*background-color: #fff0f5;*/
  background: linear-gradient(
    135deg,
    rgba(254, 244, 247, 1) 17%,
    rgba(251, 249, 224, 1) 55%,
    rgba(246, 215, 232, 1) 100%
  );
  border-top: #33518c solid 15px;
  border-image: linear-gradient(90deg, #ff80c4 5%, #ff1493 100%);
  border-image-slice: 1;
  margin-bottom: 5rem;
  padding: 2rem;
}

.support-blue{
    width: 85%;
    margin: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    background: rgb(217,232,250);
    border-radius: 20px;
    
}


.sup-b-wrap h2{
    font-size: 2.1rem;
  font-weight: 600;
  text-align: center;
  color: #0f58a3;
  background-color: #fff;
  padding: 1rem 2rem;
  border-top: #0f58a3 solid 3px;
  border-bottom: #0f58a3 solid 3px;
  margin-bottom: 4rem;
  border-radius: 30px;
}

.sup-b-wrap h3{
 font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  color:#0f58a3;
    
}

.sup-b-wrap hr{
 border: dashed #b3cff0;
    
}


.sup-p-wrap h2 {
  font-size: 2.1rem;
  font-weight: 600;
  text-align: center;
  color: #eb6ea0;
  background-color: #fff;
  padding: 1rem 2rem;
  border-top: #eb6ea0 solid 3px;
  border-bottom: #eb6ea0 solid 3px;
  margin-bottom: 5rem;
}

.sup-b-wrap



.sup-cont h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #eb6ea0;
  margin-bottom: 1rem;
}

.sup-cont h3 a {
  font-size: 1.8rem;
  font-weight: 600;
  color: #eb6ea0;
  text-decoration: none;
  transition: all ease-in-out 0.5s;
}

.sup-cont h3 a:hover {
  color: #59c8fb;
}

p.sup-cont-disc {
  font-weight: 600;
  line-height: 2rem;
  color: #404040;
  margin-top: initial;
}

p.intro-sys-disc {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2rem;
  color: #404040;
  margin: initial;
}

.intro-sys li {
  margin-bottom: 2rem;
}

.intro-sys h5 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.5rem;
}

/*触発クイズ*/
.q-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h3.q-sp {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  background-color: #001f6f;
  padding: 0.5rem 4rem;
  border-radius: 50px;
  margin: 3rem 2rem;
}

h2.q-sp2 {
  font-size: 3.5rem;
  font-weight: 600;
  border-top: #c1ab05 double 5px;
  border-bottom: #c1ab05 double 5px;
  padding: 1rem 3rem;
  margin: initial;
  margin-bottom: 5rem;
}

h2.q-sp2 span {
  font-size: 2rem;
  margin-right: 2rem;
}

.q-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    180deg,
    rgba(251, 249, 224, 1) 34%,
    rgba(215, 246, 246, 1) 100%
  );
  border-radius: 10px;
  margin: 2rem;
  padding: 2rem;
  width: 100%;
  max-width: 72rem !important;
  filter: drop-shadow(0 0px 3px rgba(0, 0, 0, 0.9));
}

.q-area {
  font-size: 2rem;
  font-weight: 600;
  color: #0088ff;
  margin: 3rem 0;
}

.q-btn-area {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 3rem;
  margin: 10rem 0;
}

.q-btn {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  background-color: #001f6f;
  padding: 1rem 2.5rem;
  border-radius: 10px;
  transition: all ease-in-out 0.5s;
  display: inline-block;
  filter: drop-shadow(0 0px 3px rgba(0, 0, 0, 0.9));
}

.q-btn:hover {
  background-color: #0088ff;
}

.q-list {
  margin-bottom: 5rem;
}

.q-list ol {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.q-list ol li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2.1rem;
  font-weight: 600;
  color: #001f6f;
  margin: initial;
}

.new-g-cont {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 2rem;
  gap: 2rem;
  padding: 2rem;
}

.new-g-cont p {
  margin: initial;
  text-align: left;
}

.new-g-cont img {
  width: 100%;
  max-width: 42rem;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.com-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  background-color: #fbf9e0;
  border: #001f6f solid 3px;
  border-radius: 10px;
  padding: 2rem;
  margin: 0 auto;
  width: 65%;
}

.com-box img {
  width: 100%;
  max-width: 15rem;
  border-radius: 10px;
}

.com-box p {
  margin: initial;
  text-align: left;
}

@media (max-width: 540px) {
  h2.q-sp2 {
    font-size: 2.5rem;
  }
}

.gal-q-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem;
  margin-bottom: 5rem;
  border-bottom: #c1ab05 solid 3px;
  width: 85%;
}
.q-img {
  margin-bottom: 5rem;
}

.q-img img {
  width: 100%;
  max-width: 48rem !important;
}

/*クイズ番号*/

.q-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.q-title h3 {
  font-size: 2.1rem;
  color: #001f6f;
  margin: initial;
}

.gal-maru-q {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  line-height: 5rem;
  text-align: center;
  background: #c1ab05;
  font-size: 2.1rem;
  font-weight: 600;
  padding-left: 0.1rem;
  color: #fff;
  aspect-ratio: 1/1;
}

.toggle-btn {
  background-color: #001f6f;
  padding: 0.5rem 2.5rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  border-radius: 10px;
  margin-bottom: 5rem;
  transition: all ease-in-out 0.5s;
}

.toggle-btn:hover {
  background-color: #0088ff;
}

.answer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0rem 2rem;
  width: 90%;
  border: #c1ab05 solid 2px;
  border-top: #c1ab05 solid 5px;
  border-radius: 0 0 10px 10px;
  background-color: #ffffe0;
  visibility: hidden;
  opacity: 0;
  height: 0;
  transition: all ease-in-out 0.5s;
}

.answer.answer-open {
  visibility: visible;
  opacity: 1;
  height: auto;
  padding: 2rem 2rem;
}

.answer-box {
  text-align: left;
}

.answer-box p {
  font-size: 1.6rem;
  font-weight: 600;
  color: #808080;
}

/*アコーディオン css*/
.acd-check {
  display: none !important;
}

.acd-label {
  background-color: #001f6f;
  padding: 0.5rem 2.5rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  border-radius: 10px;
  margin-bottom: 5rem;
  transition: all ease-in-out 0.5s;
}

.acd-label:hover {
  background-color: #0088ff;
}

.acd-content {
  border: 1px solid #333;
  display: block;
  height: 0;
  opacity: 0;
  padding: 0 10px;
  transition: 0.5s;
  visibility: hidden;
}

.acd-check:checked + .acd-label + .answer {
  visibility: visible;
  opacity: 1;
  height: auto;
  padding: 2rem 2rem;
}

/*margin-bottom*/
.m-b4 {
  margin-bottom: 4rem !important;
}

.flex-respo{
margin: 1em 2em 1em 2em;
    display: flex;
}

@media screen and (max-width: 400px) {
  .flex-respo {
    display: block;
  }
}
