@charset "UTF-8";
/*default*/
.att {
  padding-left: 1em;
  text-indent: -1em;
}

.att02 {
  padding-left: 1.3em;
  text-indent: -1.3em;
}

/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, height 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, width 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
:root {
  --offset: 20vw;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
}

.bg_image {
  --offset: 20vw;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
}

*::-ms-backdrop, :root {
  --move-initial: 50vw;
  --move-final: -150vw;
}

.marquee {
  width: 100vw;
  overflow: hidden;
}

.marquee__inner {
  width: 100%;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: space-between;
  position: relative;
  transform: translate3d(var(--move-initial), 0, 0);
  animation: marquee 20s linear infinite;
  -webkit-animation: marquee 20s linear infinite;
}
.marquee__inner span {
  display: block;
  width: 100vw;
  margin: 0 3rem;
  flex-shrink: 0;
}
.marquee__inner.life01 span {
  width: 80vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.life01 span {
    width: 100vw;
  }
}
.marquee__inner.life02 span {
  width: 65vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.life02 span {
    width: 100vw;
  }
}
.marquee__inner.rezi04 span {
  width: 50vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.rezi04 span {
    width: 100vw;
  }
}
.marquee__inner.rezi05 span {
  width: 40vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.rezi05 span {
    width: 80vw;
  }
}

*::-ms-backdrop, .marquee__inner {
  width: 800vw;
  margin: 0;
  animation: marquee_ie 20s linear infinite;
  -webkit-animation: marquee_ie 20s linear infinite;
}
*::-ms-backdrop span, .marquee__inner span {
  display: block;
  width: 500px;
  margin: 0;
}

