main
{
    width:100%;
    order: 2;
     min-height: 100vh;
    padding-top: 2em;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; 
}
/* CSS Document */
:root {
    --sc-main-color: #245BA9;
    --sc-font-default-color:#716767;
    --sc-font-hover-color:#F5D61B;
    --sc-footer-color: #1F37BF;
    --sc-button-showditail-color: #245BA9;
    --sc-breadcrumbs-color:#D7F2FA;
   /*--sc-h1-bg-color:#CDFDEE;*/
    --border-line-color:#f0f0f0;
	--v-width: 1200px;
}
  
  /* CSS Document */
  /*foundations/_color
   Don't Edit this css file directory
   Edit _color.scss file*/
  /* CSS Document */
  /* CSS Document */
  /* CSS Document */
  /* CSS Document */
  /* http://meyerweb.com/eric/tools/css/reset/ 
     v2.0 | 20110126
     License: none (public domain)
  */
  html, body, div, span, applet, object, iframe,
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  a, abbr, acronym, address, big, cite, code,
  del, dfn, em, img, ins, kbd, q, s, samp,
  small, strike, strong, sub, sup, tt, var,
  b, u, i, center,
  dl, dt, dd, ol, ul, li,
  fieldset, form, label, legend,
  table, caption, tbody, tfoot, thead, tr, th, td,
  article, aside, canvas, details, embed,
  figure, figcaption, footer, header, hgroup,
  menu, nav, output, ruby, section, summary,
  time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline; }
  
  /* HTML5 display-role reset for older browsers */
  article, aside, details, figcaption, figure,
  footer, header, hgroup, menu, nav, section {
    display: block; }
  
  body {
    line-height: 1.5em;
    display:flex;
    min-height: 100vh;
	  width; 100%;
    flex-direction: column;
    align-content: space-between;
    justify-content: space-between;

}
  
  ol, ul {
    list-style: none; }
  
  blockquote, q {
    quotes: none; }
  
  blockquote:before, blockquote:after,
  q:before, q:after {
    content: '';
    content: none; }
  
  table {
    border-collapse: collapse;
    border-spacing: 0; }
  
  /* foundations/_base
  */
  *, *:before, *:after {
    box-sizing: border-box; }
  
  body {
    font-size: 16px;
    line-height: 1.5;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333; }

  header{
    width:100%;
    order: 0;
    background-color: white;
    z-index:1;
  }
/*
  a {
    color: inherit;
    text-decoration: none; }
    a:hover {
      text-decoration: none; }
  */
a
{
	font-weight: bold;
	padding-top: 1em;
	padding-bottom: 1.5em;
	text-decoration: underline;
	color: #0000C9;
}

