@charset "UTF-8";

/* -------------------------------------------------------------
   Fonts Import
------------------------------------------------------------- */

@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@4.1.1/dist/css/yakuhanmp.css");


/* -------------------------------------------------------------
   Global Styles
------------------------------------------------------------- */

html,
body {
  width: 100% !important;
  height: 100% !important;
}

html {
  /* font-size: 93.75% !important; */
  /*15px*/
  -webkit-text-size-adjust: 100% !important;
  -ms-text-size-adjust: 100% !important;
  -ms-overflow-style: scrollbar !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}

@media (max-width: 767px) {
  html {
    font-size: 93.75% !important;
    /*15px*/
}
}

body {
  background: #fff !important;
  font-family: YakuHanMP,"Noto Serif JP", "Merriweather", "Sawarabi Mincho", serif;
  line-height: 1.75 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.05rem;
  background:#133474 !important;
  color: #3E5867;
  font-weight: 600;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:focus {
  outline: none !important;
}

*:focus {
  box-shadow: none !important;
}

/* -------------------------------------------------------------
   Scrollbar
------------------------------------------------------------- */

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f7f7f7;
}

::-webkit-scrollbar-thumb {
  background: #9b9b9b;
  border-radius: 5px;
}

/* -------------------------------------------------------------
   loading
------------------------------------------------------------- */

/* ローディング画面のデザイン */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #133474;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#loading-screen .spinner {
  width: 50px;
  height: 50px;
  border: 6px solid #ccc;
  border-top-color: #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

#loading-screen p {
  margin-top: 15px;
  font-size: 1.2rem;
  color: #fff;
}

@keyframes spin {
  from {
      transform: rotate(0deg);
  }
  to {
      transform: rotate(360deg);
  }
}


/* -------------------------------------------------------------
   Container
------------------------------------------------------------- */

.container-fluid {
  margin: 0 auto;
  padding: 0 10px;
}

@media (max-width: 767px) {
  .container-fluid {
    padding: 0 10px;
  }
}

/* -------------------------------------------------------------
   Cover Section
------------------------------------------------------------- */

.cover-top {
  position: relative;
  width: 100%;
  height: 35.294117647058826vw;
  overflow: hidden;
}

.cover-top-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .cover-top {
    display: none;
  }
  .cover-top-sp {
    display: block;
  }
}

.cover-top .main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 35.294117647058826vw;
  background-image: image-set(
    url(../img/home-top.webp?=ver04) type("image/webp"),
    url(../img/home-top.png?=ver04) type("image/png")
  );
  background-position: center center;
  background-repeat: no-repeat;
  background-size: min(100vw, 1700px); /* 最大1700pxまで */

    /* 下60%までは不透明、その後透明にするマスク */
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
}

@media screen and (max-width:1240px) {
  .cover-top {
    height:540px;
  }
  .cover-top .main {
    height:540px;
    background-size: auto 100%; /* 高さ100%、横は自動で調整 */
}
}

/* テキスト画像を背景画像の中央より10%上に配置 */
.cover-title {
  position: absolute;
  top: 40%; /* 50% から 10% 上へ */
  left: 50%;
  transform: translate(-50%, -40%); /* Y軸方向の調整 */
  width: 100%;
  text-align: center;
}


/* テキスト画像のサイズ調整 */
.img-fluid.cover-img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: none;
}

@media (max-width: 1440px) {
  .img-fluid.cover-img {
    padding: 0 5%;
  }
}



/* -------------------------------------------------------------
   Header
------------------------------------------------------------- */

header {
  /* border-bottom: #ccc solid 1px; */
  margin: 0;
  padding: 15px 0 7px;
  /* margin-bottom: 15px; */
}

.header-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1240px;
  margin: 0  auto;
}

.title_area {
  margin: 0;
  padding: 0;
}

.pc,.side-pc {
  display: block;
}

.sp,.side-sp  {
  display: none;
}

