@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
  --col-grey:#ACB3BE;
  --col-grey_thin:#EBEBEB;
  --col-grey_bold:#888888;
  --col-black:#333333;
  --col-white:#fff;
  --col-blue:#00479D;
  --col-blue_thin:#E8F1F5;
  --col-lightBlue:#76BDF1;
  --col-lightBlue_thin:#CBDCED;
}

/* reset*/
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  color: var(--col-black);
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}

body {
  padding-top: 108px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 500;
  margin: 0;
}

body[data-open=true]{
  overflow: hidden;

  & .header{
      z-index: 1;
  }
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6;
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 600;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: 600;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  min-width:100%;
  border-color: inherit;
  border-collapse: collapse;
  border-top: solid 1px var(--col-lightBlue_thin);
  border-left: solid 1px var(--col-lightBlue_thin);

  & th{
      border-right: solid 1px var(--col-lightBlue_thin);
      border-bottom: solid 1px var(--col-lightBlue_thin);
      padding: 10px;
      background: var(--col-blue);
      text-align: center;
      font-weight: bold;
      color: var(--col-white);
  }
  & td{
      border-right: solid 1px var(--col-lightBlue_thin);
      border-bottom: solid 1px var(--col-lightBlue_thin);
      padding: 17px 20px;
  }
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 600;
}


/* default */
.pc-none{
  display: none;
}
.txtBold{
  font-weight: 600;
}
.txtBlue{
  color: var(--col-blue);
}

/* .linkBtn */
.linkBtn{
  display: inline-block;
  padding: 15px 39px;
  border-radius: 50px;
  border: solid 1px var(--col-blue);
  box-sizing: border-box;
  background: var(--col-blue);
  text-align: center;
  line-height: 1.4;
  font-size: 16px;
  font-weight:bold;
  position: relative;
  transition: .3s;

  &.linkBtn--white{
    border: solid 1px var(--col-white);
    background: var(--col-white);
    color: var(--col-blue);

    & span{
      color: var(--col-blue);
  
      &:after{
        background: url(../img/icon/linkBtn/link.svg)no-repeat center center / contain;
      }
    }
  }

  &.linkBtn--lightBlue{
    border: solid 1px var(--col-lightBlue);
    background: var(--col-lightBlue);
    color: var(--col-white);

    & span{
      color: var(--col-white);
  
      &:after{
        background: url(../img/icon/linkBtn/link-white.svg)no-repeat center center / contain;
      }
    }
  }

  &.linkBtn--clear{
    border: solid 1px var(--col-white);
    background: none;
    box-sizing: border-box;
    position: relative;

    & span{
      padding-right: 18px;
  
      &:after{
        width: 13px;
        background: url(../img/icon/tab-white.svg)no-repeat center center / contain;
        transition: .3s;
      }
    }
  }

  & span{
    display: inline-block;
    padding-right: 35px;
    color: var(--col-white);
    position: relative;
    transition: .3s;

    &:after{
      content:'';
      display: block;
      width: 25px;
      height: 100%;
      background: url(../img/icon/linkBtn/tab.svg)no-repeat center center / contain;
      position: absolute;
      top:0;
      right: 0;
      transition: .3s;
    }
  }
}

/* .sectionTtl */
.sectionTtl{
  text-align: left;

  & .sectionTtl__txt{
    display: block;
    line-height: 1.4;
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 45px;

    & span{
      display: block;
      font-size: 14px;
      font-weight: 500;
      color: var(--col-grey);
      margin-top: 10px;
    }
  }

  & .sectionTtl__link{
    display: inline-block;
    padding-right: 22px;
    line-height: 1.4;
    font-size: 14px;
    font-weight: bold;
    color: var(--col-blue);
    position: relative;
    transition: .3s;

    &.sectionTtl__link--blank{
      padding-right: 18px;

      &:after{
        content: '';
        display: block;
        width: 13px;
        height: 13px;
        background: url(../img/icon/tab-blue.svg)no-repeat center center / contain;
        position: absolute;
        top:1px;
        right:0;
      }
    }

    &:after{
      content: '';
      display: block;
      width: 17px;
      height: 17px;
      background: url(../img/icon/arrow-cyrcle-blue.svg);
      position: absolute;
      top:0;
      right:0;
      transition:.3s;
    }
  }
}

