@charset "UTF-8";
:root {
  --side-nav-width: 310px;
  --aside-width: 310px;
  --side-cube-width: 310px;
  --color-main-blue: #0070bd;
  --color-sub-blue: #E5F1F8;
  --color-gray: #F7F7F7;
  --color-yellow: #FFEA4C;
  --color-economics: #CD9C00;
  --color-human: #CB5453;
  --color-engineering: #4F7EBA;
  --color-text: #313131;
  --color-text-gray: #707070;
  --color-question: #FE6D52;
  --font-zenkaku: "Zen Kaku Gothic New", sans-serif;
  --font-ibm: "IBM Plex Sans", "Zen Kaku Gothic New", sans-serif;
  --cubic-bezier: cubic-bezier(0.215, 0.61, 0.355, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

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

body {
  min-height: 100vh;
  font-family: var(--font-zenkaku);
  font-weight: 400;
  color: var(--color-text);
  text-underline-offset: 2px;
  background-color: var(--color-main-blue);
}

h1,
h2,
h3,
h4,
h5,
button,
input,
label {
  line-height: 1.3;
}

p {
  font-feature-settings: "palt";
  line-height: 1.75;
}

a {
  text-decoration: none;
  color: currentColor;
}

img,
picture {
  width: 100%;
  height: auto;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

body {
  overflow-x: hidden;
}

:root {
  --side-nav-width: 310px;
  --aside-width: 310px;
  --side-cube-width: 310px;
  --color-main-blue: #0070bd;
  --color-sub-blue: #E5F1F8;
  --color-gray: #F7F7F7;
  --color-yellow: #FFEA4C;
  --color-economics: #CD9C00;
  --color-human: #CB5453;
  --color-engineering: #4F7EBA;
  --color-text: #313131;
  --color-text-gray: #707070;
  --color-question: #FE6D52;
  --font-zenkaku: "Zen Kaku Gothic New", sans-serif;
  --font-ibm: "IBM Plex Sans", "Zen Kaku Gothic New", sans-serif;
  --cubic-bezier: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.l-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-loader img {
  width: 80%;
  max-width: 400px;
}

.l-animation {
  max-width: 90%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  left: 0;
  opacity: 0;
  transition: all 1s;
}
@media only screen and (min-width:560px) {
  .l-animation {
    max-width: 800px;
  }
}
.l-animation.view {
  opacity: 1;
  transition: all 1s;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-in-out;
}
@media only screen and (min-width:560px) {
  .accordion-content {
    max-height: 100%;
    overflow: auto;
  }
}

.accordion-content.open {
  max-height: 100%;
}
.accordion-icon {
  transition: transform 0.3s;
}
@media only screen and (min-width:560px) {
  .accordion-icon {
    display: none;
  }
}

.accordion-trigger[aria-expanded=true] .accordion-icon {
  transform: rotate(180deg);
}

.sectionTitle {
  transform: translateY(50px);
}

.l-header {
  width: 100%;
}
.l-header__logo {
  height: 30px;
  width: auto;
  position: absolute;
  top: 10px;
  right: 0;
  left: 0;
  margin: auto;
}
@media only screen and (min-width:560px) {
  .l-header__logo {
    height: 40px;
  }
}
.l-header__floating {
  position: fixed;
  top: 10px;
  width: 94%;
  margin: auto;
  left: 0;
  right: 0;
  border-radius: 40px;
  display: flex;
  background-color: var(--color-sub-blue);
  z-index: 10;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1882352941);
  opacity: 1;
  transition: all 0.3s ease 0s;
}
@media only screen and (min-width:560px) {
  .l-header__floating {
    width: 250px;
    left: auto;
    right: 3%;
    top: auto;
    bottom: 24px;
    background-color: rgba(221, 221, 221, 0);
    box-shadow: none;
    display: block;
  }
}
.l-header__floating.is-hidden {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease 0s;
}
.l-header__floating-link {
  text-align: center;
  width: 50%;
  padding: 12px 10px 12px 0px;
  color: var(--color-main-blue);
  font-size: 0.9375rem;
  font-weight: 700;
  transition: all 0.3s;
  z-index: 10;
  position: relative;
}
@media only screen and (min-width:560px) {
  .l-header__floating-link {
    border-radius: 40px;
    width: 250px;
    padding: 18px 0px;
    margin: 10px 0px;
    font-size: 1rem;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1882352941);
    display: block;
    background-color: var(--color-sub-blue);
    border: 1px solid var(--color-main-blue);
  }
}
.l-header__floating-link:last-of-type {
  border-left: 1px dotted var(--color-main-blue);
}
@media only screen and (min-width:560px) {
  .l-header__floating-link:last-of-type {
    border-left: none;
    border: 1px solid var(--color-main-blue);
  }
}
.l-header__floating-link > p {
  display: inline-block;
}
.l-header__floating-link > p::after {
  content: "";
  background-image: url(../img/icon-innerlink-blue.svg);
  background-repeat: no-repeat;
  background-size: 14px;
  width: 14px;
  height: 12px;
  position: absolute;
  top: calc(50% - 3px);
  right: 17px;
}
@media only screen and (min-width:560px) {
  .l-header__floating-link > p::after {
    right: 25px;
  }
}
@media only screen and (min-width:560px) {
  .l-header__floating-link:hover {
    background-color: var(--color-main-blue);
    color: #fff;
    transition: all 0.3s;
  }
}
@media only screen and (min-width:560px) {
  .l-header__floating-link:hover > p::after {
    background-image: url(../img/icon-innerlink.svg);
  }
}
.l-header__floating-link.--active {
  background-color: var(--color-main-blue);
  color: #fff;
}
.l-header__floating-link.--active > p::after {
  background-image: url(../img/icon-innerlink.svg);
}

.bg {
  background-image: url(../img/bg.png);
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background-size: contain;
  background-repeat: repeat;
}

.hero {
  width: 100%;
  height: 90vh;
  z-index: -1;
  width: 100%;
  background-size: cover;
  position: relative;
}
@media only screen and (min-width:560px) {
  .hero {
    height: 100vh;
  }
}
.hero__kv-title {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 150px;
  width: auto;
}
.hero__kv-illust {
  opacity: 0;
  transition: all 0.2s;
}
.hero__kv-illust.view {
  opacity: 1;
  transition: all 0.2s;
}

.l-overview__statement {
  width: 92%;
  display: flex;
  justify-content: center;
  margin: 40px auto 40px auto;
  padding: 150px 0px;
  position: relative;
}
@media only screen and (min-width:560px) {
  .l-overview__statement {
    width: -moz-fit-content;
    width: fit-content;
    margin: 140px auto 180px auto;
    padding: 0px 0px;
  }
}
.l-overview__illust-01 {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 95px;
}
@media only screen and (min-width:560px) {
  .l-overview__illust-01 {
    left: -220px;
    top: auto;
    width: 150px;
  }
}
.l-overview__illust-02 {
  position: absolute;
  right: 8px;
  bottom: 0px;
  width: 100px;
}
@media only screen and (min-width:560px) {
  .l-overview__illust-02 {
    right: -260px;
    bottom: 5%;
    width: 180px;
  }
}
.l-overview__copy {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
  line-height: 2;
  z-index: 1;
  opacity: 0;
}
@media only screen and (min-width:560px) {
  .l-overview__copy {
    font-size: 1.875rem;
    line-height: 2.3;
  }
}
.l-overview__nav {
  width: 90%;
  margin: 0 auto;
  opacity: 0;
}
@media only screen and (min-width:560px) {
  .l-overview__nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width:1025px) {
  .l-overview__nav {
    width: 84%;
  }
}
.l-overview__type {
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
  margin: auto;
  border-radius: 10px;
  background-color: var(--color-yellow);
  padding: 2px 0px;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 170px;
  color: var(--color-main-blue);
  font-family: var(--font-ibm);
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
@media only screen and (min-width:1025px) {
  .l-overview__type {
    min-width: 380px;
    font-size: 1.875rem;
  }
}
.l-overview__nav-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 36px 14px 20px 14px;
  position: relative;
}
@media only screen and (min-width:560px) {
  .l-overview__nav-item {
    width: calc(50% - 20px);
    padding: 50px 22px 22px 22px;
  }
}
.l-overview__nav-item:last-of-type {
  margin: 44px 0 0 0;
}
@media only screen and (min-width:560px) {
  .l-overview__nav-item:last-of-type {
    margin: 0px 0 0 0;
  }
}
.l-overview__nav-header {
  color: var(--color-main-blue);
}
@media only screen and (min-width:1025px) {
  .l-overview__nav-header {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.l-overview__nav-heading {
  font-size: 1.375rem;
  font-weight: 700;
  border: 4px solid var(--color-main-blue);
  padding: 8px 14px;
  text-align: center;
}
@media only screen and (min-width:560px) {
  .l-overview__nav-heading {
    font-size: 1.75rem;
    padding: 10px 20px;
  }
}
.l-overview__nav-copy {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 10px 0 0 0px;
  text-align: center;
}
@media only screen and (min-width:1025px) {
  .l-overview__nav-copy {
    font-size: 1.5rem;
    margin: 0 0 0 10px;
    text-align: left;
  }
}
.l-overview__nav-text {
  margin: 10px 0 0 0;
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 700;
}
@media only screen and (min-width:560px) {
  .l-overview__nav-text {
    margin: 20px 0 0 0;
    font-size: 1.125rem;
  }
}
.l-overview__nav-link {
  margin: 14px auto 0 auto;
  background-color: var(--color-main-blue);
  border: 4px solid var(--color-main-blue);
  border-radius: 50px;
  padding: 8px 30px 8px 18px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s;
}
@media only screen and (min-width:1025px) {
  .l-overview__nav-link {
    margin: 18px 0 0 auto;
    padding: 10px 34px 10px 28px;
    font-size: 1.25rem;
  }
}
.l-overview__nav-link::after {
  content: "";
  background-image: url(../img/icon-innerlink.svg);
  background-repeat: no-repeat;
  background-size: 14px;
  width: 14px;
  height: 12px;
  position: absolute;
  top: calc(50% - 3px);
  right: 10px;
}
@media only screen and (min-width:560px) {
  .l-overview__nav-link::after {
    background-size: 18px;
    width: 18px;
    height: 14px;
    top: calc(50% - 5px);
    right: 12px;
  }
}
.l-overview__nav-link:hover {
  background-color: #fff;
  color: var(--color-main-blue);
  transition: all 0.3s;
}
.l-overview__change {
  background-color: var(--color-sub-blue);
  border-radius: 10px;
  padding: 16px 16px;
  width: 90%;
  margin: 34px auto 0 auto;
}
@media only screen and (min-width:560px) {
  .l-overview__change {
    padding: 24px 24px;
    width: 80%;
    margin: 64px auto 0 auto;
  }
}
.l-overview__change-heading {
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width:560px) {
  .l-overview__change-heading {
    font-size: 1.125rem;
  }
}
.l-overview__change-list {
  margin: 0px 0 0 0;
}
@media only screen and (min-width:560px) {
  .l-overview__change-list {
    margin: 20px 0 0 0;
  }
}
.l-overview__change-item {
  margin: 20px 0 0 0;
  border-top: 1px solid var(--color-text);
  padding: 20px 0 0 0;
}
@media only screen and (min-width:560px) {
  .l-overview__change-item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 20px 0 0 0;
  }
}
.l-overview__change-item:first-of-type {
  border-top: none;
  margin: 20px 0 0 0;
  padding: 0px 0 0 0;
}
.l-overview__change-index {
  color: var(--color-main-blue);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media only screen and (min-width:560px) {
  .l-overview__change-index {
    text-align: left;
    width: 30%;
  }
}
.l-overview__change-detail {
  width: 100%;
  margin: 10px 0 0 0;
}
@media only screen and (min-width:560px) {
  .l-overview__change-detail {
    width: 65%;
    margin: 0 0 0 5%;
  }
}
@media only screen and (min-width:560px) {
  .l-overview__change-detail-dpt {
    display: flex;
  }
}
.l-overview__change-detail-dpt + .l-overview__change-detail-dpt {
  border-top: 1px dotted var(--color-text);
  margin: 12px 0 0 0;
  padding: 12px 0 0 0;
}
.l-overview__change-detail-dptname {
  min-width: 100px;
  margin: 0 0 5px 0;
  text-align: center;
}
@media only screen and (min-width:560px) {
  .l-overview__change-detail-dptname {
    min-width: 100px;
    margin: 0 5% 0 0;
    text-align: left;
  }
}
.l-overview__change-detail-dptname.--law {
  color: #99528E;
}
.l-overview__change-detail-dptname.--human {
  color: #CB5453;
}
.l-overview__change-detail-dpttext {
  line-height: 1.5;
}
.l-overview__change-caution {
  font-size: 0.875rem;
  margin: 10px 0 0 0;
}
.l-overview__summary {
  display: block;
  width: 90%;
  margin: 30px auto 0 auto;
  background-color: var(--color-yellow);
  padding: 10px 10px;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  border-radius: 10px;
  color: var(--color-main-blue);
  border: 4px solid var(--color-main-blue);
  transition: all 0.3s;
}
@media only screen and (min-width:560px) {
  .l-overview__summary {
    width: 80%;
    padding: 30px 10px;
    font-size: 1.5625rem;
  }
}
.l-overview__summary:hover {
  background-color: #fff;
  transition: all 0.3s;
}
.l-overview__summary-text {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  line-height: 1.5;
}

.l-selection__wrap {
  position: relative;
}
.l-selection__sidenav {
  position: sticky;
  top: 20px;
  display: none;
}
@media only screen and (min-width:1025px) {
  .l-selection__sidenav {
    display: block;
  }
}
.l-selection__sidenav-nav {
  background-color: #fff;
  width: -moz-max-content;
  width: max-content;
  border-radius: 10px;
  border: 4px solid var(--color-main-blue);
  position: absolute;
  top: 40px;
  left: -2%;
  min-width: 250px;
}
.l-selection__sidenav-title {
  border: 4px solid var(--color-main-blue);
  border-radius: 46px;
  background-color: #fff;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-main-blue);
  text-align: center;
  padding: 4px 10px;
  margin: -22px auto 0 auto;
  width: -moz-max-content;
  width: max-content;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-selection__sidenav-list {
  padding: 14px 34px 14px 20px;
}
.l-selection__sidenav-item {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-gray);
  margin: 10px 0px;
}
.l-selection__sidenav-position {
  position: relative;
}
.l-selection__sidenav-position:hover {
  color: var(--color-main-blue);
}
.l-selection__sidenav-position::before {
  background: var(--color-main-blue);
  border-radius: 50%;
  content: "";
  height: 10px;
  left: 0;
  position: absolute;
  top: calc(50% - 5px);
  transform: scale(0);
  transition: transform 0.3s;
  width: 10px;
}
.l-selection__sidenav-position.is-current::before {
  transform: scale(1);
}
.l-selection__sidenav-position.is-current .l-selection__sidenav-text {
  transform: translateX(20px);
  color: var(--color-main-blue);
  transition: transform 0.3s;
}
.l-selection__sidenav-text {
  transition: all 0.3s;
}
.l-selection__content {
  max-width: 100%;
  padding: 20px 0px;
  margin: 0 auto;
}
@media only screen and (min-width:1025px) {
  .l-selection__content {
    max-width: 1600px;
    padding: 30px 0px;
    margin: 0 0 0 80px;
  }
}
.l-selection__content-inner {
  background-color: #fff;
  border-radius: 20px;
  position: relative;
}
.l-selection__container {
  border-top: 2px solid var(--color-main-blue);
  padding: 0 0 70px 0;
  overflow-x: hidden;
}
@media only screen and (min-width:560px) {
  .l-selection__container {
    border-top: 4px solid var(--color-main-blue);
    padding: 0 0 100px 0;
  }
}
.l-selection__container:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0);
}
.l-selection__container-inner {
  margin: 0 auto;
  padding: 40px 0 0 0;
  width: 90%;
}
@media only screen and (min-width:1025px) {
  .l-selection__container-inner {
    margin: 0 50px 0 auto;
    padding: 0px 0 0 0;
    width: 70%;
  }
}
.l-selection__container-subinner {
  margin: 40px 0 0 0;
  position: relative;
}
@media only screen and (min-width:560px) {
  .l-selection__container-subinner {
    margin: 60px 0 0 0;
  }
}

.comprehensive {
  position: relative;
}

.comprehensive-illust-1 {
  position: absolute;
  top: 10%;
  left: -8%;
  width: 28%;
  opacity: 0.7;
}
@media only screen and (min-width:560px) {
  .comprehensive-illust-1 {
    top: 10%;
    width: 25%;
    opacity: 0.8;
  }
}

.comprehensive-illust-2 {
  position: absolute;
  top: 20%;
  right: -1%;
  width: 20%;
  opacity: 0.7;
}
@media only screen and (min-width:560px) {
  .comprehensive-illust-2 {
    top: 15%;
    right: 2%;
    width: 20%;
    opacity: 0.8;
  }
}

.general-illust-1 {
  position: absolute;
  top: 18%;
  left: -3%;
  width: 20%;
  opacity: 0.7;
}
@media only screen and (min-width:560px) {
  .general-illust-1 {
    op: 20%;
    left: -1%;
    opacity: 0.8;
  }
}

.general-illust-2 {
  position: absolute;
  top: 15%;
  right: -2%;
  width: 20%;
  opacity: 0.7;
}
@media only screen and (min-width:560px) {
  .general-illust-2 {
    right: 2%;
    opacity: 0.8;
  }
}

.l-point {
  margin: 50px 0 0 0;
}
@media only screen and (min-width:560px) {
  .l-point {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 100px 0 0 0;
  }
}
.l-point__item {
  background-color: var(--color-main-blue);
  border-radius: 10px;
  padding: 30px 20px 20px 26px;
  color: #fff;
  position: relative;
}
@media only screen and (min-width:560px) {
  .l-point__item {
    width: calc(50% - 26px);
    padding: 46px 28px 24px 28px;
  }
}
.l-point__item:nth-of-type(2) {
  margin: 50px 0 0 0;
}
@media only screen and (min-width:560px) {
  .l-point__item:nth-of-type(2) {
    margin: 100px 0 0 0;
  }
}
.l-point__item.--full {
  width: 100%;
  margin: 50px 0 0 0;
}
@media only screen and (min-width:560px) {
  .l-point__item.--full {
    margin: 66px 0 0 0;
  }
}
.l-point__item-heading {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media only screen and (min-width:560px) {
  .l-point__item-heading {
    font-size: 1.5rem;
    text-align: left;
  }
}
.l-point__item-text {
  margin: 10px 0 6px 0;
}
@media only screen and (min-width:560px) {
  .l-point__item-text {
    margin: 12px 0 10px 0;
  }
}
.l-point__item-link {
  text-decoration: underline;
  font-weight: 700;
  margin: 0 0 0 4px;
}
.l-point__item-link:hover {
  text-decoration: none;
}
.l-point__item-number {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: auto;
  width: -moz-max-content;
  width: max-content;
  align-self: start;
  border: 4px solid var(--color-main-blue);
  border-radius: 40px;
  background-color: #fff;
  padding: 0px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-ibm);
  font-weight: 700;
  color: var(--color-main-blue);
  height: 40px;
}
@media only screen and (min-width:560px) {
  .l-point__item-number {
    top: -30px;
    padding: 0px 30px;
    height: 60px;
  }
}
.l-point__item-number > span {
  font-size: 1.75rem;
  margin: 0 0 0 4px;
}
@media only screen and (min-width:560px) {
  .l-point__item-number > span {
    font-size: 2.5rem;
    margin: 0 0 0 4px;
  }
}
@media only screen and (min-width:560px) {
  .l-point__item-number.--full {
    right: auto;
    left: 34px;
  }
}
.l-point__apl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 20px 0 0 0;
}
.l-point__apl-item {
  border: 1px solid #fff;
  padding: 4px 16px;
  text-align: center;
  line-height: 1.5;
  font-size: 0.875rem;
}
.l-point__tab {
  margin: 30px 0 0;
}
.l-point__tab-item {
  display: grid;
  -moz-column-gap: 10px;
       column-gap: 10px;
  color: var(--color-text);
}
@media only screen and (min-width:560px) {
  .l-point__tab-item {
    display: flex;
    flex-wrap: wrap;
  }
}
.l-point__tab-item::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: var(--color-sub-blue);
  order: -1;
}
.l-point__tab-button {
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 5px 5px 0 0;
  background-color: #6AAED6;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s;
  order: -1;
  flex: 1 1;
  position: relative;
}
.l-point__tab-button:hover {
  opacity: 0.7;
}
.l-point__tab-button input[type=radio] {
  display: none;
}
.l-point__tab-button:has(:checked) {
  cursor: default;
  background-color: var(--color-sub-blue);
}
.l-point__tab-button:has(:checked):hover {
  opacity: 1;
}
.l-point__tab-heading {
  display: flex;
  align-items: center;
}
@media only screen and (min-width:560px) {
  .l-point__tab-heading {
    justify-content: center;
  }
}
@media only screen and (min-width:560px) {
  .l-point__tab-heading-arrow {
    display: none;
  }
}
.l-point__tab-heading-arrow::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 24px;
  background-image: url(../img/icon-innerlink-blue.svg);
  background-repeat: no-repeat;
  background-size: 14px;
  width: 14px;
  height: 12px;
  font-size: 0.875rem;
}
@media only screen and (min-width:560px) {
  .l-point__tab-heading-arrow::after {
    content: "";
  }
}
.l-point__tab-circle {
  width: 32px;
  height: 32px;
  border: 2px solid var(--color-text);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px 6px 0px 0px;
}
.l-point__tab-circle > span {
  font-family: var(--font-ibm);
  font-weight: 700;
}
.l-point__tab-content {
  background-color: var(--color-sub-blue);
  border-radius: 0px 0px 10px 10px;
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
@media only screen and (min-width:560px) {
  .l-point__tab-content-block {
    display: flex;
    align-items: center;
  }
}
.l-point__tab-content-block a {
  text-decoration: underline;
}
.l-point__tab-content-block a:hover {
  text-decoration: none;
}
.l-point__tab-content-img {
  margin: 0 auto 10px auto;
  width: 100%;
  background-color: #fff;
  padding: 12px;
  border-radius: 4px;
}
@media only screen and (min-width:560px) {
  .l-point__tab-content-img {
    margin: 0 20px 0 0;
    width: 35%;
    min-width: 250px;
  }
}
.l-point__tab-content-index {
  font-weight: 700;
}
.l-point__tab-content-title {
  text-align: center;
  font-weight: 700;
  margin: 0 0 10px 0;
}
@media only screen and (min-width:560px) {
  .l-point__tab-content-title {
    display: none;
  }
}

.l-point__tab-button:has(:checked) + .l-point__tab-content {
  height: auto;
  overflow: auto;
  opacity: 1;
  transition: 0.5s opacity;
  padding: 18px 12px;
  border-top: none;
}
@media only screen and (min-width:560px) {
  .l-point__tab-button:has(:checked) + .l-point__tab-content {
    padding: 18px 36px;
  }
}

.l-point__tab-button:has(:checked) + .l-point__tab-heading span::after::after {
  content: "CLOSE";
  position: absolute;
  right: 10px;
  top: 14px;
  font-size: 0.875rem;
  color: var(--color-main-blue);
}

.l-schedule {
  margin: 20px 0 20px 0;
  position: relative;
}
@media only screen and (min-width:560px) {
  .l-schedule {
    margin: 30px 0 30px 0;
    overflow-x: visible;
  }
}
@media only screen and (min-width:560px) {
  .l-schedule.--general {
    margin: 30px 0 120px 0;
  }
}
.l-schedule__point {
  position: absolute;
  border: 4px solid var(--color-main-blue);
  padding: 14px 26px;
  font-size: 0.9375rem;
  line-height: 1.2;
  font-weight: 700;
}
.l-schedule__point.--comprehensive-01 {
  max-width: 354px;
  top: -70px;
  left: 45%;
  display: none;
}
.l-schedule__point.--comprehensive-01::before {
  content: "";
  background-image: url(../img/icon-schedule-point-1.png);
  background-repeat: no-repeat;
  background-size: 58px;
  width: 58px;
  height: 58px;
  position: absolute;
  top: -30px;
  left: -35px;
}
.l-schedule__point.--comprehensive-01::after {
  content: "";
  background-image: url(../img/icon-schedule-arrow-1.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  width: 20px;
  height: 14px;
  position: absolute;
  bottom: -14px;
  left: 10px;
}
.l-schedule__point.--comprehensive-02 {
  max-width: 448px;
  bottom: -195px;
  left: 45%;
  display: none;
}
.l-schedule__point.--comprehensive-02::before {
  content: "";
  background-image: url(../img/icon-schedule-point-2.png);
  background-repeat: no-repeat;
  background-size: 58px;
  width: 58px;
  height: 58px;
  position: absolute;
  top: -20px;
  right: -30px;
}
.l-schedule__point.--comprehensive-02::after {
  content: "";
  background-image: url(../img/icon-schedule-arrow-2.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  width: 20px;
  height: 14px;
  position: absolute;
  top: -14px;
  left: 10px;
}
.l-schedule__point.--general-01 {
  position: relative;
  margin: 20px 0 0 0;
}
@media only screen and (min-width:560px) {
  .l-schedule__point.--general-01 {
    position: absolute;
    max-width: 780px;
    bottom: -140px;
    left: 10%;
    margin: 0px 0 0 0;
  }
}
@media only screen and (min-width:1025px) {
  .l-schedule__point.--general-01 {
    bottom: -110px;
  }
}
.l-schedule__point.--general-01::before {
  content: "";
  background-image: url(../img/icon-schedule-point-2.png);
  background-repeat: no-repeat;
  background-size: 58px;
  width: 58px;
  height: 58px;
  position: absolute;
  top: -20px;
  right: -30px;
}
.l-schedule__point.--general-01::after {
  content: "";
  background-image: url(../img/icon-schedule-arrow-2.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  width: 20px;
  height: 14px;
  position: absolute;
  top: -14px;
  left: 10px;
}
.l-schedule__point-entry {
  align-items: center;
}
@media only screen and (min-width:560px) {
  .l-schedule__point-entry {
    display: grid;
    grid-template-columns: 15% 1fr 18%;
    gap: 20px;
  }
}
.l-schedule__point-entry-title {
  background: linear-gradient(transparent 50%, #E5F1F8 50%);
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 8px;
  display: block;
}
.l-schedule__point-entry-link {
  color: var(--color-main-blue);
  border-bottom: 2px solid var(--color-main-blue);
  font-size: 0.875rem;
  padding: 0 0 5px 0;
  margin: 10px 0 0 0;
  position: relative;
  padding-right: 20px;
  transition: all 0.3s;
  display: inline-block;
  width: 150px;
}
@media only screen and (min-width:560px) {
  .l-schedule__point-entry-link {
    margin: 0px 0 0 0;
    width: auto;
  }
}
.l-schedule__point-entry-link::after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: 0px;
  background-image: url(../img/icon-brank-link.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px;
  transition: all 0.3s;
}
.l-schedule__point-entry-link:hover {
  border-bottom: 2px solid var(--color-yellow);
  transition: all 0.3s;
}
.l-schedule__point-entry-link:hover::after {
  bottom: 8px;
  transition: all 0.3s;
}
.l-schedule__point-period {
  background-color: var(--color-gray);
  text-align: center;
  font-size: 0.875rem;
  padding: 4px;
  margin: 8px 0 0 0;
}
.l-schedule__img-cover {
  overflow-x: scroll;
  padding: 0 0 10px 0;
}
@media only screen and (min-width:560px) {
  .l-schedule__img-cover {
    padding: 0 0 0px 0;
  }
}
.l-schedule__img-cover::-webkit-scrollbar {
  height: 8px;
}
@media only screen and (min-width:560px) {
  .l-schedule__img-cover::-webkit-scrollbar {
    display: none;
  }
}
.l-schedule__img-cover::-webkit-scrollbar-track {
  background-color: var(--color-gray);
}
.l-schedule__img-cover::-webkit-scrollbar-thumb {
  background-color: var(--color-main-blue);
  border-radius: 3px;
}
.l-schedule__img-cover > img {
  height: auto;
  min-width: 220%;
  width: 100%;
}
@media only screen and (min-width:560px) {
  .l-schedule__img-cover > img {
    min-width: 100%;
  }
}
.l-schedule__img {
  display: block;
  height: auto;
  min-width: 220%;
  width: 100%;
}
@media only screen and (min-width:560px) {
  .l-schedule__img {
    min-width: 100%;
  }
}

.l-flow__slide {
  margin: 0 0px 0 auto;
  padding: 0 30px 0 0;
  width: 90%;
  position: relative;
}
@media only screen and (min-width:1025px) {
  .l-flow__slide {
    width: 75%;
  }
}
.l-flow__slide-bgline {
  height: 10px;
  width: 100%;
  border-top: 5px dashed var(--color-yellow);
  position: absolute;
  top: 43%;
}
@media only screen and (min-width:560px) {
  .l-flow__slide-bgline {
    border-top: 10px dashed var(--color-yellow);
    top: 50%;
  }
}
.l-flow__slide-box {
  padding: 0px 0px 60px 0px;
}
.l-flow__slide-item {
  position: relative;
}
.l-flow__slide-panel {
  background-color: var(--color-main-blue);
  border-radius: 10px;
  padding: 30px 24px 20px 24px;
  margin: 20px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-evenly;
  min-height: 300px;
}
@media only screen and (min-width:560px) {
  .l-flow__slide-panel {
    padding: 36px 40px 20px 40px;
    margin: 30px 0 0 0;
    min-height: auto;
  }
}
.l-flow__slide-number {
  position: absolute;
  top: 0px;
  left: 26px;
  border: 4px solid var(--color-main-blue);
  border-radius: 40px;
  background-color: #fff;
  padding: 0px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-ibm);
  font-weight: 700;
  color: var(--color-main-blue);
  height: 50px;
}
@media only screen and (min-width:560px) {
  .l-flow__slide-number {
    padding: 0px 30px;
    height: 60px;
  }
}
.l-flow__slide-number > span {
  font-size: 1.75rem;
}
@media only screen and (min-width:560px) {
  .l-flow__slide-number > span {
    font-size: 2.5rem;
  }
}
.l-flow__slide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-flow__slide-title {
  font-size: 1.125rem;
  color: #fff;
  font-weight: 700;
}
@media only screen and (min-width:560px) {
  .l-flow__slide-title {
    font-size: 1.5rem;
  }
}
.l-flow__slide-icon {
  width: auto;
  height: 60px;
}
@media only screen and (min-width:560px) {
  .l-flow__slide-icon {
    height: 70px;
  }
}
.l-flow__slide-text {
  color: #fff;
  margin: 20px 0 0 0;
}
.l-flow__slide-schedule {
  background-color: var(--color-sub-blue);
  border-radius: 10px;
  color: var(--color-main-blue);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 8px;
  margin: 15px 0 0 0;
  text-align: center;
}
@media only screen and (min-width:560px) {
  .l-flow__slide-schedule {
    font-size: 0.9375rem;
    padding: 12px;
    margin: 20px 0 0 0;
  }
}
.l-flow__slide-prev {
  bottom: 0px;
  top: auto;
  border-radius: 50%;
  background: var(--color-main-blue);
  width: 40px;
  height: 40px;
}
.l-flow__slide-prev::after {
  content: "<";
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-ibm);
}
.l-flow__slide-next {
  bottom: 0px;
  top: auto;
  left: 60px;
  border-radius: 50%;
  background: var(--color-main-blue);
  width: 40px;
  height: 40px;
}
.l-flow__slide-next::after {
  content: ">";
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-ibm);
}

@media only screen and (min-width:560px) {
  .l-details__dptbox {
    display: flex;
    justify-content: space-between;
  }
}
.l-details__dptitem {
  background-color: var(--color-main-blue);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  text-align: center;
  padding: 8px 0px;
  margin: 7px 0px;
  color: #fff;
  font-weight: 700;
}
@media only screen and (min-width:560px) {
  .l-details__dptitem {
    width: calc(20% - 10px);
    padding: 20px 0px;
    margin: 0px 0px;
  }
}
.l-details__dptitem.--excluded {
  background-color: #fff;
  color: var(--color-text-gray);
  border: 2px solid var(--color-text-gray);
}
.l-details__part {
  display: flex;
  justify-content: center;
  margin: 6px 0 0 0;
}
@media only screen and (min-width:560px) {
  .l-details__part {
    margin: 10px 0 0 0;
  }
}
.l-details__part span {
  background-color: #fff;
  border-radius: 3px;
  text-align: center;
  padding: 0px 10px;
  margin: 0px 3px;
  color: var(--color-main-blue);
  font-weight: 700;
}
@media only screen and (min-width:560px) {
  .l-details__stage {
    display: flex;
    justify-content: space-between;
  }
}
.l-details__stage-box {
  display: flex;
}
.l-details__stage-box + .l-details__stage-box {
  margin: 14px 0 0 0;
}
@media only screen and (min-width:560px) {
  .l-details__stage-box + .l-details__stage-box {
    margin: 0px 0 0 0;
  }
}
@media only screen and (min-width:560px) {
  .l-details__stage-box {
    width: calc(50% - 26px);
  }
}
.l-details__stage-heading {
  background-color: var(--color-main-blue);
  border-radius: 45px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  min-width: 100px;
  height: -moz-fit-content;
  height: fit-content;
}
@media only screen and (min-width:560px) {
  .l-details__stage-heading {
    padding: 8px 17px;
  }
}
.l-details__stage-text {
  position: relative;
  margin: 0 0 0 46px;
  padding: 3px 0 0 0;
}
@media only screen and (min-width:560px) {
  .l-details__stage-text {
    padding: 5px 0 0 0;
  }
}
.l-details__stage-text::before {
  content: "";
  position: absolute;
  width: 26px;
  height: auto;
  border-top: 3px dotted var(--color-main-blue);
  top: 17px;
  left: -36px;
}
@media only screen and (min-width:560px) {
  .l-details__stage-text::before {
    top: 19px;
    border-top: 4px dotted var(--color-main-blue);
  }
}
.l-details__summary {
  display: block;
  text-align: center;
  background-color: var(--color-yellow);
  color: var(--color-main-blue);
  border: 4px solid var(--color-main-blue);
  padding: 20px 10px;
  border-radius: 10px;
  transition: all 0.3s;
}
@media only screen and (min-width:560px) {
  .l-details__summary {
    padding: 30px 10px;
  }
}
.l-details__summary:hover {
  background-color: #fff;
  transition: all 0.3s;
}
.l-details__dpt {
  margin: 30px 0 0;
}
@media only screen and (min-width:560px) {
  .l-details__dpt {
    margin: 50px 0 0;
  }
}
.l-details__dpt-item {
  border-radius: 10px;
  display: grid;
  grid-template-columns: 20% 1fr 35%;
  cursor: pointer;
  transition: all 0.3s;
}
@media only screen and (min-width:560px) {
  .l-details__dpt-item {
    grid-template-columns: 20% 1fr 20%;
  }
}
.l-details__dpt-item.--economics {
  color: var(--color-economics);
  border: 4px solid var(--color-economics);
}
.l-details__dpt-item.--economics:hover {
  background-color: #FAF5E5;
  transition: all 0.3s;
}
.l-details__dpt-item.--human {
  color: var(--color-human);
  border: 4px solid var(--color-human);
}
.l-details__dpt-item.--human:hover {
  background-color: #FAEDED;
  transition: all 0.3s;
}
.l-details__dpt-item.--engineering {
  color: var(--color-engineering);
  border: 4px solid var(--color-engineering);
}
.l-details__dpt-item.--engineering:hover {
  background-color: #EDF2F8;
  transition: all 0.3s;
}
.l-details__dpt-item:nth-of-type(2) {
  margin: 14px 0px;
}
.l-details__dpt-item:hover .l-details__dpt-button.--economics {
  background-color: var(--color-economics);
  color: #fff;
  transition: all 0.3s;
  padding-left: 20px;
}
.l-details__dpt-item:hover .l-details__dpt-button.--human {
  background-color: var(--color-human);
  color: #fff;
  transition: all 0.3s;
  padding-left: 20px;
}
.l-details__dpt-item:hover .l-details__dpt-button.--engineering {
  background-color: var(--color-engineering);
  color: #fff;
  transition: all 0.3s;
  padding-left: 20px;
}
.l-details__dpt-icon {
  padding: 20px 30px;
  border-radius: 5px 0px 0px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width:560px) {
  .l-details__dpt-icon {
    padding: 8px 50px;
    border-radius: 5px;
  }
}
.l-details__dpt-icon img {
  height: 35px;
  width: auto;
}
@media only screen and (min-width:560px) {
  .l-details__dpt-icon img {
    height: 60px;
  }
}
.l-details__dpt-icon.--economics {
  background-color: var(--color-economics);
}
.l-details__dpt-icon.--human {
  background-color: var(--color-human);
}
.l-details__dpt-icon.--engineering {
  background-color: var(--color-engineering);
}
.l-details__dpt-title {
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width:560px) {
  .l-details__dpt-title {
    font-size: 1.5rem;
  }
}
.l-details__dpt-button {
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
@media only screen and (min-width:560px) {
  .l-details__dpt-button {
    font-size: 1.375rem;
  }
}
.l-details__dpt-button.--economics {
  background-color: #FAF5E5;
}
.l-details__dpt-button.--human {
  background-color: #FAEDED;
}
.l-details__dpt-button.--engineering {
  background-color: #EDF2F8;
}
.l-details__dpt-modal-wrap input {
  display: none;
}
.l-details__dpt-modal-overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}
.l-details__dpt-modal-trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}
.l-details__dpt-modal-content {
  align-self: center;
  width: 88%;
  max-height: 80%;
  overflow: scroll;
  padding: 0px 16px 20px 16px;
  box-sizing: border-box;
  background: #fff;
  line-height: 1.4em;
  transition: 0.5s;
  border-radius: 10px;
}
@media only screen and (min-width:560px) {
  .l-details__dpt-modal-content {
    width: 65%;
    padding: 0px 24px 30px 24px;
  }
}
.l-details__dpt-modal-content.--economics {
  border: 4px solid var(--color-economics);
}
.l-details__dpt-modal-close {
  position: sticky;
  top: 10px;
  width: 45px;
  height: 45px;
  margin: 0 0 0 auto;
  cursor: pointer;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 3;
}
@media only screen and (min-width:560px) {
  .l-details__dpt-modal-close {
    width: 60px;
    height: 60px;
  }
}
.l-details__dpt-modal-close.--economics {
  background-color: var(--color-economics);
}
.l-details__dpt-modal-close.--economics:hover {
  background-color: #b28a08;
  transition: all 0.3s;
}
.l-details__dpt-modal-close.--human {
  background-color: var(--color-human);
}
.l-details__dpt-modal-close.--human:hover {
  background-color: #b24443;
  transition: all 0.3s;
}
.l-details__dpt-modal-close.--engineering {
  background-color: var(--color-engineering);
}
.l-details__dpt-modal-close.--engineering:hover {
  background-color: #3f689c;
  transition: all 0.3s;
}
.l-details__dpt-modal-close > img {
  width: 26px;
  height: 26px;
}

.modal__faculty-name {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
}
@media only screen and (min-width:560px) {
  .modal__faculty-name {
    font-size: 1.5rem;
  }
}
.modal__faculty-name.--economics {
  color: var(--color-economics);
}
.modal__faculty-name.--human {
  color: var(--color-human);
}
.modal__faculty-name.--engineering {
  color: var(--color-engineering);
}
.modal__selection-title {
  border-radius: 40px;
  text-align: center;
  padding: 8px 30px;
  background-color: #fff;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: -30px auto 20px auto;
  top: -20px;
  right: 0;
  left: 0;
}
.modal__selection-title.--economics {
  border: 2px solid var(--color-economics);
}
.modal__selection-title.--human {
  border: 2px solid var(--color-human);
}
.modal__selection-title.--engineering {
  border: 2px solid var(--color-engineering);
}
.modal__selection-content {
  padding: 10px 20px 20px 20px;
  margin: 38px 0 0 0;
  position: relative;
}
.modal__selection-content.--economics {
  background-color: #FAF5E5;
}
.modal__selection-content.--human {
  background-color: #FAEDED;
}
.modal__selection-content.--engineering {
  background-color: #fff;
}
@media only screen and (min-width:560px) {
  .modal__selection-box {
    display: flex;
  }
}
.modal__selection-box.--full .modal__selection-item {
  width: 100%;
  margin: 26px 0 0 0px;
  padding: 26px 0 0 0px;
  border-left: none;
  border-top: 1px dotted var(--color-text);
}
@media only screen and (min-width:560px) {
  .modal__selection-item {
    width: calc(50% - 26px);
  }
}
.modal__selection-item + .modal__selection-item {
  margin: 10px 0 0 0px;
  padding: 10px 0 0 0px;
  border-top: 1px dotted var(--color-text);
}
@media only screen and (min-width:560px) {
  .modal__selection-item + .modal__selection-item {
    margin: 0 0 0 26px;
    padding: 0 0 0 26px;
    border-top: none;
    border-left: 1px dotted var(--color-text);
  }
}
.modal__selection-department {
  text-align: center;
  font-weight: 700;
  padding: 10px 0px;
}
.modal__selection-department.--economics {
  color: var(--color-economics);
}
.modal__selection-department.--human {
  color: var(--color-human);
}
.modal__selection-department.--engineering {
  color: var(--color-engineering);
}
.modal__selection-heading {
  display: flex;
  font-weight: 700;
}
.modal__selection-heading > span {
  min-width: 30px;
  height: 30px;
  border: 2px solid var(--color-text);
  border-radius: 30px;
  font-family: var(--font-ibm);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal__selection-name {
  margin: 0 0 0 10px;
}
.modal__selection-text {
  margin: 10px 0 0;
}
.modal__rating-points {
  margin: 30px 0 0 0;
}
@media only screen and (min-width:560px) {
  .modal__rating-points {
    margin: 40px 0 0 0;
  }
}
.modal__rating-heading {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__rating-heading > img {
  width: 36px;
}
@media only screen and (min-width:560px) {
  .modal__rating-heading > img {
    width: 42px;
  }
}
.modal__rating-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0 10px;
}
@media only screen and (min-width:560px) {
  .modal__rating-title {
    font-size: 1.5rem;
  }
}
.modal__rating-title.--economics {
  color: var(--color-economics);
}
.modal__rating-title.--human {
  color: var(--color-human);
}
.modal__rating-title.--engineering {
  color: var(--color-engineering);
}
.modal__rating-list {
  margin: 20px 0 0 0;
}
@media only screen and (min-width:560px) {
  .modal__rating-list {
    margin: 30px 0 0 0;
  }
}
@media only screen and (min-width:560px) {
  .modal__rating-item {
    display: flex;
    justify-content: space-between;
  }
}
.modal__rating-item + .modal__rating-item {
  margin: 18px 0 0 0;
  padding: 18px 0 0 0;
  border-top: 1px dotted var(--color-text);
}
@media only screen and (min-width:560px) {
  .modal__rating-item + .modal__rating-item {
    margin: 25px 0 0 0;
    padding: 25px 0 0 0;
  }
}
.modal__rating-name {
  font-weight: 700;
  line-height: 1.4;
}
@media only screen and (min-width:560px) {
  .modal__rating-name {
    width: 20%;
  }
}
.modal__rating-name.--economics {
  color: var(--color-economics);
}
.modal__rating-name.--human {
  color: var(--color-human);
}
.modal__rating-name.--engineering {
  color: var(--color-engineering);
}
.modal__rating-text {
  margin: 10px 0 0;
}
@media only screen and (min-width:560px) {
  .modal__rating-text {
    width: 75%;
    margin: 0px 0 0;
  }
}
.modal__rating-text a {
  text-decoration: underline;
  word-break: break-all;
}
.modal__rating-text a:hover {
  text-decoration: none;
}
.modal__rating-text-index {
  font-weight: 700;
  margin: 10px 0px;
}
.modal__faq {
  margin: 40px 0 0 0;
}
@media only screen and (min-width:560px) {
  .modal__faq {
    margin: 50px 0 0 0;
  }
}
.modal__faq-list {
  margin: 20px 0 0 0;
}
@media only screen and (min-width:560px) {
  .modal__faq-list {
    margin: 30px 0 0 0;
  }
}
.modal__faq-item {
  justify-content: space-between;
  background-color: var(--color-gray);
  padding: 20px;
  border-radius: 10px;
}
.modal__faq-item + .modal__faq-item {
  margin: 25px 0 0 0;
}
.modal__faq-name.--economics {
  color: var(--color-economics);
}
.modal__faq-name.--human {
  color: var(--color-human);
}
.modal__faq-name.--engineering {
  color: var(--color-engineering);
}
.modal__faq-text {
  margin: 10px 0 0 0;
}

.l-details__dpt-modal-wrap input:checked ~ .l-details__dpt-modal-overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}

.l-details__dpt-modal-wrap input:checked ~ .l-details__dpt-modal-overlay .l-details__dpt-modal-content {
  transform: translateY(20px);
}

.l-note__item {
  background-color: var(--color-sub-blue);
  border-radius: 10px;
  padding: 60px 12px 20px 12px;
  position: relative;
  margin: 16px 0 0 0;
}
@media only screen and (min-width:560px) {
  .l-note__item {
    padding: 40px 35px 40px 100px;
    margin: 30px 0 0 0;
  }
}
.l-note__item:first-of-type {
  margin: 0px 0 0 0;
}
.l-note__label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 12px 20px 10px 20px;
  background-color: var(--color-main-blue);
  text-align: center;
  color: #fff;
  border-radius: 10px 0px 10px 0px;
  display: flex;
  align-items: center;
}
@media only screen and (min-width:560px) {
  .l-note__label {
    padding: 18px 20px 10px 20px;
    display: block;
  }
}
.l-note__label-heading {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
@media only screen and (min-width:560px) {
  .l-note__label-heading {
    writing-mode: vertical-rl;
    font-size: 1.25rem;
  }
}
.l-note span {
  font-family: var(--font-ibm);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  border-left: 1px solid #fff;
  margin: 0 0 0 7px;
  padding: 0 0 0 7px;
}
@media only screen and (min-width:560px) {
  .l-note span {
    font-size: 2.5rem;
    line-height: 2;
    border-left: none;
    border-top: 1px solid #fff;
    margin: 0 0 0 0px;
    padding: 0 0 0 0px;
  }
}
.l-note__header {
  display: flex;
  align-items: flex-start;
}
@media only screen and (min-width:560px) {
  .l-note__header {
    flex-wrap: wrap;
    align-items: center;
  }
}
.l-note__icon {
  width: 42px;
}
@media only screen and (min-width:560px) {
  .l-note__icon {
    width: 58px;
  }
}
.l-note__heading {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0 10px;
}
@media only screen and (min-width:560px) {
  .l-note__heading {
    font-size: 1.5rem;
  }
}
.l-note__content {
  background-color: #fff;
  padding: 15px;
  margin: 20px 0 0 0;
  border-radius: 5px;
}
@media only screen and (min-width:560px) {
  .l-note__content {
    padding: 30px;
    margin: 40px 0 0 0;
  }
}
.l-note__concurrent-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}
.l-note__concurrent-item {
  border: 1px solid var(--color-text);
  border-radius: 10px;
  text-align: center;
}
.l-note__concurrent-heading {
  background-color: var(--color-gray);
  padding: 6px 0px;
  border-radius: 10px 10px 0px 0px;
  font-weight: 700;
  line-height: 1.3;
}
@media only screen and (min-width:560px) {
  .l-note__concurrent-heading {
    line-height: 1.7;
  }
}
.l-note__concurrent-text {
  padding: 5px 0px;
  line-height: 1.3;
}
@media only screen and (min-width:560px) {
  .l-note__concurrent-text {
    line-height: 1.7;
  }
}
.l-note__concurrent-text span {
  color: var(--color-main-blue);
  font-family: var(--font-ibm);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0px 5px 0 0;
}
@media only screen and (min-width:560px) {
  .l-note__concurrent-text span {
    font-size: 1.375rem;
  }
}
.l-note__concurrent-note {
  font-size: 0.875rem;
  padding-left: 1em;
  text-indent: -0.5em;
  margin: 10px 0 0 0;
}
@media only screen and (min-width:560px) {
  .l-note__concurrent-note {
    margin: 20px 0 0 0;
  }
}
.l-note__concurrent-note::before {
  display: inline-block;
  content: "※";
}
.l-note__engineering-head {
  background-color: var(--color-engineering);
  padding: 4px 0px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}
