@charset "UTF-8";
/*　common
****************************************************************************************************/
html {
  height: 100%;
  font-size: 62.5%; }

body {
  margin: 0;
  padding: 0;
  color: #222;
  font-size: 1.6rem;
  font-family: Meiryo, メイリオ, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Osaka, 'MS PGothic', arial, helvetica, sans-serif;
  line-height: 1;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; }
  body * {
    box-sizing: border-box; }

img {
  max-width: 100%; }

a {
  cursor: pointer; }

/* 非表示 */
.sp {
  display: none !important; }

.nodisp {
  position: absolute;
  left: -9999px; }

/* font-color */
.blue {
  color: #44b6fd; }

.yellow {
  color: #ffaa0c; }

.green {
  color: #7dc641; }

.pink {
  color: #ff7cae; }

.purple {
  color: #c87aff; }

.salmon {
  color: #fc9582; }


/* background-color */
.bg_blue {
  background-color: #daf0ff; }

.bg_yellow {
  background-color: #fff2db; }

.bg_green {
  background-color: #ecf7e3; }

.bg_pink {
  background-color: #ffe5ef; }

.bg_blue2 {
  background-color: #44b6fd; }

.bg_yellow2 {
  background-color: #ffaa0c; }

.bg_green2 {
  background-color: #7dc641; }

.bg_pink2 {
  background-color: #ff7cae; }

.bg_purple2 {
  background-color: #c87aff; }

.bg_salmon {
  background-color: #fc9582; }

/* align */
.right {
  text-align: right; }

/* margin */
.mt1em {
  margin-top: 1em; }

.ml1em {
  margin-left: 1em; }

/* indent */
.idt_none {
  padding-left: 0 !important;
  text-indent: 0 !important; }

.idt1em {
  padding-left: 1em;
  text-indent: -1em; }

.idt2_7em {
  padding-left: 2.7em;
  text-indent: -2.7em; }

.idt4_7em {
  padding-left: 4.7em;
  text-indent: -4.7em; }

/*　汎用クラス
---------------------------------------------------------------------------------------------------*/
.fixed {
  width: 100%;
  height: 100%;
  margin: auto;
  position: fixed;
  overflow: hidden; }

.inner {
  position: relative;
  max-width: 970px;
  margin: 0 auto;
  padding: 80px 10px 70px;
}

  /*　0410追加　*/
.inner_info {
  position: relative;
  max-width: 970px;
  margin: 0 auto;
 }

.flex_box {
  display: flex;
  flex-wrap: wrap; }

/* text */
.txt {
  line-height: 2.25;
  text-align: justify; }

/* list */
.decimal_list {
  margin-left: 1.5em;
  list-style: outside decimal; }

/* button */
.btn_blank_left {
  display: flex;
  justify-content: center;
  align-items: center; }
  .btn_blank_left::before {
    content: '';
    display: block;
    width: 20px;
    height: 16px;
    margin-right: 0.2em;
    background: url(../img/icon_blank_open.svg) no-repeat center center/contain; }

.btn_more {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 69px;
  padding: 0 0.5em;
  color: #fff !important;
  font-weight: bold;
  text-decoration: none !important;
  border-radius: 6px;
  background: #2a529e; }
  .btn_more::after {
    content: '';
    display: inline-block;
    width: 11px;
    height: 18px;
    margin-left: 0.5em;
    background: url(../img/icon_arrow_right.svg) no-repeat;
    background-size: contain; }
  .btn_more:hover {
    opacity: 0.7; }

.btn_blank_link {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 69px;
      margin-top: 15px;
      padding: 0 0.5em;
      color: #fff !important;
      font-weight: bold;
      text-decoration: none !important;
      border-radius: 6px;
      background: #2a529e; }
    .btn_blank_link::after {
      content: '';
      display: inline-block;
      background-color: #44FDF6;
      width: calc(1.3em + 1px);
      height: calc(1em + 1px);
      -webkit-mask: url("../img/icon_blank_open.svg") no-repeat center center/contain;
      mask: url("../img/icon_blank_open.svg");
      -webkit-mask-size: cover;
      mask-size: cover;
      vertical-align: middle;
      margin-left: 1em;
      /* background: url(../img/icon_blank_open.svg) no-repeat center center/contain;
      background-size: contain; */
    }
    .btn_blank_link:hover {
      opacity: 0.7;} 
    
.btn_pdf {
  display: flex;
  align-items: center;
  color: #2a529e !important;
  font-weight: bold; }
  .btn_pdf::before {
    content: '';
    display: block;
    width: 18px;
    min-width: 18px;
    height: 23px;
    min-height: 23px;
    margin-right: 8px;
    background: url(../img/icon_pdf.png) no-repeat;
    background-size: contain; }

#overlay {
  display: none;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  opacity: 0.7;
  -webkit-overflow-scrolling: touch;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.about_table > dl {
  display: flex; }
  .about_table > dl > dt,
  .about_table > dl > dd {
    display: flex;
    align-items: center; }
  .about_table > dl > dt {
    border-top: 2px solid #30539b;
    background-color: #ffe6bc;
    padding: 1.2em .4em 1.2em;
    width: 190px;
    font-weight: bold;
    line-height: 1.5;
    justify-content: center;
    text-align: center; }
  .about_table > dl > dd {
    border-top: 1px solid #5fa0c5;
    padding: 1.2em 1.4em 1.2em;
    width: calc(100% - 190px);
    line-height: 1.875;
    text-align: justify; }
  .about_table > dl:last-child > dt {
    margin-bottom: -1px;
    border-bottom: 2px solid #30539b; }
  .about_table > dl:last-child > dd {
    border-bottom: 1px solid #5fa0c5; }
.about_table .department_text {
  width: 100%; }
  .about_table .department_text > dl dt {
    font-weight: bold;
    text-indent: -1em;
    padding-left: 1em; }

/*　tab　*/
.tab-button-outer {
  display: block;
  max-width: 950px;
  margin: 30px auto 0; }
  .tab-button-outer .tab-button {
    display: flex; }
    .tab-button-outer .tab-button li {
      width: calc(196 / 950 * 100%);
      background-color: #dddddd;
      margin-right: 8px;
      border-bottom: 2px solid #fff; }
      .tab-button-outer .tab-button li:last-child {
        margin-right: 0; }
      .tab-button-outer .tab-button li a {
        font-size: 1.8rem;
        font-weight: bold;
        color: #222222;
        text-decoration: none;
        display: block;
        text-align: center;
        padding: 10px 0 9px; }

.tab-select-outer {
  display: none; }

/* animation */
@keyframes bound {
  from,
	20%,
	53%,
	80%,
	to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%,
	43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }
/*　基本構造
****************************************************************************************************/
footer {
  padding: 60px 0;
  background: #2a529e; }
  footer .inner {
    padding: 0 10px; }
  footer .btn_area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    footer .btn_area li {
      width: calc( (100% - 35px) / 2 );
      height: 100px;
      border: 3px  solid #5fa0c4;
      border-radius: 6px; }
      footer .btn_area li a {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        height: 100%;
        padding: 18px 0;
        text-decoration: none;
        text-align: center; }
        footer .btn_area li a::after {
          content: '';
          position: absolute;
          top: calc( (100% - 18px) / 2 );
          right: 20px;
          width: 11px;
          height: 18px;
          background: url(../img/icon_arrow_right.svg) no-repeat;
          background-size: contain; }
        footer .btn_area li a:hover {
          background: #6986bb; }
        footer .btn_area li a.btn_faq img {
          max-width: 89px;
          height: 3.5vh; }
        footer .btn_area li a.btn_entry_form img {
          max-width: 283px;
          height: 3.5vh; }
        footer .btn_area li a p {
          width: 100%;
          padding-top: 10px;
          color: #fff;
          text-align: center; }
        footer .btn_area li a .btn_blank_left::before {
          background: url(../img/icon_blank_open_w.svg) no-repeat center center/contain; }
	    footer .btn_area li.singlebtn {
    		width:80%;
    		margin:0 auto 15px;
		}
  footer .mail_area {
    margin-top: 50px; }
    footer .mail_area .contact_mail {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      max-width: 395px;
      height: 69px;
      margin: 0 auto 15px;
      text-decoration: none;
      border-radius: 6px;
      background: #5fa0c4; }
      footer .mail_area .contact_mail:hover {
        background: #63bdd7; }
      footer .mail_area .contact_mail > span {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        color: #fff;
        font-weight: bold; }
        footer .mail_area .contact_mail > span::before {
          content: '';
          display: inline-block;
          width: 39px;
          height: 30px;
          margin-right: 13px;
          background: url(../img/icon_mail.png) no-repeat;
          background-size: contain; }
    footer .mail_area p {
      color: #fff;
      text-align: center; }

#pdf_reader {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 35px 10px; }
  #pdf_reader .img_area {
    margin-right: 15px; }
    #pdf_reader .img_area img {
      width: 158px; }
  #pdf_reader .txt_area {
    line-height: 1.375; }
    #pdf_reader .txt_area a {
      justify-content: flex-start;
      color: #2a529e;
      font-weight: bold; }

#scroller {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9500;
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(95, 160, 196, 0.7) url(../img/icon_scrollup.svg) no-repeat center center/25px 27px; }

/*　下層画面
---------------------------------------------------------------------------------------------------*/
.underlayer header .common_title {
  position: relative;
  z-index: 99;
  padding: 15px 10px 12px;
  color: #2a529e;
  font-size: 2.6rem;
  font-weight: bold;
  font-family: arial, helvetica, sans-serif;
  text-align: center; }
.underlayer header #nav_area {
  background-color: #2a529e; }
  .underlayer header #nav_area ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 950px;
    margin: 0 auto; }
    .underlayer header #nav_area ul li {
      width: calc(100% / 5);
      border-left: 2px solid #5fa0c4; }
      .underlayer header #nav_area ul li a {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        height: 70px;
        text-decoration: none; }
        .underlayer header #nav_area ul li a p {
          width: 100%;
          text-align: center;
          font-weight: bold; }
        .underlayer header #nav_area ul li a .en_name {
          font-family: arial, helvetica, sans-serif;
          font-size: 2rem; }
        .underlayer header #nav_area ul li a .name {
          margin-top: -16px;
          color: #fff;
          font-size: 1.5rem; }
      .underlayer header #nav_area ul li:last-of-type {
        border-right: 2px solid #5fa0c4; }
      .underlayer header #nav_area ul li.active .en_name,
      .underlayer header #nav_area ul li a:hover .en_name {
        color: #fff; }
      .underlayer header #nav_area ul li:nth-of-type(1).active,
      .underlayer header #nav_area ul li:nth-of-type(1) a:hover {
        background-color: #c87aff; }
      .underlayer header #nav_area ul li:nth-of-type(2).active,
      .underlayer header #nav_area ul li:nth-of-type(2) a:hover {
        background-color: #7dc641; }
      .underlayer header #nav_area ul li:nth-of-type(3).active,
      .underlayer header #nav_area ul li:nth-of-type(3) a:hover {
        background-color: #44b6fd; }
      .underlayer header #nav_area ul li:nth-of-type(4).active,
      .underlayer header #nav_area ul li:nth-of-type(4) a:hover {
        background-color: #ffaa0c; }
      .underlayer header #nav_area ul li:nth-of-type(5).active,
      .underlayer header #nav_area ul li:nth-of-type(5) a:hover {
        background-color: #ff7cae; }
.underlayer header .breadClumbs {
  width: 100%;
  padding: 11px 10px 9px;
  background-color: #dddddd; }
  .underlayer header .breadClumbs ul {
    max-width: 950px;
    margin: 0 auto; }
    .underlayer header .breadClumbs ul li {
      display: inline-block;
      font-weight: bold; }
      .underlayer header .breadClumbs ul li:not(:last-child):after {
        content: '>';
        display: inline-block;
        margin-left: 0.5rem; }
      .underlayer header .breadClumbs ul li a {
        color: #2a529e;
        text-decoration: none; }
        .underlayer header .breadClumbs ul li a:hover {
          text-decoration: underline; }
.underlayer header .mainvisual {
  height: 155px;
  background: #46c72e url(../img/activities/bg_main.jpg) no-repeat center center; }
  .underlayer header .mainvisual .inner {
    height: 100%;
    padding: 0; }
  .underlayer header .mainvisual .title_area {
    justify-content: flex-start;
    height: 100%; }
    .underlayer header .mainvisual .title_area .title_area_wrap {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      height: 100%;
      padding: 0 10px; }
    .underlayer header .mainvisual .title_area .icon {
      width: 108px;
      margin-right: 20px; }
    .underlayer header .mainvisual .title_area .title h1 {
      color: #fff;
      font-weight: bold; }
      .underlayer header .mainvisual .title_area .title h1 span {
        display: block; }
      .underlayer header .mainvisual .title_area .title h1 .en_title {
        font-size: 6rem;
        font-family: arial, helvetica, sans-serif; }
      .underlayer header .mainvisual .title_area .title h1 .jp_title {
        padding-top: 6px;
        font-size: 2rem; }

/*　TOP
****************************************************************************************************/
#top #jreHeader,
#top #jreFooter,
#top section,
#top aside,
#top footer {
  display: none; }
#top .inner h2 {
  margin-bottom: 48px;
  font-size: 7rem;
  font-weight: bold;
  font-family: arial, helvetica, sans-serif; }
  #top .inner h2 span {
    padding-top: 12px;/*padding-top: 8px;*/
    display: block;
    color: #666666;/*color: #2a529e;*/
    font-size: 2rem;
    font-family: Meiryo, メイリオ, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Osaka, 'MS PGothic, arial, helvetica, sans-serif'; }
#top .inner h3 {
  margin-bottom: 48px;
  font-size: 4rem;
  font-weight: bold;
  font-family: arial, helvetica, sans-serif; }
  #top .inner h3 span {
    padding-top: 8px;
    display: block;
    color: #666666;/*color: #2a529e;*/
    font-size: 2rem;
    font-family: Meiryo, メイリオ, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Osaka, 'MS PGothic, arial, helvetica, sans-serif'; }
#top header .mainvisual {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0 auto;
  background: url(../img/bg_main_phase1.png) no-repeat top 188px center; }
  #top header .mainvisual::before {
    content: '';
    position: absolute;
    top: 0;
    z-index: 1;
    display: flex;
    width: 100%;
    background: #0051a2; }
  #top header .mainvisual.appear::before {
    height: 100%;
    -webkit-transition: 3s;
    -o-transition: 3s;
    transition: 3s;
    top: 100%; }
  #top header .mainvisual .phase_images {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    max-height: 595px; }
    #top header .mainvisual .phase_images > div {
      position: absolute;
      display: none;
      width: 100%;
      height: 100%; }
    #top header .mainvisual .phase_images .phase2 {
      background: url(../img/bg_main_phase2.png) no-repeat bottom center; }
    #top header .mainvisual .phase_images .phase3 {
      background: url(../img/bg_main_phase3.png) no-repeat bottom center; }
    #top header .mainvisual .phase_images .phase4 {
      background: url(../img/bg_main_phase4.png) no-repeat bottom center; }
    #top header .mainvisual .phase_images .phase5 {
      background: url(../img/bg_main_phase5.png) no-repeat bottom center; }
    #top header .mainvisual .phase_images .earth {
      content: '';
      position: absolute;
      bottom: -1686px;
      left: calc( (100% - 1945px) /2);
      display: block;
      width: 1945px;
      height: 1945px;
      border-radius: 50%;
      background: #0051a2; }
  #top header .mainvisual .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    height: 100%;
    padding: 20px 10px 0; }
  #top header .mainvisual .title_area {
    justify-content: flex-start; }
    #top header .mainvisual .title_area .title_area_wrap {
      display: flex;
      justify-content: center;
      align-items: center; }
    #top header .mainvisual .title_area .logo {
      width: 178px;
      margin-right: 15px; }
    #top header .mainvisual .title_area .title h1 {
      color: #2a529e;
      text-align: center; }
      #top header .mainvisual .title_area .title h1 span {
        display: block; }
      #top header .mainvisual .title_area .title h1 .en_main_title {
        padding-bottom: 6px;
        font-size: 3.2rem;
        font-weight: bold;
        font-family: arial, helvetica, sans-serif; }
      #top header .mainvisual .title_area .title h1 .jp_main_title {
        padding-top: 9px;
        font-size: 2.4rem;
        border-top: 2px solid #5fa0c4; }
  #top header .mainvisual #nav_area {
    position: absolute;
    top: 426px;
    left: calc((100% - 810px) / 2);
    display: none;
    justify-content: flex-end; }
    #top header .mainvisual #nav_area.appear {
      animation: bound 2s ease; }
    #top header .mainvisual #nav_area ul {
      display: flex;
      justify-content: center;
      align-items: flex-end;
      width: 95vw;
      height: 100%;
      max-width: 820px;
      margin: 0 auto; }
      #top header .mainvisual #nav_area ul li {
        width: calc(100% / 5); }
        #top header .mainvisual #nav_area ul li a {
          position: relative;
          display: block;
          text-decoration: none;
          padding-bottom: 17px; }
          #top header .mainvisual #nav_area ul li a:hover::after {
            content: "";
            position: absolute;
            bottom: 6px;
            left: calc((100% - 23px) / 2);
            border-style: solid;
            border-color: #44b6fd transparent transparent transparent;
            border-width: 13px 11.5px 0 11.5px; }
        #top header .mainvisual #nav_area ul li .img_area {
          display: flex;
          justify-content: center;
          align-items: center;
          width: 90px;
          height: 90px;
          margin: 0 auto;
          border-radius: 50%; }
        #top header .mainvisual #nav_area ul li .txt_area {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          align-items: center;
          padding: 13px 0 8px;
          border-left: 2px solid #5fa0c4; }
          #top header .mainvisual #nav_area ul li .txt_area p {
            width: 100%;
            text-align: center;
            font-weight: bold; }
          #top header .mainvisual #nav_area ul li .txt_area .en_name {
            font-size: 2rem;
            font-family: arial, helvetica, sans-serif; }
          #top header .mainvisual #nav_area ul li .txt_area .name {
            margin-top: 5px;
            color: #fff; }
        #top header .mainvisual #nav_area ul li:nth-of-type(1) .img_area img {
          width: 64px; }
        #top header .mainvisual #nav_area ul li:nth-of-type(2) .img_area img {
          width: 50px; }
        #top header .mainvisual #nav_area ul li:nth-of-type(3) .img_area img {
          width: 61px; }
        #top header .mainvisual #nav_area ul li:nth-of-type(4) .img_area img {
          width: 54px; }
        #top header .mainvisual #nav_area ul li:nth-of-type(5) .img_area img {
          margin: 9px 0 0 2px;
          width: 63px; }
        #top header .mainvisual #nav_area ul li:nth-of-type(5) .txt_area {
          border-right: 2px solid #5fa0c4; }
  #top header .mainvisual .skip_area {
    display: none;
    position: absolute;
    bottom: 5%;
    right: 5%;
    z-index: 2;
    background: #fff; }
    #top header .mainvisual .skip_area.appear {
      display: block; }
    #top header .mainvisual .skip_area .btn_skip {
      display: flex;
      padding: 0.2em 1em;
      color: #fff;
      font-size: 2rem;
      text-decoration: none;
      font-family: arial, helvetica, sans-serif;
      border: 2px solid #5fa0c4;
      background: #0051a2; }
      #top header .mainvisual .skip_area .btn_skip:hover {
        opacity: 0.7; }