@keyframes marquee_ie {
  0% {
    transform: translate3d(0vw, 0, 0);
  }
  100% {
    transform: translate3d(-150vw, 0, 0);
  }
}
@keyframes marquee {
  0% {
    transform: translate3d(var(--move-initial), 0, 0);
  }
  100% {
    transform: translate3d(var(--move-final), 0, 0);
  }
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop3 {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes loop4 {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}
div.insefa {
  width: 100%;
  overflow: hidden;
  display: flex;
}

.text {
  margin: 0 1rem;
  animation: flowing 40s linear infinite;
  transform: translateX(0%); /*初期位置*/
}

@keyframes flowing {
  100% {
    transform: translateX(-100%);
  }
}
/*! locomotive-scroll v4.1.1 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */
html.has-scroll-smooth {
  overflow: hidden;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

[data-scroll-direction=horizontal] [data-scroll-container] {
  height: 100vh;
  display: inline-block;
  white-space: nowrap;
}

[data-scroll-direction=horizontal] [data-scroll-section] {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  height: 100%;
}

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100%;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}

.c-scrollbar:hover {
  transform: scaleX(1.45);
}

.c-scrollbar:hover, .has-scroll-dragging .c-scrollbar, .has-scroll-scrolling .c-scrollbar {
  opacity: 1;
}

[data-scroll-direction=horizontal] .c-scrollbar {
  width: 100%;
  height: 10px;
  top: auto;
  bottom: 0;
  transform: scaleY(1);
}

[data-scroll-direction=horizontal] .c-scrollbar:hover {
  transform: scaleY(1.3);
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #000;
  opacity: 0.5;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
  cursor: grabbing;
}

[data-scroll-direction=horizontal] .c-scrollbar_thumb {
  right: auto;
  bottom: 0;
}

/*default*/
/*
Flaticon icon font: Flaticon
Creation date: 03/10/2020 15:15
*/
@font-face {
  font-family: "Flaticon";
  src: url("/company/recruitment/assets/fonts/Flaticon.eot");
  src: url("/company/recruitment/assets/fonts/Flaticon.eot?#iefix") format("embedded-opentype"), url("/company/recruitment/assets/fonts/Flaticon.woff2") format("woff2"), url("/company/recruitment/assets/fonts/Flaticon.woff") format("woff"), url("/company/recruitment/assets/fonts/Flaticon.ttf") format("truetype"), url("/company/recruitment/assets/fonts/Flaticon.svg#Flaticon") format("svg");
  font-weight: normal;
  font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: "Flaticon";
    src: url("/company/recruitment/assets/fonts/Flaticon.svg#Flaticon") format("svg");
  }
}
.fi:before {
  display: inline-block;
  font-family: "Flaticon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.flaticon-menu:before {
  content: "\f100";
}

.flaticon-next:before {
  content: "\f101";
}

.flaticon-go-back:before {
  content: "\f102";
}

.flaticon-forward:before {
  content: "\f103";
}

.flaticon-down-arrow:before {
  content: "\f104";
}

.flaticon-chevron:before {
  content: "\f105";
}

.flaticon-back:before {
  content: "\f106";
}

.flaticon-undo:before {
  content: "\f107";
}

.flaticon-right-arrow:before {
  content: "\f108";
}

.flaticon-left-arrow:before {
  content: "\f109";
}

.flaticon-plus:before {
  content: "\f10a";
}

.flaticon-play-button:before {
  content: "\f10b";
}

.flaticon-play:before {
  content: "\f10c";
}

.flaticon-left-arrow-1:before {
  content: "\f10d";
}

.flaticon-right-arrow-1:before {
  content: "\f10e";
}

.flaticon-left-arrow-2:before {
  content: "\f10f";
}

.flaticon-download:before {
  content: "\f110";
}

.flaticon-down-arrow-1:before {
  content: "\f111";
}

.flaticon-checked:before {
  content: "\f112";
}

.flaticon-question:before {
  content: "\f113";
}

.flaticon-play-button-1:before {
  content: "\f114";
}

.flaticon-up-arrow:before {
  content: "\f115";
}

.flaticon-file:before {
  content: "\f116";
}

.flaticon-chat:before {
  content: "\f117";
}

.flaticon-up-arrow-1:before {
  content: "\f118";
}

.flaticon-smartphone:before {
  content: "\f119";
}

.flaticon-cloud-computing:before {
  content: "\f11a";
}

.flaticon-login:before {
  content: "\f11b";
}

.flaticon-close:before {
  content: "\f11c";
}

main {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.enbigs {
  font-size: 5rem;
}
@media only screen and (max-width: 768px) {
  .enbigs {
    font-size: 2.4rem;
    line-height: 1.2;
  }
}

.intern_visual {
  position: relative;
}
.intern_visual.winter {
  margin: 0 0 10rem 0;
}
@media only screen and (max-width: 768px) {
  .intern_visual.winter {
    margin: 0 0 5rem 0;
  }
}
.intern_visual .image {
  width: 60%;
  margin: 0 5vw 0 auto;
  transform: scale(1.1);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.intern_visual .image.active {
  transform: scale(1);
}
@media only screen and (max-width: 768px) {
  .intern_visual .image {
    margin: 0 0 3rem auto;
    width: 70%;
  }
}
.intern_visual .txt {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .intern_visual .txt {
    top: 40%;
  }
}
.intern_visual .txt .copy {
  font-size: 5vw;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  .intern_visual .txt .copy {
    font-size: 8vw;
  }
}
.intern_visual .txt .copy span.enl {
  display: inline-block;
  margin: 0 0 0 1rem;
}

.internentry {
  position: absolute;
  top: 60%;
  right: 3vw;
  margin: 0 0 5rem 0;
}
@media only screen and (max-width: 768px) {
  .internentry {
    position: static;
    width: 100%;
    padding: 0 8vw;
    margin: 0 0 5vw 0;
  }
  .internentry ul {
    width: 100% !important;
  }
  .internentry ul li {
    width: 100%;
  }
}
.internentry.ieflex {
  position: static;
}
.internentry.ieflex ul {
  width: 300px;
  justify-content: space-between;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .internentry.ieflex ul {
    width: 100%;
  }
}
.internentry.ieflex ul li a {
  display: block;
  text-align: center;
}
.internentry ul {
  width: 300px;
}
.internentry ul li.entry {
  margin: 0 0 0.3rem 0;
}
.internentry ul li.entry a {
  background: #FD4E1E;
}
.internentry ul li.entry a:hover {
  background: rgb(253.2246696035, 97.8832599119, 55.2753303965);
}
.internentry ul li.mypage a {
  background: #FDC11E;
  color: #000;
}
.internentry ul li.mypage a:after {
  color: #000;
}
.internentry ul li.mypage a:hover {
  background: rgb(253.2246696035, 199.9647577093, 55.2753303965);
}
.internentry ul li a {
  display: block;
  padding: 2rem;
  position: relative;
  color: #ffffff;
}
.internentry ul li a:after {
  position: absolute;
  font-family: "Flaticon";
  top: 50%;
  right: 1rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  line-height: 1;
  content: "\f101";
  font-size: 14px;
  font-size: 1.4rem;
  z-index: 999;
  color: #ffffff;
  line-height: 18px;
  text-align: center;
  transition: all 0.3s ease;
  transform: translateY(-50%);
  display: block;
}
@media only screen and (max-width: 768px) {
  .internentry ul {
    width: 100%;
  }
}

.pagenavi .inner {
  padding: 8vw;
}
.pagenavi .inner ul {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .pagenavi .inner ul {
    display: block;
  }
}
.pagenavi .inner ul li {
  margin: 0 2rem 0 0;
}
@media only screen and (max-width: 768px) {
  .pagenavi .inner ul li {
    width: 100%;
  }
}
.pagenavi .inner ul li a {
  display: inline-block;
  padding: 0 5rem 0 0;
  position: relative;
  border-bottom: 1px solid #333;
}
@media only screen and (max-width: 768px) {
  .pagenavi .inner ul li a {
    display: block;
    padding: 1rem 0;
  }
}
.pagenavi .inner ul li a:after {
  position: absolute;
  font-family: "Flaticon";
  top: 50%;
  right: 1rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  line-height: 1;
  content: "\f104";
  font-size: 14px;
  font-size: 1.4rem;
  z-index: 999;
  color: #000;
  line-height: 18px;
  text-align: center;
  transition: all 0.3s ease;
  transform: translateY(-50%);
  display: block;
}

section.intro {
  padding: 0 8vw;
  margin: 0 0 10rem 0;
}
section.intro h2 {
  font-size: 3rem;
  margin: 0 0 1rem 0;
}
@media only screen and (max-width: 768px) {
  section.intro h2 {
    font-size: 1.6rem;
  }
}

.intern_title {
  position: relative;
  padding: 0 8vw;
  margin: 0 0 5rem 0;
}
@media only screen and (max-width: 768px) {
  .intern_title {
    margin: 0 0 5rem 0;
  }
}
.intern_title::before {
  content: "";
  width: 10px;
  height: 100%;
  display: block;
  background: #FEE200;
  position: absolute;
  left: 0;
  top: 0;
}
.intern_title p.en {
  font-size: 6rem;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .intern_title p.en {
    font-size: 3rem;
  }
}
.intern_title p.en.small {
  font-size: 2rem;
}
.intern_title p.jp {
  font-weight: 500;
}
.intern_title p.jp.big {
  font-size: 3.6rem;
}
@media only screen and (max-width: 768px) {
  .intern_title p.jp.big {
    font-size: 1.8rem;
  }
}

section.intern_cont.voice {
  background: #F4F2ED;
  padding: 10rem 0 5rem 0;
  margin: 0 0 5rem 0;
}
@media only screen and (max-width: 768px) {
  section.intern_cont.voice {
    padding: 3rem 0;
  }
}
section.intern_cont.last {
  margin: 0 0 10rem 0;
}
section.intern_cont.last.lasts {
  margin: 0 0 3rem 0;
}
section.intern_cont .inner {
  padding: 0 8vw;
}

.point_flex {
  display: flex;
  justify-content: space-between;
  margin: 0 0 10rem 0;
}
@media only screen and (max-width: 768px) {
  .point_flex {
    display: block;
    padding: 0 5vw;
    margin: 0 0 2rem 0;
  }
}
.point_flex .box {
  width: 30%;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .point_flex .box {
    width: 100%;
    margin: 0 0 5rem 0;
  }
}
.point_flex .box .num {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #FEE200;
  border-radius: 50%;
  line-height: 60px;
  text-align: center;
  left: -3rem;
  top: -3rem;
}

.graph_flex .graph {
  width: 53%;
  margin: 0 auto 5rem auto;
}
@media only screen and (max-width: 768px) {
  .graph_flex .graph {
    width: 70%;
  }
}
.graph_flex .coms {
  flex: 1;
  padding: 0 10rem 0 0;
}
@media only screen and (max-width: 768px) {
  .graph_flex .coms {
    padding: 0;
  }
}
.graph_flex .coms .com {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted #ccc;
  margin: 0 0 1rem 0;
  padding: 0 0 1rem 0;
}
.graph_flex .coms .com .icon {
  width: 44px;
  margin: 0 3rem 0 0;
}
.graph_flex .coms .com .txts {
  flex: 1;
}
.graph_flex .coms .com .txts span {
  background: linear-gradient(transparent 60%, #ff6 60%);
}

.graph_flex_wrap {
  display: flex;
  justify-content: space-between;
  margin: 0 0 10rem 0;
}
@media only screen and (max-width: 768px) {
  .graph_flex_wrap {
    display: block;
    margin: 0 0 2rem 0;
  }
}
.graph_flex_wrap .block {
  width: 48%;
}
@media only screen and (max-width: 768px) {
  .graph_flex_wrap .block {
    width: 100%;
    margin: 0 0 3rem 0;
  }
}
.graph_flex_wrap .block.wide {
  width: 100%;
}
.graph_flex_wrap .block .question {
  display: flex;
  align-items: center;
  margin: 0 0 5rem 0;
}
@media only screen and (max-width: 768px) {
  .graph_flex_wrap .block .question {
    margin: 0 0 2rem 0;
  }
}
.graph_flex_wrap .block .question .q {
  background: #FEE200;
  width: 40px;
  height: 40px;
  color: #000;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin: 0 1rem 0 0;
}
.graph_flex_wrap .block .question h3 {
  font-weight: bold;
  font-size: 2rem;
  flex: 1;
}
@media only screen and (max-width: 768px) {
  .graph_flex_wrap .block .question h3 {
    font-size: 1.6rem;
  }
}

.comment_flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .comment_flex {
    display: block;
  }
}
.comment_flex .comment {
  width: 48%;
  margin: 0 0 6rem 0;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .comment_flex .comment {
    width: 100%;
    margin: 0 0 3rem 0;
  }
}
.comment_flex .comment .icon {
  width: 100px;
}
@media only screen and (max-width: 768px) {
  .comment_flex .comment .icon {
    width: 80px;
  }
}
.comment_flex .comment .icon p {
  margin: 1em 0 0 0;
  font-size: 1.2rem;
  font-weight: 500;
}
.comment_flex .comment .txts {
  flex: 1;
  padding: 0 0 0 3rem;
}
.comment_flex .comment .txts span {
  background: linear-gradient(transparent 60%, #ff6 60%);
}
@media only screen and (max-width: 768px) {
  .comment_flex .comment .txts {
    padding: 0 0 0 2rem;
  }
}

table.intern_table {
  width: 100%;
  margin: 0 0 3em 0;
}
table.intern_table th {
  text-align: left;
}
table.intern_table th,
table.intern_table td {
  padding: 2rem;
  border-bottom: 1px dotted #ccc;
}
@media only screen and (max-width: 768px) {
  table.intern_table th,
  table.intern_table td {
    display: block;
  }
}
table.intern_table th h4,
table.intern_table td h4 {
  font-weight: bold;
}
table.intern_table th p,
table.intern_table td p {
  margin: 0 0 1em 0;
}
table.intern_table th {
  width: 20%;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  table.intern_table th {
    width: 100%;
    background: #F4F2ED;
  }
}

.details_btns a {
  display: inline-block;
  background: #FEE200;
  border-radius: 10px;
  padding: 1rem 2rem;
  font-weight: 500;
}

.itit {
  font-weight: bold;
  font-size: 4rem;
  margin: 0 0 5rem 0;
}
.itit h1 span.small {
  font-size: 2rem;
  background: none;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .itit h1 span.small {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 768px) {
  .itit {
    font-size: 1.6rem;
    margin: 0 0 2rem 0;
  }
}
.itit span {
  background: #FEE200;
  border-radius: 50px;
  padding: 1rem 2rem;
  display: inline-block;
  margin: 0 0 0 1rem;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .itit span {
    font-size: 1.2rem;
    margin: 1em 0 0 0;
    padding: 0.5rem 2rem;
  }
}

.detail_block {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 6rem 0;
}
@media only screen and (max-width: 768px) {
  .detail_block {
    display: block;
    text-align: center;
    margin: 0 0 3rem 0;
  }
}
.detail_block .tokuten {
  display: inline-block;
  border-radius: 50px;
  background: #333;
  color: #ffffff;
  padding: 0.3rem 2rem;
  margin: 0 2rem 0 0;
}
@media only screen and (max-width: 768px) {
  .detail_block .tokuten {
    margin: 0 0 1rem 0;
    display: block;
  }
}

p.detail {
  font-weight: bold;
  display: inline-block;
  background: linear-gradient(transparent 70%, #FEE200 0%);
  display: inline;
  padding: 0 1px 0px;
}
#internvisual .in {
  max-width: 1400px;
  margin: auto;
  padding: 0 8vw;
}
#internvisual .in h1.en {
  font-size: 5rem;
  padding: 5rem 0 2rem 0;
}
@media only screen and (max-width: 768px) {
  #internvisual .in h1.en {
    font-size: 2.8rem;
    padding: 2rem 0;
  }
}
#internvisual .in h1.en span {
  font-weight: 300;
  display: inline-block;
  margin: 0 0 0 0.2em;
}

#intern_index {
  background: rgb(247, 246, 245);
  padding: 5rem 0;
}
@media only screen and (max-width: 768px) {
  #intern_index {
    padding: 2rem 0;
  }
}
#intern_index .inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 8vw;
}
#intern_index .block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 5rem 0;
}
@media only screen and (max-width: 768px) {
  #intern_index .block {
    margin: 0 0 3rem 0;
    display: block;
  }
}
#intern_index .block .image {
  width: 48%;
}
@media only screen and (max-width: 768px) {
  #intern_index .block .image {
    display: block;
    width: 100%;
    margin: 0 0 1rem 0;
  }
}
#intern_index .block .txt {
  flex: 1;
  padding: 0 0 0 5rem;
}
@media only screen and (max-width: 768px) {
  #intern_index .block .txt {
    padding: 0;
  }
}
#intern_index .block .txt .titles {
  margin: 0 0 1rem 0;
}
#intern_index .block .txt .titles p.en {
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  #intern_index .block .txt .titles p.en {
    font-size: 1.4rem;
  }
}
#intern_index .block .txt .titles h2 {
  font-weight: bold;
  font-size: 3rem;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  #intern_index .block .txt .titles h2 {
    font-size: 2rem;
  }
}
#intern_index .block .txt .exp {
  margin: 0 0 2rem 0;
}
#intern_index .readmore_btn.coming a {
  background: #555;
  cursor: default;
  color: #ffffff;
}
#intern_index .readmore_btn.coming a:hover {
  background: #555;
}
#intern_index .readmore_btn a {
  display: inline-block;
  background: #FEE200;
  border-radius: 30px;
  padding: 1rem 3rem 1rem 4rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