/* .postList */
.postList{

  &.postList--seminar{
    & ul{
      margin-bottom: 40px;
  
      & li{
        & a{

          & .postList__info{
            & p{
              color: var(--col-grey);
              position: relative;

              &:first-child{
                padding-left: 22px;
                position: relative;

                &:before{
                  content: '';
                  display: block;
                  width: 14px;
                  height: 100%;
                  background: url(../img/icon/calendar.svg)no-repeat center center / contain;
                  position: absolute;
                  top:0;
                  left: 0;
                }
              }
  
              &:last-child{
                color: var(--col-blue);
              }
            }
          }
        }
      }
    }
  }


  & ul{
    margin-bottom: 40px;

    & li{
      & a{
        transition: .3s;

        & .postList__img{
          display: block;
          margin-bottom: 16px;
        }

        & .postList__info{
          margin-bottom: 15px;

          & p{
            display: inline-block;
            padding: 0 10px 0 0;
            border-right: solid 1px var(--col-black);
            line-height: 1;
            font-size: 11px;
            font-weight: bold;
            color: var(--col-blue);

            &:last-child{
              padding: 0 0 0 10px;
              border-right: none;
              color: var(--col-grey);

              &:first-child{
                padding-left: 0;
              }
            }
          }
        }

        & .postList__ttl{
          font-size: 18px;
          font-weight: bold;
        }
      }
    }
  }

  & .swiper-scrollbar{
    width: calc(100% - 150px);
    background: var(--col-grey_thin);
  }

  & .swiper-scrollbar-drag{
    background: var(--col-blue);
  }

  & .postList--control{
    height:46px;
    text-align: right;
    position: relative;

    & .swiper-scrollbar{
      bottom: 21px;
    }

    & .swiper-button-prev{
      width: 45px;
      height: 45px;
      background: url(../img/icon/arrow-left.svg)no-repeat center center / contain;
      left: 0;
      cursor: pointer;

      &::after{
        display: none;
      }
    }

    & .swiper-button-next{
      width: 45px;
      height: 45px;
      background: url(../img/icon/arrow-right.svg)no-repeat center center / contain;
      left: 55px;
      cursor: pointer;

      &::after{
        display: none;
      }
    }
  }
}

.postList .swiper-horizontal>.swiper-scrollbar, .postList .swiper-scrollbar.swiper-scrollbar-horizontal{
  width: calc(90% - 150px);
  max-width: 380px;
  left: 150px;
  cursor: pointer;
}

/* .sec-postList */
.sec-postList{
  background: var(--col-blue_thin);
  overflow: hidden;

  &:nth-child(odd){
    
    & .swiper-scrollbar{
      background: var(--col-white);
    }
  }
  &:nth-child(even){
    background: var(--col-white);
    
    & .sectionInner{

      &:before{
        background: url(../../img/top/logoBg-blue.svg)no-repeat center center / contain;
        left: auto;
        right:-95px;
      }
    }
  }


  & .sectionInner{
    display: flex;
    justify-content: flex-start;
    padding:100px 0 100px 100px;
    box-sizing: border-box;
    position: relative;

    &:before{
      content: '';
      display: block;
      width: 584px;
      height: 665px;
      background: url(../../img/top/logoBg-white.svg)no-repeat center center / contain;
      position: absolute;
      top:-55px;
      left: -55px;
      z-index: 1;
    }

    & .sectionTtl{
      width: 300px;
      position: relative;
      z-index: 2;
    }

    & .postBox{
      width: calc(100% - 300px);
      position: relative;
      z-index: 2;
    }
  }
}