#top .about .flex_box {
  justify-content: space-between; }
  #top .about .flex_box .left_area {
    width: calc( (100% - 15px) / 2);
    max-width: 445px; }
    #top .about .flex_box .left_area h4 {
      margin-bottom: 10px; }
    #top .about .flex_box .left_area .btn_pdf {
      margin-top: 10px; }
    #top .about .flex_box .left_area .btn_more {
      margin-top: 36px; }
  #top .about .flex_box .right_area {
    display: flex;
    align-items: flex-end;
    width: calc( (100% - 15px) / 2);
    max-width: 445px; }
    #top .about .flex_box .right_area img {
      width: 100%;
      max-width: 441px; }

/*20200318コロナ緊急対応追加分*/

/* #top .activities .right_area .schedule_list p,#info_text p{
	text-indent: -1em;
} */
#info_text p{color:#ff0000; font-weight:bold; padding-left: 1em; line-height: 1.3;}

#info_text {text-align:left; border:1px solid #ff0000; padding:15px; margin:30px auto 30px auto; color:#ff0000; }

.info_text_b {text-align:center; border:1px solid #ff0000; padding:20px; margin:30px auto 0px auto; color:#ff0000; }

.info_text_b p{color:#ff0000; font-weight:bold; padding-left: 1em; line-height: 1.3;}

.red {
	color: #ff0000;
}
/*20200318コロナ緊急対応追加分*/

/* 20220117 WaaS紹介ページリンク追加 */
.pick-up {
  margin-bottom: 170px;
}
.pick-up .inner p{
  width: 300px;
  margin:0 auto;
}
/* 20220117 WaaS紹介ページリンク追加 */

/*#top .applications .inner {
  background: url(../img/bg_top_applications.png) no-repeat top 108px right 28px/249px auto; }*/

/*　インフォメーション
****************************************************************************************************/
#information.underlayer header .mainvisual {
  background: #44b6fd url(../img/info/bg_main.jpg) no-repeat center center; }
  #information.underlayer header .mainvisual .title_area .icon {
    width: 125px; }
#information .tab-button li.is-active {
  background-color: #daf0ff;
  border-bottom: 2px solid #daf0ff; }
#information .information_list dl {
  display: flex;
  flex-wrap: wrap;
  font-weight: bold; }
  #information .information_list dl:last-child dt {
    margin-bottom: -1px;
    border-bottom: 2px solid #31539c; }
  #information .information_list dl:last-child dd {
    border-bottom: 1px solid #5f9fc4; }
  #information .information_list dl dt {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-top: 2px solid #31539c;
    padding: 1.6em 0;
    width: 160px;
    text-align: right; }
  #information .information_list dl dd {
    display: flex;
    align-items: center;
    border-top: 1px solid #5f9fc4;
    padding: 1.6em 1.4em 1.6em;
    width: calc(100% - 160px);
    /* text-align: justify; */ }
    #information .information_list dl dd a {
      color: #2a529e;
      line-height: 1.2; }

