@charset "UTF-8";
/* 1) ボックスサイズを安定化 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2) 余白の初期化 */
* {
  margin: 0;
}

/* 3) ベース */
html,
body {
  height: 100%;
  font-size: 18px;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: #fff;
  color: #397f9e;
}

/* 4) メディア要素の扱い */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 5) フォーム要素はフォントを継承 */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* 6) ボタンのデフォルト装飾を最小化 */
button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

/* 7) アンカーの初期化（必要に応じて装飾を付与） */
a {
  color: inherit;
  text-decoration: none;
  display: block;
}

/* 8) リストの余白・マーカーを初期化 */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* 9) テーブルの初期化 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

/* 10) 見出しなどブロック要素の連続余白を抑制（必要なら上書き） */
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
main > div.about_logos{
  margin-top: 0;
}
/* アニメーション */
@keyframes scroll0 {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    transform: translateX(-300%);
    opacity: 0;
  }
}
@keyframes scroll1 {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    transform: translateX(-150%);
    opacity: 0;
  }
}
@keyframes scroll1s {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    transform: translateX(-230%);
    opacity: 0;
  }
}
@keyframes scroll2 {
  0% {
    transform: translateX(-0%);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    transform: translateX(-170%);
    opacity: 0;
  }
}
@keyframes scroll2s {
  0% {
    transform: translateX(0%);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    transform: translateX(-280%);
    opacity: 0;
  }
}
@keyframes spnav1 {
  0% {
    display: block;
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes spnav2 {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    display: none;
  }
}
.fix_link {
  width: 250px;
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 99;
}

@media screen and (max-width: 1600px) {
  .fix_link {
    width: 180px;
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 99;
  }
}

@media screen and (max-width: 700px) {
  .fix_link {
    width: 100px;
    bottom: 20px;
    right: 20px;
  }
}

header {
  color: #fff;
  font-family: serif;
  font-weight: bold;
}
header > div {
  width: 100%;
  height: 80px;
  position: fixed;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  background-color: #397f9e;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
header > div h1 {
  font-size: 20px;
}
header > div h1 a {
  display: flex;
  align-items: center;
  padding: 10px 30px;
}
header > div h1 a img {
  height: 60px;
}
header > div h1 a > span {
  margin-left: 20px;
}
header > div h1 a > span span {
  font-size: 16px;
}
header > div nav.pcnav {
  padding-right: 30px;
}
header > div nav.pcnav ul {
  display: flex;
  height: 100%;
  align-items: center;
}
header > div nav.pcnav ul li a {
  line-height: 80px;
  padding: 0 15px;
  transition: 0.3s;
}
header > div nav.pcnav ul li a:hover {
  background-color: #275b71;
}
header > div nav.pcnav ul li:last-child a {
  padding: 15px;
}
header > div nav.pcnav ul li:last-child a:hover {
  background-color: unset;
  transform: scale(1.05);
}
header > div nav.pcnav ul li:last-child a img {
  height: 50px;
}
header > div .hamburger {
  display: none;
}
header > div > a {
  display: none;
}
header nav.spnav {
  display: none;
}

@media screen and (max-width: 1600px) {
  header > div h1 {
    white-space: nowrap;
  }
  header > div h1 a {
    padding: 10px;
  }
  header > div nav.pcnav {
    padding: 0;
  }
  header > div nav.pcnav ul {
    flex-wrap: wrap;
  }
  header > div nav.pcnav ul li a {
    line-height: 40px;
    padding: 0 10px;
  }
  header > div nav.pcnav ul li:last-child {
    display: none;
  }
  header > div > a {
    display: block;
    padding: 15px;
  }
  header > div > a img {
    height: 50px;
  }
}
@media screen and (max-width: 1500px) {
  header > div nav.pcnav {
    width: 430px;
    font-size: 16px;
  }
  header > div nav.pcnav ul {
    justify-content: center;
  }
}
@media screen and (max-width: 1000px) {
  header > div {
    height: 60px;
    align-items: center;
  }
  header > div h1 {
    font-size: 16px;
  }
  header > div h1 a {
    padding: 10px;
  }
  header > div h1 a img {
    height: 40px;
  }
  header > div h1 a > span {
    margin-left: 10px;
  }
  header > div h1 a > span span {
    font-size: 12px;
  }
  header > div nav.pcnav {
    display: none;
  }
  header > div > a {
    display: none;
  }
  header > div .hamburger {
    margin-right: 10px;
    display: block;
    height: 40px;
    cursor: pointer;
  }
  header > div .hamburger img {
    height: 40px;
    margin-top: 3px;
  }
  header nav.spnav {
    background-color: #397f9e;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 99;
    padding-top: 80px;
  }
  header nav.spnav div.close-menu {
    background-color: #fff;
    color: #397f9e;
    border-radius: 50px;
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px;
    margin: 0 auto 20px;
    font-size: 14px;
  }
  header nav.spnav ul {
    display: block;
    margin: auto;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    height: 100vh;
  }
  header nav.spnav ul li {
    font-size: 20px;
  }
  header nav.spnav ul li a {
    padding: 10px 0;
  }
  header nav.spnav ul li:last-child {
    margin-top: 20px;
  }
  header nav.active {
    display: block;
    animation: spnav1 0.5s;
  }
}
main {
  padding-top: 80px;
  /*
  section.voice
  */
}
main section.mv {
  overflow: hidden;
}
main section.mv div {
  display: flex;
  animation: scroll1 50s linear infinite;
}
main section.mv div img {
  width: 200px;
  height: 60px;
  margin: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
main section.mv div.logos2,
main section.mv div.logos4 {
  animation: scroll2 50s linear infinite;
}
main section.mv video {
  width: 100%;
}
@media screen and (max-width: 1550px) {
  main section.mv div img {
    width: 150px;
    margin: 15px;
  }
}
@media screen and (max-width: 1000px) {
  main section.mv div img {
    width: 110px;
    margin: 0 10px;
  }
  main section.mv div {
  animation: scroll1s 40s linear infinite;
}
main section.mv div.logos2,
main section.mv div.logos4 {
  animation: scroll2s 40s linear infinite;
}
}
@media screen and (max-width: 500px) {
  main section.mv div {
  animation: scroll1s 20s linear infinite;
}
main section.mv div.logos1{
  padding-top: 15px;
}
main section.mv div.logos2,
main section.mv div.logos4 {
  animation: scroll2s 20s linear infinite;
}
}

main section.about {
  font-family: serif;
  text-align: center;
  padding: 100px 0 0;
  max-width: 1800px;
  margin: auto;
}
main section.about > p:first-child {
  font-size: 42px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 0;
  line-height: 70px;
}
main section.about > p:first-child br.spbr {
  display: none;
}
main section.about > p:first-child span {
  font-size: 60px;
  font-weight: bold;
  margin: 0 15px;
}
main section.about > p:nth-child(2) {
  margin: 0 0 100px 0;
  line-height: unset;
}
main section.about > img {
  margin: auto;
}
main section.about > div.about_text {
  padding-bottom: 300px;
  background-image: url(../img/about_back.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
main section.about > div.about_text h2 {
  font-size: 80px;
  transform: rotate(-5deg);
  margin: 30px 0 50px;
}
main section.about > div.about_text p {
  font-size: 18px;
  line-height: 3rem;
}
main section.about > div.about_text p br.r1000 {
  display: none;
}
main section.about > div.about_text a {
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  padding: 8px;
  margin-top: 50px;
  font-family: sans-serif;
  background-image: url(../img/orange.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
main section.about > div.cg_links {
  width: 1000px;
  margin: 100px auto;
  justify-content: space-between;
  display: flex;
}
main section.about > div.cg_links a img {
  width: 450px;
}
main section.about > div.cg_links a:last-child {
  margin-top: 50px;
}
main section.about > p.about_last {
  font-size: 18px;
  line-height: 3rem;
}
main > div.about_logos {
  overflow: hidden;
}
main > div.about_logos div {
  display: flex;
  animation: scroll0 60s linear infinite;
  margin-bottom: 30px;
}
main > div.about_logos div img {
  width: 200px;
  margin: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1000px) {
  main section.about {
    padding: 50px 0 0;
  }
  main section.about > p:first-child {
    font-size: 30px;
    line-height: 50px;
  }
  main section.about > p:first-child span {
    font-size: 42px;
    margin: 0 10px;
  }
  main section.about > p:nth-child(2) {
    margin: 0 0 50px 0;
  }
  main section.about > img {
    width: 200px;
  }
  main section.about > div.about_text {
    padding-bottom: 150px;
  }
  main section.about > div.about_text h2 {
    font-size: 60px;
    margin: 20px 0 40px;
  }
  main section.about > div.about_text p {
    font-size: 16px;
    line-height: 2.5rem;
  }
  main section.about > div.about_text a {
    font-size: 20px;
    padding: 8px;
    margin-top: 30px;
  }
  main section.about > div.cg_links {
    width: 600px;
    margin: 50px auto;
  }
  main section.about > div.cg_links a img {
    width: 250px;
  }
  main section.about > div.cg_links a:last-child {
    margin-top: 30px;
  }
  main section.about > p.about_last {
    font-size: 16px;
    line-height: 2rem;
    width: 90%;
    margin: auto;
  }
  main > div.about_logos div {
    margin-bottom: 0px;
  }
  main > div.about_logos div img {
    width: 110px;
    margin: 10px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (max-width: 700px) {
  main section.about {
    padding: 30px 0 0;
  }
  main section.about > p:first-child {
    font-size: 18px;
    line-height: 30px;
  }
  main section.about > p:first-child br.spbr {
  display: block;
}
  main section.about > p:first-child span {
    font-size: 26px;
    margin: 0 5px;
  }
  main section.about > p:nth-child(2) {
    margin: 0 0 30px 0;
    font-size: 14px;
  }
  main section.about > img {
    width: 100px;
  }
  main section.about > div.about_text {
    padding-bottom: 50px;
    background-image: none;
  }
  main section.about > div.about_text h2 {
    font-size: 36px;
    margin: 10px 0 20px;
  }
  main section.about > div.about_text p {
    font-size: 16px;
    line-height: 2rem;
    width: 90%;
    margin: auto;
  }
  main section.about > div.about_text p br {
    display: none;
  }
  main section.about > div.about_text a {
    font-size: 18px;
    padding: 6px;
    margin-top: 20px;
  }
  main section.about > div.cg_links {
    width: 95%;
    margin: 20px auto;
  }
  main section.about > div.cg_links a {
    width: 48%;
  }
  main section.about > div.cg_links a img {
    width: 100%;
  }
  main section.about > div.cg_links a:last-child {
    margin-top: 30px;
  }
  main > div.about_logos div img {
    margin-top: 0;
    margin-bottom: 0;
  }
}
main section.voice {
  background-color: #397f9e;
  font-family: serif;
}
main section.voice > img {
  margin: auto;
}
main section.voice h2 {
  color: #fff;
  font-size: 60px;
  text-align: center;
  margin: 50px 0 100px;
}
main section.voice h2::before, main section.voice h2::after {
  content: "";
  display: inline-block;
  width: 80px;
  height: 80px;
  margin-right: 40px;
  background: url("img/voice_h.png") no-repeat center/contain;
  vertical-align: middle;
}
main section.voice h2::after {
  transform: scaleX(-1);
  margin-left: 40px;
  margin-right: 0;
}
main section.voice > div {
  width: 100%;
  margin: auto;
  display: flex;
  overflow: scroll;
  align-items: flex-start;
}
main section.voice > div > div {
  flex-shrink: 0;
  background-color: #fff;
  width: 350px;
  padding: 50px 30px 0 30px;
  margin: 0 50px;
}
main section.voice > div > div img:first-child {
  width: 250px;
  margin: auto;
  box-shadow: 10px 10px #397f9e;
}
main section.voice > div > div img:nth-child(2) {
  margin: 20px auto 10px;
    height: 80px;
    object-fit: contain;
}
main section.voice > div > div p {
  text-align: center;
}
main section.voice > div > div p:nth-child(4) {
  font-size: 20px;
  margin-bottom: 20px;
}
main section.voice > div > div p:nth-child(4) {
  font-size: 16px;
}
main section.voice > div > div p:nth-child(5) {
  font-size: 26px;
  font-weight: bold;
}
main section.voice > div > div p:nth-child(4) span {
  font-size: 18px;
  padding-left: 15px;
}
main section.voice > div > div > div {
  height: 320px;
  position: relative;
  margin: 40px 50px 0 50px;
  overflow: hidden;
}
main section.voice > div > div > div p {
  position: absolute;
  right: 0;
  writing-mode: vertical-rl;
  text-align: start;
  height: 320px;
  color: #333;
  line-height: 50px;
  font-size: 18px;
}
main section.voice > div > div a {
  width: -moz-fit-content;
  width: fit-content;
  padding: 50px;
  font-weight: bold;
  font-family: sans-serif;
  font-size: 20px;
  margin: auto;
  background-image: url(../img/voice_link.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
main section.voice > div > div:nth-of-type(2n) {
  margin-top: 50px;
}
main section.voice > a {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  font-size: 30px;
  font-weight: bold;
  font-family: sans-serif;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
main section.voice a.v_archive {
  background-image: url(../img/voices_link.png);
  padding: 120px;
}
main section.voice > a.v_join {
  background-image: url(../img/orange.png);
  padding: 100px;
  color: #fff;
}
main section.voice > p {
  color: #fff;
  text-align: center;
  font-size: 18px;
  line-height: 3rem;
}
@media screen and (max-width: 1000px) {
  main section.voice > img {
    width: 100px;
  }
  main section.voice h2 {
    font-size: 40px;
    margin: 30px 0 50px;
  }
  main section.voice h2::before, main section.voice h2::after {
    width: 50px;
    height: 50px;
    margin-right: 20px;
  }
  main section.voice h2::after {
    margin-left: 20px;
    margin-right: 0;
  }
  main section.voice > div > div {
    width: 250px;
    padding: 30px 15px 0 15px;
    margin: 0 30px;
  }
  main section.voice > div > div img:first-child {
    width: 200px;
    box-shadow: 5px 5px #397f9e;
  }
  main section.voice > div > div img:nth-child(2) {
    margin: 20px 0 10px;
  }
  main section.voice > div > div p{
    font-size: 16px;
  }
  main section.voice > div > div p:nth-child(4) {
    font-size: 16px;
  }
  main section.voice > div > div p:nth-child(5) {
    font-size: 22px;
    font-weight: bold;
  }
  main section.voice > div > div p:nth-child(5) span {
    font-size: 16px;
    padding-left: 10px;
  }
  main section.voice > div > div > div {
    height: 200px;
    margin: 20px 35px 0 35px;
  }
  main section.voice > div > div > div p {
    height: 200px;
    line-height: 30px;
    font-size: 16px;
  }
  main section.voice > div > div a {
    padding: 30px;
    font-size: 18px;
  }
  main section.voice > div > div:nth-of-type(2n) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 600px) {
  main section.voice {
    padding-bottom: 50px;
  }
  main section.voice > img {
    width: 70px;
  }
  main section.voice h2 {
    font-size: 28px;
    margin: 20px 0 30px;
  }
  main section.voice h2::before, main section.voice h2::after {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  main section.voice h2::after {
    margin-left: 10px;
    margin-right: 0;
  }
  main section.voice > div > div {
    width: 200px;
    padding: 20px 10px 0 10px;
    margin: 0 15px;
  }
  main section.voice > div > div img:first-child {
    width: 150px;
    box-shadow: 5px 5px #397f9e;
  }
  main section.voice > div > div img:nth-child(2) {
    margin: 20px 0 10px;
  }
  main section.voice > div > div p:nth-child(5) {
    font-size: 22px;
  }
  main section.voice > div > div a {
    padding: 20px;
    font-size: 16px;
  }
  main section.voice > div > div:nth-of-type(2n) {
    margin-top: 20px;
  }
  main section.voice > a {
    font-size: 18px;
  }
  main section.voice a.v_archive {
    padding: 30px 50px 26px;
    margin-top: 20px;
  }
  main section.voice > a.v_join {
    padding: 20px 80px 20px 60px;
    color: #fff;
  }
  main section.voice > p {
    width: 90%;
    margin: auto;
    font-size: 16px;
    line-height: 2rem;
  }
  main section.voice > p br {
    display: none;
  }
}
main section.activity {
  padding: 50px 0;
  max-width: 1600px;
  width: 90%;
  margin: auto;
}
main section.activity h2 {
  font-size: 120px;
  font-family: serif;
}
main section.activity > div > div {
  display: flex;
  justify-content: space-between;
}
main section.activity > div > div:first-child div {
  padding: 200px 0 0;
}
main section.activity > div > div div {
  padding: 100px 0 0;
}
main section.activity > div > div div:first-child {
  background-color: #397f9e;
  width: 80px;
  position: relative;
}
main section.activity > div > div div:first-child div {
  position: absolute;
  left: -20px;
  width: 120px;
  height: 120px;
  background-color: #fff;
  border: 26px solid #f57e00;
  border-radius: 120px;
  padding: 0;
}
main section.activity > div > div div:nth-child(2) {
  margin-left: 40px;
  width: 700px;
}
main section.activity > div > div div:nth-child(2) p.date {
  font-size: 30px;
  font-weight: bold;
}
main section.activity > div > div div:nth-child(2) h3 {
  font-size: 30px;
}
main section.activity > div > div div:nth-child(2) > img {
  display: none;
}
main section.activity > div > div div:nth-child(2) h4 {
  font-size: 24px;
  margin: 20px 0 30px;
}
main section.activity > div > div div:nth-child(2) p.speaker {
  font-size: 20px;
  font-weight: bold;
}
main section.activity > div > div div:nth-child(2) a {
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  padding: 80px;
  font-size: 22px;
  font-weight: bold;
  background-image: url(../img/a_link.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
main section.activity > div > div div:last-child {
  width: 700px;
}
main section.activity > a {
  width: -moz-fit-content;
  width: fit-content;
  padding: 100px;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  background-image: url(../img/a_link2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
main section.activity > a span {
  margin-right: 20px;
}
@media screen and (max-width: 1650px) {
  main section.activity {
    max-width: 1150px;
  }
  main section.activity h2 {
    font-size: 80px;
  }
  main section.activity > div > div:first-child div {
    padding: 100px 0 0;
  }
  main section.activity > div > div > div:first-child {
    width: 50px;
  }
  main section.activity > div > div > div:first-child div {
    left: -20px;
    width: 90px;
    height: 90px;
    border: 18px solid #f57e00;
  }
  main section.activity > div > div > div:nth-child(2) {
    width: 500px;
  }
  main section.activity > div > div > div:last-child {
    width: 500px;
  }
}
@media screen and (max-width: 1250px) {
  main section.activity h2 {
    font-size: 60px;
    width: 100%;
    margin: auto;
  }
  main section.activity > div {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
  main section.activity > div > div:first-child div {
    padding: 70px 0 0;
  }
  main section.activity > div > div > div {
    padding: 50px 0 0;
  }
  main section.activity > div > div > div:first-child {
    width: 40px;
  }
  main section.activity > div > div > div:first-child div {
    left: -20px;
    width: 80px;
    height: 80px;
    border: 18px solid #f57e00;
  }
  main section.activity > div > div > div:nth-child(2) {
    width: 400px;
  }
  main section.activity > div > div > div:nth-child(2) p.date {
    font-size: 24px;
    font-weight: bold;
  }
  main section.activity > div > div > div:nth-child(2) h3 {
    font-size: 26px;
  }
  main section.activity > div > div > div:nth-child(2) h4 {
    font-size: 18px;
    margin: 10px 0 15px;
  }
  main section.activity > div > div > div:nth-child(2) p.speaker {
    font-size: 18px;
  }
  main section.activity > div > div > div:nth-child(2) a {
    padding: 20px 60px;
    font-size: 18px;
  }
  main section.activity > div > div > div:last-child {
    width: 400px;
  }
}
@media screen and (max-width: 1000px) {
  main section.activity h2 {
    font-size: 40px;
  }
  main section.activity > div {
    max-width: 800px;
  }
  main section.activity > div > div:first-child div {
    padding: 50px 0 0;
  }
  main section.activity > div > div > div {
    padding: 30px 0 0;
  }
  main section.activity > div > div > div:first-child {
    width: 20px;
  }
  main section.activity > div > div > div:first-child div {
    left: -15px;
    width: 50px;
    height: 50px;
    border: 10px solid #f57e00;
  }
  main section.activity > div > div > div:nth-child(2) {
    width: 90%;
  }
  main section.activity > div > div > div:nth-child(2) p.date {
    font-size: 18px;
    font-weight: bold;
  }
  main section.activity > div > div > div:nth-child(2) h3 {
    font-size: 20px;
  }
  main section.activity > div > div > div:nth-child(2) > img {
    display: block;
    width: 80%;
  }
  main section.activity > div > div > div:nth-child(2) h4 {
    font-size: 16px;
    margin: 6px 0 10px;
  }
  main section.activity > div > div > div:nth-child(2) p.speaker {
    font-size: 16px;
    font-weight: unset;
  }
  main section.activity > div > div > div:nth-child(2) a {
    padding: 15px 40px;
    font-size: 16px;
  }
  main section.activity > div > div > div:last-child {
    display: none;
  }
  main section.activity > a {
    padding: 50px;
    font-size: 20px;
  }
  main section.activity > a span {
    margin-right: 20px;
  }
}
main section.top_end {
  font-family: serif;
}
main section.top_end h2 img {
  width: 80%;
  margin: auto;
}
main section.top_end > p {
  font-size: 42px;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  line-height: 70px;
  margin: auto;
}
main section.top_end > p br.spbr {
  display: none;
}
main section.top_end > p span {
  font-size: 60px;
  font-weight: bold;
  margin: 0 15px;
}
main section.top_end > p:nth-child(3) {
  font-size: 16px;
  margin-bottom: 50px;
  line-height: unset;
}
main section.top_end div.top_end_links {
  display: flex;
  justify-content: center;
}
main section.top_end div.top_end_links a {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  font-family: sans-serif;
  padding: 50px 100px;
}
main section.top_end div.top_end_links a:first-child {
  background-image: url(../img/orange.png);
  margin-right: 130px;
}
main section.top_end div.top_end_links a:last-child {
  background-image: url(../img/orange2.png);
}
main section.top_end div.top_end_logos {
  width: 1200px;
  margin: 50px auto 0;
  display: flex;
  justify-content: space-between;
}
main section.top_end div.top_end_logos h3 {
  font-size: 36px;
}
main section.top_end div.top_end_logos div {
  width: 1000px;
  display: flex;
  flex-wrap: wrap;
}
main section.top_end div.top_end_logos div img {
  height: 60px;
  margin-right: 50px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  main section.top_end > p:nth-child(2) {
    font-size: 30px;
    line-height: 50px;
  }
  main section.top_end > p:nth-child(2) span {
    font-size: 42px;
    margin: 0 10px;
  }
  main section.top_end > p:nth-child(3) {
    margin: 0 auto 50px;
  }
  main section.top_end div.top_end_links a {
    font-size: 22px;
    padding: 30px 50px 25px;
  }
  main section.top_end div.top_end_links a:first-child {
    margin-right: 80px;
  }
  main section.top_end div.top_end_logos {
    width: 90%;
    display: block;
  }
  main section.top_end div.top_end_logos h3 {
    font-size: 36px;
    text-align: center;
  }
  main section.top_end div.top_end_logos div {
    width: 100%;
    margin-top: 30px;
    justify-content: center;
  }
  main section.top_end div.top_end_logos div img {
    height: 50px;
    margin-right: 50px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 700px) {
  main section.top_end > p br.spbr {
  display: block;
}
  main section.top_end > p:nth-child(2) {
    font-size: 18px;
    line-height: 30px;
  }
  main section.top_end > p:nth-child(2) span {
    font-size: 26px;
    margin: 0 5px;
  }
  main section.top_end > p:nth-child(3) {
    margin: 0 auto 30px;
    font-size: 14px;
  }
  main section.top_end div.top_end_links {
    display: block;
  }
  main section.top_end div.top_end_links a {
    margin: auto;
  }
  main section.top_end div.top_end_links a:first-child {
    margin-right: 0;
    margin: auto;
  }
  main section.top_end div.top_end_logos h3 {
    font-size: 30px;
  }
  main section.top_end div.top_end_logos div {
    width: 100%;
    margin-top: 30px;
    display: block;
  }
  main section.top_end div.top_end_logos div img {
    margin: 0 auto 20px;
  }
}

@media screen and (max-width: 1000px) {
  main {
    padding-top: 60px;
  }
}
footer {
  background-color: #397f9e;
  padding: 50px 50px 200px;
  margin-top: 100px;
  color: #fff;
  font-family: serif;
  font-weight: bold;
}
footer div.footer_logo div {
  display: flex;
  align-items: center;
}
footer div.footer_logo div h2 {
  margin-left: 20px;
  font-size: 34px;
}
footer div.footer_logo div h2 span {
  font-size: 24px;
}
footer div.footer_logo p {
  margin-top: 30px;
  margin-left: 30px;
}
footer div.footer_address {
  width: -moz-fit-content;
  width: fit-content;
  background-image: url(../img/footer_back.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: #397f9e;
  padding: 30px 80px;
  margin-top: 50px;
  margin-bottom: 50px;
  font-size: 22px;
}
footer div.footer_address p:first-child {
  margin-bottom: 30px;
}
footer div.footer_links {
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer div.footer_links div a {
  font-size: 26px;
  padding: 20px;
}
footer div.footer_links div a::before {
  content: "■";
  color: #fff;
}
footer div.footer_links div a.sfp {
  padding-bottom: 8px;
}
footer div.footer_links div a.small_flink {
  font-size: 18px;
  margin-left: 40px;
  padding: 8px;
}
footer div.footer_links div a.small_flink::before {
  content: none;
}
footer div.footer_links div a.footer_member::before {
  content: none;
}

@media screen and (max-width: 1500px) {
  footer div.footer_links {
    justify-content: unset;
  }
  footer div.footer_links div {
    margin-right: 50px;
  }
}
@media screen and (max-width: 1000px) {
  footer div.footer_address {
    padding: 30px 50px;
    font-size: 18px;
  }
  footer div.footer_links div {
    margin-right: 30px;
  }
  footer div.footer_links div a {
    font-size: 22px;
    padding: 20px;
    width: 300px;
    margin: auto;
  }
  footer div.footer_links div a.small_flink {
    font-size: 16px;
    padding: 8px;
    margin: auto;
    padding-left: 40px;
  }
  footer div.footer_links div a.small_flink::before {
    content: none;
  }
  footer div.footer_links div a.footer_member::before {
    content: none;
  }
  footer div.footer_links div a.footer_member img {
    width: 300px;
  }
}
@media screen and (max-width: 700px) {
  footer {

  padding: 50px 10px 200px;
}
  footer div.footer_logo div {
    align-items: unset;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
  footer div.footer_logo div img {
    width: 70px;
  }
  footer div.footer_logo div h2 {
    margin-left: 15px;
    font-size: 26px;
  }
  footer div.footer_logo div h2 span {
    font-size: 20px;
  }
  footer div.footer_logo p {
    margin-top: 20px;
    margin-left: 0;
    text-align: center;
  }
  footer div.footer_address {
    margin-top: 30px;
    margin-bottom: 30px;
    background-size: cover;
  }
  footer div.footer_links {
    display: block;
  }
  footer div.footer_links div {
    margin-right: 0;
    margin: auto;
  }
  footer div.footer_links div a {
    padding: 20px;
  }
  footer div.footer_links div a.footer_member::before {
    content: none;
  }
  footer div.footer_links div a.footer_member img {
    width: 300px;
  }
}
@media screen and (max-width: 550px) {
  footer div.footer_logo div {
    display: block;
    text-align: center;
  }
  footer div.footer_logo div img {
    margin: auto;
  }
  footer div.footer_logo div h2 {
    margin-left: 0;
    margin-top: 10px;
    font-size: 22px;
  }
  footer div.footer_logo div h2 span {
    font-size: 16px;
  }
  footer div.footer_logo p {
    margin-top: 20px;
    margin-left: 0;
    text-align: center;
  }
}
/*

協議会について

*/
main section.a_council {
  width: 90%;
  max-width: 1500px;
  margin: auto;
  padding: 70px;
  margin-top: 100px;
  border: 3px solid #397f9e;
  font-family: serif;
}
main section.a_council h2 {
  font-size: 80px;
  font-family: serif;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 50px;
}
main section.a_council h2 img {
  width: 100%;
  display: block;
}
main section.a_council #a1 {
  scroll-margin-top: 100px;
}
main section.a_council > p:nth-child(3) {
  font-size: 42px;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  line-height: 70px;
  margin: 50px auto 0;
}
main section.a_council > p:nth-child(3) span {
  font-size: 60px;
  font-weight: bold;
  margin: 0 15px;
  text-align: right;
}
main section.a_council > p:nth-child(4) {
  font-size: 16px;
  margin-bottom: 50px;
  line-height: unset;
  text-align: center;
}
main section.a_council h3 {
  font-family: sans-serif;
  font-size: 50px;
  background-image: url(../img/h_orange1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px;
  text-shadow: 4px 4px 0 white, -4px 4px 0 white, 4px -4px 0 white, -4px -4px 0 white, 0 4px 0 white, 4px 0 0 white, -4px 0 0 white, 0 -4px 0 white;
}
main section.a_council > p:last-child {
  color: #000;
  font-size: 22px;
  line-height: 44px;
  font-weight: bold;
}
@media screen and (max-width: 1300px) {
  main section.a_council h2 {
    font-size: 70px;
  }
  main section.a_council > p:nth-child(3) {
    font-size: 30px;
    line-height: 50px;
  }
  main section.a_council > p:nth-child(3) span {
    font-size: 42px;
    margin: 0 10px;
  }
  main section.a_council h3 {
    font-size: 40px;
  }
  main section.a_council > p:last-child {
    font-size: 18px;
    line-height: 36px;
  }
}
@media screen and (max-width: 1000px) {
  main section.a_council {
    width: 95%;
    padding: 30px;
    margin-top: 50px;
  }
  main section.a_council h2 {
    font-size: 50px;
  }
  main section.a_council h2 img {
    width: 80%;
    max-width: 500px;
  }
  main section.a_council > p:nth-child(3) {
    font-size: 26px;
    line-height: 44px;
  }
  main section.a_council > p:nth-child(3) span {
    font-size: 36px;
    margin: 0 10px;
  }
  main section.a_council h3 {
    font-size: 35px;
  }
}
@media screen and (max-width: 700px) {
  main section.a_council {
    margin-top: 20px;
  }
  main section.a_council h2 {
    font-size: 30px;
  }
  main section.a_council h2 img {
    max-width: 350px;
    width: 100%;
  }
  main section.a_council > p:nth-child(3) {
    font-size: 18px;
    line-height: 30px;
    margin: 20px auto 0;
  }
  main section.a_council > p:nth-child(3) span {
    font-size: 26px;
    margin: 0 5px;
  }
  main section.a_council > p:nth-child(4) {
    margin-bottom: 20px;
  }
  main section.a_council h3 {
    font-size: 30px;
  }
}
main section.a_business_policy {
  width: 90%;
  max-width: 1500px;
  margin: auto;
  background-color: #397f9e;
  color: #fff;
  padding: 50px 0;
}
main section.a_business_policy h2 {
  color: #397f9e;
  font-size: 46px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 100px;
}
main section.a_business_policy h2 span {
  padding: 10px;
  margin: 10px;
  background-color: #fff;
}
main section.a_business_policy > div {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
main section.a_business_policy > div > div {
  width: 100%;
}
main section.a_business_policy > div > div div {
  width: 90%;
  margin-bottom: 50px;
}
main section.a_business_policy > div > div div h3 {
  font-size: 24px;
}
main section.a_business_policy > div > div div h3::before {
  margin-right: 10px;
  content: "■";
  color: #fff;
}
main section.a_business_policy > div > div div p {
  font-family: serif;
}
main section.a_business_policy > div > img {
  width: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1000px) {
  main section.a_business_policy {
    width: 95%;
  }
  main section.a_business_policy h2 {
    font-size: 40px;
    margin: 0 auto 50px;
  }
  main section.a_business_policy h2 span {
    margin: 5px;
  }
  main section.a_business_policy > div {
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column-reverse;
  }
  main section.a_business_policy > div > div {
    width: 100%;
  }
  main section.a_business_policy > div > div div {
    width: 90%;
    margin-bottom: 30px;
  }
  main section.a_business_policy > div > div div h3 {
    font-size: 22px;
  }
  main section.a_business_policy > div > div div p {
    font-family: serif;
  }
  main section.a_business_policy > div > img {
    width: 70%;
    display: block;
    margin: auto;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 700px) {
  main section.a_business_policy h2 {
    font-size: 34px;
    margin: 0 auto 30px;
  }
  main section.a_business_policy h2 span {
    margin: 4px;
    padding: 8px;
  }
  main section.a_business_policy > div > img {
    width: 100%;
  }
}
main section.a_greeting {
  width: 90%;
  max-width: 1500px;
  margin: auto;
  padding-top: 100px;
  border: 3px solid #397f9e;
  font-family: serif;
}
main section.a_greeting h2 {
  font-size: 50px;
  font-family: sans-serif;
  background-image: url(../img/h_orange2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px;
  margin-left: 70px;
  text-shadow: 4px 4px 0 white, -4px 4px 0 white, 4px -4px 0 white, -4px -4px 0 white, 0 4px 0 white, 4px 0 0 white, -4px 0 0 white, 0 -4px 0 white;
}
main section.a_greeting #a2 {
  scroll-margin-top: 100px;
}
main section.a_greeting > p {
  font-family: sans-serif;
  font-weight: bold;
  font-size: 30px;
  color: #000;
  margin-top: 20px;
  margin-left: 90px;
  margin-bottom: 50px;
  line-height: 50px;
}
main section.a_greeting > div.chairman > div {
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  display: grid;
}
main section.a_greeting > div.chairman > div:first-child {
  background-image: url(../img/ag1_back.jpg);
  justify-content: end;
  background-position: right;
}
main section.a_greeting > div.chairman > div:nth-child(2) {
  background-image: url(../img/ag2_back.jpg);
  background-position: center left;
  justify-content: start;
}
main section.a_greeting > div.chairman > div:nth-child(2) > div {
  max-width: 1160px;
}
main section.a_greeting > div.chairman > div:nth-child(2) > div > div {
  padding-top: 20px;
}
main section.a_greeting > div.chairman > div:nth-child(2) > div > div > div p:nth-child(2) {
  width: 500px;
}
main section.a_greeting > div.chairman > div:last-child {
  background-image: url(../img/ag3_back.jpg);
  justify-content: end;
  background-position: right;
  margin-top: 50px;
}
main section.a_greeting > div.chairman > div > div {
  color: #000;
  font-weight: bold;
  padding: 130px;
}
main section.a_greeting > div.chairman > div > div > div {
  display: flex;
  align-items: center;
}
main section.a_greeting > div.chairman > div > div > div > img {
  width: 300px;
  -o-object-fit: contain;
     object-fit: contain;
  box-shadow: 10px 10px #397f9e;
}
main section.a_greeting > div.chairman > div > div > div div {
  width: 550px;
  margin-left: 50px;
}
main section.a_greeting > div.chairman > div > div > div div h3 {
  font-size: 26px;
}
main section.a_greeting > div.chairman > div > div > div div p:nth-child(2) {
  font-size: 20px;
}
main section.a_greeting > div.chairman > div > div > div div p:nth-child(3) {
  margin-top: 20px;
  line-height: 30px;
}
main section.a_greeting > div.chairman > div > div > p {
  width: 900px;
  font-size: 20px;
  line-height: 40px;
  margin-top: 40px;
}
main section.a_greeting > h3 {
  font-size: 50px;
  font-family: sans-serif;
  background-image: url(../img/h_orange3.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px;
  margin-top: 100px;
  margin-left: 70px;
  text-shadow: 4px 4px 0 white, -4px 4px 0 white, 4px -4px 0 white, -4px -4px 0 white, 0 4px 0 white, 4px 0 0 white, -4px 0 0 white, 0 -4px 0 white;
}
main section.a_greeting #a3 {
  scroll-margin-top: 100px;
}
main section.a_greeting > div.board_member {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
main section.a_greeting > div.board_member > div {
  width: 300px;
  margin: 20px;
  color: #000;
  font-weight: bold;
}
main section.a_greeting > div.board_member > div div {
  display: flex;
}
main section.a_greeting > div.board_member > div div img {
  width: 200px;
}
main section.a_greeting > div.board_member > div div h4 {
  writing-mode: vertical-lr;
  font-size: 24px;
  margin-top: 15px;
  margin-left: 10px;
}
main section.a_greeting > div.board_member > div div p {
  writing-mode: vertical-lr;
  border: 2px solid #397f9e;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 5px 0;
  font-size: 18px;
}
main section.a_greeting > div.board_member > div > p {
  margin: 15px 0 10px;
}
main section.a_greeting > div.board_member > div > img {
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1300px) {
  main section.a_greeting > div.chairman > div {
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    display: grid;
  }
  main section.a_greeting > div.chairman > div > div {
    padding: 80px;
  }
  main section.a_greeting > div.chairman > div > div > div > img {
    width: 250px;
  }
  main section.a_greeting > div.chairman > div > div > div div {
    width: 450px;
    margin-left: 50px;
  }
  main section.a_greeting > div.chairman > div > div > div div h3 {
    font-size: 24px;
  }
  main section.a_greeting > div.chairman > div > div > div div p:nth-child(2) {
    font-size: 20px;
  }
  main section.a_greeting > div.chairman > div > div > div div p:nth-child(3) {
    margin-top: 20px;
    line-height: 30px;
  }
  main section.a_greeting > div.chairman > div > div > p {
    width: 750px;
    font-size: 18px;
    line-height: 30px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 1000px) {
  main section.a_greeting {
    width: 95%;
    padding-top: 50px;
  }
  main section.a_greeting h2 {
    font-size: 35px;
    margin-left: 30px;
  }
  main section.a_greeting > p {
    font-size: 24px;
    margin-left: 50px;
    margin-bottom: 30px;
    line-height: 40px;
  }
  main section.a_greeting > div.chairman > div {
    width: 100%;
    display: grid;
    border-top: 3px solid #397f9e;
  }
  main section.a_greeting > div.chairman > div:first-child {
    background-image: none;
    justify-content: start;
  }
  main section.a_greeting > div.chairman > div:nth-child(2) {
    background-image: none;
    background-position: center left;
    justify-content: start;
  }
  main section.a_greeting > div.chairman > div:nth-child(2) > div > div {
    padding-top: 0px;
  }
  main section.a_greeting > div.chairman > div:nth-child(2) > div > div > div p:nth-child(2) {
    width: auto;
  }
  main section.a_greeting > div.chairman > div:last-child {
    background-image: none;
    justify-content: start;
    background-position: right;
    margin-top: 0px;
    border-bottom: 3px solid #397f9e;
  }
  main section.a_greeting > div.chairman > div > div {
    color: #000;
    font-weight: bold;
    padding: 30px;
  }
  main section.a_greeting > div.chairman > div > div > div {
    display: flex;
    align-items: center;
  }
  main section.a_greeting > div.chairman > div > div > div > img {
    width: 200px;
    -o-object-fit: contain;
       object-fit: contain;
    box-shadow: 10px 10px #397f9e;
  }
  main section.a_greeting > div.chairman > div > div > div div {
    width: 400px;
    margin-left: 50px;
  }
  main section.a_greeting > div.chairman > div > div > div div h3 {
    font-size: 26px;
  }
  main section.a_greeting > div.chairman > div > div > div div p:nth-child(2) {
    font-size: 20px;
  }
  main section.a_greeting > div.chairman > div > div > div div p:nth-child(3) {
    margin-top: 20px;
    line-height: 30px;
  }
  main section.a_greeting > div.chairman > div > div > p {
    width: 100%;
    font-size: 18px;
    line-height: 34px;
    margin-top: 20px;
  }
  main section.a_greeting > h3 {
    font-size: 35px;
    margin-top: 50px;
    margin-left: 30px;
  }
  main section.a_greeting > div.board_member > div {
    width: 250px;
    margin: 20px;
  }
  main section.a_greeting > div.board_member > div div img {
    width: 180px;
  }
  main section.a_greeting > div.board_member > div div h4 {
    font-size: 24px;
    margin-top: 15px;
    margin-left: 10px;
  }
  main section.a_greeting > div.board_member > div > p {
    margin: 10px 0 5px;
  }
}
@media screen and (max-width: 700px) {
  main section.a_greeting h2 {
    font-size: 30px;
    text-shadow: 2px 2px 0 white, -2px 2px 0 white, 2px -2px 0 white, -2px -2px 0 white, 0 2px 0 white, 2px 0 0 white, -2px 0 0 white, 0 -2px 0 white;
  }
  main section.a_greeting > p {
    font-size: 16px;
    line-height: 30px;
    margin: 0;
    margin-bottom: 20px;
  }
  main section.a_greeting > div.chairman > div {
    width: 100%;
    display: grid;
    border-top: 3px solid #397f9e;
  }
  main section.a_greeting > div.chairman > div > div {
    padding: 20px 15px;
  }
  main section.a_greeting > div.chairman > div > div > div {
    display: block;
    align-items: center;
  }
  main section.a_greeting > div.chairman > div > div > div > img {
    margin: auto;
    -o-object-fit: contain;
       object-fit: contain;
    box-shadow: 5px 5px #397f9e;
  }
  main section.a_greeting > div.chairman > div > div > div div {
    width: 100%;
    margin-left: 0px;
    margin-top: 20px;
  }
  main section.a_greeting > div.chairman > div > div > div div h3 {
    font-size: 22px;
  }
  main section.a_greeting > div.chairman > div > div > div div p:nth-child(2) {
    font-size: 16px;
  }
  main section.a_greeting > div.chairman > div > div > div div p:nth-child(3) {
    font-weight: lighter;
    margin-top: 20px;
    line-height: 24px;
  }
  main section.a_greeting > div.chairman > div > div > p {
    width: 100%;
    font-size: 18px;
    line-height: 34px;
    margin-top: 20px;
  }
  main section.a_greeting > h3 {
    font-size: 30px;
    margin-top: 30px;
    margin-left: 30px;
    text-shadow: 2px 2px 0 white, -2px 2px 0 white, 2px -2px 0 white, -2px -2px 0 white, 0 2px 0 white, 2px 0 0 white, -2px 0 0 white, 0 -2px 0 white;
  }
}

/*
お知らせ
*/
main section.news {
  width: 90%;
  max-width: 1500px;
  margin: auto;
  padding: 70px;
  margin-top: 100px;
  border: 3px solid #397f9e;
  font-family: serif;
}
main section.news h2 {
  font-size: 80px;
  font-family: serif;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 50px;
}
main section.news h2 img {
  width: 100%;
  display: block;
}
main section.news div.news_category {
  margin-bottom: 100px;
}
main section.news div.news_category label {
  font-family: sans-serif;
  font-weight: bold;
  font-size: 26px;
}
main section.news div.news_category select {
  width: 500px;
  height: 50px;
  padding-left: 20px;
  font-weight: bold;
}
main section.news div.news_category button{
  background-color: #397f9e;
  font-size: 18px;
    font-family: sans-serif;
    font-weight: bold;
    color: #fff;
        padding: 10px 20px;
    border-radius: 5px;
    display: block;
    margin-top: 10px;
    
}
main section.news div.news_lists {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
main section.news div.news_lists > div {
  width: 32%;
  max-width: 400px;
  margin-bottom: 50px;
  margin-right: 2%;
}
main section.news div.news_lists > div:nth-of-type(3n) {
  margin-right: 0;
}
main section.news div.news_lists > div > a p {
  padding: 5px;
}
main section.news div.news_lists > div > a img {
  padding: 10px;
  border: 3px solid #397f9e;
  width: 100%;
    height: 300px;
    object-fit: cover;
}
main section.news div.news_lists > div > div {
  margin-top: 20px;
}
main section.news div.news_lists > div > div a {
  font-weight: bold;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 10px;
  padding-left: 0;
  font-family: sans-serif;
  font-size: 18px;
}
main section.news div.news_lists > div > div a.nl_news {
  color: #f57e00;
}
main section.news div.news_lists > div > div a.nl_seminar {
  color: #f8394f;
}
main section.news div.news_lists > div > div p {
  border-top: 3px dotted #397f9e;
  padding-top: 20px;
  color: #000;
}
main section.news div.news_pagination > nav > div {
  display: flex;
  align-items: center;
  justify-content: center;
    font-weight: bold;
      padding: 10px;
      font-size: 30px;
      font-family: sans-serif;
}
main section.news div.news_pagination > nav > div a {
  padding: 10px;
}
main section.news div.news_pagination > nav > div span {
  padding: 10px;
  font-weight: lighter;
}
@media screen and (max-width: 1000px) {
  main section.news {
    width: 95%;
    padding: 50px;
    margin-top: 30px;
  }
  main section.news h2 {
    font-size: 50px;
    margin-bottom: 30px;
  }
  main section.news h2 img {
    width: 80%;
    max-width: 500px;
  }
  main section.news div.news_category {
    margin-bottom: 50px;
  }
  main section.news div.news_category label {
    font-size: 22px;
  }
  main section.news div.news_lists > div {
    width: 48%;
    max-width: unset;
    margin-bottom: 50px;
  }
  main section.news div.news_lists > div:nth-of-type(3n) {
  margin-right: 2%;
}
main section.news div.news_lists > div > a img {
  width: 100%;
    height: 200px;
}
  main section.news div.news_lists > div > div {
    margin-top: 15px;
  }
  main section.news div.news_lists > div > div p {
    border-top: 3px dotted #397f9e;
    padding-top: 10px;
    color: #000;
  }
}
@media screen and (max-width: 700px) {
  main section.news {
    padding: 30px;
    margin-top: 20px;
  }
  main section.news h2 {
    font-size: 30px;
  }
  main section.news h2 img {
    max-width: 350px;
    width: 100%;
  }
  main section.news div.news_category {
    margin-bottom: 30px;
  }
  main section.news div.news_category label {
    font-size: 18px;
  }
  main section.news div.news_category select {
    width: 300px;
    height: 40px;
  }
  main section.news div.news_lists {
    display: block;
  }
  main section.news div.news_lists > div {
    width: 100%;
    margin: auto;
    max-width: unset;
    margin-bottom: 50px;
  }
  main section.news div.news_lists > div > div {
    margin-top: 15px;
  }
  main section.news div.news_lists > div > div p {
    border-top: 3px dotted #397f9e;
    padding-top: 10px;
    color: #000;
  }
}

/*
会員のみなさまの声
*/

main section.archive_voice {
  width: 90%;
  max-width: 1500px;
  margin: auto;
  padding: 70px;
  margin-top: 100px;
  border: 3px solid #397f9e;
  font-family: serif;
}
main section.archive_voice h2 {
  font-size: 80px;
  font-family: serif;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 150px;
}
main section.archive_voice h2 img {
  width: 100%;
  display: block;
}
main section.archive_voice div.voice_list {
  width: 90%;
  margin: auto;
}
main section.archive_voice div.voice_list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  padding-bottom: 60px;
  border-bottom: 3px dotted #397f9e;
}
main section.archive_voice div.voice_list > div:last-child {
  border: none;
}
main section.archive_voice div.voice_list > div > img {
  width: 250px;
  height: 250px;
  box-shadow: 10px 10px #397f9e;
  -o-object-fit: contain;
     object-fit: contain;
}
main section.archive_voice div.voice_list > div > div {
  width: 60%;
  max-width: 600px;
}
main section.archive_voice div.voice_list > div > div img {
  width: 200px;
  margin-bottom: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
main section.archive_voice div.voice_list > div > div h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
main section.archive_voice div.voice_list > div > div h3 span {
  font-size: 18px;
  margin-left: 10px;
}
main section.archive_voice div.voice_list > div > div p.v_content {
  color: #000;
  line-height: 32px;
}
main section.archive_voice div.voice_list > div > div a {
  display: none;
  padding: 30px;
  font-weight: bold;
  font-family: sans-serif;
  background-image: url(../img/to_single_voice.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
main section.archive_voice div.voice_list > div > a {
  display: block;
  padding: 30px;
  font-weight: bold;
  font-family: sans-serif;
  background-image: url(../img/to_single_voice.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
main section.archive_voice > div.voice_list > div.voice_pagination {
  margin-top: 50px;
  justify-content: center;
}
main section.archive_voice > div.voice_list > div.voice_pagination > nav > div {
  display: flex;
  align-items: center;
  justify-content: center;
    font-weight: bold;
      padding: 10px;
      font-size: 30px;
      font-family: sans-serif;
}
main section.archive_voice div.voice_pagination > nav > div a {
  padding: 10px;
}
main section.archive_voice div.voice_pagination > nav > div span {
  padding: 10px;
  font-weight: lighter;
}
@media screen and (max-width: 1500px) {
  main section.archive_voice div.voice_list {
    width: 90%;
    margin: auto;
  }
  main section.archive_voice div.voice_list > div {
    justify-content: center;
    align-items: start;
  }
  main section.archive_voice div.voice_list > div > div {
    margin-left: 50px;
  }
  main section.archive_voice div.voice_list > div > div img {
    height: 60px;
    margin-bottom: 15px;
  }
  main section.archive_voice div.voice_list > div > div h3 {
    margin-bottom: 10px;
  }
  main section.archive_voice div.voice_list > div > div a {
    display: inline-block;
  }
  main section.archive_voice div.voice_list > div > a {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  main section.archive_voice {
    width: 95%;
    padding: 50px;
    margin-top: 30px;
  }
  main section.archive_voice h2 {
    font-size: 50px;
    margin-bottom: 50px;
  }
  main section.archive_voice h2 img {
    width: 80%;
    max-width: 500px;
  }
  main section.archive_voice div.voice_list {
    width: 100%;
    margin: auto;
  }
  main section.archive_voice div.voice_list > div {
    margin-top: 30px;
    padding-bottom: 40px;
  }
  main section.archive_voice div.voice_list > div > img {
    width: 200px;
    height: 200px;
  }
  main section.archive_voice div.voice_list > div > div {
    margin-left: 50px;
  }
  main section.archive_voice div.voice_list > div > div img {
    height: 50px;
    margin-bottom: 10px;
  }
  main section.archive_voice div.voice_list > div > div h3 {
    font-size: 22px;
    margin-bottom: 5px;
  }
  main section.archive_voice div.voice_list > div > div p.v_content {
    color: #000;
    line-height: 26px;
  }
  main section.archive_voice div.voice_list > div > div a {
    padding: 20px;
  }
}
@media screen and (max-width: 700px) {
  main section.archive_voice {
    padding: 30px;
    margin-top: 20px;
  }
  main section.archive_voice h2 {
    font-size: 30px;
  }
  main section.archive_voice h2 img {
    max-width: 350px;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  main section.archive_voice div.voice_list {
    width: 100%;
  }
  main section.archive_voice div.voice_list > div {
    display: block;
    margin: auto;
    margin-top: 30px;
    padding-bottom: 20px;
  }
  main section.archive_voice div.voice_list > div > img {
    width: 200px;
    margin: auto;
    height: 200px;
  }
  main section.archive_voice div.voice_list > div > div {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }
  main section.archive_voice div.voice_list > div > div img {
    width: 100%;
    margin-bottom: 10px;
  }
  main section.archive_voice div.voice_list > div > div h3 {
    font-size: 22px;
    margin-bottom: 5px;
  }
  main section.archive_voice div.voice_list > div > div p.v_content {
    color: #000;
    line-height: 26px;
  }
  main section.archive_voice div.voice_list > div > div a {
    padding: 20px;
  }
}

/*
お問い合わせ
*/
main section.contact {
  width: 90%;
  max-width: 1500px;
  margin: auto;
  margin-top: 100px;
  border: 3px solid #397f9e;
  font-family: serif;
}
main section.contact h2 {
  font-size: 80px;
  font-family: serif;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 50px;
  padding-left: 70px;
  padding-top: 70px;
}
main section.contact h2 img {
  width: 100%;
  display: block;
}
main section.contact > p {
  color: #000;
  line-height: 30px;
  font-size: 20px;
  margin-bottom: 100px;
  padding-left: 70px;
  padding-right: 70px;
}
main section.contact > div {
  background-color: #397f9e;
  padding-bottom: 50px;
}
main section.contact > div h3 {
  font-family: sans-serif;
  font-size: 40px;
  text-align: center;
  padding-top: 100px;
  margin-bottom: 100px;
}
main section.contact > div h3 span {
  padding: 15px;
  background-color: #fff;
  margin: 3px;
}
main section.contact > div h3 br {
  display: none;
}
main section.contact > div form {
  width: 80%;
  max-width: 1000px;
  margin: auto;
  font-family: sans-serif;
  font-weight: bold;
}
main section.contact > div form p label span select,
main section.contact > div form p label span input,
main section.contact > div form p label span textarea {
  color: #397f9e!important;
}
main section.contact > div form p:nth-child(2) label span{
      display: inline-block;
    max-width: 1000px;
    width: 100%;
}
main section.contact > div form p:nth-child(8){
  text-align: center;
}
main section.contact > div form p:nth-child(8) span span span{
  margin-left: 0;
}
main section.contact > div form p>input[type="submit"]{
      display: block;
  color: #397f9e;
  background-color: #fff;
  margin: 50px auto 0;
  font-size: 26px;
  width: 300px;
  padding: 0;
}
main section.contact > div form >div{
      text-align: center;
    padding: 30px;
    width: 100%;
    color: #fff;
    margin: auto;
}
main section.contact > div form label {
  color: #fff;
  font-size: 24px;
  display: block;
  margin-top: 50px;
}
main section.contact > div form select {
  display: block;
  width: 100%;
  height: 50px;
  font-weight: bold;
  padding-left: 20px;
}
main section.contact > div form input {
  width: 100%;
  height: 50px;
  padding-left: 20px;
}
main section.contact > div form textarea {
  width: 100%;
  height: 300px;
  padding-left: 20px;
}
main section.contact > div form button {
  display: block;
  color: #397f9e;
  background-color: #fff;
  padding: 20px 50px;
  margin: 50px auto 0;
  font-size: 26px;
}
main > div.cbx{
  display: flex;
  width: fit-content;
  margin: 50px auto 0;
}
main > div.cbx >div{
  display: flex;
  align-items: center;
}
main > div.cbx >div a{
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  main section.contact {
    width: 95%;
    margin-top: 50px;
  }
  main section.contact h2 {
    font-size: 50px;
    margin-bottom: 50px;
    padding-top: 50px;
    padding-left: 50px;
  }
  main section.contact h2 img {
    width: 80%;
    max-width: 500px;
  }
  main section.contact > p {
    line-height: 26px;
    font-size: 18px;
    padding-left: 50px;
    padding-right: 50px;
  }
  main section.contact > div h3 {
    font-size: 34px;
  }
  main section.contact > div h3 span {
    padding: 10px;
    background-color: #fff;
    margin: 2px;
  }
  main section.contact > div form {
    width: 90%;
  }
}
@media screen and (max-width: 700px) {
  main section.contact {
    margin-top: 20px;
  }
  main section.contact h2 {
    font-size: 30px;
    padding-top: 30px;
    padding-left: 30px;
    margin-bottom: 30px;
  }
  main section.contact h2 img {
    max-width: 300px;
    width: 100%;
  }
  main section.contact > p {
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 50px;
  }
  main section.contact > div h3 {
    font-size: 28px;
    padding-top: 50px;
    margin-bottom: 50px;
  }
  main section.contact > div h3 span {
    padding: 6px;
    background-color: #fff;
    margin: 2px;
  }
  main section.contact > div h3 br {
    display: block;
  }
  main section.contact > div form label {
    font-size: 16px;
    margin-top: 20px;
  }
  main section.contact > div form select {
    width: 100%;
    height: 30px;
    font-weight: bold;
    padding-left: 20px;
  }
  main section.contact > div form input {
    width: 100%;
    height: 30px;
    padding-left: 20px;
  }
  main section.contact > div form textarea {
    width: 100%;
    height: 200px;
    padding-left: 20px;
  }
  main section.contact > div form button {
    color: #397f9e;
    background-color: #fff;
    padding: 10px 30px;
    margin: 30px auto 0;
    font-size: 20px;
  }
  main > div.cbx{
  display: block;
  text-align: center;
}
  main > div.cbx input{
  display: block;
  margin: auto;
}
main > div.cbx >div{
  display: block;
}
main > div.cbx >div p.cbxp{ 
  display: none;
}
  main section.contact > div form p>input[type="submit"]{
  font-size: 18px;
}
main section.contact > div form p:nth-child(8){
  font-size: 18px;
}
}

/*
入会について
*/
main section.join {
  width: 90%;
  max-width: 1500px;
  margin: auto;
  margin-top: 100px;
  border: 3px solid #397f9e;
  font-family: serif;
}
main section.join h2 {
  font-size: 80px;
  font-family: serif;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 50px;
  padding-left: 70px;
  padding-top: 70px;
}
main section.join h2 img {
  width: 100%;
  display: block;
}
main section.join > p {
  color: #000;
  line-height: 30px;
  font-size: 20px;
  margin-bottom: 50px;
  padding-left: 70px;
  padding-right: 70px;
}
main section.join ul {
  padding-left: 100px;
  margin-bottom: 50px;
}
main section.join ul li {
  font-weight: bold;
  font-family: sans-serif;
  font-size: 26px;
  margin-bottom: 30px;
}
main section.join ul li span {
  color: #fff;
  background-color: #397f9e;
  padding: 10px;
  border-radius: 50px;
  margin-right: 30px;
}
main section.join > div {
  background-color: #397f9e;
  padding-bottom: 50px;
}
main section.join > div h3 {
  font-family: sans-serif;
  font-size: 40px;
  text-align: center;
  padding-top: 100px;
  margin-bottom: 100px;
}
main section.join > div h3 span {
  padding: 15px;
  background-color: #fff;
  margin: 3px;
}
main section.join > div h3 br {
  display: none;
}
main section.join > div form {
  width: 80%;
  max-width: 1000px;
  margin: auto;
  font-family: sans-serif;
  font-weight: bold;
}
main section.join > div form p label span select,
main section.join > div form p label span input,
main section.join > div form p label span textarea {
  color: #397f9e!important;
}
main section.join > div form p:nth-child(2) label span{
      display: inline-block;
    max-width: 1000px;
    width: 100%;
}
main section.join > div form p:nth-child(13){
  text-align: center;
}
main section.join > div form p:nth-child(13) span span span{
  margin-left: 0;
}
main section.join > div form p>input[type="submit"]{
      display: block;
  color: #397f9e;
  background-color: #fff;
  margin: 50px auto 0;
  font-size: 26px;
  width: 300px;
  padding: 0;
}
main section.join > div form label {
  color: #fff;
  font-size: 24px;
  display: block;
  margin-top: 50px;
}
main section.join > div form select {
  display: block;
  width: 100%;
  height: 50px;
  font-weight: bold;
  padding-left: 20px;
}
main section.join > div form input {
  width: 100%;
  height: 50px;
  padding-left: 20px;
}
main section.join > div form textarea {
  width: 100%;
  height: 300px;
  padding-left: 20px;
}
main section.join > div form button {
  display: block;
  color: #397f9e;
  background-color: #fff;
  padding: 20px 50px;
  margin: 50px auto 0;
  font-size: 26px;
}
main section.join > div form >div{
      text-align: center;
    padding: 30px;
    width: 100%;
    color: #fff;
    margin: auto;
}
main > div {
  font-family: serif;
  margin-top: 50px;
}
main > div a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 5px;
  font-size: 20px;
}
main > div a:last-child {
  border-bottom: 1px solid #397f9e;
}
@media screen and (max-width: 1000px) {
  main section.join {
    width: 95%;
    margin-top: 50px;
  }
  main section.join h2 {
    font-size: 50px;
    margin-bottom: 50px;
    padding-top: 50px;
    padding-left: 50px;
  }
  main section.join h2 img {
    width: 80%;
    max-width: 500px;
  }
  main section.join > p {
    line-height: 26px;
    font-size: 18px;
    padding-left: 50px;
    padding-right: 50px;
  }
  main section.join ul {
    padding-left: 50px;
  }
  main section.join ul li {
    font-size: 22px;
    margin-bottom: 15px;
  }
  main section.join ul li span {
    margin-right: 20px;
  }
  main section.join > div h3 {
    font-size: 34px;
  }
  main section.join > div h3 span {
    padding: 10px;
    background-color: #fff;
    margin: 2px;
  }
  main section.join > div form {
    width: 90%;
  }
}
@media screen and (max-width: 700px) {
  main section.join {
    margin-top: 20px;
  }
  main section.join h2 {
    font-size: 30px;
    padding-top: 30px;
    padding-left: 30px;
    margin-bottom: 30px;
  }
  main section.join h2 img {
    max-width: 300px;
    width: 100%;
  }
  main section.join > p {
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 30px;
  }
  main section.join ul {
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 30px;
  }
  main section.join ul li {
    font-size: 20px;
    margin-bottom: 15px;
  }
  main section.join ul li span {
    margin-right: 10px;
    padding: 8px;
  }
  main section.join > div h3 {
    font-size: 28px;
    padding-top: 50px;
    margin-bottom: 50px;
  }
  main section.join > div h3 span {
    padding: 6px;
    background-color: #fff;
    margin: 2px;
  }
  main section.join > div h3 br {
    display: block;
  }
  main section.join > div form label {
    font-size: 16px;
    margin-top: 20px;
  }
  main section.join > div form select {
    width: 100%;
    height: 30px;
    font-weight: bold;
    padding-left: 20px;
  }
  main section.join > div form input {
    width: 100%;
    height: 30px;
    padding-left: 20px;
  }
  main section.join > div form textarea {
    width: 100%;
    height: 200px;
    padding-left: 20px;
  }
  main section.join > div form button {
    color: #397f9e;
    background-color: #fff;
    padding: 10px 30px;
    margin: 30px auto 0;
    font-size: 20px;
  }
  main section.join > div form p>input[type="submit"]{
  font-size: 18px;
}
}

/*
会員ページ
*/
main section.member {
  width: 90%;
  max-width: 1500px;
  margin: auto;
  margin-top: 100px;
  border: 3px solid #397f9e;
  font-family: serif;
  padding: 70px;
}
main section.member h2 {
  font-size: 80px;
  font-family: serif;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 50px;
}
main section.member h2 img {
  width: 100%;
  display: block;
}
main section.member > p {
  color: #000;
  line-height: 30px;
  font-size: 20px;
  margin-bottom: 100px;
}
main section.member > div.research_meeting {
  margin-bottom: 100px;
}
main section.member > div.research_meeting h3 {
  font-size: 40px;
  font-family: sans-serif;
  background-image: url(../img/member_hb.jpg);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: contain;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px;
  text-shadow: 3px 3px 0 white, -3px 3px 0 white, 3px -3px 0 white, -3px -3px 0 white, 0 3px 0 white, 3px 0 0 white, -3px 0 0 white, 0 -3px 0 white;
}
main section.member > div.research_meeting > p {
  width: -moz-fit-content;
  width: fit-content;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 20px;
  padding-bottom: 20px;
  padding-right: 100px;
  border-bottom: 3px dotted #397f9e;
  margin-bottom: 100px;
}
main section.member > div.research_meeting > div.dl_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
main section.member > div.research_meeting > div.dl_list > div {
  width: 30%;
  max-width: 400px;
  margin-bottom: 50px;
}
main section.member > div.research_meeting > div.dl_list > div h4 {
  font-family: sans-serif;
  font-weight: bold;
  font-size: 20px;
}
main section.member > div.research_meeting > div.dl_list > div p {
  margin-top: 20px;
  color: #000;
  line-height: 32px;
}
main section.member > div.research_meeting div.news_pagination {
  margin-top: 50px;
}
main section.member > div.research_meeting div.news_pagination > div:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
}
main section.member > div.research_meeting div.news_pagination > div:first-child a {
  font-size: 40px;
  padding: 10px;
}
main section.member > div.research_meeting div.news_pagination > div:first-child img {
  height: 40px;
}
main section.member > div.research_meeting div.news_pagination > div:last-child {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
main section.member > div.research_meeting div.news_pagination > div:last-child a {
  font-weight: bold;
  font-family: sans-serif;
  padding: 0 20px;
}
main section.member > div.research_meeting div.news_pagination > div:last-child p {
  padding: 0 20px;
}
main section.member > div.member_logo {
  margin-bottom: 100px;
}
main section.member > div.member_logo h3 {
  font-size: 40px;
  font-family: sans-serif;
  background-image: url(../img/member_hb.jpg);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: contain;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px;
  text-shadow: 3px 3px 0 white, -3px 3px 0 white, 3px -3px 0 white, -3px -3px 0 white, 0 3px 0 white, 3px 0 0 white, -3px 0 0 white, 0 -3px 0 white;
}
main section.member > div.member_logo > img {
  margin: 50px 0;
  margin-left: 50px;
  width: 800px;
}
main section.member > div.member_logo > p:nth-child(3),
main section.member > div.member_logo > p:nth-child(6) {
  width: 500px;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 20px;
  padding-bottom: 20px;
  border-bottom: 3px dotted #397f9e;
}
main section.member > div.member_logo > p:nth-child(4),
main section.member > div.member_logo > p:nth-child(7) {
  width: 500px;
  text-align: right;
  margin-top: 10px;
  margin-bottom: 50px;
}
main section.member > div.member_logo > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}
main section.member > div.member_logo > div > div {
  width: 30%;
  max-width: 400px;
  margin-bottom: 50px;
}
main section.member > div.member_logo > div > div p {
  font-weight: bold;
  font-family: sans-serif;
  text-align: right;
}
main section.member > div.member_logo > a {
  width: 30%;
  max-width: 400px;
}
main section.member > div.basic_materials h3 {
  font-size: 40px;
  font-family: sans-serif;
  background-image: url(../img/member_hb.jpg);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: contain;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px;
  text-shadow: 3px 3px 0 white, -3px 3px 0 white, 3px -3px 0 white, -3px -3px 0 white, 0 3px 0 white, 3px 0 0 white, -3px 0 0 white, 0 -3px 0 white;
}
main section.member > div.basic_materials > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
main section.member > div.basic_materials > div > div {
  width: 30%;
  max-width: 400px;
  margin-bottom: 50px;
}
main section.member > div.basic_materials > div > div a{
  margin-top: 20px;
}
main section.member > div.basic_materials > div > div > p:first-child {
  width: 100%;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 20px;
  padding-bottom: 20px;
  border-bottom: 3px dotted #397f9e;
}
main section.member > div.basic_materials > div > div > p:nth-child(2) {
  width: 100%;
  text-align: right;
  margin-top: 10px;
  margin-bottom: 50px;
}
main section.member > div.basic_materials > div > div:first-child p.bm {
  font-weight: bold;
  font-family: sans-serif;
  text-align: right;
  margin-bottom: 30px;
  font-size: 20px;
}
@media screen and (max-width: 1000px) {
  main section.member {
    width: 95%;
    margin-top: 50px;
    padding: 50px;
  }
  main section.member h2 {
    font-size: 50px;
    margin-bottom: 80px;
  }
  main section.member h2 img {
    width: 80%;
    max-width: 500px;
  }
  main section.member > p {
    line-height: 26px;
    font-size: 18px;
    margin-bottom: 50px;
  }
  main section.member > div.research_meeting {
    margin-bottom: 50px;
  }
  main section.member > div.research_meeting h3 {
    font-size: 30px;
  }
  main section.member > div.research_meeting > p {
    font-size: 18px;
    padding-bottom: 10px;
    padding-right: 100px;
    margin-bottom: 50px;
  }
  main section.member > div.research_meeting > div.dl_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  main section.member > div.research_meeting > div.dl_list > div {
    width: 45%;
    margin-bottom: 50px;
  }
  main section.member > div.research_meeting > div.dl_list > div h4 {
    font-size: 18px;
  }
  main section.member > div.research_meeting > div.dl_list > div p {
    margin-top: 10px;
    line-height: 26px;
  }
  main section.member > div.research_meeting div.news_pagination {
    margin-top: 10px;
  }
  main section.member > div.member_logo {
    margin-bottom: 80px;
  }
  main section.member > div.member_logo h3 {
    font-size: 30px;
  }
  main section.member > div.member_logo > img {
    margin: 20px auto 40px;
    width: 80%;
  }
  main section.member > div.member_logo > p:nth-child(3),
  main section.member > div.member_logo > p:nth-child(6) {
    font-size: 18px;
    padding-bottom: 10px;
  }
  main section.member > div.member_logo > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  main section.member > div.member_logo > div > div {
    width: 45%;
    margin-bottom: 50px;
  }
  main section.member > div.member_logo > div > div p {
    font-weight: bold;
    font-family: sans-serif;
    text-align: right;
  }
  main section.member > div.member_logo > a {
    width: 45%;
  }
  main section.member > div.basic_materials h3 {
    font-size: 30px;
  }
  main section.member > div.basic_materials > div > div {
    width: 45%;
  }
  main section.member > div.basic_materials > div > div > p:first-child {
    font-size: 18px;
    padding-bottom: 10px;
  }
  main section.member > div.basic_materials > div > div > p:nth-child(2) {
    width: 100%;
    text-align: right;
    margin-top: 10px;
    margin-bottom: 50px;
  }
  main section.member > div.basic_materials > div > div:first-child p.bm {
    font-size: 18px;
  }
}
@media screen and (max-width: 700px) {
  main section.member {
    margin-top: 20px;
    padding: 30px;
  }
  main section.member h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  main section.member h2 img {
    max-width: 300px;
    width: 100%;
  }
  main section.member > p {
    margin-bottom: 30px;
  }
  main section.member > div.research_meeting > p {
    padding-right: 0px;
    margin-bottom: 30px;
  }
  main section.member > div.research_meeting > div.dl_list {
    display: block;
  }
  main section.member > div.research_meeting > div.dl_list > div {
    width: 80%;
    margin: 0 auto 30px;
  }
  main section.member > div.research_meeting > div.dl_list > div h4 {
    font-size: 16px;
  }
  main section.member > div.research_meeting > div.dl_list > div p {
    margin-top: 10px;
    line-height: 26px;
  }
  main section.member > div.member_logo h3 {
    font-size: 30px;
  }
  main section.member > div.member_logo > img {
    margin: 10px auto 30px;
    width: 100%;
  }
  main section.member > div.member_logo > p:nth-child(3),
  main section.member > div.member_logo > p:nth-child(6) {
    width: 100%;
  }
  main section.member > div.member_logo > p:nth-child(4),
  main section.member > div.member_logo > p:nth-child(7) {
    width: 100%;
    margin-bottom: 30px;
  }
  main section.member > div.member_logo > div {
    display: block;
    margin-bottom: 50px;
  }
  main section.member > div.member_logo > div > div {
    width: 80%;
    margin: auto;
    margin-bottom: 30px;
  }
  main section.member > div.member_logo > a {
    width: 80%;
    margin: auto;
  }
  main section.member > div.basic_materials > div {
    display: block;
  }
  main section.member > div.basic_materials > div > div {
    width: 80%;
    margin: 0 auto 30px;
  }
  main section.member > div.basic_materials > div > div > p:first-child {
    font-size: 18px;
    padding-bottom: 10px;
  }
  main section.member > div.basic_materials > div > div > p:nth-child(2) {
    width: 100%;
    text-align: right;
    margin-top: 0px;
    margin-bottom: 10px;
  }
  main section.member > div.basic_materials > div > div:first-child p.bm {
    font-size: 18px;
  }
}

/*
企業様へのご案内
*/
main section.g_company {
  width: 90%;
  max-width: 1500px;
  margin: auto;
  margin-top: 100px;
  border: 3px solid #397f9e;
  font-family: serif;
  padding: 70px;
}
main section.g_company h2 {
  font-size: 80px;
  font-family: serif;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 50px;
}
main section.g_company h2 img {
  width: 100%;
  display: block;
}
main section.g_company > div.gc_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 100px;
}
main section.g_company > div.gc_top div {
  width: 58%;
}
main section.g_company > div.gc_top div p:first-child {
  font-size: 50px;
  font-weight: bold;
  font-family: sans-serif;
  margin-bottom: 50px;
}
main section.g_company > div.gc_top div p:last-child {
  font-size: 18px;
  color: #000;
  line-height: 36px;
}
main section.g_company > div.gc_top > img {
  width: 40%;
}
main section.g_company > div.gc_merit {
  display: flex;
}
main section.g_company > div.gc_merit h3 {
  writing-mode: vertical-rl;
  font-size: 50px;
  font-family: sans-serif;
  background-image: url(../img/gc_merit_hb.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  padding: 15px;
  height: -moz-fit-content;
  height: fit-content;
  margin-right: 50px;
  text-shadow: 3px 3px 0 white, -3px 3px 0 white, 3px -3px 0 white, -3px -3px 0 white, 0 3px 0 white, 3px 0 0 white, -3px 0 0 white, 0 -3px 0 white;
}
main section.g_company > div.gc_merit > div > div {
  padding-bottom: 40px;
  margin-top: 50px;
  border-bottom: 3px dotted #397f9e;
}
main section.g_company > div.gc_merit > div > div:first-child {
  padding-bottom: 20px;
}
main section.g_company > div.gc_merit > div > div:last-child {
  border-bottom: none;
}
main section.g_company > div.gc_merit > div > div h4 {
  font-size: 30px;
  font-family: sans-serif;
  margin-bottom: 20px;
}
main section.g_company > div.gc_merit > div > div h4 span {
  margin-right: 15px;
  color: #fff;
  background-color: #397f9e;
  border-radius: 50px;
  padding: 15px;
}
main section.g_company > div.gc_merit > div > div p {
  color: #000;
  margin-left: 50px;
}
main section.g_company > div.gc_merit > div > div > div {
  display: flex;
  justify-content: end;
}
main section.g_company > div.gc_merit > div > div > div a {
  color: #ffffff;
  background-image: url(../img/a_link.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  font-weight: bold;
  font-family: sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px 45px;
}
@media screen and (max-width: 1400px) {
  main section.g_company > div.gc_top div {
    width: 54%;
  }
  main section.g_company > div.gc_top div p:first-child {
    font-size: 36px;
    margin-bottom: 50px;
  }
  main section.g_company > div.gc_top div p:last-child {
    font-size: 18px;
    color: #000;
    line-height: 26px;
  }
  main section.g_company > div.gc_top > img {
    width: 44%;
  }
}
@media screen and (max-width: 1000px) {
  main section.g_company {
    width: 95%;
    margin-top: 50px;
    padding: 50px;
  }
  main section.g_company h2 {
    font-size: 50px;
    margin-bottom: 50px;
  }
  main section.g_company h2 img {
    width: 80%;
    max-width: 500px;
  }
  main section.g_company > div.gc_top {
    margin-bottom: 50px;
  }
  main section.g_company > div.gc_top div {
    width: 50%;
  }
  main section.g_company > div.gc_top div p:first-child {
    font-size: 30px;
    margin-bottom: 20px;
  }
  main section.g_company > div.gc_top div p:last-child {
    line-height: 22px;
  }
  main section.g_company > div.gc_top > img {
    width: 46%;
  }
  main section.g_company > div.gc_merit h3 {
    font-size: 40px;
    margin-right: 30px;
  }
  main section.g_company > div.gc_merit > div > div {
    padding-bottom: 20px;
    margin-top: 30px;
  }
  main section.g_company > div.gc_merit > div > div:first-child {
    padding-bottom: 0;
  }
  main section.g_company > div.gc_merit > div > div h4 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  main section.g_company > div.gc_merit > div > div h4 span {
    margin-right: 10px;
    padding: 10px;
  }
  main section.g_company > div.gc_merit > div > div p {
    margin-left: 0;
  }
  main section.g_company > div.gc_merit > div > div > div a {
  padding: 10px 25px;
  font-size: 16px;
}
}
@media screen and (max-width: 700px) {
  main section.g_company {
    margin-top: 20px;
    padding: 20px;
  }
  main section.g_company h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  main section.g_company h2 img {
    max-width: 350px;
    width: 100%;
  }
  main section.g_company > div.gc_top {
    margin-bottom: 50px;
    flex-direction: column-reverse;
  }
  main section.g_company > div.gc_top div {
    width: 100%;
  }
  main section.g_company > div.gc_top div p:first-child {
    font-size: 24px;
    margin-bottom: 15px;
  }
  main section.g_company > div.gc_top div p:last-child {
    line-height: 22px;
  }
  main section.g_company > div.gc_top > img {
    width: 80%;
    margin-bottom: 20px;
  }
  main section.g_company > div.gc_merit h3 {
    font-size: 24px;
    margin-right: 10px;
    padding: 8px;
    text-shadow: 2px 2px 0 white, -2px 2px 0 white, 2px -2px 0 white, -2px -2px 0 white, 0 2px 0 white, 2px 0 0 white, -2px 0 0 white, 0 -2px 0 white;
  }
  main section.g_company > div.gc_merit > div > div {
    padding-bottom: 20px;
    margin-top: 20px;
  }
  main section.g_company > div.gc_merit > div > div h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  main section.g_company > div.gc_merit > div > div h4 span {
    padding: 5px;
  }
}
main section.gc_case {
  width: 90%;
  max-width: 1500px;
  margin: auto;
  font-family: serif;
  padding: 70px;
  background-color: #397f9e;
  color: #fff;
}
main section.gc_case h2 {
  font-size: 50px;
  margin-bottom: 100px;
  font-family: sans-serif;
  text-align: center;
  color: #397f9e;
}
main section.gc_case h2 span {
  background-color: #fff;
  padding: 10px;
  margin: 5px;
}
main section.gc_case h2 br {
  display: none;
}
main section.gc_case > div {
  width: 90%;
  margin: 0 auto 100px;
}
main section.gc_case > div:last-child {
  margin-bottom: 0;
}
main section.gc_case > div img {
  padding: 15px;
  background-color: #fff;
  margin-bottom: 30px;
}
main section.gc_case > div h3 {
  font-size: 30px;
  font-family: sans-serif;
  padding-bottom: 10px;
  border-bottom: 3px dotted #fff;
}
main section.gc_case > div div h4 {
  font-size: 22px;
  font-family: sans-serif;
  margin-top: 30px;
}
main section.gc_case > div div h4::before {
  content: "■";
  margin-right: 10px;
}
main section.gc_case > div div p {
  margin-left: 34px;
  font-weight: bold;
  line-height: 30px;
}
@media screen and (max-width: 1000px) {
  main section.gc_case {
    width: 95%;
    padding: 50px;
  }
  main section.gc_case h2 {
    font-size: 40px;
    margin-bottom: 50px;
  }
  main section.gc_case > div {
    width: 90%;
    margin: 0 auto 50px;
  }
  main section.gc_case > div img {
    padding: 15px;
    background-color: #fff;
    margin-bottom: 30px;
  }
  main section.gc_case > div h3 {
    font-size: 26px;
  }
  main section.gc_case > div div h4 {
    font-size: 20px;
    margin-top: 20px;
  }
  main section.gc_case > div div p {
    margin-left: 30px;
    line-height: 26px;
  }
}
@media screen and (max-width: 700px) {
  main section.gc_case {
    padding: 30px;
  }
  main section.gc_case h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  main section.gc_case h2 span {
    padding: 6px;
    margin: 3px;
  }
  main section.gc_case h2 br {
    display: block;
  }
  main section.gc_case > div {
    width: 100%;
    margin: 0 auto 50px;
  }
  main section.gc_case > div img {
    padding: 10px;
  }
  main section.gc_case > div h3 {
    font-size: 22px;
  }
  main section.gc_case > div div h4 {
    font-size: 20px;
    margin-top: 20px;
  }
  main section.gc_case > div div p {
    margin-left: 0;
  }
}
main section.gc_end {
  width: 90%;
  max-width: 1500px;
  margin: auto;
  font-family: serif;
  text-align: center;
  padding-top: 100px;
}
main section.gc_end h2 {
  font-size: 40px;
  background-image: url(../img/gc_end_hb.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-family: sans-serif;
  padding: 100px;
}
main section.gc_end > p {
  color: #000;
  line-height: 36px;
  font-size: 18px;
  margin: 50px auto;
}
main section.gc_end > div {
  display: flex;
  width: 820px;
  justify-content: space-between;
  margin: auto;
}
main section.gc_end > div p {
  font-size: 40px;
  font-family: sans-serif;
  font-weight: bold;
  border: 3px solid #397f9e;
}
main section.gc_end > div p span {
  color: #fff;
  background-color: #397f9e;
  display: block;
  width: 300px;
}
main section.gc_end > div p:last-child span {
  width: 500px;
}
main section.gc_end > a {
  background-image: url(../img/orange.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-family: sans-serif;
  color: #fff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 26px;
  font-weight: bold;
  padding: 20px 100px;
  margin: auto;
}
@media screen and (max-width: 1000px) {
  main section.gc_end {
    width: 95%;
    padding-top: 50px;
  }
  main section.gc_end h2 {
    font-size: 30px;
    padding: 70px;
  }
  main section.gc_end > p {
    margin: 50px;
  }
  main section.gc_end > div {
    display: flex;
    width: 570px;
    justify-content: space-between;
    margin: auto;
  }
  main section.gc_end > div p {
    font-size: 30px;
  }
  main section.gc_end > div p span {
    width: 200px;
  }
  main section.gc_end > div p:last-child span {
    width: 350px;
  }
}
@media screen and (max-width: 700px) {
  main section.gc_end {
    padding-top: 0;
  }
  main section.gc_end h2 {
    font-size: 24px;
    padding: 50px 70px;
  }
  main section.gc_end > p {
    margin: 0 10px;
    line-height: 26px;
  }
  main section.gc_end > div {
    display: block;
    width: 90%;
    margin: 30px auto;
  }
  main section.gc_end > div p {
    font-size: 24px;
  }
  main section.gc_end > div p span {
    width: 100%;
  }
  main section.gc_end > div p:last-child {
    margin-top: 10px;
  }
  main section.gc_end > div p:last-child span {
    width: 100%;
  }
  main section.gc_end > a {
    font-size: 18px;
    font-weight: bold;
    padding: 20px 50px;
    margin: 30px auto 0;
  }
}

/*
事業内容について
*/
main section.business_content {
  width: 90%;
  max-width: 1500px;
  margin: auto;
  margin-top: 100px;
  border: 3px solid #397f9e;
  font-family: serif;
  padding: 70px;
}
main section.business_content h2 {
  font-size: 80px;
  font-family: serif;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 100px;
}
main section.business_content h2 img {
  width: 100%;
  display: block;
}
main section.business_content > div.bc3 > div h3 {
  font-size: 40px;
  font-family: sans-serif;
  background-image: url(../img/bc_hb.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-family: sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 0 white, -2px 2px 0 white, 2px -2px 0 white, -2px -2px 0 white, 0 2px 0 white, 2px 0 0 white, -2px 0 0 white, 0 -2px 0 white;
}
main section.business_content > div.bc3 > div h3 br {
  display: none;
}
main section.business_content > div.bc3 > div > div {
  display: flex;
  align-items: end;
  margin: auto;
  justify-content: center;
  margin-bottom: 100px;
}
main section.business_content > div.bc3 > div > div img {
  width: 40%;
}
main section.business_content > div.bc3 > div > div p {
  color: #000;
  font-size: 20px;
  line-height: 36px;
  margin-bottom: 50px;
  margin-left: 50px;
  width: 55%;
}
main section.business_content > div.bc3 > div:nth-child(2) > div p {
  margin-left: 0;
  margin-right: 50px;
}
main section.business_content > div.bc_strong {
  display: flex;
}
main section.business_content > div.bc_strong h3 {
  writing-mode: vertical-rl;
  font-size: 50px;
  font-family: sans-serif;
  background-image: url(../img/bc_hb2.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  padding: 15px;
  height: -moz-fit-content;
  height: fit-content;
  margin-right: 50px;
  text-shadow: 3px 3px 0 white, -3px 3px 0 white, 3px -3px 0 white, -3px -3px 0 white, 0 3px 0 white, 3px 0 0 white, -3px 0 0 white, 0 -3px 0 white;
}
main section.business_content > div.bc_strong > div > div {
  padding-bottom: 40px;
  margin-top: 50px;
  border-bottom: 3px dotted #397f9e;
}
main section.business_content > div.bc_strong > div > div:last-child {
  border-bottom: none;
}
main section.business_content > div.bc_strong > div > div h4 {
  font-size: 30px;
  font-family: sans-serif;
  margin-bottom: 20px;
}
main section.business_content > div.bc_strong > div > div h4 span {
  margin-right: 15px;
  color: #fff;
  background-color: #397f9e;
  border-radius: 50px;
  padding: 15px;
}
main section.business_content > div.bc_strong > div > div p {
  color: #000;
  margin-left: 50px;
}
main section.business_content > div.bc_strong > div > div > div {
  display: flex;
  justify-content: end;
}
main section.business_content > div.bc_strong > div > div > div a {
  color: #ffffff;
  background-image: url(../img/a_link.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  font-weight: bold;
  font-family: sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px 45px;
}
@media screen and (max-width: 1400px) {
  main section.business_content {
    padding: 50px;
  }
  main section.business_content h2 {
    font-size: 70px;
  }
  main section.business_content > div.bc3 > div h3 {
    font-size: 30px;
    padding: 15px;
  }
  main section.business_content > div.bc3 > div > div {
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
  }
  main section.business_content > div.bc3 > div > div img {
    width: 40%;
  }
  main section.business_content > div.bc3 > div > div p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1000px) {
  main section.business_content {
    width: 95%;
    margin-top: 50px;
  }
  main section.business_content h2 {
    font-size: 50px;
    margin-bottom: 50px;
  }
  main section.business_content h2 img {
    width: 80%;
    max-width: 500px;
  }
  main section.business_content > div.bc3 > div:first-child h3, main section.business_content > div.bc3 > div:nth-child(2) h3 {
    background-image: url(../img/bc_hb3.jpg);
  }
  main section.business_content > div.bc3 > div h3 {
    font-size: 26px;
    padding: 10px;
  }
  main section.business_content > div.bc3 > div h3 br {
    display: block;
  }
  main section.business_content > div.bc_strong h3 {
    font-size: 40px;
    margin-right: 30px;
  }
  main section.business_content > div.bc_strong > div > div {
    padding-bottom: 20px;
    margin-top: 30px;
  }
  main section.business_content > div.bc_strong > div > div h4 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  main section.business_content > div.bc_strong > div > div h4 span {
    margin-right: 10px;
    padding: 10px;
  }
  main section.business_content > div.bc_strong > div > div p {
    margin-left: 0;
  }
}
@media screen and (max-width: 700px) {
  main section.business_content {
    margin-top: 20px;
    padding: 20px;
  }
  main section.business_content h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  main section.business_content h2 img {
    max-width: 350px;
    width: 100%;
  }
  main section.business_content > div.bc3 > div h3 {
    font-size: 20px;
    text-align: center;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
  main section.business_content > div.bc3 > div > div {
    display: block;
  }
  main section.business_content > div.bc3 > div > div img {
    width: 70%;
    margin: 20px auto;
  }
  main section.business_content > div.bc3 > div > div p {
    margin: 0;
    width: 100%;
    margin: auto;
    font-size: 16px;
    line-height: 24px;
  }
  main section.business_content > div.bc3 > div > div p br {
    display: none;
  }
  main section.business_content > div.bc3 > div:nth-child(2) > div {
    display: flex;
    flex-direction: column-reverse;
  }
  main section.business_content > div.bc3 > div:nth-child(2) > div p {
    margin-right: 0;
    margin: auto;
  }
  main section.business_content > div.bc_strong h3 {
    font-size: 24px;
    margin-right: 10px;
    padding: 8px;
    text-shadow: 2px 2px 0 white, -2px 2px 0 white, 2px -2px 0 white, -2px -2px 0 white, 0 2px 0 white, 2px 0 0 white, -2px 0 0 white, 0 -2px 0 white;
  }
  main section.business_content > div.bc_strong > div > div {
    padding-bottom: 20px;
    margin-top: 20px;
  }
  main section.business_content > div.bc_strong > div > div h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  main section.business_content > div.bc_strong > div > div h4 span {
    padding: 5px;
  }
}
main section.other_business {
  width: 90%;
  max-width: 1500px;
  margin: auto;
  background-color: #397f9e;
  font-family: serif;
  padding: 70px;
  color: #ffffff;
}
main section.other_business h2 {
  font-size: 50px;
  margin-bottom: 100px;
  font-family: sans-serif;
  text-align: center;
  color: #397f9e;
}
main section.other_business h2 span {
  background-color: #fff;
  padding: 10px;
  margin: 5px;
}
main section.other_business h2 br {
  display: none;
}
main section.other_business > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 90%;
  max-width: 1000px;
  margin: auto;
}
main section.other_business > div div {
  width: 45%;
  max-width: 500px;
  margin-bottom: 80px;
}
main section.other_business > div div img {
  padding: 10px;
  background-color: #fff;
}
main section.other_business > div div h3 {
  font-family: sans-serif;
  font-size: 26px;
  padding: 20px 0;
  border-bottom: 3px dotted #fff;
}
main section.other_business > div div p {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
  line-height: 30px;
}
@media screen and (max-width: 1000px) {
  main section.other_business {
    width: 95%;
    padding: 50px;
  }
  main section.other_business h2 {
    font-size: 40px;
    margin-bottom: 60px;
  }
  main section.other_business > div {
    width: 100%;
  }
  main section.other_business > div div {
    width: 48%;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 700px) {
  main section.other_business {
    padding: 30px;
    padding-top: 50px;
  }
  main section.other_business h2 {
    font-size: 30px;
    margin-bottom: 40px;
  }
  main section.other_business h2 span {
    padding: 5px;
    margin: 3px;
  }
  main section.other_business h2 br {
    display: block;
  }
  main section.other_business > div {
    display: block;
  }
  main section.other_business > div div {
    width: 100%;
    margin: auto;
    margin-bottom: 50px;
  }
  main section.other_business > div div h3 {
    font-size: 20px;
    padding: 10px 0;
  }
  main section.other_business > div div p {
    margin-top: 10px;
    line-height: 26px;
    font-size: 16px;
  }
}
main section.bc_join {
  width: 90%;
  max-width: 1500px;
  margin: auto;
  font-family: serif;
  text-align: center;
  padding-top: 100px;
}
main section.bc_join h2 {
  font-size: 40px;
  background-image: url(../img/gc_end_hb.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-family: sans-serif;
  padding: 100px;
}
main section.bc_join > p {
  color: #000;
  line-height: 36px;
  font-size: 18px;
  margin: 50px auto;
}
main section.bc_join > div {
  display: flex;
  width: 90%;
  max-width: 1200px;
  justify-content: space-between;
  margin: auto;
}
main section.bc_join > div p {
  font-size: 22px;
  font-weight: bold;
  font-family: sans-serif;
}
main section.bc_join > a {
  background-image: url(../img/orange.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-family: sans-serif;
  color: #fff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 26px;
  font-weight: bold;
  padding: 20px 100px;
  margin: auto;
}
@media screen and (max-width: 1000px) {
  main section.bc_join {
    width: 95%;
    padding-top: 50px;
  }
  main section.bc_join h2 {
    padding: 100px;
    width: 80%;
    margin: auto;
    font-size: 36px;
  }
  main section.bc_join > div {
    width: 100%;
  }
  main section.bc_join > div p {
    font-size: 20px;
  }
  main section.bc_join > a {
    background-image: url(../img/orange.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    font-family: sans-serif;
    color: #fff;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 26px;
    font-weight: bold;
    padding: 20px 100px;
    margin: auto;
  }
}
@media screen and (max-width: 700px) {
  main section.bc_join h2 {
    padding: 30px;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    font-size: 30px;
  }
  main section.bc_join > div {
    width: 60%;
    display: block;
    margin: auto;
  }
  main section.bc_join > div p {
    font-size: 18px;
  }
  main section.bc_join > a {
    font-size: 18px;
    font-weight: bold;
    padding: 20px 50px;
    margin: 30px auto 0;
  }
}

/*
会員一覧
*/
main section.member_list {
  width: 90%;
  max-width: 1500px;
  margin: auto;
  margin-top: 100px;
  border: 3px solid #397f9e;
  font-family: sans-serif;
  padding: 70px;
}
main section.member_list h2 {
  font-size: 80px;
  font-family: serif;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 100px;
}
main section.member_list h2 img {
  width: 100%;
  display: block;
}
main section.member_list > div h3 {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 40px;
  background-image: url(../img/ml_hb.jpg);
  background-repeat: no-repeat;
  font-family: sans-serif;
  padding: 25px 0;
  padding-left: 25px;
  margin-top: 100px;
  text-shadow: 2px 2px 0 white, -2px 2px 0 white, 2px -2px 0 white, -2px -2px 0 white, 0 2px 0 white, 2px 0 0 white, -2px 0 0 white, 0 -2px 0 white;
}
main section.member_list > div > div {
  display: flex;
  flex-wrap: wrap;
}
main section.member_list > div > div > div {
  width: 30%;
  max-width: 400px;
  margin-right: 5%;
}
main section.member_list > div > div > div:nth-of-type(3n) {
  margin-right: 0;
}
main section.member_list > div > div a img {
  height: 100px;
  object-fit: contain;
  margin: 30px auto;
}
main section.member_list > div > div a p {
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 1px dotted #397f9e;
}
main section.member_list div.special img {
  margin-bottom: 50px;
}
main section.member_list div.special > div div {
  margin-bottom: 50px;
}
main section.member_list div.special > div div h4 {
  padding: 15px 0;
  font-size: 20px;
  border-bottom: 1px dotted #397f9e;
}
main section.member_list div.special > div div h4::before {
  content: "■";
  margin-right: 15px;
}
main section.member_list div.special > div div p {
  font-family: serif;
  padding-top: 15px;
}
@media screen and (max-width: 1000px) {
  main section.member_list {
    width: 95%;
    margin-top: 50px;
    padding: 50px;
  }
  main section.member_list h2 {
    font-size: 50px;
    margin-bottom: 50px;
  }
  main section.member_list h2 img {
    width: 80%;
    max-width: 500px;
  }
  main section.member_list > div h3 {
    font-size: 30px;
    padding: 20px 0;
    padding-left: 20px;
  }
  main section.member_list > div > div {
    display: flex;
    flex-wrap: wrap;
  }
  main section.member_list > div > div > div {
    width: 48%;
    margin-right: 4%;
  }
  main section.member_list > div > div > div:nth-of-type(3n) {
    margin-right: 4%;
  }
  main section.member_list > div > div > div:nth-of-type(2n) {
    margin-right: 0;
  }
  main section.member_list > div > div a img {
    height: 80px;
  }
  main section.member_list > div > div a p {
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: 1px dotted #397f9e;
  }
  main section.member_list div.special img {
    margin-bottom: 50px;
  }
  main section.member_list div.special > div div {
    margin-bottom: 50px;
  }
  main section.member_list div.special > div div h4 {
    padding: 15px 0;
    font-size: 20px;
    border-bottom: 1px dotted #397f9e;
  }
  main section.member_list div.special > div div h4::before {
    content: "■";
    margin-right: 15px;
  }
  main section.member_list div.special > div div p {
    font-family: serif;
    padding-top: 15px;
  }
}
@media screen and (max-width: 700px) {
  main section.member_list {
    margin-top: 20px;
    padding: 30px;
  }
  main section.member_list h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  main section.member_list h2 img {
    max-width: 350px;
    width: 100%;
  }
  main section.member_list > div h3 {
    font-size: 24px;
    background-size: auto;
    margin-top: 50px;
  }
  main section.member_list > div > div {
    display: block;
  }
  main section.member_list > div > div > div {
    width: 100%;
    margin: auto;
  }
  main section.member_list > div > div > div:nth-of-type(3n) {
    margin-right: 0;
    margin: auto;
  }
  main section.member_list > div > div > div:nth-of-type(2n) {
    margin-right: 0;
    margin: auto;
  }
  main section.member_list > div > div a {
    margin-bottom: 30px;
  }
  main section.member_list > div > div a img {
    height: 70px;
  }
  main section.member_list > div > div a p {
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: 1px dotted #397f9e;
  }
  main section.member_list div.special img {
    margin-bottom: 50px;
  }
  main section.member_list div.special > div div {
    margin-bottom: 50px;
  }
  main section.member_list div.special > div div h4 {
    padding: 15px 0;
    font-size: 20px;
    border-bottom: 1px dotted #397f9e;
  }
  main section.member_list div.special > div div h4::before {
    content: "■";
    margin-right: 15px;
  }
  main section.member_list div.special > div div p {
    font-family: serif;
    padding-top: 15px;
  }
}
main section.bc_join {
  width: 90%;
  max-width: 1500px;
  margin: auto;
  font-family: serif;
  text-align: center;
  padding-top: 100px;
}
main section.bc_join h2 {
  font-size: 40px;
  background-image: url(../img/gc_end_hb.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-family: sans-serif;
  padding: 100px;
}
main section.bc_join > p {
  color: #000;
  line-height: 36px;
  font-size: 18px;
  margin: 50px auto;
}
main section.bc_join > div {
  display: flex;
  width: 90%;
  max-width: 1200px;
  justify-content: space-between;
  margin: auto;
}
main section.bc_join > div p {
  font-size: 22px;
  font-weight: bold;
  font-family: sans-serif;
}
main section.bc_join > a {
  background-image: url(../img/orange.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-family: sans-serif;
  color: #fff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 26px;
  font-weight: bold;
  padding: 20px 100px;
  margin: auto;
}
@media screen and (max-width: 1000px) {
  main section.bc_join {
    width: 95%;
    padding-top: 50px;
  }
  main section.bc_join h2 {
    padding: 100px;
    width: 80%;
    margin: auto;
    font-size: 36px;
  }
  main section.bc_join > div {
    width: 100%;
  }
  main section.bc_join > div p {
    font-size: 20px;
  }
  main section.bc_join > a {
    background-image: url(../img/orange.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    font-family: sans-serif;
    color: #fff;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 26px;
    font-weight: bold;
    padding: 20px 100px;
    margin: auto;
  }
}
@media screen and (max-width: 700px) {
  main section.bc_join h2 {
    padding: 30px;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    font-size: 30px;
  }
  main section.bc_join > div {
    width: 60%;
    display: block;
    margin: auto;
  }
  main section.bc_join > div p {
    font-size: 18px;
  }
  main section.bc_join > a {
    font-size: 18px;
    font-weight: bold;
    padding: 20px 50px;
    margin: 30px auto 0;
  }
}

/*
活動実績
*/
main section.activity_results {
  width: 90%;
  max-width: 1500px;
  margin: auto;
  margin-top: 100px;
  border: 3px solid #397f9e;
  font-family: sans-serif;
  padding: 70px;
}
main section.activity_results h2 {
  font-size: 80px;
  font-family: serif;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 100px;
}
main section.activity_results h2 img {
  width: 100%;
  display: block;
}
main section.activity_results > div > div {
  display: flex;
  justify-content: space-between;
}
main section.activity_results > div > div:first-child div {
  padding: 50px 0 0;
}
main section.activity_results > div > div div {
  padding: 100px 0 0;
}
main section.activity_results > div > div div:first-child {
  background-color: #397f9e;
  width: 50px;
  position: relative;
}
main section.activity_results > div > div div:first-child div {
  position: absolute;
  left: -13px;
  width: 70px;
  height: 70px;
  background-color: #fff;
  border: 15px solid #f57e00;
  border-radius: 120px;
  padding: 0;
}
main section.activity_results > div > div div:nth-child(2) {
  margin-left: 40px;
  width: 700px;
}
main section.activity_results > div > div div:nth-child(2) p.date {
  font-size: 30px;
  font-weight: bold;
}
main section.activity_results > div > div div:nth-child(2) h3 {
  font-size: 30px;
}
main section.activity_results > div > div div:nth-child(2) > img {
  display: none;
}
main section.activity_results > div > div div:nth-child(2) h4 {
  font-size: 24px;
  margin: 20px 0 30px;
  padding-right: 100px;
}
main section.activity_results > div > div div:nth-child(2) p.speaker {
  font-size: 20px;
  font-weight: bold;
}
main section.activity_results > div > div div:nth-child(2) a {
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  padding: 80px;
  font-size: 22px;
  font-weight: bold;
  background-image: url(../img/a_link.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
main section.activity_results > div > div div:last-child {
  width: 600px;
}
main section.activity_results > div > div div:last-child img{
  width: 100%;
}
main section.activity_results div.news_pagination > div:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
}
main section.activity_results div.news_pagination > div:first-child a {
  font-size: 40px;
  padding: 10px;
}
main section.activity_results div.news_pagination > div:first-child img {
  height: 40px;
}
main section.activity_results div.news_pagination > div:last-child {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
main section.activity_results div.news_pagination > div:last-child a {
  font-weight: bold;
  font-family: sans-serif;
  padding: 0 20px;
}
main section.activity_results div.news_pagination > div:last-child p {
  padding: 0 20px;
}
@media screen and (max-width: 1650px) {
  main section.activity_results > div > div > div:first-child {
    width: 50px;
  }
  main section.activity_results > div > div > div:first-child div {
    left: -20px;
    width: 90px;
    height: 90px;
    border: 18px solid #f57e00;
  }
  main section.activity_results > div > div > div:nth-child(2) {
    width: 500px;
  }
  main section.activity_results > div > div > div:last-child {
    width: 500px;
  }
}
@media screen and (max-width: 1200px) {
  main section.activity_results > div {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
  main section.activity_results > div > div:first-child div {
    padding: 70px 0 0;
  }
  main section.activity_results > div > div > div {
    padding: 50px 0 0;
  }
  main section.activity_results > div > div > div:first-child {
    width: 40px;
  }
  main section.activity_results > div > div > div:first-child div {
    left: -20px;
    width: 80px;
    height: 80px;
    border: 18px solid #f57e00;
  }
  main section.activity_results > div > div > div:nth-child(2) {
    width: 400px;
  }
  main section.activity_results > div > div > div:nth-child(2) p.date {
    font-size: 24px;
    font-weight: bold;
  }
  main section.activity_results > div > div > div:nth-child(2) h3 {
    font-size: 26px;
  }
  main section.activity_results > div > div > div:nth-child(2) h4 {
    font-size: 18px;
    margin: 10px 0 15px;
  }
  main section.activity_results > div > div > div:nth-child(2) p.speaker {
    font-size: 16px;
  }
  main section.activity_results > div > div > div:nth-child(2) a {
    padding: 20px 60px;
    font-size: 18px;
  }
  main section.activity_results > div > div > div:last-child {
    width: 400px;
  }
}
@media screen and (max-width: 1100px) {
  main section.activity_results h2 {
    font-size: 40px;
  }
  main section.activity_results h2 img {
    width: 60%;
  }
  main section.activity_results > div {
    max-width: 800px;
  }
  main section.activity_results > div > div:first-child div {
    padding: 50px 0 0;
  }
  main section.activity_results > div > div > div {
    padding: 30px 0 0;
  }
  main section.activity_results > div > div > div:first-child {
    width: 20px;
  }
  main section.activity_results > div > div > div:first-child div {
    left: -15px;
    width: 50px;
    height: 50px;
    border: 10px solid #f57e00;
  }
  main section.activity_results > div > div > div:nth-child(2) {
    width: 90%;
  }
  main section.activity_results > div > div > div:nth-child(2) p.date {
    font-size: 18px;
    font-weight: bold;
  }
  main section.activity_results > div > div > div:nth-child(2) h3 {
    font-size: 20px;
  }
  main section.activity_results > div > div > div:nth-child(2) > img {
    display: block;
    width: 80%;
    margin: auto;
  }
  main section.activity_results > div > div > div:nth-child(2) h4 {
    font-size: 16px;
    margin: 6px 0 10px;
  }
  main section.activity_results > div > div > div:nth-child(2) p.speaker {
    font-size: 14px;
    font-weight: unset;
  }
  main section.activity_results > div > div > div:nth-child(2) a {
    padding: 15px 40px;
    font-size: 16px;
  }
  main section.activity_results > div > div > div:last-child {
    display: none;
  }
  main section.activity_results > a {
    padding: 50px;
    font-size: 20px;
  }
  main section.activity_results > a span {
    margin-right: 20px;
  }
}
@media screen and (max-width: 1000px) {
  main section.activity_results {
    width: 95%;
    margin-top: 50px;
    padding: 50px;
  }
  main section.activity_results h2 {
    font-size: 50px;
    margin-bottom: 50px;
  }
  main section.activity_results h2 img {
    width: 80%;
    max-width: 500px;
  }
}
@media screen and (max-width: 700px) {
  main section.activity_results {
    margin-top: 30px;
    padding: 30px;
  }
  main section.activity_results h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  main section.activity_results h2 img {
    max-width: 350px;
    width: 100%;
  }
  main section.activity_results > div.news_pagination div:last-child a {
    padding: 0 15px;
  }
  main section.activity_results > div > div div:nth-child(2) h4 {
  padding-right: 0px;
}
}

/*シングルページ*/
main section.single {
  width: 90%;
  max-width: 1500px;
  margin: auto;
  margin-top: 100px;
  border: 3px solid #397f9e;
  font-family: sans-serif;
  padding: 70px;
}
main section.single > p.single_date {
  font-size: 28px;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 2px dotted #397f9e;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 20px;
  padding-left: 20px;
}
main section.single h2 {
  font-size: 36px;
  margin: 30px 0;
}
main section.single h2::before {
  content: "■";
  margin-right: 30px;
}
main section.single > p.sub_title {
  font-size: 24px;
  font-weight: bold;
}
main section.single > div.speaker {
  display: flex;
  justify-content: end;
  margin-top: 30px;
}
main section.single > div.speaker p {
  font-weight: bold;
}
main section.single > div.single_content {
  margin-top: 50px;
  font-family: serif;
}
main section.single > div.single_content img {
  width: 70%;
  margin: auto;
  margin-bottom: 30px;
}
main section.single > div.single_content p {
  font-weight: bold;
  margin-bottom: 30px;
  text-align: left;
  font-size: 18px;
}
main section.single > div.single_content div {
  background-color: #397f9e;
  color: #ffffff;
  padding: 30px;
  font-weight: bold;
  line-height: 36px;
  font-size: 20px;
}
@media screen and (max-width: 1000px) {
  main section.single {
    width: 95%;
    margin-top: 50px;
    padding: 50px;
  }
  main section.single > p.single_date {
    font-size: 24px;
    padding-bottom: 0;
    padding-right: 10px;
    padding-left: 10px;
  }
  main section.single h2 {
    font-size: 30px;
    margin: 20px 0;
  }
  main section.single h2::before {
    margin-right: 20px;
  }
  main section.single > p.sub_title {
    font-size: 20px;
    font-weight: bold;
  }
  main section.single > div.speaker {
    margin-top: 20px;
  }
  main section.single > div.single_content div {
    padding: 20px;
    line-height: 26px;
    font-size: 18px;
  }
}
@media screen and (max-width: 700px) {
  main section.single {
    margin-top: 30px;
    padding: 20px;
  }
  main section.single > p.single_date {
    font-size: 18px;
  }
  main section.single h2 {
    font-size: 22px;
    margin: 15px 0;
  }
  main section.single h2::before {
    margin-right: 15px;
  }
  main section.single > p.sub_title {
    font-size: 18px;
    font-weight: bold;
  }
  main section.single > div.speaker {
    margin-top: 15px;
  }
  main section.single > div.single_content img {
    width: 80%;
  }
  main section.single > div.single_content p {
    font-size: 16px;
  }
  main section.single > div.single_content div {
    padding: 15px;
    line-height: 22px;
    font-size: 16px;
  }
}

/*
プライバシーポリシー
*/
main section.privacy_policy {
  width: 90%;
  max-width: 1500px;
  margin: auto;
  margin-top: 100px;
  border: 3px solid #397f9e;
  font-family: sans-serif;
  padding: 70px;
}
main section.privacy_policy h2 {
  font-size: 80px;
  font-family: serif;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 100px;
}
main section.privacy_policy h2 img {
  width: 100%;
  display: block;
}
main section.privacy_policy > div {
  font-size: 18px;
}
main section.privacy_policy > div > p {
  margin-bottom: 50px;
}
main section.privacy_policy > div > div {
  margin-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  main section.privacy_policy {
    width: 95%;
    margin-top: 50px;
    padding: 50px;
  }
  main section.privacy_policy h2 {
    font-size: 50px;
    margin-bottom: 50px;
  }
  main section.privacy_policy h2 img {
    width: 80%;
    max-width: 500px;
  }
}
@media screen and (max-width: 700px) {
  main section.privacy_policy {
    margin-top: 30px;
    padding: 30px;
  }
  main section.privacy_policy h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  main section.privacy_policy h2 img {
    max-width: 350px;
    width: 100%;
  }
  main section.privacy_policy > div {
    font-size: 16px;
  }
}

/*
シングル（会員のみなさまの声）
*/


/*
トヨタモビリティー
*/
.postid-384 main section.single-voice h2::after{
  content: "・竹本 由香梨 氏";
}

main section.single-voice div.single_hero {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 70%;
  margin: auto;
}
main section.single-voice div.single_hero img{
  object-fit: contain;

}
main section.single-voice div.single_hero img:first-child{
  width: 60%;
}
main section.single-voice div.single_hero img:last-child{
  width: 30%;
}
main section.single > div.single_content figure{
  margin-top: 30px;
}
main section.single > div.single_content figure img{
  margin: 0 auto;
  max-width: 600px;
  width: 80%;
}
main section.single > div.single_content figure figcaption{
  text-align: center;
  font-size: 16px;
}
main section.single-voice > div.single_content p{
  text-align: left;
  margin-bottom: 0;
  padding-top: 15px;
}
main section.single-voice > div.single_content h3{
  padding-bottom: 15px;
  border-bottom: 1px dotted #397f9e;
  margin-top: 30px;
}
main section.single-voice > div.single_content h3:first-child{
  margin-top: 0px;
}
@media screen and (max-width: 700px) {
  main section.single-voice div.single_hero {
    flex-direction: column-reverse;
  }
  main section.single-voice div.single_hero img:first-child{
    width: 80%;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  main section.single-voice div.single_hero img:last-child{
    width: 50%;
  }
  main section.single > div.single_content figure img{
  width: 100%;
}
}

/*
シングル（活動実績）
*/
main section.single-activity img{
  width: 80%;
  max-width: 600px;
  object-fit: contain;
  height: auto;
}

/*
アーカイブ（活動実績）
*/
main section.activity_results div.news_pagination > nav > div {
  display: flex;
  align-items: center;
  justify-content: center;
    font-weight: bold;
      padding: 10px;
      font-size: 30px;
      font-family: sans-serif;
}
main section.activity_results div.news_pagination > nav > div a {
  padding: 10px;
}
main section.activity_results div.news_pagination > nav > div span {
  padding: 10px;
  font-weight: lighter;
}

/*
アーカイブ（会員ページ）
*/

main section.archive-member .research_meeting div.news_pagination {
    display: flex;
  align-items: center;
  justify-content: center;
    font-weight: bold;
      padding: 10px;
      font-size: 30px;
      font-family: sans-serif;
}
main section.archive-member .research_meeting div.news_pagination a {
  padding: 10px;
}
main section.archive-member .research_meeting div.news_pagination span {
  padding: 10px;
  font-weight: lighter;
}

/*
よくあるご質問
*/

main section.faq > div > div {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dotted #397f9e;
}
main section.faq > div > div:last-child {
  border: none;
}
main section.faq > div > div a{
  padding: 10px 20px;
  color: #fff;
  background-color: #397f9e;
  font-weight: bold;
  display: block;
  width: fit-content;
  margin-top: 10px;
}
@media screen and (max-width: 700px) {
  main section.faq > div > div p{
    font-size: 16px;
}
}


/*問い合わせ・入会ページのCSS*/
main section.join > div form .wpcf7-list-item label,
main section.contact > div form .wpcf7-list-item label{
  display: flex;
}

main section.join > div form .wpcf7-list-item label input[name="acceptance-650"],
main section.join > div form .wpcf7-list-item label input[name="acceptance-237"],
main section.contact > div form .wpcf7-list-item label input[name="acceptance-236"]{
  width: 24px;
}
main section.join > div form .wpcf7-list-item label .wpcf7-list-item-label,
main section.contact > div form .wpcf7-list-item label .wpcf7-list-item-label{
  display: flex;
  align-items: center;
}


.himg{
  margin: auto;
  display: block;
  width: 80%;
  max-width: 500px;
  height: auto;
}

.hlimg{
  margin: unset;
  max-width: 700px;
      padding: 50px 0;
}

.h800img{
  max-width: 800px;
}