/* .header */
.header {
  display: flex;
  justify-content: space-between;
  align-content: flex-end;
  align-items: flex-end;
  width: 100%;
  padding: 26px 50px;
  box-sizing: border-box;
  background: #fff;
  position: fixed;
  top:0;
  left: 0;
  z-index: 999;

  & .header__logo{
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    width: 550px;
    line-height: 1.4;
    font-size: 14px;
    font-weight: 500;
    
    & img{
      display: inline-block;
      width: 190px;
      margin-right: 20px;
    }

    & .header__logo-txt{
      color: var(--col-blue);

      & .txt-bold{
        font-size: 16px;
        font-weight: bold;
        color: var(--col-black);
      }
    }
  }

  & .headerNav{
      display: flex;
      justify-content: flex-end;
      align-content: center;
      align-items: center;
      flex-wrap: wrap;
      width: calc(100% - 475px);
      box-sizing: border-box;

      & .headerNav__topNav{
        display: flex;
        justify-content: flex-end;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;  
        width: 100%;
        position: absolute;
        top: 0;
        right: 50px;

        & .linkBtn {
          padding:8px 25px;
          border-radius: 0 0 5px 5px;
          font-size: 14px;

          & span{
            padding-right: 35px;

            &:after{
              width: 25px;
            }
          }
        }
      }

      & > .headerNav__mainNav{
        display: flex;
        justify-content: flex-end;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;

        & li {
          display: inline-block;
          font-size: 16px;
          font-weight: bold;
          margin-left: 30px;
          position: relative;

          &:first-child{
            margin-left: 0;
          }
          
          &.pc-none{
            display: none;
          }

          &:hover {
            & a{
              & ~ .head-child{
                opacity: 1;
                transform: translateY(0) scaleY(1);
              }
            }
          }

          & a{
            position: relative;
            transition: .3s;

            &:before{
              content: '';
              display: block;
              width: 0;
              height: 1px;
              background: var(--col-orange_strong);
              position: absolute;
              left: 0;
              bottom: -5px;
              transition: .3s;
            }

            &.linkTab{
              padding-right: 15px;
              &:after{
                content: '';
                display: block;
                width: 10px;
                height:100%;
                background: url(../img/icon/tab-bla.svg)no-repeat center center / contain;
                position: absolute;
                right: 0;
                bottom: 0;
                transition: .3s;
              }
            }

            & ~ .head-child{
              display: block;
              width: 250px;
              background:var(--col-orange_thin);
              position:absolute;
              padding: 10px 20px;
              transition: .3s;
              opacity: 0;
              transform: translateY(-10px) scaleY(0);
              transform-origin: top left;
              z-index: 2;

              & li{
                display: block;
                width: 100%;
                padding: 5px 0;
                margin: 0;
              }
            }
            
            &.head-parent02{
              & ~ .head-child {
                width: 155px;
              }
            }

            &.head-parent03{
              & ~ .head-child {
                width: 200px;
              }
            }
          }
        }
    }

    & > .headerNav__attentionNav{
      display: none;
    }

    & .linkBtn {
      margin-left: 7px;
    }
  }

  & .head-open{
    display: none;
  }
  & .head-close{
    display: none;
  }
}

/* .footer */
.footer{
  & .footerWrapper{
   display: flex;
   justify-content: space-between;
   padding:60px 90px 40px 100px;
   box-sizing: border-box;
   background: var(--col-blue);
   color: var(--col-white);

   & a{
    display: inline-block;
    padding-left: 25px;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: bold;
     position: relative;

     &:before{
      content: '';
      display: block;
      width: 17px;
      height: 100%;
      background: url(../img/icon/arrow-cyrcle.svg)no-repeat center center / contain;
      position: absolute;
      top:0;
      left: 0;
      transition: .3s;
     }
   }
  }
}