/*　概要
****************************************************************************************************/
#about.underlayer header .mainvisual {
  background: #ffaa0c url("../img/about/bg_main.jpg") no-repeat center center; }
  #about.underlayer header .mainvisual .title_area .icon {
    width: 122px; }
#about .about_section .inner {
  padding-top: 48px;
  padding-bottom: 60px; }
#about .lead_araa {
  max-width: 812px;
  padding: 60px 10px 70px;
  width: 100%;
  margin: 0 auto; }
  #about .lead_araa .logo {
    margin-bottom: 35px; }
    #about .lead_araa .logo img {
      width: 332px;
      display: block;
      margin: 0 auto; }
#about .lead_title {
  display: table;
  margin: 0 auto 30px;
  color: #2a529e;
  text-align: center; }
  #about .lead_title span {
    display: block; }
  #about .lead_title .en_main_title {
    padding-bottom: 6px;
    font-size: 3.2rem;
    font-weight: bold;
    font-family: arial, helvetica, sans-serif; }
  #about .lead_title .jp_main_title {
    padding-top: 9px;
    font-size: 2.4rem;
    border-top: 2px solid #5fa0c4; }
#about .lead_text {
  line-height: 2.25;
  text-align: justify; }
#about .section_head {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  color: #2a529e;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.1; }
  #about .section_head::before {
    content: '';
    height: 35px;
    padding-left: 12px;
    border-left: 16px solid #ffaa0c; }
  #about .section_head .text {
    padding-top: .1em; }
#about .image_wrap {
  display: flex;
  justify-content: space-between; }
  #about .image_wrap > *:first-child {
    margin-right: 40px; }
  #about .image_wrap .image_block {
    max-width: calc(377 / 950 * 100%);
    flex-shrink: 0; }
  #about .image_wrap.reverse {
    flex-direction: row-reverse; }
    #about .image_wrap.reverse > *:first-child {
      margin-right: 0;
      margin-left: 40px; }
#about .about_list {
  width: calc(533 / 950 * 100%); }
  #about .about_list > li {
    display: flex;
    align-items: center;
    padding-bottom: 1em; }
    #about .about_list > li:not(:first-child) {
      border-top: 1px solid #5fa0c4;
      padding-top: .9em; }
    #about .about_list > li:last-child {
      padding-bottom: 0; }
  #about .about_list .num_icon {
    width: 52px;
    margin-right: 7px;
    flex-shrink: 0; }
  #about .about_list .list_title {
    font-size: 2rem;
    font-weight: bold;
    color: #ff8a0c;
    line-height: 1.5; }
    #about .about_list .list_title .yellow_line {
      display: inline-block;
      min-width: 240px;
      padding-left: .2em;
      padding-right: .5em;
      line-height: 1;
      background: linear-gradient(transparent 50%, #ffff00 50%); }
  #about .about_list .list_text {
    line-height: 1.875;
    text-align: justify; }