@media only screen and (min-width:560px) {
  .l-note__engineering-head {
    font-size: 1.25rem;
  }
}
.l-note__engineering-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin: 15px 0 0 0;
}
@media only screen and (min-width:560px) {
  .l-note__engineering-list {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
.l-note__engineering-item {
  position: relative;
}
.l-note__engineering-item:last-of-type::before {
  content: "";
  position: absolute;
  top: -20px;
  width: 100%;
  border-top: 1px dotted var(--color-text);
}
@media only screen and (min-width:560px) {
  .l-note__engineering-item:last-of-type::before {
    border-top: none;
    top: 0;
    left: -20px;
    width: 1px;
    height: 100%;
    border-left: 1px dotted var(--color-text);
  }
}
.l-note__engineering-heading {
  border: 2px solid var(--color-text);
  border-radius: 10px;
  padding: 0px 25px;
  margin: 0 auto 20px auto;
  display: table;
  font-weight: 700;
}
.l-note__engineering-illust {
  width: 100%;
  margin: 0px 0px 15px 0px;
  overflow-x: scroll;
}
@media only screen and (min-width:560px) {
  .l-note__engineering-illust {
    overflow-x: hidden;
  }
}
.l-note__engineering-illust > img {
  width: 100%;
  height: auto;
}
.l-note__engineering-illust > img.scroll {
  height: auto;
  min-width: 150%;
  width: 100%;
}
@media only screen and (min-width:560px) {
  .l-note__engineering-illust > img.scroll {
    width: 100%;
    min-width: 100%;
    height: auto;
  }
}
.l-note__engineering-select {
  display: grid;
  gap: 8px;
}
.l-note__engineering-select-item {
  position: relative;
  padding: 0px 0px 0px 14px;
  font-size: 0.8125rem;
  line-height: 1.5;
}
@media only screen and (min-width:560px) {
  .l-note__engineering-select-item {
    font-size: 0.875rem;
  }
}
.l-note__engineering-select-item::before {
  content: "";
  border-radius: 50%;
  height: 10px;
  left: 0;
  position: absolute;
  top: 8px;
  transform: scale(1);
  transition: transform 0.3s;
  width: 10px;
}
.l-note__engineering-select-item.--red::before {
  background-color: #DC010B;
}
.l-note__engineering-select-item.--blue::before {
  background-color: #0086CD;
}
.l-note__engineering-select-item.--orange::before {
  background-color: #EC6C26;
}
.l-note__engineering-select-item.--green::before {
  background-color: #2D7F1F;
}

.l-tbl__item {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--color-text);
}
@media only screen and (min-width:560px) {
  .l-tbl__item {
    grid-template-columns: 200px auto;
    border-top: 1px dotted var(--color-text);
  }
}
.l-tbl__item:first-of-type {
  border-top: 1px solid var(--color-text);
}
.l-tbl__item:last-of-type {
  border-bottom: 1px solid var(--color-text);
}
.l-tbl__item-heading {
  padding: 5px 12px;
  font-weight: 700;
}
@media only screen and (min-width:560px) {
  .l-tbl__item-heading {
    padding: 10px 20px;
    font-weight: normal;
  }
}
.l-tbl__item-text {
  background-color: var(--color-gray);
  border-top: 1px dotted var(--color-text);
  padding: 8px 12px;
}
.l-tbl__item-text p + p {
  margin: 8px 0 8px 0;
}
@media only screen and (min-width:560px) {
  .l-tbl__item-text p + p {
    margin: 14px 0 14px 0;
  }
}
@media only screen and (min-width:560px) {
  .l-tbl__item-text {
    border-top: none;
    border-left: 1px solid var(--color-text);
    padding: 10px 20px;
  }
}
.l-tbl__indent-list + .l-tbl__indent-list {
  margin: 20px 0 0 0;
}
.l-tbl .l-tbl__indent-list + .l-tbl__indent-list {
  margin: 20px 0 0 0;
}
.l-tbl__indent-item {
  display: flex;
}
.l-tbl__indent-item + .l-tbl__indent-item {
  margin: 8px 0 0 0;
}
.l-tbl__indent-heading {
  min-width: 30px;
  margin: 0 10px 0 0;
}
@media only screen and (min-width:560px) {
  .l-tbl__indent-heading {
    min-width: 20px;
  }
}
.grad-btn {
  z-index: 2;
  position: absolute;
  right: 0;
  bottom: -42px;
  left: 0;
  width: 148px;
  margin: auto;
  padding: 6px 10px;
  border-radius: 40px;
  border: 1px solid var(--color-text);
  background: #FFF;
  font-size: 0.9375rem;
  text-align: center;
  cursor: pointer;
  transition: 0.2s ease;
}
.grad-btn:hover {
  background: var(--color-gray);
}

.grad-btn::before {
  content: "もっと見る";
}

.grad-item {
  position: relative;
  overflow: hidden;
  height: 300px;
  /*隠した状態の高さ*/
}

.graduation {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 75px;
  transition: all 0.4s;
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.8) 100%);
}