.footerCompany{
  width: 285px;
  padding-right: 20px;
  box-sizing: border-box;

  & .footerCompany__info{
    & span{
      display: block;
      font-size: 14px;
      margin: 14px 0 15px;
    }
  }

  & a{
    padding-right: 18px;

    &:after{
      content: '';
      display: block;
      width: 13px;
      height: 100%;
      background: url(../img/icon/tab-white.svg)no-repeat center center / contain;
      position: absolute;
      top:0;
      right: 0;
      transition: .3s;
     }
  }
}

.footerContent{
  width: calc(100% - 285px);
  max-width: 855px;

  & ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;

    & li {
      width: 20%;
      margin-bottom: 20px;

      & a{

      }
    }
  }

  & .footerLinklist--attention{
    & li{
      width: auto;
      margin: 0 40px 20px 0;

      & a{
        padding: 0;
        font-size: 12px;

        &:before{
          display: none;
        }
      }
    }
  }
}

.footerLinklist{
  padding-bottom: 20px;
  border-bottom: solid 1px var(--col-white);
  margin-bottom: 40px;

  & .footerLinklist__link--tab{

    & span{
      padding-right: 21px;
      position: relative;

      &:after{
        content: '';
        display: block;
        width: 13px;
        height: 100%;
        background: url(../img/icon/tab-white.svg)no-repeat center center / contain;
        position: absolute;
        top:0;
        right: 0;
      }
    }
  }
}

.footer__copyright{
  display: block;
  padding: 20px 20px 38px;
  box-sizing: border-box;
  text-align: center;
  font-size: 12px;
}


@media (hover: hover) {

  /* .sectionTtl */
  .sectionTtl {
    & .sectionTtl__link {
      &:hover{
        color: var(--col-lightBlue);
        text-decoration: underline;

        &:after {
          background: url(../img/icon/arrow-cyrcle-lightblue.svg);
        }
      }
    }
  }

  /* .linkBtn */
  .linkBtn {
    &:hover{
      background: var(--col-white);
      box-sizing: border-box;

      & span{
        color: var(--col-blue);

        &:after {
          background: url(../img/icon/linkBtn/tab-blue.svg) no-repeat center center / contain;
        }
      }
    }

    &.linkBtn--clear {
      &:hover{

        border:solid 1px var(--col-blue);

        & span {
          &:after {
              background: url(../img/icon/tab-blue.svg) no-repeat center center / contain;
          }
        }
      }
    }

    &.linkBtn--white{

      &:hover{
        border: solid 1px var(--col-blue);
    
        & span{
      
          &:after{
            background: url(../img/icon/linkBtn/link-blue.svg)no-repeat center center / contain;
          }
        }
      }
    }

    &.linkBtn--lightBlue{
      &:hover{

        border: solid 1px var(--col-blue);
    
        & span{
          color: var(--col-blue);
      
          &:after{
            background: url(../img/icon/linkBtn/link-blue.svg)no-repeat center center / contain;
          }
        }
      }
    }
  
  }

  /* .postList */
  .postList {
    & ul {
      & li {
          & a {
            &:hover{
              color: var(--col-blue);
              opacity: .6;
            }
          }
      }
    }

    & .postList--control {
      & .swiper-button-prev {
        border-radius: 50px;
        transition: .3s;
          &:hover{
            background-color: var(--col-grey_thin);
          }
      }
      
      & .swiper-button-next {
        border-radius: 50px;
        transition: .3s;
        &:hover{
          background-color: var(--col-grey_thin);
        }
      }
    }
  }

  /* .header */
  .header {
    & .header__logo {
      & a{
        transition: .3s;
        &:hover{
          opacity: .6;
        }
      }
    }
    & .headerNav {
        & > .headerNav__mainNav {
            & li {
                & a {
                  &:after{
                    content:'';
                    display: block;
                    width: 100%;
                    height: 1px;
                    background: var(--col-blue);
                    position: absolute;
                    left: 0;
                    bottom:0;
                    opacity: 0;
                    transform: translateY(5px);
                    transition: .3s;
                  }

                  &:hover{
                    color: var(--col-blue);

                    &:after{
                      opacity: 1;
                      transform: translateY(1);
                    }
                  }
                }
            }
        }
    }
  }

  /* .footer */
  .footer {
    & .footerWrapper {
      & a {
        transition: .3s;

        &:hover{
          color: var(--col-lightBlue);
          text-decoration: underline;

          &:before {
            background: url(../img/icon/arrow-cyrcle-lightblue.svg) no-repeat center center / contain;
          }
        }
      }
      & .footerCompany__link{
        text-indent: -2.75em;
        padding: 0 20px 0 4.75em;
      }
    }
  }
  .footerCompany {
    & a {
      &:hover{
        &:after {
            background: url(../img/icon/tab-lightblue.svg) no-repeat center center / contain;
        }
      }
    }
  }

  /* .secc-mv */
  .mvNews {
    & ul {
        & li {
            & a {
              &:hover{
                color: var(--col-blue);

                & .mvNews__ttl{
                  text-decoration: underline;
                }
              }
            }
        }
    }
  }

}