#about .table_area .inner {
  padding-top: 65px; }
#about .news_release_link {
  line-height: 1.875; }
  #about .news_release_link > *:not(:first-child) {
    margin-top: .625em; }

/*　活動
****************************************************************************************************/
#activities .tab-button li.is-active {
  background-color: #ecf7e3;
  border-bottom: 2px solid #ecf7e3; }
#activities .inner h2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
  color: #2a529e;
  font-size: 2.2rem;
  font-weight: bold; }
  #activities .inner h2::before {
    content: '';
    height: 35px;
    padding-left: 12px;
    border-left: 16px solid #7dc641; }
  #activities .inner h2 span {
    padding-top: 0.1em; }
#activities .activities .inner {
  padding: 50px 10px 60px; }
#activities .activities .activities_list {
  display: flex;
  flex-wrap: wrap; }
  #activities .activities .activities_list li {
    width: calc( (100% - 36px) / 3);
    min-height: 380px;
    padding: 18px 18px 13px;
    background-color: #fff;
    margin-right: 15px; }
    #activities .activities .activities_list li:nth-of-type(3n) {
      margin-right: 0; }
    #activities .activities .activities_list li:nth-of-type(n + 4) {
      margin-top: 18px; }
    #activities .activities .activities_list li a {
      display: block;
      text-decoration: none;
      background-color: #fff; }
      #activities .activities .activities_list li a:hover {
        opacity: 0.7; }
        #activities .activities .activities_list li a:hover .txt_area dd {
          text-decoration: none; }
    #activities .activities .activities_list li .img_area {
      margin-bottom: 15px; }
    #activities .activities .activities_list li .txt_area dt {
      margin-bottom: 15px;
      color: #000;
      font-weight: bold; }
    #activities .activities .activities_list li .txt_area dd {
      color: #2a529e;
      font-weight: bold;
      line-height: 1.625;
      text-decoration: underline; }
#activities .modal .layout {
  opacity: 0;
  position: fixed;
  left: calc((100% - 740px) / 2);
  z-index: -1;
  width: 740px;
  border: 2px solid #7dc641;
  background-color: #fff; }
  #activities .modal .layout.active {
    z-index: 100000;
    opacity: 1; }
  #activities .modal .layout .btn_area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 40px;
    background-color: #7dc641; }
    #activities .modal .layout .btn_area .btn_modal_close {
      position: relative;
      display: block;
      width: 24px;
      height: 24px;
      margin-right: 14px; }
      #activities .modal .layout .btn_area .btn_modal_close span {
        position: absolute;
        display: inline-block;
        width: 100%;
        height: 3px;
        background-color: #fff;
        transition: all .4s; }
        #activities .modal .layout .btn_area .btn_modal_close span:nth-of-type(1) {
          top: 0;
          transform: translateY(9px) rotate(-45deg); }
        #activities .modal .layout .btn_area .btn_modal_close span:nth-of-type(2) {
          top: 20px;
          transform: translateY(-11px) rotate(45deg); }
  #activities .modal .layout dl {
    overflow-y: scroll;
    padding: 0 45px;
    /*&::-webkit-scrollbar {
    	width: 25px;
    }
    &::-webkit-scrollbar-track {
    	background: #ddd;
    }
    &::-webkit-scrollbar-thumb {
    	background: #888;
    }*/ }
    #activities .modal .layout dl dt {
      position: relative;
      margin: 18px 0 30px;
      padding-left: 28px; }
      #activities .modal .layout dl dt::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        display: flex;
        height: 100%;
        padding-left: 12px;
        border-left: 16px solid #7dc641; }
      #activities .modal .layout dl dt .title_area {
        font-weight: bold; }
        #activities .modal .layout dl dt .title_area .date {
          margin-bottom: 8px; }
        #activities .modal .layout dl dt .title_area .title {
          color: #2a529e;
          font-size: 1.8rem;
          line-height: 1.3; }
    #activities .modal .layout dl dd {
      padding-bottom: 45px; }
      #activities .modal .layout dl dd .img_area {
        margin-bottom: 30px; }
        #activities .modal .layout dl dd .img_area .modalSlide ul {
          width: 100%; }
          #activities .modal .layout dl dd .img_area .modalSlide ul .slick-slide img {
            width: auto; }
          #activities .modal .layout dl dd .img_area .modalSlide ul .slick-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: auto;
            margin: 10px auto 0; }
            #activities .modal .layout dl dd .img_area .modalSlide ul .slick-dots li {
              display: block;
              width: 14px;
              height: 14px;
              margin: 0 8px;
              border-radius: 50%;
              overflow: hidden; }
              #activities .modal .layout dl dd .img_area .modalSlide ul .slick-dots li button {
                display: block;
                width: 14px;
                height: 14px;
                padding: 0;
                background-color: #bcbcbc;
                text-indent: -9999em;
                box-shadow: none;
                border: none;
                outline: 0;
                cursor: pointer; }
              #activities .modal .layout dl dd .img_area .modalSlide ul .slick-dots li.slick-active button {
                background-color: #47c72e; }
      #activities .modal .layout dl dd .txt_area {
        font-weight: bold;
        line-height: 1.875; }
#activities .information .inner {
  padding: 65px 10px 70px; }
#activities .information .information_list dl {
  display: flex;
  flex-wrap: wrap;
  font-weight: bold; }
  #activities .information .information_list dl:last-child dt {
    margin-bottom: -1px;
    border-bottom: 2px solid #30529b; }
  #activities .information .information_list dl:last-child dd {
    border-bottom: 1px solid #5fa0c5; }
  #activities .information .information_list dl dt {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-top: 2px solid #30529b;
    padding: 1.6em 0;
    width: 160px;
    text-align: right; }
  #activities .information .information_list dl dd {
    display: flex;
    align-items: center;
    border-top: 1px solid #5fa0c5;
    padding: 1.6em 1.4em 1.6em;
    width: calc(100% - 160px); }
    #activities .information .information_list dl dd a {
      color: #2a529e;
      line-height: 1.2; }

/*　募集要項
****************************************************************************************************/
#applications.underlayer header .mainvisual {
  background: #ff7cae url(../img/applications/bg_main.jpg) no-repeat center center; }
  #applications.underlayer header .mainvisual .title_area .icon {
    width: 126px; }
#applications .applications .inner {
  padding: 60px 10px 62px; }
#applications .faq .inner {
  padding: 54px 10px 56px; }
#applications .read {
  line-height: 1.875;
  margin-bottom: 60px;
  text-align: justify; }
#applications .inner h2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #2a529e;
  font-size: 2.2rem;
  font-weight: bold; }
  #applications .inner h2::before {
    content: '';
    height: 35px;
    padding-left: 12px;
    border-left: 16px solid #ff7cae; }
  #applications .inner h2 span {
    padding-top: 0.1em; }
#applications .requirements_list {
  margin-top: 34px; }
  #applications .requirements_list dl {
    display: flex;
    flex-wrap: wrap; }
    #applications .requirements_list dl dt {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 127px;
      padding: 1em;
      font-weight: bold;
      background: #ffecf3;
      border-top: 2px solid #30529b; }
    #applications .requirements_list dl dd {
      padding: 1.3em;
      width: calc(100% - 127px);
      border-top: 1px solid #5e9fc4;
      text-align: justify; }
      #applications .requirements_list dl dd p {
        line-height: 1.875; }
      #applications .requirements_list dl dd ol li:nth-of-type(n + 2) {
        margin-top: 1em; }
    #applications .requirements_list dl:last-of-type dt {
      margin-bottom: -1px;
      border-bottom: 2px solid #30529b; }
    #applications .requirements_list dl:last-of-type dd {
      border-bottom: 1px solid #5e9fc4; }
#applications .faq_list {
  margin-top: 34px; }
  #applications .faq_list dl {
    margin-bottom: 22px; }
    #applications .faq_list dl:last-child {
      margin-bottom: 0; }
    #applications .faq_list dl .icon {
      width: 58px;
      margin-right: 26px;
      text-align: justify; }
    #applications .faq_list dl .txt {
      width: calc(100% - 58px);
      line-height: 1.875; }
    #applications .faq_list dl dt, #applications .faq_list dl dd {
      display: flex;
      align-items: center; }
    #applications .faq_list dl dt {
      font-size: 1.8rem;
      color: #2a529e;
      font-weight: bold;
      margin-bottom: 17px; }