a:hover
{
	color: #C91D14;
}

  img {
    max-width: 100%;
    vertical-align: middle; }
  
  input {
    margin: 0;
    padding: 0; }
  
  textarea {
    padding: 0;
    font: inherit;
    color: inherit; }
  
  button {
    font: inherit;
    padding: 0;
    background-color: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
}
.l-breadcrumb{
	width:100%;
	max-height:3em;
	height:3em;
  order:2;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8em;
  line-height: 1.5em;
  box-sizing: border-box;
	padding-top:2em;
}
.l-breadcrumb div{
  width: var(--v-width);
	display:flex;
	justify-content: flex-start;
}
.l-breadcrumb a
{
	text-decoration: none;
}
main
{
    order:3;
}
footer
  {
    order:4;
  }
  /*Layout Footer css */
  .l-footer {
	  width: 100%;
    background-color: var(--sc-footer-color);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2em;
    font-size: 0.9em;
    margin-top: 3em; }
    .l-footer__dl {
      width: var(--v-width);
      display: flex;
      justify-content: flex-start; }
      .l-footer__dl__dt {
        width: 10em; }
      .l-footer__dl__dd {
        min-width: 65%; }
  
  /* Layout Header */
  .l-header {
    width: 100%;
    border: 1px solid var(--border-line-color);
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2); 
    display:flex;
    justify-content: center;
    align-items: center;
      z-index: 9;
  }
  .l-header__wrapper
  {
    display:flex;
    width:var(--v-width);
    justify-content: space-between;
    align-items: center;
  }
    .l-header__Nav_Items {
      width: 50%;
      display: flex;
      flex-direction: row;
      justify-content: flex-end;
      align-items: center;
		
    }
  
      .l-header__Nav_Items ul {
        width: 100%;
        height: 110px;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-around;
        align-items: flex-end;}
        .l-header__Nav_Items ul > li {
          margin-left: 1.5em;
          padding-bottom: 1em; }
          .l-header__Nav_Items ul > li a {
            position: relative;
text-decoration: none;
color: #6a6a6a;}
            .l-header__Nav_Items ul > li a::after {
              position: absolute;
              bottom: -10px;
              left: 0;
              content: '';
              width: 100%;
              height: 2px;
              background: #666;
              transform: scale(0, 1);
              transform-origin: left top;
              transition: transform .3s; }
            .l-header__Nav_Items ul > li a:hover {
              color: #333;
              font-weight: bold;
              transition: transform .3s; }
              .l-header__Nav_Items ul > li a:hover::after {
                transform: scale(1, 1); }
  
  /* */
  .l-main {
    min-height: 100vh;
    min-height: 100%; 
	  align-self: stretch;
	  justify-content: space-between;
	  
}
    .l-main section {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin-bottom: 8em;
}

  /* Object Button */
  .c-show-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--sc-button-showditail-color);
    color: white;
    border-radius: 30px;
    width: 420px;
    height: 55px;
    padding: 30px; }
    .c-show-detail::after {
      content: "";
      width: 10px;
      height: 10px;
      border-top: 3px solid white;
      border-right: 3px solid white;
      transform: rotate(45deg); }
    .c-show-detail:hover {
      color: var(--sc-font-hover-color); }
  
  /* component Title */
  .c-h1-nodecorate {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--sc-h1-bg-color);
    color: var(--sc-font-default-color);
    font-size: 32px;
    font-family: 'Noto Serif JP', serif;
    padding: 1.5em; }
  
  .c-h2 {
    width: 100%;
    text-align: center;
    background-color: #707070;
    color: white;
    font-size: 1.5em;
    padding: .5em;
    font-family: 'Noto Serif JP', serif;
    font-size: 27px;
    margin-bottom: 1.5em; }
  
  .c-h3 {
    position: relative;
    width: 100%;
    text-align: center;
    color: var(--sc-font-default-color);
    width: 100%;
    margin-bottom: 1.5em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    padding-top: 2.5em;
    font-family: 'Noto Serif JP', serif; }
  
  .c-h3 span {
    position: relative;
    z-index: 0;
    display: block; }
  
  .c-h3::before {
    content: attr(data-en);
    position: absolute;
    top: 10px;
    left: calc(50% - 3em) S;
    color: var(--sc-font-default-color);
    font-size: 48px;
    font-weight: 400; }
  
  .c-h4 {
    position: relative;
    width: 100%;
    text-align: center;
    color: var(--sc-font-default-color);
    width: 100%;
    margin-top: 1.5em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    padding-top: 2.5em;
    padding-bottom: 1em;
    font-family: 'Noto Serif JP', serif; }
    .c-h4__left {
      position: relative;
      width: 100%;
      text-align: center;
      color: var(--sc-font-default-color);
      width: 100%;
      margin-top: 1.5em;
      display: inline-flex;
      justify-content: flex-start;
      align-items: center;
      font-size: 24px;
      padding-top: 2.5em;
      margin-bottom: 1em;
      font-family: 'Noto Serif JP', serif; }
  
  .c-h4 span {
    position: relative;
    z-index: 0;
    display: block; }
  
  .c-h4::before {
    content: attr(data-en);
    position: absolute;
    top: 10px;
    left: calc(50% - 3em) S;
    /*color: var(--sc-font-default-color);*/
    color: #ccc;
    font-size: 52px;
    font-weight: 400; }
  
  /* index.scss */
  .p-index-mv {
	  width: 100%;
    margin-bottom: 0px !important;
}
    .p-index-mv__inner {
        width: 100%; 
		@media screen and (min-width: 1201px){
			width: var(--v-width);
		}
      height: 488px;
      display: flex;
      align-items: center;
      background-image: url("../imgs/1118598.png");
      background-repeat: no-repeat;
      background-position: center bottom;
      background-size: contain;
      font-size: 42px;
      font-family: 'Noto Serif JP', serif;
      position: relative; }
      .p-index-mv__inner:before {
        background-color: rgba(255, 255, 255, 0.3);
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        content: ' '; }
      .p-index-mv__inner p {
        z-index: 1;
        color: #716767; }
      .p-index-mv__inner span {
        font-size: 72px;
        color: #1DACB5; }

    .p-index-mv__shorcut {
      width: 100%;
      color: white;
      background-color: var(--sc-main-color);
      padding-bottom: 1em;
      display: flex;
      justify-content: center;
      align-items: center; }

.p-index-mv__shorcut ul {
        display: flex;
        justify-content: space-between;
        align-items: center;
	flex-wrap: wrap;
        width: var(--v-width); 
	@media screen and (max-width: 768px){
        width: 100%; 
	}
}


.p-index-mv__shorcut a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: transform 1.5s;
	text-decoration:none;
	color:white;
}

.p-index-mv__shorcut a:hover {
        color: var(--sc-font-hover-color); 
}
  
  .p-index-information {
    width: 100%;
    margin-top: 0;
    margin-bottom: 3em; }
    .p-index-information__inner {
      box-sizing: border-box;
      width: var(--v-width);
      padding: 2em 8em;
      border: 1px solid var(--border-line-color);
      box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
      background-color: #fafafa; }
  
  .p-index-about {
    width: 100%;
    margin-bottom: 2em; }
    .p-index-about__inner {
      width: var(--v-width);
      margin-bottom: 1.5em;
      padding: 1em 8em; }
    .p-index-about__dot-hr {
      width: 100%;
      border-top: 5px dotted #c0c0c0; }
    .p-index-about__wrapper {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: relative;
      padding: 4em 0; }
      .p-index-about__wrapper h4 {
        display: block;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 0;
        left: 0; }
      .p-index-about__wrapper > a {
        position: absolute;
        bottom: 2em;
        z-index: 1; }
      .p-index-about__wrapper__horiz {
        display: flex;
        justify-content: center;
        align-items: center;
        width: var(--v-width); }
    .p-index-about__wrapper p {
      display: block;
      width: 100%;
      padding: 1px; }
  
  .p-index-topics {
    width: 100%; }
    .p-index-topics__list {
      width: var(--v-width);
      display: flex;
      flex-direction: column; }
      .p-index-topics__list__item {
        line-height: 1.5em;
        padding: 0.5em;
        background-color: #fafafa; }
.p-index-topics__list__item a
{
	font-weight: normal;
	text-decoration: none;
	color: #6c6c6c;
}
.p-index-topics__list__item a:hover
{
	color: #C91D14;
}
        .p-index-topics__list__item__span-date {
          font-size: 1.1em;
          margin-right: 1em;
          padding-left: 1em; }
        .p-index-topics__list__item__span-category {
          display: inline-block;
          font-size: 0.9em;
          margin-right: 1em;
          border: 1px solid var(--sc-font-default-color);
          padding: 0.25em 1em; }
      .p-index-topics__list__item:nth-child(odd) {
        background-color: #dadada; }
  
  /* About us css */
  .p-about-mv {
    justify-content: flex-start;
    margin-bottom: 5em; }
    .p-about-mv__split {
      display: flex;
      width: var(--v-width);
      justify-content: center;
      align-items: center; }
      .p-about-mv__split table {
		  width: 100%;
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2); }
        .p-about-mv__split table th, .p-about-mv__split table td {
          padding: 1em 3em; }
        .p-about-mv__split table th {
          text-align: right;
          padding-right: 0; }
        .p-about-mv__split table tr:nth-child(odd) th, .p-about-mv__split table tr:nth-child(odd) td {
          background-color: #fafafa; }
      .p-about-mv__split__img-holder {
        margin-left: 1em;
        width: 30%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1em; }
        .p-about-mv__split__img-holder img {
          width: 90%; }
        .p-about-mv__split__img-holder span {
          font-size: 0.8em;
          margin-top: 0.5em; }
  
  .p-about-history {
    justify-content: flex-start;
    margin-bottom: 5em; }
    .p-about-history__table {
      width: var(--v-width);
      border: 1px solid var(--border-line-color);
      box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2); }
      .p-about-history__table td {
        padding: 1.5em; }
        .p-about-history__table td:nth-child(odd) {
          text-align: right;
          padding-right: 0; }
      .p-about-history__table tr:nth-child(odd) td {
        background-color: #fafafa; }
  
  .p-about-detail > p {
    display: block;
    width: var(--v-width);
    padding: 1em;
    background-color: #fafafa;
    font-size: 1.2em; }
  .p-about-detail__section {
    width: var(--v-width);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 1.5em 1em; }
    .p-about-detail__section__h3-01 {
      border-bottom: 5px solid #5CB088;
      border-image: linear-gradient(to right, #5CB088, #fff);
      border-image-slice: 1; }
    .p-about-detail__section__h3-02 {
      border-bottom: 5px solid #42A2E9;
      border-image: linear-gradient(to right, #42A2E9, #fff);
      border-image-slice: 1; }
    .p-about-detail__section__h3-03 {
      border-bottom: 5px solid #68BAC8;
      border-image: linear-gradient(to right, #68BAC8, #fff);
      border-image-slice: 1; }
    .p-about-detail__section__p-01 {
      font-size: 1.1em;
      background-color: #83FCC2;
      padding: 1em;
      border-radius: 10px; }
    .p-about-detail__section__p-02 {
      font-size: 1.1em;
      background-color: #45A8F5;
      padding: 1em;
      border-radius: 10px; }
    .p-about-detail__section__p-03 {
      font-size: 1.1em;
      background-color: #6EC4D4;
      padding: 1em;
      border-radius: 10px; }
    .p-about-detail__section__ex {
      font-size: 0.9em;
      border: 1px solid var(--border-line-color);
      padding: 1em; }
    .p-about-detail__section__ol_01 {
      list-style: decimal; }
      .p-about-detail__section__ol_01 li {
        margin-left: 1.2em; }
    .p-about-detail__section h4 {
      background-image: linear-gradient(rgba(0, 0, 0, 0) 90%, #bbbcde 90%); }
    .p-about-detail__section__right-layout {
      margin-top: 2em;
      margin-bottom: 2em;
      width: 100%;
      display: flex;
      justify-content: flex-end;
      font-size: 0.8em; }
  
  /* CSS Document */
  .p-center-mv__split {
    width: var(--v-width);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2em;
    margin-bottom: 5em; }
    .p-center-mv__split p {
      display: block;
      padding: 2em;
      border: 1px solid var(--border-line-color);
      width: 55%;
      box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
      z-index: 1; }
    .p-center-mv__split__img-holder {
      width: 45%; }
  
  .p-center-reception p {
    width: var(--v-width);
    margin-bottom: 3em;
    line-height: 1.5em;
    padding: 0 5em; }
  .p-center-reception table {
    width: 960px;
    margin-top: 5em;
    margin-bottom: 5em;
    background-color: #fafafa;
    border: 1px solid var(--border-line-color);
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2); }
    .p-center-reception table tr:first-child td {
      padding-top: 3em; }
    .p-center-reception table tr:last-child td {
      padding-bottom: 3em; }
    .p-center-reception table td {
      padding: 0.5em; }
      .p-center-reception table td:nth-child(odd) {
        padding-left: 2em; }
  
  .p-center-consultaion {
    width: var(--v-width);
    margin-top: 2em;
    margin-bottom: 1.5em;
    line-height: 1.5em;
    padding: 0 5em; 
}
.p-center-consultaion h2
{
	display: block;
	width: 100%;
	font-size: 1.2em;
	border-left: 5px solid #0AC952;
	padding-left: 1.5em;
	margin-bottom: 1.5em;
	
}
.p-center-consultaion li{
	list-style: disc;
   margin-left: 4em;
   line-height: 3em;
	margin-bottom: 1em;
}
.p-center-consultaion  table {
    width: 100%;
    margin-bottom: 2em;
/*    background-color: #fafafa;
    border: 1px solid var(--border-line-color);
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);*/ }

.p-center-consultaion table th
{
	padding: 0.5em;
	margin-right: 2em;
	text-align: left;
}
    .p-center-consultaion table td {
      padding: 0.5em 1em ;
      margin-bottom: 0.5em; }
      .p-center-consultaion table td:first-child {
        width: 30%;
        padding-left: 2em; }
      .p-center-consultaion table td:last-child {
        font-size:1em; }
      .p-center-consultaion table td li {
        list-style: disc;
		  line-height: 2em;
        margin-left: 1em; }
 .p-center-consultaion p#detail
{
	margin-bottom: 3em;
}
.p-center-wrapper
{
	padding:0;
	margin:0;
	margin-bottom: 3em; 
}
  /* CSS Document */
  .p-training-mv
  {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
.p_training-mv-wrapper
{
  display:flex;
  flex-direction: row;
  width: var(--v-width);
  background-color: #fafafa;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
}
.p_training-mv-wrapper *
{
  width: 50%;
}
.p_training-mv-wrapper p
{
  padding: 3em;
  line-height: 2em;
}

  .p-training-leader {
    justify-content: center !important;
    padding: 3em 1em; }
  .p_training-leader-wrapper
  {
    display:flex;
    flex-direction: row;
    width: var(--v-width);
    background-color: #fafafa;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;  
  }
  .p_training-leader-wrapper img
  {
    width: 30%;
  }
  .p_training-leader-wrapper div
  {
    width: 45%;
  }
 .p_training-leader-wrapper a
{
	font-weight: bold;
	padding-top: 1em;
	padding-bottom: 1.5em;
	text-decoration: underline;
	color: #0000C9;
}

 .p_training-leader-wrapper a:hover
{
	color: #C91D14;
}
    .p-training-leader p {
      width: 100%;
      padding: 2em;
      line-height: 2em;
    }
    .p-training-leader p.center
    {
      width: 100%;
      text-align: center;
    }  
  .p-training-beginer {
    padding: 3em 1em; }
    .p-training-beginer h3 {
      border-bottom: 1px solid #5CB088;
      border-image-slice: 1; }
    .p-training-beginer__wrapper {
      width: var(--v-width);
      padding: 1em 1em 5em 1em;
      border-radius: 10px;
      background-color: #fafafa;
      box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
      margin-bottom: 5em; }
      .p-training-beginer__wrapper ol {
        margin-bottom: 5em; }
        .p-training-beginer__wrapper ol li {
          list-style: decimal;
          margin-left: 4em;
          margin-bottom: 1.5em;
          padding-right: 4em;
          padding-left: 3em;
          position: relative;
          z-index: 1;
          color: var(--sc-font-default-color);}
        .p-training-beginer__wrapper ol li span{
            color: var(--sc-font-default-color); }
      .p-training-beginer__wrapper p {
        padding: 4em; }
        .p-training-beginer__wrapper p a {
          margin-left: 3em;
          font-size: 1.3em; }
          .p-training-beginer__wrapper p a:hover {
            color: var(--sc-font-hover-color); }
  
  .p-training-corp table {
    width: var(--v-width);
    margin-bottom: 8em;
    border: 1px solid var(--border-line-color); }
    .p-training-corp table tr:nth-child(odd) td {
      background-color: #fafafa; }
    .p-training-corp table td {
      border-bottom: 1px solid var(--border-line-color);
      padding: 1em; }
      .p-training-corp table td:first-child {
        text-align: right; }
  
  .p-training-institution table {
    width: var(--v-width);
    margin-bottom: 8em;
    border: 1px solid var(--border-line-color); }
    .p-training-institution table tr:nth-child(odd) td {
      background-color: #fafafa; }
    .p-training-institution table td {
      border-bottom: 1px solid var(--border-line-color);
      padding: 1em; }
      .p-training-institution table td:first-child {
        text-align: right; }
  
  .p-training-information__wrapper {
    width: var(--v-width);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 8em; }
    .p-training-information__wrapper ul {
      width: 80%;
      display: block;
      border-radius: 10px;
      background-color: #fafafa;
      padding: 2em 1em;
      margin-bottom: 5em; }
      .p-training-information__wrapper ul li {
        list-style-image: url("http://www.y-hukushijigyo.or.jp/img/09_download-assets/pdf.png");
        margin-left: 4em;
        margin-bottom: 0.5em;
        padding-left: 1.5em; }
        .p-training-information__wrapper ul li a:hover {
          color: red; }
   .p-training-information__wrapper a
{
	font-weight: bold;
	padding-top: 1em;
	padding-bottom: 1.5em;
	text-decoration: underline;
	color: #0000C9;
}

 .p-training-information__wrapper a:hover
{
	color: #C91D14;
}
  .p-training-contact table {
    width: var(--v-width);
    margin-bottom: 8em;
    border: 1px solid var(--border-line-color); }
    .p-training-contact table tr:nth-child(odd) td {
      background-color: #fafafa; }
    .p-training-contact table td {
      border-bottom: 1px solid var(--border-line-color);
      padding: 1em; }
      .p-training-contact table td:first-child {
        text-align: right; }
  
  /* CSS Document */
  .p-introduction-mv p {
    width: var(--v-width);
    margin-top: 3em;
    margin-bottom: 3em; }
  .p-introduction-mv ul {
    width: 80%;
    display: block;
    border-radius: 10px;
    background-color: #fafafa;
    padding: 2em 1em; }
    .p-introduction-mv ul li {
      list-style-image: url("http://www.y-hukushijigyo.or.jp/img/09_download-assets/pdf.png");
      margin-left: 4em;
      margin-bottom: 0.5em;
      padding-left: 1.5em; }
      .p-introduction-mv ul li a:hover {
        color: red; }
  
  .p-introduction-result table {
    width: var(--v-width);
    margin-top: 3em; }
    .p-introduction-result table td {
      text-align: center;
      padding: 0.5em;
      border-bottom: double 1px var(--border-line-color); }
  
  .p-contact-point table {
    width: var(--v-width);
    margin-top: 3em; }
    .p-contact-point table td {
      padding: 1em;
      border-bottom: double 1px var(--border-line-color); }
    .p-contact-point table td:nth-child(odd) {
      text-align: right; }
  
  /* CSS Document */
  .p-topics h1 {
    font-size: 24px;
    text-align: center;
    margin: 3em; }
  .p-topics p {
    width: var(--v-width);
    padding: 1em; }
  .p-topics table {
    width: 1200 / 0.8; }
    .p-topics table td {
      padding: 0.5em 1em; }
  
  .p-topics-control__wrapper {
    width: var(--v-width);
    display: flex;
    align-items: center;
    justify-content: space-between !important; }
    .p-topics-control__wrapper a:hover {
      color: red;
      text-decoration: underline; }
  
  /* CSS Document */
  
  .p-contactform
  {
    display: flex;
    align-items: center;
      justify-content: center;	
      margin-top:3em;
  }
  
  .p-contactform table
  {
      width: var(--v-width);
      border:1px solid #666;
      margin-bottom:1.5em;
  }
  
  .p-contactform table th,
  .p-contactform table td
  {
      border-bottom: 1px solid #999;
      padding:1em;
  }
  .p-contactform table th
  {
      background-color: #f9f9f9;
  }
  
  .p-contactform input
  {
      line-height:1.5em;
  }
  .p-index-about__wrapper .p-index-about__wrapper__horiz div
  {
      display:flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding:2em;
	  order:0;
  }
  .p-index-about__wrapper .p-index-about__wrapper__horiz div ul
  {
      width:100%;
      padding-top:1.5em;
  }
  .p-index-about__wrapper .p-index-about__wrapper__horiz div li
  {
      position: relative;
      width: 100%;
      border-radius: 10px  0 0 10px;
      padding:0.5em;
      background-color: #245BA9;
      color: white;
      font-weight: bold;
      margin-bottom: 1px;
      border:1px solid #245BA9;
  }
  .p-index-about__wrapper .p-index-about__wrapper__horiz div li a
  {
color: white;
text-decoration: none;}
  .p-index-about__wrapper .p-index-about__wrapper__horiz div li:hover
  {
      border: double white 1px;
  }
  
  .p-index-about__wrapper .p-index-about__wrapper__horiz div li:before{ 
      display:inline-block; 
      vertical-align: middle;
      /*莉･荳狗區荳ｸ縺､縺上ｋ*/
      content:'';
      width:1em;
      height: 1em;
      background: #fff;
      border-radius: 50%;
      margin-right: 8px;
  }
  
  
  .p-index-about__wrapper .p-index-about__wrapper__horiz img
  {
	  order:0;
      width: 45%;
  }

  .p-index-about__wrapper:nth-child(odd) .p-index-about__wrapper__horiz img
  {
      order:1;
  }
  .p-index-about__wrapper:nth-child(odd) .p-index-about__wrapper__horiz div
  {
      order:0;
  }

  .p-pages-recruit > div
  {
    width: var(--v-width);
  }

  .p-pages-recruit > div h1
  {
    font-size: 1.5em;
    padding-left: 1.5em;
    margin-bottom: 3em;
    border-left: 3px solid red;
  }
  .p-pages-recruit > div p
  {
    line-height: 2em;
    margin-bottom: 3em;
  }
  .p-pages-recruit > div li
  {
    margin-left: 4em;
    line-height: 3em;
    border-bottom: 1px solid #f0f0f0;
  }
  .p-pages-recruit > div ul
  {
    margin-bottom: 3em;
  }
  .p-pages-recruit > div ul li
  {
    list-style: disc;
  }

  .p-pages-recruit > div ol li
  {
    list-style: decimal;
	  border-bottom: 0;
  }

  .p-pages-recruit > div h2
  {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 2em;
  }

  .p-pages-recruit > div h3
  {
    font-weight: bold;
    margin-bottom: 1.5em;
  }

  .p-pages-recruit > div table
  {
    margin-bottom: 3em;
  }

  .p-pages-recruit > div dl
  {
    margin-bottom: 3em;
  }

  .p-pages-recruit > div dl dt
  {
    font-size:1.1em;
    font-weight: bold;
  }
  .p-pages-recruit > div dl dd
  {
    margin-left:4em;
    margin-bottom:1.5em;
  }
  

  .more_info
  {
    display:flex;
    flex-direction: column;
    width: 80%;
    background-color: #f0f0f0;
    justify-content: center;
    align-items: center;
    padding:3em;
    margin: 1em auto;
    margin-bottom: 3em;

  }

  .more_info span
  {
    font-size: 1.5em;
    font-weight: bold;
  }

.p-institution
{
	justify-content: flex-start;
}
.p-institution table
{
	width: 100%;
	line-height: 1.5em;
	font-size: 0.8em;
}
.p-institution table tr:nth-child(odd)
{
	background-color: #fafafa;
}
.p-institution table th
{
	text-align: center;
}
.p-institution table th,
.p-institution table td
{
	padding:0.5em 1em;
	border-bottom: 1px solid #f0f0f0;
	
}
.p-institution_conditions
{
	width: var(--v-width);
}

.p-institution_conditions h1
{
	display:block;
	width: 100%;
	padding-left: 3em;
	font-size: 1.3em;
   font-weight: bold;
   margin-bottom: 2em;
	border-left: 5px solid orange;

}
.p-institution_conditions table
{
	width: 100%;
	font-size: 0.9em;
}
.p-institution_conditions table th,
.p-institution_conditions table td
{
	width: 10%;
	border: 1px solid #cacaca;
	vertical-align: middle;
}
.p-institution_conditions table th
{
	border-right: 5px double #cacaca;
}
.p-institution_conditions table td.condition
{
	width: 80%;
}
.p-institution_conditions form
{
	width: 100%;
	margin:0;
	padding:0;
}
.inst-icon
{
	width: 25px;
	margin-right: 0.5em;
}
.inst_result
{
	width: var(--v-width);
}
.inst_result table{
	width: 100%;
	border:1px solid #cacaca;
}
.inst_result table th,
.inst_result table td
{
	vertical-align: middle;
	border: 1px solid #cacaca;
}
.inst_result table th
{
	font-weight: bold;
	border-bottom: 3px double #cacaca;
}

.target_word{
	font-size: 1.2em;
	padding: 0.5em;
	width: 7em;
	text-align: center;
}
.btn_submit
{
	padding:0.5em 3em;
	border: double 1px white;
	border-radius: 50px;
	background-color: var(--sc-main-color);
	color: white;
	margin-top: 1.5em;
	
}

.link-box
{
	width:100%;
	display:flex;
	justify-content: center; 
	align-items:center;
}
.link-box > a
{
	display: block;
	padding: 2em;
	width:30%;
	color:white;
	text-align: center;
	background-color: navy;
	text-decoration: none;
}
.link-box > a:hover
{
	background-color: #0000C9;
}
.link-doc
{
	width: 100%;
	display: flex;
	padding-left: 2em;
	border-bottom: 1px solid #e0e0e0;
	margin-bottom: 3em;
}
.link-doc a
{
	font-weight: bold;
	padding-top: 1em;
	padding-bottom: 1.5em;
	text-decoration: underline;
	color: #0000C9;
}

.link-doc a:hover
{
	color: #C91D14;
}

.p-doc-download
{
	width: 100%;
}
.p-doc-download li
{
	width: 100%;
}

.p-download-container
{
	width: 400px;
	padding:1em;
	display: flex;
	justify-content: space-between;
	align-items: space-around;
	background-color: #f9f9f9;
}

.p-page-accessmap > div
{
	width: var(--v-width);
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.p-page-accessmap > div h1
  {
    font-size: 1.5em;
    padding-left: 1.5em;
    margin-bottom: 3em;
    border-left: 3px solid red;
	  width: 100%;
  }

.p-page-accessmap > div img
{
	width: 80%;
	border: 3px solid #f3f3f3;
	border-radius: 15px;
}

.p-page-accessmap > div h2
{
	display: block;
	width: 100%;
	font-size: 1.2em;
	border-left: 5px solid #0AC952;
	padding-left: 1.5em;
	margin-top: 3em;
	margin-bottom: 1.5em;
	
}
.p-page-accessmap > div h3
{
	display:block;
	width: 100%;
	padding-left: 2em;
	font-weight: bold;
}
.p-page-accessmap > div > div
{
	width: 100%;
	text-align: left;
	padding: 1em;
}

.p-page-accessmap ul
{
	width: 100%;
	margin-top: 1.5em;
}
.p-page-accessmap li
{
	list-style-type: disc;
	margin-left: 1.5em;
}
.error404
{
	display:flex;
	flex-direction: column;
	align-items: center;
	justify-content:flex-start;
	min-height: 100vh;
	width: 100%;
}
.error404 .l-main
{
	min-height: calc(100vh - 17em - 108px);
	display: flex;
	justify-content: center;
	align-items: center;
	
}
.error404 .l-main h1
{
	font-size: 1.3em;
	font-weight: bold;
	color: navy;
	margin-bottom: 1.5em;
}
.error404 .l-main a
{
	font-weight: bold;
	text-decoration: underline;
}
.p-beginner-cource-info
{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	background-color: #fcfcfc;
	border-radius: 5px;
	margin-bottom: 1em;
	padding: 1em;
}
.p-beginner-cource-info h3
{
	width: 100%;
}
.p-beginner-cource-info img
{
	width: 25%;
}

.p-beginner-cource-info li > a
{
	font-weight: bold;
	padding-top: 1em;
	padding-bottom: 1.5em;
	text-decoration: underline;
	color: #0000C9;

}
.p-beginner-cource-info li > a:hover
{
	color: #C91D14;
}

.view-permit ul
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin-top: 1.5em;
	margin-bottom: 3em;
}
.view-permit ul li
{
	list-style: none; !important;
	text-align: center;
}