@media(max-width:1500px){
  .sectionTtl {
    & .sectionTtl__txt {
      font-size: 34px;

      & span{
        font-size: 12px;
      }
    }
  }
}

@media(max-width:1350px){

  /* .footer */
  .footer {
    & .footerWrapper {
        padding: 60px 40px 40px 50px;
      }
  }
  .footerContent {
    max-width: 710px;

    & ul {
        & li {
            width: 25%;
        }
    }
  }
}

@media(max-width:1250px){
  .header {
    padding: 26px;

    & .header__logo {
      & .header__logo-txt {
        & .txt-bold {
            font-size: 14px;
        }
      }
    }
    & .headerNav {
      & .headerNav__topNav {
        right: 26px;
      }
    }
  }
}
@media(max-width:1200px){
  .header{
    padding-left: 20px;
    padding-right: 20px;

    & .headerNav {
      & .headerNav__topNav {
        right: 20px;
      }
    }
  }
}


@media(max-width:1150px){

  body{
    padding-top: 96px;
  }

  /* .header */
  .header {
    & .header__logo{
      justify-content: flex-start;
      font-size: 12px;

      & img{
        width: 150px;
      }
    }

    & .headerNav {
      & > .headerNav__mainNav {
          & li {
            margin-left: 20px;

              & a {
                font-size: 14px;
              }
          }
      }
    }
  }

  /* .sec-postList */
  .sec-postList {
    & .sectionInner {
      & .sectionTtl {
        width: 250px;
      }
      
      & .postBox {
        width: calc(100% - 250px);
      }
    }
  }
}


@media(max-width:1100px){
  /* .header */
  .header {
    padding-left: 25px;
    padding-right: 25px;

    & .header__logo{
      width: 500px;
      font-size: 10px;

      & .header__logo-txt {
        & .txt-bold {
          font-size: 13px;
        }
      }
    }

    & .headerNav {
      width: calc(100% - 360px);

      & .headerNav__topNav {
        right: 25px;

        & .linkBtn {
          font-size: 12px;
        }
      }
    }
  }

  .footer{
    & .footerWrapper {
      & a {
        font-size: 12px;
      }
    }
  }

  .footerCompany{
    & .footerCompany__info{
      & img{
        max-width: 200px;
      }

      & span{
        font-size: 12px;
      }
    }

  }
}