@media screen and (max-width: 750px) {
  body {
    font-size: 1.4rem; }

  .pc {
    display: none !important; }

  .sp {
    display: block !important; }

  /*　汎用クラス
  ****************************************************************************************************/
  .inner {
    margin: 0 auto;
    padding: 40px 15px 25px; }
　.inner_info {
    margin: 0 auto; }

  /* text */
  .txt {
    line-height: 2.143; }

  /* button */
  .btn_more {
    height: 50px;
    margin: 0 1em;
    font-size: 1.3rem;
    line-height: 1.3; }
    .btn_more::after {
      width: 8px;
      height: 13px;
      margin-left: 15px; }

  .about_table > dl {
    flex-wrap: wrap; }
    .about_table > dl > dt {
      padding: 0.8em 0.4em 0.8em;
      border-top: none;
      width: 100%; }
    .about_table > dl > dd {
      padding: 0.8em 0 0.8em;
      border-top: none;
      width: 100%;
      line-height: 1.5; }
    .about_table > dl:last-child > dt {
      border-bottom: none; }
    .about_table > dl:last-child > dd {
      border-bottom: none; }

  /*　tab　*/
  select {
    box-sizing: border-box; }

  .tab-button-outer {
    display: none; }

  .tab-select-outer {
    margin: 16px 15px;
    display: block;
    width: calc(350 / 750 * 100%);
    background: #0051a2;
    border-radius: 3px;
    position: relative; }
    .tab-select-outer::before, .tab-select-outer::after {
      position: absolute;
      content: '';
      top: 0;
      bottom: 0;
      margin: auto; }
    .tab-select-outer::before {
      right: 20px;
      width: 6px;
      height: 6px;
      border-top: 2px solid #00fdf6;
      border-right: 2px solid #00fdf6;
      -webkit-transform: rotate(135deg);
      transform: rotate(135deg); }
    .tab-select-outer::after {
      right: 48px;
      width: 2px;
      height: 66%;
      border-left: 2px solid #fff; }
    .tab-select-outer select {
      border-radius: 3px;
      width: 100%;
      border: none;
      background: #0051a2;
      box-shadow: none;
      color: #fff;
      font-size: 1.6rem;
      font-weight: bold;
      padding: 1em 3em 1em 1.5em;
      -webkit-appearance: none;
      appearance: none;
      -moz-appearance: none; }
      .tab-select-outer select::-ms-expand {
        display: none; }

  /*　基本構造
  ****************************************************************************************************/
  footer {
    padding: 9% 0; }
    footer .inner {
      padding: 0 15px; }
    footer .btn_area li {
      width: calc( (100% - 15px) / 2 );
      height: auto;
      border: 1.5px solid #5fa0c4; }
      footer .btn_area li a {
        padding: 3.5% 13% 3.5% 7%; }
        footer .btn_area li a::after {
          top: calc( (100% - 13px) / 2 );
          right: 3%;
          width: 8px;
          height: 13px; }
        footer .btn_area li a.btn_faq img {
          height: auto;
          width: 29.5%;
          max-width: 88px; }
        footer .btn_area li a.btn_entry_form img {
          height: auto;
          width: 100%;
          max-width: 295px; }
        footer .btn_area li a p {
          padding-top: 5%;
          font-size: 2.5vw; }
        footer .btn_area li a .btn_blank_left::before {
          width: 2.5vw;
          height: 2.2vw; }
    footer .mail_area {
      margin-top: 5%; }
      footer .mail_area .contact_mail {
        height: auto;
        max-width: 100%;
        margin: 0 6% 15px;
        padding: 5% 5% 4%;
        font-size: 1.4rem; }
        footer .mail_area .contact_mail > span::before {
          width: 6vw;
          height: 5vw;
          margin-right: 2%; }
      footer .mail_area p {
        font-size: 1.1rem; }

  #scroller {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: rgba(95, 160, 196, 0.7) url(../img/icon_scrollup.svg) no-repeat center center/18px 19.5px; }

  /*　下層画面
  ---------------------------------------------------------------------------------------------------*/
  .underlayer header .common_title {
    padding: 23px 20px 21px;
    font-size: 1.6rem;
    text-align: left; }
  .underlayer header #nav_area {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    z-index: 100;
    width: 80%;
    max-width: 585px;
    margin-right: -100%;
    transition: all .4s; }
    .underlayer header #nav_area.open {
      display: block;
      margin-right: 0; }
    .underlayer header #nav_area ul {
      flex-wrap: wrap;
      max-width: none;
      margin: 25px 0 25px 15px; }
      .underlayer header #nav_area ul li {
        width: 100%;
        border-left: none;
        border-top: 1px solid #5fa0c4; }
        .underlayer header #nav_area ul li a {
          position: relative;
          height: 63px;
          padding-right: 55px;
          background-color: #2a529e !important; }
          .underlayer header #nav_area ul li a::after {
            content: '';
            position: absolute;
            top: calc( (100% - 13px) / 2 );
            right: 23px;
            width: 8px;
            height: 13px;
            background: url(../img/icon_arrow_right.svg) no-repeat;
            background-size: contain; }
          .underlayer header #nav_area ul li a p {
            text-align: left; }
          .underlayer header #nav_area ul li a .en_name {
            font-size: 1.6rem; }
          .underlayer header #nav_area ul li a .name {
            margin-top: -16px;
            font-size: 1.5rem; }
        .underlayer header #nav_area ul li:last-of-type {
          border-right: none;
          border-bottom: 1px solid #5fa0c4; }
        .underlayer header #nav_area ul li:nth-of-type(1) a .en_name {
          color: #c87aff; }
        .underlayer header #nav_area ul li:nth-of-type(2) a .en_name {
          color: #7dc641; }
        .underlayer header #nav_area ul li:nth-of-type(3) a .en_name {
          color: #44b6fd; }
        .underlayer header #nav_area ul li:nth-of-type(4) a .en_name {
          color: #ffaa0c; }
        .underlayer header #nav_area ul li:nth-of-type(5) a .en_name {
          color: #ff7cae; }
  .underlayer header .btn_menu {
    position: absolute;
    z-index: 100;
    top: 13px;
    right: 20px;
    display: block;
    width: 35px;
    height: 35px; }
    .underlayer header .btn_menu span {
      position: absolute;
      right: 0;
      display: inline-block;
      width: 100%;
      height: 5px;
      background-color: #0051a2;
      transition: all .4s; }
      .underlayer header .btn_menu span:nth-child(1) {
        top: 5px; }
      .underlayer header .btn_menu span:nth-child(2) {
        top: 15px; }
      .underlayer header .btn_menu span:nth-child(3) {
        top: 25px; }
    .underlayer header .btn_menu.open {
      z-index: 100000; }
      .underlayer header .btn_menu.open span:nth-child(1) {
        transform: translateY(9px) rotate(-45deg); }
      .underlayer header .btn_menu.open span:nth-child(2) {
        opacity: 0; }
      .underlayer header .btn_menu.open span:nth-child(3) {
        transform: translateY(-11px) rotate(45deg); }
  .underlayer header .mainvisual {
    height: 75.5px;
    background: #46c72e url(../img/activities/bg_main.jpg) no-repeat center right -151px/cover; }
    .underlayer header .mainvisual .title_area .title_area_wrap {
      padding: 0 20px; }
    .underlayer header .mainvisual .title_area .icon {
      width: 54px;
      margin-right: 10px; }
    .underlayer header .mainvisual .title_area .title h1 .en_title {
      font-size: 3rem; }
    .underlayer header .mainvisual .title_area .title h1 .jp_title {
      padding-top: 6px;
      font-size: 1.4rem; }

  /*　TOP
  ****************************************************************************************************/
  #top #jreHeader,
  #top #jreFooter,
  #top section,
  #top aside,
  #top footer {
    display: none; }
  #top .inner h2 {
    margin-bottom: 8%;/*margin-bottom: 5%;*/
    font-size: 9vw; }
    #top .inner h2 span {
      padding-top: 2%;
      font-size: 3.7vw; }
  #top .inner h3 {
    margin-bottom: 2vh;
    font-size: 8vw; }
    #top .inner h3 span {
      padding-top: 2%;
      font-size: 3.7vw; }
  #top header .mainvisual {
    height: auto;
    background: url(../img/bg_main_phase1_sp.png) no-repeat top 28.9vw center/100%; }
    #top header .mainvisual .phase_images .phase2 {
      background: url(../img/bg_main_phase2_sp.png) no-repeat top 28.9vw center/100%; }
    #top header .mainvisual .phase_images .phase3 {
      background: url(../img/bg_main_phase3_sp.png) no-repeat top 28.9vw center/100%; }
    #top header .mainvisual .phase_images .phase4 {
      background: url(../img/bg_main_phase4_sp.png) no-repeat top 28.9vw center/100%; }
    #top header .mainvisual .phase_images .phase5 {
      background: url(../img/bg_main_phase5_sp.png) no-repeat top 28.9vw center/100%; }
    #top header .mainvisual .phase_images .earth {
      top: 44vw;
      bottom: auto;
      left: calc( (100% - 200vw) /2);
      width: 200vw;
      height: 400vw; }
    #top header .mainvisual .inner {
      height: 100%;
      padding: 6% 10px 0; }
    #top header .mainvisual .title_area .logo {
      width: 23vw;
      max-width: 168px; }
    #top header .mainvisual .title_area .title h1 .en_main_title {
      font-size: 4vw; }
    #top header .mainvisual .title_area .title h1 .jp_main_title {
      font-size: 3vw; }
    #top header .mainvisual #nav_area {
      position: absolute;
      top: 54vw;
      left: 15px;
      width: calc(100% - 30px); }
      #top header .mainvisual #nav_area ul {
        width: 100%; }
        #top header .mainvisual #nav_area ul li a {
          padding-bottom: 12%; }
          #top header .mainvisual #nav_area ul li a:hover::after {
            display: none; }
        #top header .mainvisual #nav_area ul li .img_area {
          width: 12vw;
          height: 12vw;
          max-width: 90px;
          max-height: 90px; }
        #top header .mainvisual #nav_area ul li .txt_area {
          padding: 5% 0 3%; }
          #top header .mainvisual #nav_area ul li .txt_area .en_name {
            font-size: 2.5vw; }
          #top header .mainvisual #nav_area ul li .txt_area .name {
            margin-top: 4%;
            font-size: 1.8vw; }
        #top header .mainvisual #nav_area ul li:nth-of-type(1) .img_area img {
          width: 70%; }
        #top header .mainvisual #nav_area ul li:nth-of-type(2) .img_area img {
          width: 54%; }
        #top header .mainvisual #nav_area ul li:nth-of-type(3) .img_area img {
          width: 67.78%; }
        #top header .mainvisual #nav_area ul li:nth-of-type(4) .img_area img {
          width: 60%; }
        #top header .mainvisual #nav_area ul li:nth-of-type(5) .img_area img {
          width: 70%;
          margin: 8% 0 0 3%; }
    #top header .mainvisual .skip_area .btn_skip {
      font-size: 1.8rem; }


  /*　インフォメーション
  ****************************************************************************************************/
  #information.underlayer header .mainvisual {
    background: #44b6fd url(../img/info/bg_main.jpg) no-repeat center right -151px/cover; }
    #information.underlayer header .mainvisual .title_area .icon {
      width: 62px; }
  #information .information_list dl {
    display: block;
    border-top: 1px solid #21a1c7;
    position: relative;
    padding: 15px 0; }
    #information .information_list dl::before {
      position: absolute;
      content: "";
      border-top: 2px solid #30529b;
      width: calc(196 / 690 * 100%);
      top: -1px; }
    #information .information_list dl:last-child {
      border-bottom: 1px solid #21a1c7; }
      #information .information_list dl:last-child::before {
        position: absolute;
        content: "";
        border-bottom: 2px solid #30529b;
        width: calc(196 / 690 * 100%);
        bottom: -2px; }
      #information .information_list dl:last-child dt {
        border-bottom: none; }
      #information .information_list dl:last-child dd {
        border-bottom: none; }
    #information .information_list dl dt {
      border-top: none;
      padding: 0 0 8px;
      width: 100%;
      justify-content: flex-start; }
    #information .information_list dl dd {
      border-top: none;
      padding: 0;
      width: 100%; }


  /*　概要
  ****************************************************************************************************/
  #about.underlayer header .mainvisual {
    background: #ffaa0c url(../img/about/bg_main.jpg) no-repeat center right -151px/cover; }
    #about.underlayer header .mainvisual .title_area .icon {
      width: 61px; }
  #about .about_section .inner {
    padding-top: 27px;
    padding-bottom: 36px; }
  #about .lead_araa {
    padding: 30px 15px 35px; }
    #about .lead_araa .logo {
      margin-bottom: 35px; }
      #about .lead_araa .logo img {
        width: calc(398 / 750 * 100vw); }
  #about .lead_title {
    margin: 0 auto 30px; }
    #about .lead_title .en_main_title {
      padding-bottom: 0.3em;
      font-size: calc(38 / 750 * 100vw); }
    #about .lead_title .jp_main_title {
      padding-top: 0.4em;
      font-size: calc(29 / 750 * 100vw); }
  #about .section_head {
    margin-bottom: 30px;
    font-size: calc(32 / 750 * 100vw); }
    #about .section_head::before {
      height: 25px;
      padding-left: 6px;
      border-left: 11px solid #ffaa0c; }
  #about .image_wrap {
    display: block; }
    #about .image_wrap > *:first-child {
      margin-right: 0; }
    #about .image_wrap .image_block {
      max-width: calc(528 / 750 * 100%);
      margin: 20px auto 0; }
    #about .image_wrap.reverse {
      flex-direction: row-reverse; }
      #about .image_wrap.reverse > *:first-child {
        margin-left: 0; }
  #about .about_list {
    width: 100%; }
    #about .about_list .num_icon {
      width: 42px;
      margin-right: 7px; }
    #about .about_list .list_title {
      font-size: calc(30 / 750 * 100vw); }
      #about .about_list .list_title .yellow_line {
        min-width: calc(370 / 750 * 100vw); }
    #about .about_list .list_text {
      line-height: 1.5; }
  #about .table_area .inner {
    padding-top: 33px; }

  /*　活動
  ****************************************************************************************************/
  #activities .inner h2 {
    margin-bottom: 20px;
    font-size: 1.6rem; }
    #activities .inner h2::before {
      height: 25px;
      padding-left: 8px;
      border-left: 11px solid #7dc641; }
  #activities .activities .inner {
    padding: 25px 10px 30px; }
  #activities .activities .activities_list li {
    width: 100%;
    min-height: auto;
    padding: 15px;
    margin-right: 0; }
    #activities .activities .activities_list li:nth-of-type(n + 2) {
      margin-top: 17px; }
    #activities .activities .activities_list li a {
      display: flex; }
    #activities .activities .activities_list li .img_area {
      width: 120px;
      margin-right: 15px;
      margin-bottom: 0; }
    #activities .activities .activities_list li .txt_area {
      width: calc( 100% - 135px ); }
      #activities .activities .activities_list li .txt_area dt {
        margin-bottom: 12px; }
  #activities .modal .layout {
    left: 15px;
    width: calc(100% - 30px); }
    #activities .modal .layout .btn_area {
      height: 32px; }
      #activities .modal .layout .btn_area .btn_modal_close {
        width: 20px;
        height: 20px;
        margin-right: 7px; }
        #activities .modal .layout .btn_area .btn_modal_close span {
          height: 2px; }
          #activities .modal .layout .btn_area .btn_modal_close span:nth-of-type(1) {
            top: 0; }
          #activities .modal .layout .btn_area .btn_modal_close span:nth-of-type(2) {
            top: 20px; }
    #activities .modal .layout dl {
      /*max-height: 460px;*/
      padding: 0 20px; }
      #activities .modal .layout dl dt {
        margin: 15px 0; }
        #activities .modal .layout dl dt::before {
          content: '';
          padding-left: 8px;
          border-left: 11px solid #7dc641; }
        #activities .modal .layout dl dt .title_area .date {
          margin-bottom: 5px;
          font-size: 1.3rem; }
        #activities .modal .layout dl dt .title_area .title {
          font-size: 1.4rem; }
      #activities .modal .layout dl dd {
        padding-bottom: 15px; }
        #activities .modal .layout dl dd .img_area {
          margin-bottom: 22px; }
          #activities .modal .layout dl dd .img_area .modalSlide ul {
            width: 100%; }
            #activities .modal .layout dl dd .img_area .modalSlide ul .slick-slide img {
              width: 100%; }
        #activities .modal .layout dl dd .txt_area {
          line-height: 2.143; }
  #activities .information .inner {
    padding: 23px 15px 40px; }
  #activities .information .information_list dl {
    display: block;
    border-top: 1px solid #21a1c7;
    position: relative;
    padding: 15px 0; }
    #activities .information .information_list dl::before {
      position: absolute;
      content: "";
      border-top: 2px solid #30529b;
      width: calc(196 / 690 * 100%);
      top: -1px; }
    #activities .information .information_list dl:last-child {
      border-bottom: 1px solid #21a1c7; }
      #activities .information .information_list dl:last-child::before {
        position: absolute;
        content: "";
        border-bottom: 2px solid #30529b;
        width: calc(196 / 690 * 100%);
        bottom: -2px; }
      #activities .information .information_list dl:last-child dt {
        border-bottom: none; }
      #activities .information .information_list dl:last-child dd {
        border-bottom: none; }
    #activities .information .information_list dl dt {
      border-top: none;
      padding: 0 0 8px;
      width: 100%;
      justify-content: flex-start; }
    #activities .information .information_list dl dd {
      border-top: none;
      padding: 0;
      width: 100%;
      text-align: justify; }

  /*　募集要項
  ****************************************************************************************************/
  #applications.underlayer header .mainvisual {
    background: #ff7cae url(../img/applications/bg_main.jpg) no-repeat center right -151px/cover; }
    #applications.underlayer header .mainvisual .title_area .icon {
      width: 63px; }
  #applications .applications .inner {
    padding: 25px 15px 25px; }
  #applications .faq .inner {
    padding: 28px 15px 37px; }
  #applications .read {
    line-height: 2.143;
    margin-bottom: 25px; }
  #applications .inner h2 {
    font-size: 1.6rem; }
    #applications .inner h2::before {
      height: 25px;
      padding-left: 8px;
      border-left: 11px solid #ff7cae; }
  #applications .requirements_list {
    margin-top: 20px; }
    #applications .requirements_list dl dt {
      width: 100%;
      padding: 0.8em 1em;
      border-top: none; }
    #applications .requirements_list dl dd {
      width: 100%;
      padding: 1em 0;
      border-top: none; }
      #applications .requirements_list dl dd p {
        line-height: 1.5; }
      #applications .requirements_list dl dd ol li {
        font-weight: bold; }
        #applications .requirements_list dl dd ol li .no_bold {
          font-weight: normal; }
    #applications .requirements_list dl:last-of-type dt {
      border-bottom: none; }
    #applications .requirements_list dl:last-of-type dd {
      border-bottom: none; }
  #applications .faq_list {
    margin-top: 23px; }
    #applications .faq_list dl {
      margin-bottom: 15px; }
      #applications .faq_list dl .icon {
        width: 42px;
        margin-right: 18px; }
      #applications .faq_list dl .txt {
        width: calc(100% - 42px);
        line-height: 1.5; }
      #applications .faq_list dl dt {
        font-size: 1.5rem;
        margin-bottom: 12px; }
      #applications .faq_list dl dd {
        align-items: flex-start; } }