#intern_index .readmore_btn a i {
  display: inline-block;
  margin: 0 0 0 1rem;
}
#intern_index .readmore_btn a:hover {
  background: #000;
  color: #ffffff;
}

.lead {
  padding: 5rem 0 10rem 0;
}
@media only screen and (max-width: 768px) {
  .lead {
    padding: 5rem 0;
  }
}
.lead p {
  margin: 0 0 1em 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .lead p {
    text-align: left;
  }
  .lead p br {
    display: none;
  }
}

.zup {
  margin: 0 0 1em 0;
}

.zus {
  max-width: 1200px;
  min-width: 1000px;
  margin: auto;
  position: relative;
  /*
  @include media(sp) {
    overflow-x: scroll;
    min-width: 0;
    width: 100%;
    margin: auto;
    img{
      width: 800px;
    }
  }
  */
}
@media only screen and (max-width: 992px) {
  .zus {
    width: 1000px;
    overflow-x: scroll;
  }
  .zus .zulist_wrap {
    display: inline-block;
  }
}
@media only screen and (max-width: 768px) {
  .zus {
    min-width: 0;
    width: 100%;
    margin: auto;
  }
  .zus img {
    width: 100%;
  }
}

.zulist_wrap {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .zulist_wrap {
    position: static;
    top: 5vw;
    left: 35%;
    width: 50%;
    display: block;
    width: 100%;
  }
}

