@charset "UTF-8";
:root {
  --innerBase:780px;
  --wrapBase:940px;
  --boxBase:1080px;
  --containerBase:1280px;
  --maxWidthBase:1440px;
  --inner:var(--innerBase);
  --wrap:var(--wrapBase);
  --box:var(--boxBase);
  --container:var(--containerBase);
  --maxWidth:var(--maxWidthBase);
  --spContainerPadding:5%;
  --pcContainerPadding:95px;
  --spHeaderHeight:60px;
  --pcHeaderHeight:85px;
  --baseColor:#ffffff;
  --mainColor:#003288;
  --subColor:#D1DDEF;
  --icuColor:#3395EA;
  --entColor:#059A78;
  --cssdColor:#375DB4;
  --othersColor:#696F7E;
  --whiteColor:#ffffff;
  --grayColor:#696F7E;
  --lightGrayColor:#BDC1CD;
  --softGrayColor:rgb(from #696F7E r g b / 15%);
  --paleBlueColor:#D4E0F5;
  --tintBlueColor:#E5ECF8;
  --lightBlueColor:#D1DDEF;
  --deepBlueColor:#375DB4;
  --softBlueColor:#BEC9E6;
  --grayBlueColor:#DCDEE6;
  --textHoverColor:#8098C4;
  --animationSpeed:0.4s;
  --ioAnimationSpeed:1s;
  --spMargin:40px;
  --pcMargin:50px;
  --fontSerif:"Shippori Mincho","游明朝",YuMincho,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif;
  --fontGothic:"Noto Sans JP","游ゴシック体",YuGothic,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
  --fontFamily:var(--fontGothic);
  --fontTitle:var(--fontSerif);
  --fontEn:"Lusitana", serif;
}

/* ==========================================================================

	TOP

========================================================================== */
/*----------------------------------------------------------------
    基本レイアウト
----------------------------------------------------------------*/
/*--------------------------------
    header
--------------------------------*/
header {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform var(--animationSpeed);
  transition: -webkit-transform var(--animationSpeed);
  transition: transform var(--animationSpeed);
  transition: transform var(--animationSpeed), -webkit-transform var(--animationSpeed);
  will-change: transform;
}
body.show-header header {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
/*--------------------------------
    nav_btnwrapper
--------------------------------*/
body.hide-header #nav_btnwrapper {
  background-color: var(--mainColor);
}
body.hide-header #nav_btnwrapper #nav_btn #nav_btn_icon, body.hide-header #nav_btnwrapper #nav_btn:before, body.hide-header #nav_btnwrapper #nav_btn:after {
  background-color: var(--whiteColor);
}
/*--------------------------------
    main
--------------------------------*/
main {
  padding-top: 0;
}
/*----------------------------------------------------------------
    共通レイアウト
----------------------------------------------------------------*/
/*--------------------------------
    リード文
--------------------------------*/
#interview > div > hgroup, #magazine > div > hgroup, #journal > div > hgroup {
  margin-bottom: 1.3em;
}
#interview > div > p, #magazine > div > p, #journal > div > p {
  margin-bottom: 2rem;
}
/*----------------------------------------------------------------
    各コンテンツ
----------------------------------------------------------------*/
/*--------------------------------
	mainvisual
--------------------------------*/
#mainvisual {
  overflow-x: clip;
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  padding: 0;
  -webkit-transition: var(--animationSpeed);
  transition: var(--animationSpeed);
}
#mainvisual #logo-vertical {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9989;
}
#mainvisual #logo-vertical a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 12vw;
  height: 12vw;
  max-width: 184px;
  max-height: 184px;
  padding: 1em;
  background-color: var(--whiteColor);
}
#mainvisual #logo-vertical a img {
  margin: 0;
}
#mainvisual h2 {
  background-color: var(--whiteColor);
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 9989;
}
#mainvisual h2 span {
  display: block;
  line-height: 1;
  color: var(--mainColor);
  font-size: 5rem;
  padding: 0.3em;
}
#mainvisual .slide {
  width: 100%;
  height: 100%;
}
#mainvisual .slide .slick-list,
#mainvisual .slide .slick-track,
#mainvisual .slide .slick-slide,
#mainvisual .slide .slick-slide > div,
#mainvisual .slide .slick-slide > div picture {
  width: 100%;
  height: 100%;
}
#mainvisual .slide picture img {
  width: 100%;
  height: 100%;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