#topinfo_text {text-align:center; border:1px solid #ff0000; padding:15px; margin:0 auto 30px auto; color:#ff0000; font-weight:bold;}

@media screen and (max-width: 750px) {
#topinfo_text {line-height:1.2em; text-align:left;}
#info_text {
	text-align:left;
	}

  #info_text dl {
    display: block;
    position: relative;
    padding: 5px 0; }
    #info_text dl::before {
      position: absolute;
      content: "";
      width: calc(196 / 690 * 100%);
      top: -1px; }
    #info_text dl:last-child {}
      #info_text dl:last-child::before {
        position: absolute;
        content: "";
        width: calc(196 / 690 * 100%);
        bottom: -2px; }
      #info_text dl:last-child dt { }
      #info_text dl:last-child dd {}
    #info_text dl dt {
      border-top: none;
      padding: 0 0 4px;
      width: 100%;
      justify-content: flex-start; }
    #info_text dl dd {
      border-top: none;
      padding: 0;
      width: 100%; }

}

/*▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽

TOPリニューアル

▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽*/

#top section {
	margin-bottom: 50px;
	padding-top: 25px;
}
#top .inner{
	padding: 0 10px 0;
}
#top .inner h2{
	position: relative;
}
#top .inner h2:before {
	position: absolute;
	content: "";
	width: 50px;
	height: 5px;
	top: -25px;
	left: 0;
	background-color: #999;
}
@media screen and (max-width: 750px) {
	#top section {
		margin-bottom: 20px;
		padding-top: 23px;
	}
	#top section:first-of-type{
		margin-top: 11%;
	}
	#top section:last-of-type{
		margin-bottom: 80px;
	}
	#top .inner h2:before {
	width: 30px;
	}
}
@media screen and (max-width: 1160px) and (min-width: 751px) {
	#top .inner{
		padding: 0 15px 0;
	}
}
/*-------------------

TOP＞アクティビティ

-------------------*/