.zulist {
  position: absolute;
  z-index: 3;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .zulist {
    position: static;
    padding: 0;
    display: flex;
    margin-bottom: 0 !important;
  }
}
.zulist h3 {
  display: none;
}
@media only screen and (max-width: 768px) {
  .zulist h3 {
    display: flex;
    width: 25%;
    writing-mode: vertical-rl;
    color: #fff;
    align-items: center;
    position: relative;
    padding-inline: 40px;
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
  .zulist h3::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 15px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    left: 0;
    bottom: -14px;
    z-index: 1;
  }
}
.zulist.list01 {
  top: 12.5%;
  left: 2%;
  margin: 0 0 30% 0;
}
@media only screen and (max-width: 768px) {
  .zulist.list01 {
    top: 0;
    left: 0;
  }
  .zulist.list01 h3 {
    background-color: #164AAC;
  }
  .zulist.list01 h3::after {
    background-color: #164AAC;
  }
}
.zulist.list02 {
  top: 12.5%;
  left: 23%;
  margin: 0 0 40% 0;
}
@media only screen and (max-width: 768px) {
  .zulist.list02 {
    top: 11%;
    left: 0;
  }
  .zulist.list02 h3 {
    background-color: #EB8725;
  }
  .zulist.list02 h3::after {
    background-color: #EB8725;
  }
}
.zulist.list03 {
  top: 12.5%;
  left: 43%;
  margin: 0 0 30% 0;
}
@media only screen and (max-width: 768px) {
  .zulist.list03 {
    top: 20%;
    left: 0;
  }
  .zulist.list03 h3 {
    background-color: #2AACC3;
  }
  .zulist.list03 h3::after {
    background-color: #2AACC3;
  }
}
.zulist.list04 {
  top: 12.5%;
  left: 64%;
  margin: 0 0 25% 0;
}
@media only screen and (max-width: 768px) {
  .zulist.list04 {
    top: 44%;
    left: 0;
  }
  .zulist.list04 h3 {
    background-color: #4B038A;
  }
  .zulist.list04 h3::after {
    background-color: #4B038A;
  }
}
.zulist.list05 {
  top: 12.5%;
  left: 84%;
  margin: 0 0 55vw 0;
}
@media only screen and (max-width: 768px) {
  .zulist.list05 {
    top: 58%;
    left: 0;
    margin: 0 0 95% 0;
  }
  .zulist.list05 h3 {
    background-color: #C51522;
  }
  .zulist.list05 h3::after {
    background-color: #C51522;
  }
}
.zulist.list06 {
  top: 73.5%;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 768px) {
  .zulist.list06 {
    top: 73%;
    left: 50%;
    margin: 0 0;
    transform: none;
  }
}
.zulist.list06 ul {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .zulist.list06 ul {
    display: block;
  }
}
.zulist.list06 ul li {
  margin: 0 0.1em;
}
@media only screen and (max-width: 768px) {
  .zulist.list06 ul li {
    margin: 0 0 2px 0;
    width: 100%;
  }
}
.zulist.list07 {
  top: 83.5%;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 768px) {
  .zulist.list07 {
    top: 89.5%;
    left: 50%;
    margin: 0 0;
    transform: none;
  }
}
.zulist.list07 ul {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .zulist.list07 ul {
    display: block;
  }
}
.zulist.list07 ul li {
  margin: 0 0.1em;
}
@media only screen and (max-width: 768px) {
  .zulist.list07 ul li {
    margin: 0 0 2px 0;
    width: 100%;
  }
}
.zulist.list08 {
  top: 93%;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 768px) {
  .zulist.list08 {
    top: 94.4%;
    left: 50%;
    margin: 0 0;
    transform: none;
  }
}
.zulist.list08 ul {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .zulist.list08 ul {
    display: block;
  }
}
.zulist.list08 ul li {
  margin: 0 0.1em;
}
@media only screen and (max-width: 768px) {
  .zulist.list08 ul li {
    margin: 0 0 2px 0;
    width: 100%;
  }
}
.zulist ul {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .zulist ul {
    flex: 1;
    background-color: #E6E6E6;
    padding: 40px 20px;
  }
}
.zulist ul li {
  margin: 0 0 0.3rem 0;
  width: 14%;
}
@media only screen and (max-width: 768px) {
  .zulist ul li {
    width: 100%;
    margin: 0 0 0.5rem 0;
  }
}
.zulist ul li button {
  display: block;
  background: #ffffff;
  text-align: center;
  border-radius: 5px;
  width: 100%;
  padding: 1rem 0;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  letter-spacing: 0;
  font-feature-settings: "palt";
  color: #000;
}
.zulist ul li button.nolink {
  cursor: default;
  background: #eee;
}
.zulist ul li button.nolink:hover {
  background: #eee;
}
.zulist ul li button:hover {
  background: #FEE200;
  color: #000;
}

