<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* ---------------------
  - font--roboto

  - topicPath
    - topicPath__item

  - main__inner

  - pageTitle
    - pageTitle__text
  - pageTitle__sub

  - basicTabs
    - basicTabs__item
    - basicTabs__item--active

  - pageNotice

  - pager
    - pager__item
  - pagerArrow
    - pagerArrow--prev
    - pagerArrow--next
  - pagerNumber
    - pagerNumber__item
      - pagerNumber__item--current

  - basicError
    basicErrorContents
    - basicErrorContents__title
    - basicErrorContents__body
    - basicErrorText

  - backLink

  - bycolorTable
    - bycolorTable__group
    - bycolorTable__header
    - bycolorTable__datail

  - doubleTable

  - basicList
    - basicList__item
    - basicList--typeDisc
--------------------- */




/* =====================
  font--roboto
===================== */
.font--roboto {
  font-family: 'Roboto', sans-serif;
}



/* =====================
  topicPath
===================== */
.topicPath {
  list-style: none;
  max-width: 1000px;
  margin: 0 auto;
  padding: 15px 0;
}
@media screen and (max-width: 768px) {
  .topicPath {
    padding: 15px 20px;
  }
}


/*  topicPath__item
------------------------*/
.topicPath__item {
  display: inline;
  font-size: 12px;
}

.topicPath__item a {
  color: #444141;
  text-decoration: none;
}

.topicPath__item a:hover {
  text-decoration: underline;
}

.topicPath__item + .topicPath__item:before {
  display: inline-block;
  -webkit-transform: translateY(-30%) rotate(45deg);
      -ms-transform: translateY(-30%) rotate(45deg);
       -o-transform: translateY(-30%) rotate(45deg);
          transform: translateY(-30%) rotate(45deg);
  width: 5px;
  height: 5px;
  margin: 0 5px 0 3px;
  border-top: 1px solid #444141;
  border-right: 1px solid #444141;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
  content: " ";
}



/* =====================
  main__inner
===================== */
#main__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 0 70px;
}
@media screen and (max-width: 768px) {
  #main__inner {
    padding: 30px 20px 50px;
  }
}
@media screen and (max-width:600px) {
  #main__inner {
    padding: 30px 20px;
  }
}


.topicPath + #main__inner {
  padding: 35px 0 70px;
}
@media screen and (max-width: 768px) {
  .topicPath + #main__inner {
    padding: 15px 20px 50px;
  }
}
@media screen and (max-width:600px) {
  .topicPath + #main__inner {
    padding: 15px 20px 30px;
  }
}



/* =====================
  pageTitle
===================== */
.pageTitle {
  margin-bottom: 58px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .pageTitle {
    margin-bottom: 34px;
  }
}

@media screen and (max-width: 500px) {
  .pageTitle {
    text-align: left;
  }
}


/*  pageTitle__text
------------------------*/
.pageTitle__text{
  display: inline-block;
  position: relative;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: .08em;
}

@media screen and (max-width: 768px) {
  .pageTitle__text{
    font-size: 20px;
  }
}

.pageTitle__text::after{
  height: 16px;
  display: block;
  position: absolute;
  bottom: -8px;
  right: 0;
  left: 0;
  z-index: -1;
  margin: auto;
  transform: skewX(-32deg);
  background-color: #ecf865;
  content: "";
}


@media screen and (max-width: 500px) {
  .pageTitle__text::after{
    content: none;
  }
}

@media screen and (max-width: 500px) {
  .pageTitle__text::before {
    position: absolute;
    z-index: -1;
    top: -6px;
    left: -20px;
    border-style: solid;
    border-width: 26px 20px 26px 20px;
    border-color: #ecf865 transparent transparent #ecf865;
    content: "";
  }
}