.grad-trigger {
  display: none;
  /*チェックボックスは常に非表示*/
}

.grad-trigger:checked ~ .grad-btn::before {
  content: "閉じる";
}

.grad-trigger:checked ~ .grad-item {
  height: auto;
  /*チェックされていたら、高さを戻す*/
}

.grad-trigger:checked ~ .grad-item::before {
  display: none;
  /*チェックされていたら、grad-itemのbeforeを非表示にする*/
}

.grad-trigger:checked ~ .grad-item .graduation {
  display: none;
  /*チェックされていたら、grad-itemのbeforeを非表示にする*/
}

.l-faq__list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  overflow-x: scroll;
  width: calc(100% + 20px);
  padding: 0px 20px 20px 0px;
}
.l-faq__list::-webkit-scrollbar {
  height: 8px;
}
@media only screen and (min-width:560px) {
  .l-faq__list::-webkit-scrollbar {
    display: none;
  }
}
.l-faq__list::-webkit-scrollbar-track {
  background-color: var(--color-gray);
}
.l-faq__list::-webkit-scrollbar-thumb {
  background-color: var(--color-main-blue);
  border-radius: 3px;
}
@media only screen and (min-width:560px) {
  .l-faq__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0px 0px 0px 0px;
  }
}
.l-faq__item {
  border: 4px solid var(--color-main-blue);
  border-radius: 10px;
  transition: all 0.3s;
  cursor: pointer;
  min-width: 250px;
  height: auto;
  position: relative;
}
@media only screen and (min-width:560px) {
  .l-faq__item {
    min-width: auto;
    height: 100%;
  }
}
.l-faq__item:hover {
  background-color: var(--color-sub-blue);
  transition: all 0.3s;
}
.l-faq__item:hover .l-faq__item-toggle {
  background-color: #fff;
  transition: all 0.3s;
}
.l-faq__item.is-show .l-faq__item-back {
  transform: rotateY(0);
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}
.l-faq__item.is-show:hover .l-faq__item-toggle {
  background-color: #045791;
}
.l-faq__item-front {
  transition: all 0.4s ease-out;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  backface-visibility: hidden;
  flex-shrink: 0;
  will-change: transform;
  padding: 20px 24px 55px 24px;
}
@media only screen and (min-width:560px) {
  .l-faq__item-front {
    padding: 30px 30px 55px 30px;
  }
}
.l-faq__item-back {
  background-color: var(--color-main-blue);
  transition: all 0.4s ease-out;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  backface-visibility: hidden;
  flex-shrink: 0;
  will-change: transform;
  transform: rotateY(-180deg);
  padding: 20px 24px 55px 24px;
  color: #fff;
}
@media only screen and (min-width:560px) {
  .l-faq__item-back {
    padding: 30px 30px 55px 30px;
  }
}
.l-faq__item-back .l-faq__item-toggle {
  background-color: var(--color-main-blue);
  border: 2px dotted #fff;
}
.l-faq__item-back .l-faq__item-toggle::before {
  transform: rotate(45deg);
  background-color: #fff;
  left: 10px;
}
.l-faq__item-back .l-faq__item-toggle::after {
  transform: rotate(-45deg);
  background-color: #fff;
  left: 10px;
}
@media only screen and (min-width:560px) {
  .l-faq__item-box {
    display: flex;
  }
}
.l-faq__item-icon {
  width: 40px;
  height: 40px;
  background-color: #FE6D52;
  border-radius: 40px;
  color: #fff;
  font-size: 1.375rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width:560px) {
  .l-faq__item-icon {
    min-width: 40px;
  }
}
.l-faq__item-icon.--answer {
  background-color: #fff;
  color: var(--color-main-blue);
}
.l-faq__item-text {
  margin: 10px 0 0 0px;
}
@media only screen and (min-width:560px) {
  .l-faq__item-text {
    margin: 0 0 0 20px;
  }
}
.l-faq__item-text a {
  text-decoration: underline;
  font-weight: 700;
}
.l-faq__item-text a:hover {
  text-decoration: none;
}
.l-faq__item-toggle {
  background-color: var(--color-sub-blue);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 10px 0 0 auto;
  position: relative;
  transition: all 0.3s;
  position: absolute;
  bottom: 16px;
  right: 20px;
}
.l-faq__item-toggle::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 12px;
  width: 16px;
  height: 3px;
  background-color: var(--color-main-blue);
}
.l-faq__item-toggle::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 12px;
  width: 16px;
  height: 3px;
  background-color: var(--color-main-blue);
  transform: rotate(-90deg);
}
.l-faq__arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 14px 0 0 0;
}
@media only screen and (min-width:560px) {
  .l-faq__arrow {
    display: none;
  }
}
.l-faq__arrow img {
  width: 20px;
}