#mainvisual .slide {
  /* dots */
}
#mainvisual .slide .slick-dots {
  padding: 0 30px;
  bottom: 20px;
  text-align: right;
}
@media print, screen and (max-width: 812px) {
  #mainvisual #logo-vertical a {
    width: 38vw;
    height: 38vw;
    max-width: 110px;
    max-height: 110px;
    padding: 1.8em;
  }
  #mainvisual h2 span {
    line-height: 1.4;
    font-size: 3rem;
    padding: 0.3em;
  }
}
/*--------------------------------
    about
--------------------------------*/
#about > div[data-mark-icon]:after {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  position: static;
}
#about > div[data-mark-icon].io:after {
  -webkit-transition: opacity calc(var(--ioAnimationSpeed) * 0.5) ease 0.5s, -webkit-transform calc(var(--ioAnimationSpeed) * 2) ease 0.5s;
  transition: opacity calc(var(--ioAnimationSpeed) * 0.5) ease 0.5s, -webkit-transform calc(var(--ioAnimationSpeed) * 2) ease 0.5s;
  transition: opacity calc(var(--ioAnimationSpeed) * 0.5) ease 0.5s, transform calc(var(--ioAnimationSpeed) * 2) ease 0.5s;
  transition: opacity calc(var(--ioAnimationSpeed) * 0.5) ease 0.5s, transform calc(var(--ioAnimationSpeed) * 2) ease 0.5s, -webkit-transform calc(var(--ioAnimationSpeed) * 2) ease 0.5s;
  -webkit-transform: translate3d(0, 20.4rem, 0);
          transform: translate3d(0, 20.4rem, 0);
}
#about > div > div {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media print, screen and (max-width: 812px) {
  #about > div {
    -webkit-transform: translateY(-7%);
            transform: translateY(-7%);
    gap: 0;
  }
  #about > div[data-mark-icon]:after {
    --markIconSize:min(67vw,250px);
    margin-bottom: 1.6em;
  }
  #about > div > div {
    padding-top: 0;
    padding-bottom: 0;
  }
  #about > div > div .link_btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media print, screen and (min-width: 813px) {
  #about > div[data-mark-icon]:after {
    --markIconSize:min(43vw,525px);
  }
  #about > div[data-mark-icon].io:after {
    -webkit-transform: translate3d(0, calc(-12% + 20.4rem), 0);
            transform: translate3d(0, calc(-12% + 20.4rem), 0);
  }
  #about > div[data-mark-icon].io.move:after {
    -webkit-transform: translate3d(0, -12%, 0) !important;
            transform: translate3d(0, -12%, 0) !important;
  }
  #about > div > div {
    padding: calc(var(--pcMargin) * 2) 0;
  }
  #about > div > div .link_btn {
    margin-top: calc(var(--pcMargin) * 2);
  }
}

/*--------------------------------
    roundup
--------------------------------*/
#roundup section > div picture[data-mark-icon].io:after {
  -webkit-transition: opacity calc(var(--ioAnimationSpeed) * 0.5) ease 0.5s, -webkit-transform var(--ioAnimationSpeed) ease 0.5s;
  transition: opacity calc(var(--ioAnimationSpeed) * 0.5) ease 0.5s, -webkit-transform var(--ioAnimationSpeed) ease 0.5s;
  transition: opacity calc(var(--ioAnimationSpeed) * 0.5) ease 0.5s, transform var(--ioAnimationSpeed) ease 0.5s;
  transition: opacity calc(var(--ioAnimationSpeed) * 0.5) ease 0.5s, transform var(--ioAnimationSpeed) ease 0.5s, -webkit-transform var(--ioAnimationSpeed) ease 0.5s;
  -webkit-transform: translate3d(0, 20.4rem, 0);
          transform: translate3d(0, 20.4rem, 0);
}
@media print, screen and (max-width: 812px) {
  #roundup section {
    margin-bottom: 1.6em;
  }
  #roundup section:last-child {
    margin-bottom: 0;
  }
  #roundup section > div picture[data-mark-icon] {
    --markIconSize:8em;
  }
  #roundup section > div picture[data-mark-icon]:after {
    left: auto;
    right: 0;
  }
  #roundup section > div > div {
    padding: 0;
  }
  #roundup section > div > div > div {
    padding: 2em var(--spContainerPadding);
  }
  #roundup section > div > div > div .link_btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media print, screen and (min-width: 813px) {
  #roundup section {
    margin-bottom: var(--spMargin);
  }
  #roundup section:last-child {
    margin-bottom: 0;
  }
  #roundup section > div {
    position: relative;
  }
  #roundup section > div picture img {
    width: 100%;
  }
  #roundup section > div picture[data-mark-icon] {
    --markIconSize:18em;
  }
  #roundup section > div > div {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #roundup section > div > div > div {
    width: 40%;
    padding: 3em 4em;
    position: relative;
  }
  #roundup section > div > div > div .link_btn {
    margin-top: calc(var(--pcMargin) * 1.5);
  }
  #roundup section > div > div > div .link_btn a:after {
    content: "";
  }
  #roundup section:nth-child(even) > div > div > div {
    margin-left: auto;
  }
}