.zulist-corporate h3 {
  display: none;
}
@media only screen and (max-width: 768px) {
  .zulist-corporate h3 {
    display: block;
    background-color: #8FBB0F;
    writing-mode: horizontal-tb;
    padding: 0 20px;
    color: #fff;
    font-size: 1.8rem;
    letter-spacing: 2px;
    padding: 20px;
    text-align: center;
    margin-top: 15px;
  }
  .zulist-corporate h3::after {
    content: none;
  }
  .zulist-corporate .zulist {
    margin-bottom: 5px !important;
  }
  .zulist-corporate .zulist ul {
    padding: 20px;
  }
  .zulist-corporate .zulist ul li {
    max-width: 230px;
    margin: 0 auto 0.5rem;
  }
}

/**************************\
  Basic Modal Styles
\**************************/
.modal::-webkit-scrollbar {
  display: none !important;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.modal__overlay::-webkit-scrollbar {
  display: none !important;
}

.modal__container {
  padding: 30px;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}
.modal__container::-webkit-scrollbar {
  display: none !important;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
  position: absolute;
  top: 0;
  right: 0;
  position: absolute;
  width: 5rem;
  height: 5rem;
  top: 1rem;
  right: 1rem;
  background: none;
  outline: none;
  border: none;
  background: #FEE200;
  color: #ffffff;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.modal__close:after {
  position: absolute;
  font-family: "Flaticon";
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  line-height: 1;
  content: "\f11c";
  font-size: 20px;
  font-size: 2rem;
  z-index: 999;
  color: #000;
  transition: all 0.3s ease;
  display: block;
  z-index: 999;
  text-align: center;
}
.modal__close:hover {
  transform: scale(1.2);
}

.modal__header .modal__close:before {
  content: "✕";
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}
.modal__content .inner {
  background: #ffffff;
  min-width: 800px;
  padding: 5rem;
}
@media only screen and (max-width: 768px) {
  .modal__content .inner {
    min-width: 0;
    padding: 2rem;
  }
}
.modal__content .inner h2 {
  font-weight: bold;
  font-size: 2.8rem;
  padding: 0 0 2rem 0;
  margin: 0 0 5rem 0;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  border-bottom: 5px solid #FEE200;
}
@media only screen and (max-width: 768px) {
  .modal__content .inner h2 {
    font-size: 2rem;
  }
}
.modal__content .inner h2 small {
  font-size: 1.5rem;
  margin-left: 20px;
}
.modal__content .inner .cfle {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .modal__content .inner .cfle {
    display: block;
  }
}
.modal__content .inner .cfle .cblock {
  width: 48%;
  border: 1px dotted #ccc;
  padding: 2rem;
}
@media only screen and (max-width: 768px) {
  .modal__content .inner .cfle .cblock {
    width: 100%;
  }
}
.modal__content .inner .cblock {
  padding: 0 0 2rem 0;
  margin: 0 0 2rem 0;
}
.modal__content .inner .cblock h3 {
  font-weight: bold;
  margin: 0 0 1em 0;
}
.modal__content .inner .cblock p {
  margin: 0 0 1em 0;
}
.modal__content .inner .cblock p small {
  display: block;
  font-size: 1.3rem;
}
.modal__content .inner .cblock ul li {
  display: inline-block;
  background: #000;
  color: #ffffff;
  padding: 0.5rem 2rem;
  font-size: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .modal__content .inner .cblock ul li {
    font-size: 1.2rem;
    padding: 0.5rem;
  }
}

.modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.25s ease-out;
}

.modal__btn:focus,
.modal__btn:hover {
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/**************************\
    Demo Animation Style
  \**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}