@media(max-width:1000px){

  body{
    padding-top: 57px;
  }

  /* .header */
  .header {
    padding: 16px 15px 13px;
    position: fixed;
    top:0;
    left: 0;
    z-index: 999;

    & .header__logo{
      justify-content: flex-start;
      font-size: 10px;

      & br:first-child{
        display: none;
      }

      & img{
        width: 95px;
        margin-right: 10px;
      }

    }

    & .headerNav{
        display: none;
        align-content: flex-start;
        width: 100%;
        height: calc(100vh - 57px);
        height: calc(100svh - 57px);
        padding: 33px 15px;
        box-sizing: border-box;
        background: var(--col-blue);
        color: var(--col-white);
        position: fixed;
        top:57px;
        left: 0;
        overflow-y: scroll;

        & .headerNav__topNav {
          display: block;
          position: relative;
          left: 0;
          right: 0;

          & .linkBtn {
            display: block;
            width: calc(100% - 30px);
            max-width: 400px;
            padding: 12px;
            border-radius: 25px;
            background: var(--col-lightBlue);
            font-size: 14px;
            margin: 0 auto 10px;

            & span{
              color: var(--col-white);

              &:after{
                background: url(../img/icon/linkBtn/tab.svg)no-repeat center center / contain;
              }
            }

            &.linkBtn--lightBlue{
              border:solid 3px var(--col-white);
              background: var(--col-white);

              & span{
                color: var(--col-blue);

                &:after{
                  background: url(../img/icon/linkBtn/link.svg)no-repeat center center / contain;
                }
              }
            }
        }
      }

      & > .headerNav__mainNav {
          display: block;
          margin: 8px auto 25px;

          & li {
            width: 100%;
            position: relative;
            margin: 0 auto;

            &:first-child{

              &::after{
                content:'';
                display: block;
                width: 100%;
                height: 1px;
                background: var(--col-white);
                opacity: 0.4;
                position: absolute;
                left: 0;
                top:0;
              }
            }

            &:before{
              content:'';
              display: block;
              width: 100%;
              height: 1px;
              background: var(--col-white);
              opacity: 0.4;
              position: absolute;
              left: 0;
              bottom:0;
            }

            &.pc-none {
              display: block;
            }

            & a{
              display: block;
              padding: 15px 15px 15px 40px;
              color: var(--col-white);
              position: relative;

              &:hover{
              color: var(--col-white);
              }

              &:before{
                content: '';
                display: block;
                width: 17px;
                height: 100%;
                background: url(../img/icon/arrow-cyrcle.svg)no-repeat center center / contain;
                position: absolute;
                top:0;
                left: 15px;
              }
            }
        }
      }

      & > .headerNav__attentionNav{
        display: block;
        padding:0 28px 27px 15px;
        box-sizing: border-box;

        & li {
          margin-bottom: 20px;

          &:last-child{
            margin-bottom: 0;
          }

          & a{
            font-size: 14px;
            font-weight: bold;
          }
        }
      }
    }

    & .head-open{
      display: block;
      width: 57px;
      height: 57px;
      padding: 22px 15px;
      background: var(--col-blue);
      position: absolute;
      top: 0;
      right: 0;
      cursor: pointer;

      &.head-open--active{
          & div {
            top:38px;
            left: 10px;
            transform-origin: top left;
            transform: rotate(-45deg);

            &:last-child{
              width: 27px;
              top:19px;
              transform-origin: top left;
              transform: rotate(45deg) translateX(0);
            }
          }
      }

      & div {
        width: 27px;
        height: 2px;
        background: var(--col-white);
        position: absolute;
        top:22px;
        left: 0;
        right: 0;
        margin: 0 auto;
        transition: .3s;

        &:last-child{
          width: 18px;
          top:32px;
          transform: translateX(4px);
        }
      }
    }
  }

  /* .footer */
  .footer{
    & .footerWrapper{
      display: block;
      padding: 40px 15px 20px;
      text-align: center;

      & a{
        font-size: 14px;
      }
    }
  }
  .footerContent{
    width: 100%;
    max-width: 100%;

    & ul{
      display: block;
      width: 100%;

      & li{
        width: 100%;
        text-align: left;
        position: relative;
        margin: 0;

        &::after{
          content: '';
          display: block;
          width: 100%;
          height: 1px;
          background: var(--col-white);
          opacity: .4;
          position: absolute;
          left: 0;
          bottom: 0;
        }

        & a{
          width: 100%;
          padding-top:15px;
          padding-bottom: 15px;
        }
      }
    }

    & .footerLinklist--attention {
      & li{
        margin: 0 0 20px;

        &::after{
          display: none;
        }

        & a{
          font-size: 14px;
        }
      }
    }

  }

  .footerLinklist{
    padding-bottom: 0;
    border:none;
    margin-bottom: 30px;
  }

  .footerCompany {
    width: 100%;
    padding: 0 0 50px;
    position: relative;

    &:before{
      content: '';
      display: block;
      width: 100%;
      height: 1px;
      background: var(--col-white);
      opacity: .4;
      position: absolute;
      left: 0;
      bottom: 0;
    }

    & .footerCompany__info {

      & span {
        margin: 10px 0 20px;
      }

      & img{
        max-width: 200px;
        margin: 0 auto;
      }
    }

  }

  .footer__copyright{
    padding: 15px;
    font-size: 12px;
  }
}