/*--------------------------------
    lineup
--------------------------------*/
#lineup > div ul {
  gap: 1em;
}
#lineup > div ul li {
  aspect-ratio: 1/1;
}
#lineup > div ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  color: var(--whiteColor);
  font-size: min(2rem, 20px);
}
#lineup > div ul li a.or-icu {
  background-color: var(--icuColor);
}
#lineup > div ul li a.ent {
  background-color: var(--entColor);
}
#lineup > div ul li a.cssd {
  background-color: var(--cssdColor);
}
#lineup > div ul li a.others {
  background-color: var(--othersColor);
}
@media print, screen and (max-width: 812px) {
  #lineup > div.column {
    row-gap: 0;
  }
  #lineup > div > div {
    margin-bottom: 1.6em;
  }
  #lineup > div ul {
    margin-bottom: 0;
  }
  #lineup > div .link_btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media print, screen and (min-width: 813px) {
  #lineup > div {
    grid-template-columns: 1.5fr 1fr;
  }
  #lineup > div > div {
    padding-right: 21%;
  }
  #lineup > div > div .link_btn {
    margin-top: 5em;
  }
  #lineup > div ul li span {
    -webkit-transition: color var(--animationSpeed);
    transition: color var(--animationSpeed);
  }
  #lineup > div ul li a:hover.or-icu {
    background-color: color-mix(in srgb, var(--icuColor) 70%, var(--whiteColor));
  }
  #lineup > div ul li a:hover.ent {
    background-color: color-mix(in srgb, var(--entColor) 70%, var(--whiteColor));
  }
  #lineup > div ul li a:hover.cssd {
    background-color: color-mix(in srgb, var(--cssdColor) 70%, var(--whiteColor));
  }
  #lineup > div ul li a:hover.others {
    background-color: color-mix(in srgb, var(--othersColor) 70%, var(--whiteColor));
  }
}

/*--------------------------------
    interview
--------------------------------*/
/*--------------------------------
    magazine
--------------------------------*/
/*--------------------------------
    journal
--------------------------------*/
@media print, screen and (max-width: 812px) {
  #journal > div > p {
    margin-bottom: calc(11px + 2rem);
  }
}
/*--------------------------------
    information
--------------------------------*/
/*--------------------------------
    recruit
--------------------------------*/
#recruit > div {
  gap: 0;
}
@media print, screen and (max-width: 812px) {
  #recruit > div > div {
    padding-right: var(--spContainerPadding);
    padding-left: var(--spContainerPadding);
  }
  #recruit > div > div > div .link_btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media print, screen and (min-width: 813px) {
  #recruit > div {
    place-items: center;
  }
  #recruit > div > div {
    padding-left: calc((100vw - var(--container)) / 2 - var(--pcContainerPadding));
  }
  #recruit > div > div > div {
    padding: 0 10.3% 0 var(--pcContainerPadding);
  }
  #recruit > div > div > div .link_btn {
    margin-top: 5em;
  }
}

/*--------------------------------
    qanda
--------------------------------*/
#qanda > div {
  gap: 0;
}
@media print, screen and (max-width: 812px) {
  #qanda > div > div {
    padding-right: var(--spContainerPadding);
    padding-left: var(--spContainerPadding);
  }
  #qanda > div > div > div .link_btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media print, screen and (min-width: 813px) {
  #qanda > div {
    place-items: center;
  }
  #qanda > div > div {
    padding-left: calc((100vw - var(--container)) / 2 - var(--pcContainerPadding));
  }
  #qanda > div > div > div {
    padding: 0 10.3% 0 var(--pcContainerPadding);
  }
  #qanda > div > div > div .link_btn {
    margin-top: 5em;
  }
}/*# sourceMappingURL=style.css.map */