@media (max-width: 991px) {
  header {
    position: sticky;
    top: 0 !important;
    z-index: 9999;
    background:#133474 !important;
  }


  .sp{
    display: block;
  }

  .side-pc {
    display: none;
  }

  .side-sp {
    display: none;
  }

  picture{
    margin-bottom: 25px;
  }
}

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

  .sp {
    display: block;
  }

  .side-sp {
    display: block;
  }
}

/* --  name/logo -------- */

.cName_area {
  display: flex;
  align-self: center;
  color: #fff;
  padding: 0;
  margin: 0;
}
.cName_area:hover {
  text-decoration: none;
  color: #fff;
}
.cName_area .logo {
  flex-shrink: 0;
  width: 75px;
  margin-top: 5px !important;
  margin-right: 15px !important;
}

.cName_area .logo > img {
  width: 75px;
}

.cName_area .cName {
  margin-left: 0;
}

.cName_area h4 {
  font-family: serif;
  font-size: clamp(0.938rem, 0.906rem + 0.16vw, 1.094rem);
  line-height: 1;
  margin: 0;
  padding: 0 0 10px;
  font-weight: bold !important;
  color: #FFF798;
  letter-spacing: 0.05em;
}

.cName_area h1 {
  display: -webkit-flex;
  display: flex;
  align-self: center;
  font-size: clamp(1.813rem, 1.738rem + 0.38vw, 2.188rem);
  line-height: 1;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  white-space: nowrap;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  color: #fff;
  letter-spacing: 0.1em;
}

.cName_area h3 {
  font-family: serif;
  font-size: clamp(0.688rem, 0.662rem + 0.13vw, 0.813rem);
  line-height: 1;
  white-space: nowrap;
  margin: 5px 0 0 2px;
  color: #fff;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  /* .cName_area h4 {
    font-size: 0.9rem;
  }

  .cName_area h1 {
    font-size: 1.75rem;
  }

  .cName_area h3 {
    font-size: 0.8rem;
  } */
}

@media (max-width: 767px) {
  .logo {
    display: none !important;
  }

  .cName_area .cName {
    margin-left: 0;
  }

  .cName_area h1 {
    font-size: 1.7rem;
    letter-spacing: -0.05em;
  }

  .cName_area h4 {
    font-size: 0.9rem;
  }

  .cName_area h3 {
    display: none;
  }
}

/* .cName_area h1 > br {
  display: none;
} */
@media (max-width: 540px) {
  .cName_area h1 > br {
    display: block;
  }
  .cName_area h1 {
    font-size: 1.4rem;
    letter-spacing: -0.05em;
    padding-bottom: 5px;
  }
  .cName_area h4 {
    font-size: 0.75rem;
    padding-top: 5px;
  }
}

@media (max-width: 420px) {
  .cName_area h1 {
    font-size: 1.2rem;
    letter-spacing: -0.05em;
    padding: 15px 0;
  }
  .cName_area h4 {
    display: none;
  }
}

/* --  Date/Place -------- */

.outline {
  margin-left: auto;
}

.outline dl {
  display: -webkit-flex;
  display: flex;
  align-items: baseline;
  margin: 0;
  padding: 0 5px 3px 0;
}

.outline dl dt,
.outline dl dd {
  margin: 0;
  padding: 0;
}

.outline dl dt {
  /* font-size: 0.9rem; */
  font-weight: 900;
  color: #3E5867;
  /* background: #3f3f3f; */
  padding: 0 7px;
  /* letter-spacing: -0.05rem; */
}

.outline dl dt > span {
  background: #FFD700;
  padding: 2px 7px;
}

.outline dl dd {
  /* font-size: 0.9rem; */
  font-weight: 500;
  padding: 0 6px;
  color: #fff;
  /* letter-spacing: -0.05rem; */
}

.toggled {
  margin-left: -18rem;
}

p {
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem) !important;
  font-weight: 900;
  padding: 0.75em;
  background: #fafafa;
  border-left: solid 5px #C62828;
}

.h5 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 1.215rem !important;
  color: #fff !important;
}

@media (max-width: 767px) {
  .h5 {
    font-size: 1.1rem !important;
    color: #203749 !important;
  }
}

#wrapper {
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  max-width: 1240px;
}