#top .activities{
	margin-top: 70px;
}
#top .activities .inner h2:before {
	background-color: #7dc641;
}
#top .activities .inner .activitiesList li{
	position: relative;
  margin-bottom: 100px;
  padding-top: 250px;
	/*max-height: 656px;
	height: 69.053vw*/
}
#top .activities .inner .activitiesList li:last-of-type{
	margin-bottom: 120px;
}
#top .activities .inner .activitiesList h3{
	margin-bottom: 10px;
}
#top .activities .inner .activitiesList li:nth-child(odd) img{/*奇数*/
  z-index: -1;
  position: absolute;
  top: 0;
	right: 0;
	left: auto;
}
#top .activities .inner .activitiesList li:nth-child(even) img{
  z-index: -1;
  position: absolute;
  top: 0;
	right: auto;
	left: 0;
}
/*#top .activities .inner .activitiesList li:nth-child(odd) .blok{
	position: absolute;
	right: auto;
	left: 0;
	top: 262px;
}*/
#top .activities .inner .activitiesList li:nth-child(even) .blok{
	/*position: absolute;
	right: 0;
	left: auto;
  top: 262px;*/
  margin: 0 0 0 auto;
}
#top .activities .inner .activitiesList li .dtl_txt{
	width: 57.895vw;
	max-width: 550px;
	background: rgba(255,255,255,0.75);
	padding: 38px 40px 23px;
	z-index: 2;
}
#top .activities .inner .activitiesList li:nth-child(odd) .dtl_txt{
	border-left: #7dc641 5px solid;
}
#top .activities .inner .activitiesList li:nth-child(even) .dtl_txt{
	border-right: #7dc641 5px solid;
}
#top .activities .inner .activitiesList li .dtl_txt h3{
	font-size: 2.6rem;
	line-height: 1.4;
}
.other_block{
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
}
.other_block li:first-of-type{
	margin-right: 30px;
}
#top .activities .inner .other_block h3{
	min-height: 70px;
	margin-bottom: 40px;
}
#top .activities .inner .other_block .btn_more,
#top .information .inner .btn_more,
#top .about .inner .btn_more{
	width: 243px;
	margin: 0 auto;
}
@media screen and (max-width: 1160px) and (min-width: 751px) {
	/*#top .activities .inner .activitiesList li{
		height: 88vw;
	}*/
	#top .activities .inner .activitiesList li img{
		width: 80%;
	}
	#top .activities .inner .activitiesList li .dtl_txt{
		width: 70vw;
	}
}
@media screen and (max-width: 750px) {
	#top .inner h2:before {
		top: -23px;
	}
	#top .activities .inner .activitiesList li .dtl_txt h3{
		font-size: 1.8rem;
		line-height: 1.4;
	}
	#top .activities .inner .activitiesList li{
		position: static;
		height: auto;
    max-height: inherit;
    padding-top: 0;
		margin-bottom: 50px;
	}
	#top .activities .inner .activitiesList li:last-child{
			margin-bottom: 60px;
	}
	#top .activities .inner .activitiesList li:nth-child(odd) img,
	#top .activities .inner .activitiesList li:nth-child(even) img{/*奇数*/
		position: static;
		height: auto;
		max-width: initial;
		max-height: initial;
		right: auto;
		left: auto;
	}
	#top .activities .inner .activitiesList li:nth-child(odd) .blok,
	#top .activities .inner .activitiesList li:nth-child(even) .blok{
		position: static;
		height: auto;
		max-width: initial;
		max-height: initial;
		right: auto;
		left: auto;
	}
	#top .activities .inner .activitiesList li .dtl_txt{
		width: 100%;
		margin-top: 6%;
		padding: 0;
	}
	#top .activities .inner .activitiesList li .dtl_txt h3{
		border-left: #7dc641 5px solid;
		padding-left: 13px;
		margin-bottom: 3%;
		padding-top: 3px;
	}
	#top .activities .inner .activitiesList li:nth-child(odd) .dtl_txt{
		border: none;
	}
	#top .activities .inner .activitiesList li:nth-child(even) .dtl_txt{
    margin: 6% 0 0 0;
		border: none;
	}
	.other_block{
		display: block;
	}
	.other_block li:first-of-type{
		margin-right: 0;
	}
	#top .activities .inner .other_block li:first-child{
		margin-bottom: 60px;
	}
	.other_block li:first-of-type img{
	 	width: auto;
	}
	#top .activities .inner .other_block h3{
		min-height: auto;
		margin-bottom: 20px;
	}
}