/* =====================
  pageTitle__sub
===================== */
.pageTitle__sub {
  margin-top: 24px;
  padding-left: .08em;
  color: #7e7e7e;
  font-size: 18px;
  letter-spacing: .08em;
  text-align: center;
}
@media (max-width: 768px) {
  .pageTitle__sub {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .pageTitle__sub {
    margin-top: 10px;
    text-align: left;
  }
}


/* =====================
  basicTabs
===================== */
.basicTabs {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: .08em;
  text-align: center;
  justify-content: space-between;
  -ms-align-items: stretch;
      align-items: stretch;
}
@media screen and (max-width:600px) {
  .basicTabs {
    font-size: 14px;
  }
}
@media screen and (max-width:450px) {
  .basicTabs {
    font-size: 12px;
  }
}
@media screen and (max-width:374px) {
  .basicTabs {
    font-size: 10px;
  }
}


/*  basicTabs__item
------------------------*/
.basicTabs__item {
  width: -webkit-calc( ( 100% - ( 10px * 3 ) ) / 4 );
  width: calc( ( 100% - ( 10px * 3 ) ) / 4 );
}
@media screen and (max-width:600px) {
  .basicTabs__item {
    width: -webkit-calc( ( 100% - ( 6.5px * 3 ) ) / 4 );
    width: calc( ( 100% - ( 6.5px * 3 ) ) / 4 );
  }
}
@media screen and (max-width:425px) {
  .basicTabs__item {
    width: -webkit-calc( ( 100% - ( 3px * 3 ) ) / 4 );
    width: calc( ( 100% - ( 3px * 3 ) ) / 4 );
  }
}


.basicTabs__item + .basicTabs__item {
  margin-left: 10px;
}
@media screen and (max-width:600px) {
  .basicTabs__item + .basicTabs__item {
    margin-left: 6.5px;
  }
}
@media screen and (max-width:425px) {
  .basicTabs__item + .basicTabs__item {
    margin-left: 3px;
  }
}

.basicTabs__item a {
  display: block;
  position: relative;
  padding: 14px .5em 14px .58em;
  border: 1px solid #00b0e3;
  border-radius: 2px;
  color: #00b0e3;
  text-decoration: none;
  justify-content: center;
  -ms-align-items: center;
      align-items: center;
  -webkit-transition: all .5s;
       -o-transition: all .5s;
          transition: all .5s;
}

.basicTabs__item a:hover {
  background-color: #00b0e3;
  color: #fff;
}


/* basicTabs__link--active */
.basicTabs__item--active a {
  background-color: #00b0e3;
  color: #fff;
}

.basicTabs__item--active a:after {
  display: block;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-width: 10px 20px 0;
  border-style: solid;
  border-color: #00b0e3 transparent transparent transparent;
  content: " ";
}
@media (max-width: 768px) {
  .basicTabs__item--active a:after {
    border-width: 8px 16px 0;
  }
}


/* =====================
  pageNotice
===================== */
.pageNotice {
  margin: 30px 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .02em;
}
@media screen and (max-width:768px) {
  .pageNotice {
    margin: 20px 0;
  }
}

.pageNotice__text {
  display: inline-block;
  min-width: 400px;
  padding: 1.5em 2em;
  background-color: #eee;
  border-radius: 2px;
}
@media screen and (max-width:768px) {
  .pageNotice__text {
    font-size: 14px;
  }
}
@media screen and (max-width:500px) {
  .pageNotice__text {
    width: 100%;
    min-width: auto;
    box-sizing: border-box;
  }
}



/* =====================
  pager
===================== */
#pager {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin-top: 50px;
  justify-content: center;
  -ms-align-items: center;
      align-items: center;
}
@media screen and (max-width: 768px) {
  #pager {
    margin-top: 30px;
  }
}


/*  pager__item
------------------------*/
.pager__item + .pager__item {
  margin-left: 20px;
}



/* =====================
  pagerArrow
===================== */
.pagerArrow {
  position: relative;
}

.pagerArrow a {
  display: block;
  position: relative;
  overflow: hidden;
  text-indent: 200%;
  white-space: nowrap;
}

.pagerArrow a:before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 1px solid #444141;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  content: " ";
  -webkit-transition: all .25s;
       -o-transition: all .25s;
          transition: all .25s;
}


/*  pagerArrow--prev
------------------------*/
.pagerArrow--prev a:before {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
       -o-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-left: 1px solid #444141;
}

.pagerArrow--prev a:hover:before {
  left: -5px;
}


/*  pagerArrow--next
------------------------*/
.pagerArrow--next a:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  border-right: 1px solid #444141;
}

.pagerArrow--next a:hover:before {
  right: -5px;
}



/* =====================
  pagerNumber
===================== */
#pagerNumber {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  list-style: none;
  justify-content: space-between;
  -ms-align-items: center;
      align-items: center;
}


/*  pagerNumber__item
------------------------*/
.pagerNumber__item a {
  color: #444141;
  font-size: 14px;
  text-decoration: none;
}

.pagerNumber__item a:hover {
  text-decoration: underline;
}

.pagerNumber__item + .pagerNumber__item {
  margin-left: 15px;
}


/* pagerNumber__item--current */
.pagerNumber__item--current a {
  font-weight: bold;
  text-decoration: underline;
}



/* =====================
  basicError
===================== */
.basicError {
  height: -webkit-calc( 100vh - ( 138px + 113px ) );
  height: calc( 100vh - ( 138px + 113px ) );
  padding: 50px 20px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 10px;
}
@media screen and (max-width:768px) {
  .basicError {
    height: -webkit-calc( 100vh - ( 55px + 181px ) );
    height: calc( 100vh - ( 55px + 181px ) );
    font-size: 9px;
  }
}
@media screen and (max-width:600px) {
  .basicError {
    font-size: 8px;
  }
}