#wrapper-content {
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  max-width: 1240px;
  border-top: solid 1px #fff !important;
  padding-top:25px !important;
}


/* -- hamburger menu -- */
.menu-btn {
  position: fixed;
  top: 22px;
  right: 15px;
  display: flex;
  height: 55px;
  width: 55px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background: #FFD700;
  border-radius: 2px;
  margin: 0 !important;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 1px;
  width: 38px;
  border-radius: 3px;
  background-color: #133474;
  position: absolute;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu-btn-check {
  display: none;
}
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 80;
  background: #FFD700;
  transition: all 0.5s;
}
.menu-content ul {
  margin: 100px 15px 0;
  padding: 10px 0 50px;
  height: calc(100vh - 70px) !important;
  overflow-y: auto;
  -ms-overflow-style: none; /* IEとEdgeでスクロールバーを非表示 */
  scrollbar-width: none; /* Firefoxでスクロールバーを非表示 */
}

.menu-content ul::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Operaでスクロールバーを非表示 */
}

.menu-content ul li {
  border-bottom: solid 1px #fff;
  list-style: none;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-weight: 700;
  box-sizing: border-box;
  color: #133474;
  text-decoration: none;
  padding: 15px 0 15px 5px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}
.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #133474;
  border-right: solid 2px #133474;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 27px;
}

.menu-content ul li a:hover {
  color: #01579B;
  background-color: #fefaf9;
}

.menu-content ul li a:hover::before {
  border-top: solid 2px #fff !important;
  border-right: solid 2px #fff !important;
}

.menu-content ul li:last-child {
  margin-bottom: 150px !important;
}

.menu-content ul li.preparation {
  pointer-events: none !important;
}

.menu-content ul li.preparation > a > small {
  display: inline-block;
}

#menu-btn-check:checked ~ .menu-content {
  left: 0; /*メニューを画面内へ*/
}

@media (max-width: 767px) {
  .menu-btn {
    position: fixed;
    top: 12px;
    right: 15px;
    display: flex;
    /* height: 48px;
    width: 48px; */
  }
  .menu-btn span,
  .menu-btn span:before,
  .menu-btn span:after {
    height: 1px;
    width: 30px;
    border-radius: 1px;
  }
  .menu-btn span:before {
    bottom: 7px;
  }
  .menu-btn span:after {
    top: 7px;
  }
}

@media (max-width: 540px) {
  .menu-btn {
    top: 14px;
  }
}

@media (max-width: 420px) {
  .menu-btn {
    top: 16px;
    height: 44px;
    width: 44px;
  }
}


/* -------------------------------------------------------------
   content-area
------------------------------------------------------------- */

#society-main{
  border: solid 1px #d7f0ff;
  padding: 5px;
}

#society-main .content-area-top {
  padding: 25px 0 45px !important;
  border:  solid 1px #d7f0ff;
  margin-bottom: 25px;
}

#society-main .content-area {
  padding: 25px !important;
  background: #fff;
}

@media (max-width: 767px) {
  #society-main .content-area {
    padding: 25px 15px 45px !important;
    /* background: #005ab8; */
  }
}

.btno{
  border: none !important;
}

/* -------------------------------------------------------------
  content-area-guidance
------------------------------------------------------------- */

.content-area-guidance {
  padding: 5px !important;
  border:  solid 1px #d7f0ff;
  margin-bottom: 25px;
}

.guidance-area {
  position: relative;
  background: url("../img/guidance-area-bg.webp") no-repeat right bottom;
  background-size:350px auto;
  background-position: 98% 98%;
  padding: 35px;
  border: 5px solid #ccc;
  background-color: #fff;
}

/* WebPが対応していない場合にPNGを適用 */
@supports not (background-image: url("../img/guidance-area-bg.webp")) {
  .guidance-area {
      background-image: url("../img/guidance-area-bg.png");
  }
}

@media (max-width: 1240px) {
  .guidance-area {
    background-size:270px auto;
  }
}