.l-movie {
  margin: 50px 0 0px 0;
}
@media only screen and (min-width:560px) {
  .l-movie {
    display: flex;
    justify-content: center;
    margin: 50px 0 200px 0;
  }
}
.l-movie__text-heading {
  border: 4px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  padding: 0px 0px;
  margin: 0 auto;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  width: 60%;
}
@media only screen and (min-width:560px) {
  .l-movie__text-heading {
    font-size: 1.5625rem;
    padding: 20px 24px;
    width: auto;
  }
}
.l-movie__text-detail {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 25px 0 0 0;
}
@media only screen and (min-width:560px) {
  .l-movie__text-detail {
    font-size: 1.25rem;
    margin: 20px 0 0 0;
  }
}
.l-movie__embed {
  width: 80%;
  height: -moz-fit-content;
  height: fit-content;
  margin: 14px auto 0px auto;
  border: 4px solid #fff;
}
@media only screen and (min-width:560px) {
  .l-movie__embed {
    width: 50%;
    margin: 30px 0px 0px 30px;
  }
}
.l-movie__youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.l-movie__youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.l-footer {
  margin: 140px 0 40px 0;
}
@media only screen and (min-width:560px) {
  .l-footer {
    margin: 170px 0 50px 0;
  }
}
.l-footer__head {
  overflow: hidden;
}
.l-footer__head-copy {
  width: 102%;
}
.l-footer__head-logoarea {
  margin: -15px 0 0 0;
  text-align: center;
}
@media only screen and (min-width:560px) {
  .l-footer__head-logoarea {
    margin: -40px 0 0 0;
  }
}
.l-footer__head-logo {
  width: 150px;
  height: auto;
  display: inline-block;
}
.l-footer__cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 80%;
  margin: 60px auto 0 auto;
}
@media only screen and (min-width:560px) {
  .l-footer__cta {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    max-width: 90%;
    margin: 100px auto 0 auto;
  }
}
@media only screen and (min-width:1025px) {
  .l-footer__cta {
    max-width: 820px;
  }
}
.l-footer__cta-link {
  border-bottom: 2px solid #fff;
  padding: 0px 10px 8px 0px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  display: block;
  transition: all 0.3s;
}
@media only screen and (min-width:1025px) {
  .l-footer__cta-link {
    font-size: 1.25rem;
  }
}
.l-footer__cta-link::after {
  content: "";
  position: absolute;
  bottom: 15px;
  right: 0px;
  background-image: url(../img/icon-brank-link-white.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px;
  transition: all 0.3s;
}
.l-footer__cta-link:hover {
  border-bottom: 2px solid var(--color-yellow);
  transition: all 0.3s;
}
.l-footer__cta-link:hover::after {
  bottom: 20px;
  transition: all 0.3s;
}
.l-footer__banner {
  max-width: 90%;
  margin: 40px auto 0 auto;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  text-align: center;
}
@media only screen and (min-width:560px) {
  .l-footer__banner {
    gap: 14px;
    margin: 60px auto 0 auto;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width:1025px) {
  .l-footer__banner {
    max-width: 820px;
  }
}
.l-footer__banner-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 30px;
}
@media only screen and (min-width:560px) {
  .l-footer__banner-item {
    padding: 15px 25px;
  }
}
.l-footer__banner-item a {
  transition: all 0.3s;
}
.l-footer__banner-item a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.l-footer__banner-item:first-of-type {
  display: flex;
  align-items: center;
}
@media only screen and (min-width:560px) {
  .l-footer__banner-item:first-of-type {
    grid-row: 1/3;
    grid-column: 1/2;
  }
}
@media only screen and (min-width:560px) {
  .l-footer__banner-item:nth-of-type(2) {
    grid-row: 1/2;
    grid-column: 2/3;
  }
}
@media only screen and (min-width:560px) {
  .l-footer__banner-item:last-of-type {
    grid-row: 2/3;
    grid-column: 2/3;
  }
}
.l-footer__banner-line {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  background-color: #06C755;
  border-radius: 5px;
  padding: 5px 0px;
}
.l-footer__banner-line > img {
  width: 30px;
}
.l-footer__banner-heading {
  font-weight: 700;
  margin: 0 0 10px 0;
}
.l-footer__sns-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 70%;
}
@media only screen and (min-width:560px) {
  .l-footer__sns-list {
    max-width: 60%;
  }
}
.l-footer__bottom {
  margin: 70px 0 0 0;
  text-align: center;
}
@media only screen and (min-width:560px) {
  .l-footer__bottom {
    margin: 120px 0 0 0;
  }
}
.l-footer__bottom-logo {
  height: 36px;
  width: auto;
  display: inline-block;
}
@media only screen and (min-width:560px) {
  .l-footer__bottom-logo {
    height: 40px;
  }
}
.l-footer__bottom-copyright {
  margin: 24px 0 0 0;
  font-size: 0.8125rem;
  text-align: center;
  color: #fff;
}
@media only screen and (min-width:560px) {
  .l-footer__bottom-copyright {
    margin: 34px 0 0 0;
    font-size: 0.9375rem;
  }
}
:root {
  --side-nav-width: 310px;
  --aside-width: 310px;
  --side-cube-width: 310px;
  --color-main-blue: #0070bd;
  --color-sub-blue: #E5F1F8;
  --color-gray: #F7F7F7;
  --color-yellow: #FFEA4C;
  --color-economics: #CD9C00;
  --color-human: #CB5453;
  --color-engineering: #4F7EBA;
  --color-text: #313131;
  --color-text-gray: #707070;
  --color-question: #FE6D52;
  --font-zenkaku: "Zen Kaku Gothic New", sans-serif;
  --font-ibm: "IBM Plex Sans", "Zen Kaku Gothic New", sans-serif;
  --cubic-bezier: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.char {
  transform: translateY(100px);
  transition: transfrom 0.5s;
}

.c-selection {
  margin: 90px 0 20px 0px;
  padding: 80px 0 0 0;
  overflow: hidden;
  position: relative;
}
@media only screen and (min-width:560px) {
  .c-selection {
    margin: 140px 0 40px 0px;
    padding: 100px 0 0 0;
  }
}
.c-selection__bgarea {
  display: flex;
  place-items: center;
  overflow: hidden;
  text-wrap: nowrap;
  position: absolute;
  top: 0px;
}
@media only screen and (min-width:560px) {
  .c-selection__bgarea {
    top: -100px;
  }
}
.c-selection__bgtitle {
  font-size: 5rem;
  font-weight: 300;
  color: var(--color-sub-blue);
  display: inline-block;
  padding-right: 20px;
  opacity: 0.1;
}
@media only screen and (min-width:560px) {
  .c-selection__bgtitle {
    font-size: 12.5rem;
  }
}
.c-selection__head {
  display: flex;
  justify-content: center;
}
.c-selection__title {
  font-size: 2.5rem;
  color: #fff;
  font-weight: 700;
  border: 6px solid #fff;
  letter-spacing: 0.06em;
  padding: 20px 30px;
  z-index: 1;
}
@media only screen and (min-width:560px) {
  .c-selection__title {
    font-size: 5rem;
    padding: 30px 50px;
    z-index: 0;
  }
}
.c-selection__copy-area {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 86%;
  margin: 0 auto;
}
@media only screen and (min-width:560px) {
  .c-selection__copy-area {
    max-width: 560px;
  }
}
.c-selection__overview-head {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
  margin: 24px 0 0;
}
@media only screen and (min-width:560px) {
  .c-selection__overview-head {
    font-size: 1.5rem;
    margin: 60px 0 0;
  }
}
.c-selection__overview-paragraph {
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.8;
  margin: 20px 0 0;
  text-align: justify;
}
@media only screen and (min-width:560px) {
  .c-selection__overview-paragraph {
    font-size: 1.125rem;
    margin: 26px 0 0;
    line-height: 2;
  }
}

.c-title__section {
  margin: 0 0 36px 0;
}
@media only screen and (min-width:560px) {
  .c-title__section {
    margin: 0 0 50px 0;
  }
}
.c-title__section-en {
  font-size: 4rem;
  color: var(--color-sub-blue);
  font-weight: 300;
}
@media only screen and (min-width:560px) {
  .c-title__section-en {
    font-size: 10rem;
  }
}
.c-title__section-jp {
  font-size: 1.375rem;
  color: var(--color-main-blue);
  font-weight: 700;
  margin: -50px 0 0 0;
}
@media only screen and (min-width:560px) {
  .c-title__section-jp {
    font-size: 1.6875rem;
    margin: -100px 0 0 0;
  }
}
.c-title__h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 14px 0;
}
@media only screen and (min-width:560px) {
  .c-title__h3 {
    font-size: 1.25rem;
    margin: 0 0 16px 0;
  }
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}
.header__logo {
  width: 90%;
  max-width: 600px;
}