/* =====================
  basicErrorContents
===================== */
.basicErrorContents {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}


/*  basicErrorContents__title
------------------------*/
.basicErrorContents__title {
  font-weight: 700;
  font-size: 3em;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
}

.basicErrorContents__title &gt; span {
  display: block;
  margin-bottom: -.15em;
  font-weight: 400;
  font-size: 3.333333em;
  line-height: 1.1;
}


/*  basicErrorContents__body
------------------------*/
.basicErrorContents__body {
  font-size: 1.6em;
}

.basicErrorContents__body .backLink {
  margin: 0;
  margin-top: 1.111111em;
}

.basicErrorContents__body .backLink &gt; a {
  font-size: 1em;
}



/* =====================
  backLink
===================== */
.backLink {
  margin-bottom: 50px;
  text-align: center;
}

/* インタビューページ用補正 */
.interviewSection__body + .backLink {
  margin-top: -50px;
}

.backLink &gt; a {
  display: inline-block;
  position: relative;
  min-width: 34.5%;
  padding: 15px 36px;
  border-radius: 50px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #00b0e3;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: .08em;
  text-decoration: none;
  text-indent: .08em;
}
@media screen and (max-width:768px) {
  .backLink &gt; a {
    font-size: 14px;
    min-width: auto;
  }
}

.backLink &gt; a::after {
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 10px;
  height: 10px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  content: " ";
  -webkit-transition: all .25s;
       -o-transition: all .25s;
          transition: all .25s;
}
@media screen and (max-width:768px) {
  .backLink &gt; a::after {
    width: 8px;
    height: 8px;
  }
}

.backLink &gt; a:hover::after {
  right: 15px;
}



/* =====================
  bycolorTable
===================== */
.bycolorTable {
  font-size: 16px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .bycolorTable{
    font-size: 14px;
  }
}


/*  bycolorTable__group
------------------------*/
.bycolorTable__group {
  display: flex;
  border-bottom: 2px solid #fff;
}

.bycolorTable__group:last-child {
  border-bottom: none;
}

@media (max-width: 414px) {
  .bycolorTable__group {
    flex-direction: column;
    border-bottom: none;
  }
}

.bycolorTable__group:nth-of-type(odd) {
  background-color: #f5f5f5;
}

.bycolorTable__group:nth-of-type(even) {
  background-color: #fdfdfd;
}

@media (max-width: 414px){
.bycolorTable__group:nth-of-type(even) {
  background-color: #f5f5f5;
  }
}


/*  bycolorTable__header
------------------------*/
.bycolorTable__header {
  width: 30%;
  padding: 18px 20px;
  border-right: 2px solid #fff;
  background-color: #00b0e3;
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: .08em;
  box-sizing: border-box;
}
@media (max-width: 768px) {  
  .bycolorTable__header {
    font-size: 14px;
  }
}
@media (max-width: 414px) {
  .bycolorTable__header {
    width: 100%;
    padding: 8px 20px;
    border-right: none;
  }
}


/*  bycolorTable__datail
------------------------*/
.bycolorTable__datail {
  width: 70%;
  padding: 18px 20px;
  box-sizing: border-box;
}
@media (max-width: 414px) {
  .bycolorTable__datail {
    width: 100%;
    padding: 8px 20px 16px;
  }
}



/* =====================
  doubleTable
===================== */
.doubleTable {
  overflow: auto;
}

.doubleTable table {
  width: 100%;
  font-size: 14px;
  text-align: center;
  table-layout: fixed;
}

.doubleTable tr {
  border-bottom: 2px solid #fff;
}

.doubleTable tr:first-child ,
.doubleTable tr:last-child {
  border-bottom: none;
}

.doubleTable th ,
.doubleTable td {
  width: 7.6em;
  padding: 14px .5em;
}

.doubleTable th {
  background-color: #bcc5c8;
  padding-left: .58em;
  letter-spacing: .08em;
}

.doubleTable td {
  background-color: #eee;
}



/* =====================
  basicList
===================== */
.accessMap + .basicList {
  margin-top: 1em;
}


/*  basicList__item
------------------------*/
.basicList__item {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.5;
}

.basicList__item + .basicList__item {
  margin-top: .25em;
}


/*  basicList--typeDisc
------------------------*/
.basicList--typeDisc &gt; .basicList__item:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  line-height: 1.5;
  text-align: center;
  content: "・";
}




</pre></body></html>