@media (max-width: 768px) {
  .guidance-area {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .guidance-area {
    padding: 15px;
  }
}

.guidance-area > div{
margin-bottom: 25px;
}

.guidance-area > div.guidance-area-ttl > h2 {
  font-size: clamp(2rem, 1.8rem + 1vw, 3rem) !important;
  font-weight: 700 !important;
  /* color: #333 !important; */
  padding: 0;
  margin-bottom: 35px;
  background: none;
  border-left: none;
}

.guidance-area > div.guidance-area-ttl > h2 > span:first-child{
  color: #4774D3;
}

.guidance-area > div.guidance-area-ttl > h2 > span{
 display: inline-block;
}

.info-section {
  display: flex;
  margin-bottom: 1rem;
}
.info-label {
  background-color: #C62828;
  color: #fff;
  font-weight: bold;
  padding: 0.5rem;
  min-width: 100px;
  text-align: center;
  display: flex;
  align-items: center; 
  justify-content: center; 
}
.info-content {
  /* background-color: #fff; */
  /* color: #000; */
  font-weight: 700;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  flex-grow: 1;
  /* border: 1px solid #ddd; */
  display: flex;
  flex-direction: column; 
  justify-content: center;
  line-height: 1.4;
  text-shadow: 
    1px 0px 3px rgba(255, 255, 255, 0.9),  /* 右 */
    -1px 0px 3px rgba(255, 255, 255, 0.9), /* 左 */
    0px 1px 3px rgba(255, 255, 255, 0.9),  /* 下 */
    0px -1px 3px rgba(255, 255, 255, 0.9); /* 上 */
}
.highlight {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.2rem; 
}


/* -------------------------------------------------------------
  content-area-info
------------------------------------------------------------- */
.content-area-info {
  padding: 5px !important;
  border:  solid 1px #d7f0ff;
  margin-bottom: 25px;
}

.info-area {
  background: #fff;
  padding: 35px !important;
}

.info-area > h3 {
  font-size:clamp(1.375rem, 1.3rem + 0.38vw, 1.75rem);
}


@media (max-width: 767px) {
  .info-area {
    padding: 25px !important;
  }
  
}

/* -- News --- */

.info {
  padding:0;
  text-align: left;
  overflow: auto;
  width: 100%;
}

.info dl {
  display: flex;
  padding:0;
  margin: 1em 0;
  border-bottom: 1px solid #ccc;
}

@media (max-width: 540px) {
  .info {
    padding: 0;
  }
  .info dl {
    display: block;
  }
}

.info dt,
.info dd {
  padding-left: 0.25rem;
}

.info dt {
  padding-right: 0.5em;
}



/* -------------------------------------------------------------
  content-area-banner
------------------------------------------------------------- */
.content-area-banner {
  padding: 5px !important;
  border:  solid 1px #d7f0ff;
  margin-bottom: 25px;
}

.banner-area {
  padding: 20px 25px !important;
  background: #fff;
}

.banner-area .row {
  display: flex;
  flex-wrap: wrap;
  margin: -5px; 
}

.banner-area > .row > .bas {
  box-sizing: border-box; 
  flex: 0 0 calc(25% - 10px);
  max-width: calc(25% - 10px); 
  margin: 5px;
}

@media (max-width: 768px) {
  .banner-area {
    padding: 15px !important;
  }
  
  .banner-area > .row > .bas {
    flex: 0 0 calc(33.333% - 10px);
    max-width: calc(33.333% - 10px);
  }
}

@media (max-width: 576px) {
  .banner-area {
    padding: 10px !important;
  }
  
  .banner-area > .row > .bas {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

.banner-area .bas {
  padding: 0;
  box-sizing: border-box;
  border: 1px solid #666;
}

.banner-area img {
  display: block;
  width: 100%;
  height: auto;
}

.banner-area .bas:hover{
  box-shadow: 0 0 5px 0 rgba(0, 204, 255, 0.7);
  border: 1px solid rgba(0, 204, 255, 0.7);
  transition: all 0.3s ease;
}

/* -------------------------------------------------------------
   footer-area 
------------------------------------------------------------- */


.footer-banner-area {
  display: none;
  background: none !important;
  margin: 15vh 0 25px !important;
}

#footer-area {
  display: flex;
  /* border-top: #ccc solid 1px; */
  margin: 25vh 0 0;
  padding: 35px 0;
  gap:25px;
}

@media (max-width: 991px) {
  .footer-banner-area {
    display: block !important;
  }
  #footer-area {
    display: block !important;
    margin: 0 !important;
  }
}

#footer-area ul.secretariat,
#footer-area ul.secretariat li {
  margin: 0;
  padding: 0;
}