@media(max-width:900px){
  /* .sec-postList */
  .sec-postList {
    & .sectionInner {
      padding: 100px 0 100px 50px;
    }
  }
}

@media(max-width:768px){

  .pc-none{
    display: block;
  }
  .sp-none{
    display: none;
  }

  /* .linkBtn */
  .linkBtn{
    padding: 13px 37px;

    & span{
      padding-right: 15px;
      font-size: 14px;

      &::before{
        width: 11px;
      }
    }
  }

  /* .header */
  .header {
    & .header__logo{
      & .header__logo-txt {
        & .txt-bold {
          font-size: 10px;
        }
      }
    }
  }

  /* .sectionTtl */
  .sectionTtl {
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    margin-bottom: 26px;

    & .sectionTtl__txt{
      line-height: 1.3;
      font-size: 30px;
      margin-bottom: 10px;
      
      & span{
        font-size: 12px;
        margin-top: 3px;
      }
    }
  }

  /* .sec-postList */
  .sec-postList{

    &:nth-child(2n) {
      & .sectionInner {
          &:before {
              left: auto;
              right: -90px;
          }
      }
    }


    & .sectionInner{
      display: block;
      padding: 50px 30px 60px;

      &:before {
        width: 309px;
        height: 409px;
        top: 70px;
        left: -62px;
        z-index: 1;
    }

      & .sectionTtl{
        width: 100%;
      }

      & .postBox{
        width: 100%;

        & .swiper{
          overflow: inherit;
        }
      }
    }

    & ul {
      margin-bottom: 25px;

      & li {
          & a {
            & .postList__img {
              margin-bottom: 3px;
            }

            & .postList__info{
              margin-bottom: 3px;
    
              & p{
                display: inline-block;
                padding: 0 10px 0 0;
                font-size: 10px;

                &:last-child{
                  padding: 0 0 0 10px;

                  &:first-child{
                    padding: 0 10px 0 0;
                  }
                }
              }
            }
    
            & .postList__ttl{
              font-size: 14px;
            }
          }
      }
    }
  }

  .postList {

    &.postList--seminar{
      & ul{
        margin-bottom: 40px;
    
        & li{
          & a{
            & .postList__info{
              & p{
  
                &:first-child{
                  padding-left: 15px;
  
                  &:before{
                    width: 10px;
                  }
                }
              }
            }
          }
        }
      }
    }

    & .postList--control {
      height: 29px;

      & .swiper-button-prev{
        width: 29px;
        height: 29px;
        top:20px;
        transition: .3s;
      }

      & .swiper-button-next {
        width: 29px;
        height: 29px;
        top:20px;
        left: 40px;
        transition: .3s;
      }
    }
  }
  .postList .swiper-horizontal>.swiper-scrollbar,
  .postList .swiper-scrollbar.swiper-scrollbar-horizontal {
    width: calc(100% - 83px);
    max-width: 100%;
    height: 2px;
    left: 90px;
    bottom:14px;
  }

}

.p-vodSlider__thumbnailImage{
  aspect-ratio: 454 / 255;
  object-fit: scale-down;
}