.pc_delete {
  display: inline-block;
}
@media only screen and (min-width:560px) {
  .pc_delete {
    display: none;
  }
}

.sp_delete {
  display: none;
}
@media only screen and (min-width:560px) {
  .sp_delete {
    display: inline-block;
  }
}

#scene {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  perspective: 10000px;
}

.boxBase {
  transform-style: preserve-3d;
  width: 200px;
  height: 200px;
  animation: turnAround 30s linear 0s infinite normal none running;
}
.boxBase > div {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  /* 面の色 */
  border: 5px solid var(--color-main);
  /* 縁 */
}

@keyframes turnAround {
  0% {
    transform: rotateX(0deg) rotateY(0deg);
  }
  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}
.boxBase > .top {
  transform: translateY(100px) rotateX(-90deg);
}

.boxBase > .bottom {
  transform: translateY(-100px) rotateX(90deg);
}

.boxBase > .front {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(100px);
}
.boxBase > .front h2 {
  font-size: 1.375rem;
  color: var(--color-main);
}

.boxBase > .back {
  transform: translateZ(-100px) rotateX(180deg);
}

.boxBase > .left {
  transform: translateX(-100px) rotateY(-90deg);
}

.boxBase > .right {
  transform: translateX(100px) rotateY(90deg);
}/*# sourceMappingURL=style.css.map */