#footer-area ul.secretariat {
  width: 100%;
  margin: 0 0 35px;
  padding: 0;
  list-style: none;
}

#footer-area .secretariat02{
  display: flex;
  justify-content: space-between;
  gap:10px;
}

#footer-area .secretariat02 > div{
  width: 100%;
}

@media (max-width: 540px) {
  #footer-area .secretariat02{
    display: block;
  }
  #footer-area .secretariat02 > div{
    width: 96%;
    margin: 15px auto 25px;
  }
}

#footer-area ul.secretariat li {
  color: #fff;
  padding: 0;
  margin: 0;
}
#footer-area ul.secretariat li:nth-child(1) {
  color: #3E5867 !important;
  background-color: #fff;
  border: solid 1px #000;
  padding: 7px 0 5px;
  margin: 0 0 10px;
  font-weight: 900;
  text-align: center;
}

#footer-area ul.secretariat li:nth-child(2) {
  color: #fff;
  padding: 0 !important;
  margin: 0 0 3px;
  line-height: 1.45;
}

#footer-area ul.secretariat li:nth-child(3) span {
  display: inline-block !important;
}

.bg-light02{
  background: #eaeff3 !important;
}

/* -- copy-light　-- */
footer {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  margin: 0;
  padding: 12px 0;
  color: #fff;
}


/* -------------------------------------------------------------
   pagetop-scrol
------------------------------------------------------------- */

div#pagetop-scroll {
  display: none;
  position: fixed;
  right: 35px;
  bottom: 25px;
  color: #fff;
  width: 2.7em;
  height: 2.7em;
  border-radius: 50%;
  background: #6c757d;
  text-align: center;
  line-height: 2.7em;
}

.fa-3x {
  font-size: 1.25em;
  line-height: 2;
}

div#pagetop-scroll:hover {
  cursor: pointer;
  opacity: 0.9;
}


/* -------------------------------------------------------------
   side
------------------------------------------------------------- */

#society-aside {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  width: 100%;
  z-index: 1001;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  letter-spacing: 0.05rem;
}

#society-aside #society-main-menu ul,
#society-aside #society-main-menu ul li {
  margin: 0;
  padding: 0;
}

#society-aside #society-main-menu ul{
  border:solid 1px #d7f0ff;
  width: 93%;
  padding-top: 5px;
  padding-bottom: 5px;
}


#society-aside #society-main-menu ul li {
  margin: 0;
  list-style: none;
  text-decoration: none !important;
  /* background-color: #01579B; */
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #d7f0ff7d;
  display: inline-block;
  width: calc(100% - 10px);
  margin-left: 5px;
  /* font-family: "Noto Sans JP", sans-serif; */
  text-transform: uppercase;
}

#society-aside #society-main-menu ul li:last-child {
 border-bottom: none !important;
}

#society-aside #society-main-menu ul li a {
  text-decoration: none !important;
  position: relative;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none !important;
  display: block;
  width: 100%;
  padding: 10px 7px;
}

#society-aside #society-main-menu ul li a span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* color: #fff; */
  /* background: #333333; */
  padding: 0;
  margin: 1px 0 0 0;
  display: inline-block;
}

#society-aside #society-main-menu ul li a div {
  color: #fff;
  font-size: 1.1em !important;
  margin-left: 1.6em;
  display: inline-block;
  line-height: 2 !important;
}

#society-aside #society-main-menu ul li a div.wait {
  opacity: 0.5;
  display: inline-block;
  line-height: 2 !important;
}