/*-------------------

TOP＞インフォメーション

-------------------*/
#top .information .inner h2:before {
	background-color: #44b6fd;
}
#top .information .flex_box {
	justify-content: flex-end;
}
#top .information .flex_box .right_area {
	width: 60%;
	max-width: 570px;
}
#top .information .flex_box .right_area .btn_more {
	max-width: 243px;
	margin-left: auto;
}
#top .information_list dl {
	display: flex;
	flex-wrap: wrap;
	font-weight: bold;
}
	#top .information_list dl:last-child dt {
	margin-bottom: -1px;
	border-bottom: 2px solid #31539c;
}
	#top .information_list dl:last-child dd {
	border-bottom: 1px solid #5f9fc4;
}
	#top .information_list dl dt {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	border-top: 2px solid #31539c;
	padding: 1.6em 0;
	width: 160px;
	text-align: right;
}
	#top .information_list dl dd {
	display: flex;
	align-items: center;
	border-top: 1px solid #5f9fc4;
	padding: 1.6em 1.4em 1.6em;
	width: calc(100% - 160px);
	/* text-align: justify; */ }
#top .information_list dl dd a {
	color: #2a529e;
	line-height: 1.2;
}
#top .information .information_list {
	margin-bottom: 70px;
}
@media screen and (max-width: 750px) {
	#top .information .information_list {
		margin-bottom: 40px;
	}
	#top .information_list dl {
		display: block;
		border-top: 1px solid #21a1c7;
		position: relative;
		padding: 15px 0;
	}
	#top .information_list dl::before {
		position: absolute;
		content: "";
		border-top: 2px solid #30529b;
		width: calc(196 / 690 * 100%);
		top: -1px;
	}
	#top .information_list dl:last-child {
		border-bottom: 1px solid #21a1c7;
	}
	#top .information_list dl:last-child::before {
		position: absolute;
		content: "";
		border-bottom: 2px solid #30529b;
		width: calc(196 / 690 * 100%);
		bottom: -2px;
	}
	#top .information_list dl:last-child dt {
		border-bottom: none;
	}
	#top .information_list dl:last-child dd {
		border-bottom: none;
	}
	#top .information_list dl dt {
		border-top: none;
		padding: 0 0 8px;
		width: 100%;
		justify-content: flex-start;
	}
	#top .information_list dl dd {
		border-top: none;
		padding: 0;
		width: 100%;
	}
}



/*-------------------

TOP＞アバウト

-------------------*/
#top .about .inner h2:before {
	background-color: #ffaa0c;
}
#top .about .flex_box {
	margin-bottom: 70px;
}
@media screen and (max-width: 750px) {
	#top .about .flex_box {
		margin-bottom: 40px;
	}
}



/*-------------------

TOP＞旗印

-------------------*/
#top .vision .inner h2:before {
	background-color: #2a529e;
}
#top .vision p img {
  width: 100%;
}
@media screen and (max-width: 750px) {
	#top .about .flex_box {
		justify-content: space-between;
	}
	#top .about .flex_box .left_area {
			width: 100%;
			max-width: none;
	}
	#top .about .flex_box .left_area h4 {
			margin-bottom: 0.5rem; }
	#top .about .flex_box .left_area img {
			margin: 30px auto 0;
			width: calc(100% - 2.8em);
	}
	#top .about .flex_box .left_area .btn_pdf {
			margin-top: 0.5rem;
	}
	#top .about .flex_box .left_area .btn_more {
			margin-top: 25px;
	}
	#top .pick-up {
		  margin: 20px 0 50px !important;
	}
}



/*-------------------

TOP＞スケジュール

-------------------*/
#top .schedule .inner h2:before {
	background-color: #2a529e;
}
#top .schedule .schedule_list dl {
	position: relative;
	display: flex;
	align-items: center;
	height: 66px; }
#top .schedule .schedule_list dl:nth-of-type(n + 2) {
	margin-top: 25px;
}
#top .schedule .schedule_list dl:nth-of-type(n + 2)::before {
	content: '';
	position: absolute;
	top: -16px;
	right: calc( (100% - 18px) / 2);
	width: 18px;
	height: 10px;
	background: url(../img/icon_triangle.svg) no-repeat;
	background-size: contain; }
#top .schedule .schedule_list dl dt {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 155px;
	height: 100%;
	color: #fff;
	font-weight: bold;
	text-align: center;
	border-radius: 3px 0 0 3px;
	background: #2a529e;
}
#top .schedule .schedule_list dl dd {
	display: flex;
	align-items: center;
	width: calc(100% - 155px);
	height: 100%;
	padding: 0 0.5em 0 1.5em;
	color: #000;
	font-weight: bold;
	line-height: 1.3;
	border-radius: 0 3px 3px 0;
	background: #eff4fe;
}

@media screen and (max-width: 750px) {
	#top .schedule .schedule_list dl {
		position: relative;
		display: flex;
		flex-wrap: wrap;
		height: 100%;
	}
	#top .schedule .schedule_list dl dt {
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 100%;
		height: 50px;
		padding: 0;
		color: #fff;
		font-weight: bold;
		line-height: 1.3;
		border-radius: 3px 3px 0 0;
		background: #2a529e;
	}
	#top .schedule .schedule_list dl dd {
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 100%;
		height: 50px;
		padding: 0 1.5em;
		color: #000;
		font-weight: bold;
		line-height: 1.3;
		border-radius: 0 0 3px 3px;
		background: #eff4fe;
	}
}



/*-------------------

TOP＞募集要項

-------------------*/
#top .applications{
	margin-bottom: 120px;
}
#top .applications .inner h2:before {
	background-color: #ff7cae;
}
#top .applications .flex_box {
	justify-content: flex-start;
}
#top .applications .flex_box .left_area {
	width: 60%;
	max-width: 510px;
}
#top .applications .requirements_list {
	margin-top: 45px; }
	#top .applications .requirements_list dl {
	display: flex;
	flex-wrap: wrap; }
	#top .applications .requirements_list dl:last-of-type dt {
	margin-bottom: -1px;
	border-bottom: 2px solid #31539c;
}
#top .applications .requirements_list dl:last-of-type dd {
	border-bottom: 1px solid #5e9fc4; }
	#top .applications .requirements_list dl dt {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 127px;
	padding: 1em;
	font-weight: bold;
	background: #ffecf3;
	border-top: 2px solid #31539c;
}
#top .applications .requirements_list dl dd {
	padding: 1.3em;
	width: calc(100% - 127px);
	border-top: 1px solid #5e9fc4;
	text-align: justify;
}
#top .applications .requirements_list dl dd p {
	line-height: 1.875;
}
#top .applications .requirements_list dl dd ol li:nth-of-type(n + 2) {
	margin-top: 1em;
}

@media screen and (max-width: 750px) {
	#top .applications .requirements_list {
		margin-top: 45px; }
		#top .applications .requirements_list dl dt {
		width: 100%;
		padding: 0.8em 1em;
		border-top: none;
	}
	#top .applications .requirements_list dl dt:last-of-type {
		border-bottom: none;
	}
	#top .applications .requirements_list dl dd {
		width: 100%;
		padding: 1em 0;
		border-top: none;
	}
	#top .applications .requirements_list dl dd:last-of-type {
		border-bottom: none;
	}
	#top .applications .requirements_list dl dd p {
		line-height: 1.5; }
	#top .applications .requirements_list dl dd ol li {
		font-weight: bold;
	}
	#top .applications .requirements_list dl dd ol li:nth-of-type(n + 2) {
		margin-top: 1em;
	}
	#top .applications .requirements_list dl dd ol li .no_bold {
		font-weight: normal;
	}
}



/*-------------------

TOP＞募集要項

-------------------*/
#top #pdf_reader.inner{
	padding: 35px 10px;
}


/*-------------------

ハンバーガーメニュー位置調整用

-------------------*/
header{
  position: relative;
}

/*-------------------

20230208 WCC説明会フォームボタン追加

-------------------*/
.wcc_btn{
  width: 350px;
  margin: 0 auto;
}