#society-aside #society-main-menu ul li.preparation {
  pointer-events: none !important;
}

#society-aside #society-main-menu ul li.preparation a span {
  opacity: 0.5;
}

/* icon size */
.material-icons.md-13 {
  font-size: 13px;
}
.material-icons.md-14 {
  font-size: 14px;
}
.material-icons.md-15 {
  font-size: 15px;
}
.material-icons.md-16 {
  font-size: 16px;
}
.material-icons.md-17 {
  font-size: 17px;
}
.material-icons.md-18 {
  font-size: 18px;
}
.material-icons.md-24 {
  font-size: 24px;
}
.material-icons.md-36 {
  font-size: 36px;
}
.material-icons.md-48 {
  font-size: 48px;
}

.material-icons {
  display: inline-flex;
  vertical-align: middle;
}

.material-icons-right {
  display: none !important;
}

#society-aside #society-main-menu ul li:hover .material-icons-right {
  display: inline-flex !important;
  vertical-align: middle !important;
  margin-left: 58px !important;
}

#society-aside #society-main-menu ul li a:hover div {
  text-decoration: none !important;
  color: #fff;
}

#society-aside #society-main-menu ul li.society-active a div {
  color: #2d3e49 !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  pointer-events: none !important;
  cursor: default !important;
}


#society-aside #society-main-menu ul li.society-active a span {
  background: none !important;
}

#society-aside #society-main-menu ul li:hover {
  background-color: #1b4eb3 !important;
  text-decoration: none !important;
}

#society-aside #society-main-menu ul li:hover a span {
  color: #fff !important;
}

#society-aside #society-main-menu ul li.society-active {
  background-color: #FFD700;
  text-decoration: none !important;
  pointer-events: none !important;
}

/* ポスターダウンロード */
#society-aside .posd {
  width: 93%;
  margin: 22px 0 0;
  padding: 5px !important;
  border: solid 1px #fff;
}

#society-aside .posd-area {
  width: 100%;
  margin: 0;
  padding: 0 !important;
  background: #fff;
}

#society-aside .posd-area img {
  width: 100%;
}

#society-aside .posd-area a:hover {
  opacity: 0.7;
  text-decoration: none !important;
}

#society-aside .posd-area .posd-txt {
  color: #2E424C !important;
}

#society-aside .posd-area .posd-txt p{
  line-height: 1.35;
  font-size: 1.1em;
  font-weight: 900;
  font-family: "Oswald", serif;
  transform: scale(1.35, 1);
  letter-spacing: 0.01em;
}

#society-aside .posd-area .posd-txt p:nth-child(2){
  line-height: 1;
  font-size: 30px;
  font-weight: 900;
  transform: scale(1.1, 1);
}

#society-aside .answerform {
  width: 93%;
  margin: 22px 0 0;
  padding: 5px !important;
  border: solid 1px #fff;
  font-size: 1.1em !important;
}

#society-aside .answerform-area {
  width: 100%;
  margin: 0;
  padding: 15px 10px !important;
  background: #1d95d1;
  text-align: center;
}

#society-aside .answerform p {
  text-align: center;
  color: #fff;
  line-height: 1.35
}

#society-aside .answerform .custom-orange {
  background-color: #e6b222;
  border-color: #e6b222;
}
#society-aside .answerform .custom-orange:hover {
  background-color: #FFD700; 
  border-color: #FFD700;
}


#society-aside ul.secretariat,
#society-aside ul.secretariat li {
  margin: 0;
  padding: 0;
}

#society-aside ul.secretariat {
  width: 93%;
  margin: 22px 0 0;
  padding: 0;
  color: #fff;
  list-style: none;
  /* font-size: 0.85rem; */
}

#society-aside ul.secretariat li {
  line-height: 1.45;
  padding: 0 3px 0;
  /* letter-spacing: -0.01em; */
}
#society-aside ul.secretariat li:nth-child(1) {
  color: #133474;
  font-size: 1.05rem;
  background-color: #fff;
  border: solid 1px #000;
  padding: 7px 0 5px;
  margin-bottom: 10px;
  font-weight: bold;
  text-align: center;
  /* font-family: "Sawarabi Mincho", serif; */
}


/* #society-aside ul.secretariat li:nth-child(2) {
  color: #333;
  font-size: 0.85rem;
  padding: 1px 3px 6px;
  font-weight: bold;
} */

#society-aside ul.secretariat li.toptitle {
  color: #fff;
  /* font-size: 0.9rem; */
  padding: 1px 3px 1px;
  font-weight: bold;
  /* letter-spacing: -0.01em; */
  margin-bottom: 3px;
}

#society-main {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#society-aside::-webkit-scrollbar {
  display: none;
  /*スクロールバーを非表示*/
}

.text-shadow01 {
  text-shadow: 0 0 10px #000 !important;
}

.vertical {
  writing-mode: vertical-rl;
}

.v_line_left {
  border-left: solid 1px rgb(255, 255, 255);
  padding-left: 1px;
  height: 2.8rem !important;
}

.v_line_left02 {
  border-left: solid 1px rgb(255, 255, 255);
  padding-left: 1px;
  height: 3rem !important;
}



/* Sponsored CSS -------------------------------------------------------------- */

.head-border {
  display: flex;
  align-items: center;
  color: #107dc3 !important;
}

.head-border:before,
.head-border:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #ccc;
}

.head-border:before {
  margin-right: 1rem;
}

.head-border:after {
  margin-left: 1rem;
}

/* modal CSS -------------------------------------------------------------- */

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 23.8%;
}

.modalArea {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 160px);
  z-index: 99999;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 800px;
  padding: 45px 30px;
  background-color: #fff;
  margin-top: -80px;
}

@media (max-width: 767px) {
  .modalWrapper {
    width: 90%;
    padding: 45px 15px;
  }
}

.modalContents > p.mtitle {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: left;
}

.modalContents > p {
  font-size: 1rem;
  line-height: 2;
  font-weight: 500;
  text-align: center;
}

.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}

body.fixed02 {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

.lh1 {
  line-height: 1.2 !important;
}

.lh185 {
  line-height: 1.85 !important;
  text-align: justify;
  text-justify: inter-ideograph;
  overflow-wrap: break-word;
}

.lh2 {
  line-height: 2 !important;
  text-align: justify;
  text-justify: inter-ideograph; /* IE */
  overflow-wrap: break-word;
}

@media (max-width: 767px) {
  .lh2 {
    line-height: 1.65 !important;
  }
}

a.banner-link img:hover {
  opacity: 0.7 !important;
}

.fs15 {
  font-size: 1.5rem !important;
  /* font-family: "Oswald", sans-serif; */
  padding: 0 0.1rem;
}

.fs1red {
  font-size: 0.9rem !important;
  color: #b80000 !important;
  padding: 0 0.15rem;
}

.fs1blu {
  font-size: 0.9rem !important;
  color: #005ab8 !important;
  padding: 0 0.15rem;
}

._txt_red {
  color: #b80000 !important;
}

._txt_blu {
  color: #005ab8 !important;
}


.dinb {
  display: inline-block !important;
}

.no-scroll {
  overflow: hidden;
}

.small02{
  font-size: 0.9em !important;
}


.side-banner-area {
  background: initial !important;
}

.side-banner-area img{
  background: #fff !important;
  margin-bottom: 5px !important;
}

.banner05{
  width: 100%;
  height: auto;
  text-align: center;
  background: #fff !important;
  margin-bottom: 5px !important;
}

.banner05 > img{
  max-width: 11.25vw !important;
  min-width: 180px !important;
  margin: 0.55vw auto 0.9vw;
  padding: 0 !important;
}


.banner05-i{
  width: 100%;
  height: auto;
  text-align: center;
  background: #fff !important;
}

.banner05-i > img{
  max-width: 8.25vw !important;
  min-width: 180px !important;
  padding: 0 !important;
}


.banner05-i-area{
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100%;
  height: 100%;
  background: #fff !important;
}

.banner05-i-area img {
  border: none !important;
  width: 80%;
  margin: 0 auto !important;
}