/* =============================================
  media query
============================================= */
/* =============================================
  px vw
============================================= */
/* =============================================
  default settings
============================================= */
:root {
  --color-primary: #002870;
  --color-secondary: #815D32;
  --color-black: #2E2E2E;
  --color-gray: #7E7E7E;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
  color: var(--color-black);
}
body.is-active {
  overflow: hidden !important;
}

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

a {
  text-decoration: none;
  color: var(--color-black);
}

ul, ol {
  list-style: none;
}

area {
  cursor: pointer;
}

.inner {
  max-width: calc(1100px + 8rem);
  margin: 0 auto;
  padding: 0 4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 3rem;
  }
}
.inner--sm {
  max-width: calc(1000px + 8rem);
}

.pc {
  display: inline-block !important;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp {
    display: inline-block !important;
  }
}

.fadeIn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity ease 1.2s, transform ease 1.2s;
}
.fadeIn.is-show {
  opacity: 1;
  transform: translateY(0px);
}

.js-split.is-show span {
  opacity: 1;
  transform: translateY(0);
}
.js-split span {
  --delay: 0.05s;
  opacity: 0;
  display: inline-block;
  transform: translateY(30px);
  transition: opacity ease 0.6s calc(var(--delay) * var(--index)), transform ease 0.6s calc(var(--delay) * var(--index));
}

.sticky {
  position: relative;
  z-index: 4;
  background-color: #fff;
}
.sticky__bg {
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 768px) {
  .sticky__bg:nth-of-type(1) {
    padding: 4rem 0 6rem;
  }
}
.sticky__img {
  position: sticky;
  top: 10rem;
  right: 0px;
  z-index: -1;
  text-align: right;
  overflow: hidden;
}
.sticky__img img {
  transform: translateX(-25%);
  max-width: 1337px;
}
@media screen and (max-width: 1920px) {
  .sticky__img img {
    transform: translateX(200px);
  }
}
@media screen and (max-width: 768px) {
  .sticky__img img {
    max-width: 480px;
    transform: translateX(20px);
  }
}

.sec__title {
  font-size: 5.6rem;
  font-weight: 600;
  color: #2E2E2E;
  text-align: center;
  font-family: "Shippori Mincho", sans-serif;
}
@media screen and (max-width: 768px) {
  .sec__title {
    font-size: 2.6rem;
  }
}

.news {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5rem 5rem;
}
@media screen and (max-width: 1000px) {
  .news {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  .news {
    grid-template-columns: 1fr;
  }
}
.news__item a {
  transition: opacity ease 0.3s;
}
.news__item a:hover {
  opacity: 0.7;
}
.news__item a:hover .news__itemImg img {
  transform: scale(1.1);
}
.news__itemImg {
  overflow: hidden;
}
.news__itemImg img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform ease 0.3s;
}
.news__itemHead {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .news__itemHead {
    margin-top: 1.5rem;
  }
}
.news__itemDate {
  font-size: 1.2rem;
  color: #707070;
}
.news__itemTitle {
  color: #2E2E2E;
  margin-top: 1rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .news__itemTitle {
    margin-top: 0.5rem;
  }
}

.btn {
  max-width: 100%;
  width: 36rem;
  height: 6rem;
  line-height: 6rem;
  border-radius: 3rem;
  color: #fff;
  background-color: #76B8D9;
  border: 2px solid #76B8D9;
  text-align: center;
  display: inline-block;
  position: relative;
  transition: color ease 0.4s, background-color ease 0.4s;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .btn {
    max-width: 24.5rem;
    height: 4.5rem;
    line-height: 4.5rem;
    font-size: 1.3rem;
  }
}
.btn:hover {
  background-color: #fff;
  color: #76B8D9;
}
.btn:hover .arrow::before {
  animation: btnArrowBefore ease 0.4s forwards;
}
.btn:hover .arrow::after {
  animation: btnArrowAfter ease 0.4s forwards;
}
.btn--back {
  background-color: #707070;
  border: 2px solid #707070;
}
.btn--back:hover {
  color: #707070;
}
@media screen and (max-width: 768px) {
  .btn--lg {
    text-align: left;
    padding: 0 1.5rem;
  }
}
.btn--sm {
  width: 20rem;
}
@media screen and (max-width: 768px) {
  .btn--sm {
    width: 14rem;
  }
}
.btn .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2.5rem;
  overflow: hidden;
  width: 8px;
  height: 16px;
}
@media screen and (max-width: 768px) {
  .btn .arrow {
    right: 1.5rem;
  }
}
.btn .arrow::before, .btn .arrow::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.btn .arrow::before {
  background: no-repeat url(../img/btn_arrow_white.svg) center center/contain;
}
.btn .arrow::after {
  transform: translateX(-200%);
  background: no-repeat url(../img/btn_arrow_skyblue.svg) center center/contain;
}

@keyframes btnArrowBefore {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(200%);
  }
}
@keyframes btnArrowAfter {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0%);
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

:where(.wp-block-columns.is-layout-flex) {
  gap: 2rem;
}

.section-manual {
  padding: 150px 0 100px;
}

/* =============================================
  header
============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  height: 10rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .header {
    height: 6rem;
  }
}
.header__logo {
  position: fixed;
  line-height: 1;
  top: 1.5rem;
  left: 4rem;
  z-index: 1001;
  transition: opacity ease 0.3s;
}
.header__logo:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 8rem;
    top: 1.2rem;
    left: 3rem;
  }
}
.header__logo a {
  display: inline-block;
}

/* =============================================
  hamburger
============================================= */
.hamburger__btn {
  position: fixed;
  top: 43px;
  right: 50px;
  z-index: 1001;
  width: 80px;
  height: 15px;
}
@media screen and (max-width: 768px) {
  .hamburger__btn {
    top: 2.5rem;
    right: 3rem;
    width: 4rem;
    height: 0.8rem;
  }
}
.hamburger__btn span {
  display: inline-block;
  width: 100%;
  height: 3px;
  background-color: #002870;
  position: absolute;
  left: 0;
  transition: top 0.3s ease 0.3s, transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .hamburger__btn span {
    height: 2px;
  }
}
.hamburger__btn span:nth-of-type(1) {
  top: 0;
}
.hamburger__btn span:nth-of-type(1).is-active {
  top: 50%;
  transform: rotate(25deg);
  transition: top 0.3s ease, transform 0.3s ease 0.3s;
}
.hamburger__btn span:nth-of-type(2) {
  top: 100%;
}
.hamburger__btn span:nth-of-type(2).is-active {
  top: 50%;
  transform: rotate(-25deg);
  transition: top 0.3s ease, transform 0.3s ease 0.3s;
}
.hamburger__menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  padding: 25rem 4rem;
  visibility: hidden;
  transition: visibility ease 0.6s;
  overflow: scroll;
}
@media screen and (max-width: 768px) {
  .hamburger__menu {
    padding: 10rem 6rem;
  }
}
.hamburger__menu.is-active {
  visibility: visible;
}
.hamburger__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F5F4F0;
  transform: scaleX(0);
  transition: transform ease 0.6s;
  transform-origin: top right;
  z-index: 999;
}
.hamburger__bg.is-active {
  transform-origin: top left;
  transform: scaleX(100%);
}
.hamburger__nav {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
@media screen and (max-width: 768px) {
  .hamburger__nav {
    flex-direction: column;
    gap: 3rem;
  }
}
.hamburger__nav.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.4s ease 0.5s, transform 0.4s ease 0.5s, visibility 0.4s ease 0.5s;
}
.hamburger__nav ul {
  max-width: 300px;
}
.hamburger__nav ul li {
  margin-bottom: 7rem;
}
@media screen and (max-width: 768px) {
  .hamburger__nav ul li {
    margin-bottom: 3rem;
  }
}
.hamburger__nav ul li:last-child {
  margin-bottom: 0;
}
.hamburger__nav ul li a {
  font-size: 2.4rem;
  font-family: "Shippori Mincho", sans-serif;
  display: inline-block;
  position: relative;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .hamburger__nav ul li a {
    font-size: 1.8rem;
  }
}
.hamburger__nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  background-color: var(--color-primary);
  transition: transform ease 0.3s;
  transform-origin: top right;
}
@media screen and (max-width: 768px) {
  .hamburger__nav ul li a::after {
    bottom: -1rem;
  }
}
.hamburger__nav ul li a:hover::after {
  transform: scaleX(100%);
  transform-origin: top left;
}
.hamburger__link {
  margin-top: 23rem;
}
@media screen and (max-width: 768px) {
  .hamburger__link {
    margin-top: 4rem;
  }
}
.hamburger__link a {
  width: 11.5rem;
  height: 2rem;
  line-height: 2rem;
  display: block;
  font-size: 1.2rem;
  border: 1px solid var(--color-black);
  text-align: center;
  transition: color ease 0.3s, background-color ease 0.3s;
}
.hamburger__link a:hover {
  background-color: var(--color-black);
  color: #fff;
}

/* =============================================
  main visual
============================================= */
.mv {
  position: fixed;
  top: 10rem;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .mv {
    top: 8rem;
  }
}
.mv__inner {
  overflow-x: hidden;
}
.mv__title {
  writing-mode: vertical-rl;
  font-size: 7.5rem;
  font-weight: 700;
  letter-spacing: 16px;
  line-height: 1.75;
  position: fixed;
  top: 12.5rem;
  right: 20%;
  word-break: keep-all;
  z-index: 3;
  font-family: "Shippori Mincho", sans-serif;
  transition: opacity ease-in-out 0.4s;
  padding-bottom: 8rem;
}
@media screen and (max-width: 1920px) {
  .mv__title {
    right: 15.2rem;
  }
}
@media screen and (max-width: 1000px) {
  .mv__title {
    right: 7rem;
    font-size: 6.5rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 768px) {
  .mv__title {
    display: none;
  }
}
.mv__title.is-hidden {
  opacity: 0;
}
.mv__title span {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  opacity: 0;
  display: inline-block;
}
.mv__img {
  display: block;
  width: 1200px;
  max-width: none;
  transform: scale(1.1);
  position: absolute;
  top: 10rem;
  right: 30%;
}
@media screen and (max-width: 1920px) {
  .mv__img {
    right: 350px;
  }
}
@media screen and (max-width: 1000px) {
  .mv__img {
    right: 200px;
  }
}
@media screen and (max-width: 768px) {
  .mv__img {
    width: 116vw;
    top: 0;
    right: 13.3333333333vw;
  }
}
.mv__img.sp {
  display: none;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .mv__img.sp {
    display: block;
    opacity: 0;
    transform: translate(-20px, 20px) scale(1.1);
    animation: spMvAnim 1.2s ease forwards;
  }
}

@keyframes spMvAnim {
  0% {
    opacity: 0;
    transform: translate(-30px, 20px) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px) scale(1.1);
  }
}
/* =============================================
  top
============================================= */
.top-msg {
  margin-top: 100svh;
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 15rem 0;
}
@media screen and (max-width: 768px) {
  .top-msg {
    margin-top: 93.3333333333vw;
    padding: 4rem 0;
  }
}
.top-msg__title {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-msg__title {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.75;
    font-family: "Shippori Mincho", sans-serif;
    margin-bottom: 7rem;
  }
}
.top-msg p {
  font-size: 2rem;
  line-height: 2.5;
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 768px) {
  .top-msg p {
    font-size: 1.8rem;
    line-height: 2;
    text-align: justify;
  }
}
.top-msg p:last-child {
  margin-bottom: 0;
}
.top-msg p.top__title--sp {
  font-family: "Shippori Mincho", sans-serif;
  font-weight: 600;
  font-size: 4rem;
  line-height: 1.8;
}
.top-style {
  padding: 40rem 0 27rem;
  overflow-x: hidden;
  position: relative;
  background-color: #fff;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .top-style {
    padding: 18rem 0 5rem;
  }
}
.top-style__inner {
  padding-left: 50rem;
  padding-top: 29rem;
}
@media screen and (max-width: 1000px) {
  .top-style__inner {
    padding-left: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .top-style__inner {
    padding: 0 3rem;
  }
}
.top-style__wind {
  position: absolute;
  top: -250px;
  right: -330px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top-style__wind {
    width: 20rem;
    top: -140px;
    right: -80px;
  }
}
.top-style__copy {
  font-family: "Shippori Mincho", sans-serif;
  font-weight: 600;
  line-height: 2;
  writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  left: 12rem;
  font-size: 5.5rem;
  letter-spacing: -1px;
}
@media screen and (max-width: 1000px) {
  .top-style__copy {
    left: 4rem;
    line-height: 1.8;
  }
}
@media screen and (max-width: 768px) {
  .top-style__copy {
    font-size: 2.6rem;
    position: static;
    writing-mode: horizontal-tb;
  }
}
.top-style__copy span {
  margin-top: -0.4em;
  margin-bottom: -0.4em;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .top-style__copy span {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: -0.3em;
    margin-right: -0.3em;
  }
}
.top-style__title {
  font-size: 4.2rem;
  color: var(--color-primary);
  font-weight: 600;
  font-family: "Shippori Mincho", sans-serif;
}
@media screen and (max-width: 768px) {
  .top-style__title {
    font-size: 2.6rem;
    margin-top: 6.5rem;
  }
}
.top-style__item {
  margin-top: 9rem;
}
@media screen and (max-width: 768px) {
  .top-style__item {
    margin-top: 8rem;
  }
}
.top-style__item:nth-of-type(1) {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .top-style__item:nth-of-type(1) {
    margin-top: 3rem;
  }
}
.top-style__item h3 {
  font-size: 3.2rem;
  line-height: 1.8;
  font-weight: 600;
  font-family: "Shippori Mincho", sans-serif;
}
@media screen and (max-width: 768px) {
  .top-style__item h3 {
    font-size: 2.3rem;
  }
}
.top-style__item p {
  margin-top: 3rem;
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .top-style__item p {
    margin-top: 2rem;
  }
}
.top-style__img {
  margin-top: 6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-style__img {
    margin-top: 4rem;
  }
}
.top-value {
  padding: 20rem 0 5rem;
  overflow-x: hidden;
  position: relative;
  background-color: #fff;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .top-value {
    padding: 15rem 0 5rem;
  }
}
.top-value__title {
  position: relative;
  color: #fff;
  z-index: 1;
  font-family: "Shippori Mincho", sans-serif;
}
.top-value__title::after {
  content: "";
  position: absolute;
  top: -240px;
  left: -230px;
  width: 949px;
  height: 474px;
  background: no-repeat url(../img/wind03.webp) center center/contain;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top-value__title::after {
    width: 43rem;
    left: -110px;
    top: -237px;
  }
}
.top-value__title span {
  font-size: 2.8rem;
  display: inline-block;
  padding-left: 2px;
}
@media screen and (max-width: 768px) {
  .top-value__title span {
    font-size: 1.4rem;
  }
}
.top-value__title h2 {
  font-size: 6.6rem;
  font-weight: 600;
  margin-top: -1rem;
}
@media screen and (max-width: 768px) {
  .top-value__title h2 {
    font-size: 2.6rem;
    margin-top: -0.5rem;
  }
}
.top-value__text {
  margin-top: 14rem;
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .top-value__text {
    margin-top: 8rem;
  }
}
.top-value__list {
  margin-top: 13rem;
}
@media screen and (max-width: 768px) {
  .top-value__list {
    margin-top: 7rem;
    grid-template-columns: 1fr;
    gap: 7rem;
  }
}
.top-value__item {
  margin-bottom: 9rem;
}
.top-value__item:last-child {
  margin-bottom: 0;
}
.top-value__item dt {
  font-size: 3.2rem;
  line-height: 1.8;
  font-weight: 600;
  font-family: "Shippori Mincho", sans-serif;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .top-value__item dt {
    font-size: 2.3rem;
    margin-bottom: 2rem;
  }
}
.top-value__item dd {
  line-height: 2;
  text-align: justify;
}
.top-value__item dd span {
  color: var(--color-primary);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .top-value__item dd span span {
    margin-right: -0.5em;
    margin-left: -0.5em;
  }
}
.top-consul {
  padding: 14rem 0 24rem;
}
@media screen and (max-width: 768px) {
  .top-consul {
    padding: 8rem 0 0;
  }
}
.top-consul__text {
  font-size: 1.8rem;
  text-align: center;
  margin: 4.5rem 0 7rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .top-consul__text {
    margin: 4.5rem 0 3rem;
    text-align: left;
  }
}
.top-consul__table {
  border-top: 1px solid var(--color-primary);
}
.top-consul__table .row {
  display: grid;
  grid-template-columns: 37rem 1fr;
  border-bottom: 1px solid var(--color-primary);
  min-height: 170px;
}
@media screen and (max-width: 768px) {
  .top-consul__table .row {
    grid-template-columns: 1fr;
    min-height: none;
  }
}
.top-consul__table .row__head {
  padding: 3rem 2rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: #fff;
  border-right: 1px solid var(--color-primary);
}
@media screen and (max-width: 768px) {
  .top-consul__table .row__head {
    border-right: none;
    border-bottom: 1px solid var(--color-primary);
    padding: 5.5rem 1rem 3rem;
  }
}
.top-consul__table .row__category {
  background-color: var(--color-primary);
  color: #fff;
  display: inline-block;
  width: 13rem;
  height: 2.6rem;
  line-height: 2.8rem;
  border-radius: 1.3rem;
  font-size: 1.4rem;
  text-align: center;
}
.top-consul__table .row__title {
  font-size: 2.4rem;
  font-family: "Shippori Mincho", sans-serif;
  color: var(--color-primary);
  line-height: 1.66;
}
@media screen and (max-width: 768px) {
  .top-consul__table .row__title {
    font-size: 2.2rem;
  }
}
.top-consul__table .row__body {
  background-color: #F5F4F0;
  display: flex;
  align-items: center;
  padding: 0 5rem;
}
@media screen and (max-width: 768px) {
  .top-consul__table .row__body {
    padding: 3rem 2rem;
  }
}
.top-consul__table .row__text {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .top-consul__table .row__text {
    font-size: 1.4rem;
  }
}
.top-news {
  padding: 14rem 0 24rem;
}
@media screen and (max-width: 768px) {
  .top-news {
    margin-top: 8rem;
    padding: 8rem 0 6rem;
  }
}
.top-news__title {
  margin-bottom: 9.5rem;
}
@media screen and (max-width: 768px) {
  .top-news__title {
    margin-bottom: 4.5rem;
  }
}
.top-news__btn {
  text-align: center;
  margin-top: 9rem;
}
@media screen and (max-width: 768px) {
  .top-news__btn {
    margin-top: 4.5rem;
  }
}
.top-company {
  padding: 40rem 0 15rem;
  overflow-x: hidden;
  position: relative;
  background-color: #fff;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .top-company {
    padding: 25rem 0 10rem;
  }
}
.top-company__inner {
  max-width: calc(800px + 8rem);
  padding-top: 10rem;
}
@media screen and (max-width: 768px) {
  .top-company__inner {
    padding-top: 0;
  }
}
.top-company__wind {
  position: absolute;
  top: -250px;
  right: -400px;
}
@media screen and (max-width: 768px) {
  .top-company__wind {
    max-width: 214px;
    right: -70px;
    top: -170px;
  }
}
.top-company__list {
  margin-top: 9.5rem;
  border-top: 1px solid var(--color-gray);
}
@media screen and (max-width: 768px) {
  .top-company__list {
    margin-top: 6.5rem;
  }
}
.top-company__list div {
  border-bottom: 1px solid var(--color-gray);
  padding: 3rem 0;
  display: grid;
  grid-template-columns: 12rem 1fr;
}
@media screen and (max-width: 768px) {
  .top-company__list div {
    padding: 2rem 0;
  }
}
.top-company__member {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .top-company__member {
    margin-top: 4.5rem;
  }
}
@media screen and (max-width: 768px) {
  .top-company__memberImg {
    text-align: center;
  }
}
.top-company__memberItem {
  display: grid;
  grid-template-columns: 22rem 1fr;
  gap: 4rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .top-company__memberItem {
    grid-template-columns: 1fr;
    margin-bottom: 3.5rem;
    gap: 2rem;
  }
}
.top-company__memberItem:last-child {
  margin-bottom: 0;
}
.top-company__memberName {
  display: flex;
  align-items: center;
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  .top-company__memberName {
    justify-content: center;
  }
}
.top-company__memberName span {
  font-size: 2rem;
}
.top-company__memberText {
  margin-top: 1.5rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .top-company__memberText {
    font-size: 1.4rem;
  }
}
.top-company__btn {
  margin-top: 10rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-company__btn {
    margin-top: 4.5rem;
  }
}
.top-company__group {
  margin-top: 11rem;
}
@media screen and (max-width: 768px) {
  .top-company__group {
    margin-top: 7rem;
  }
}
.top-company__groupTitle {
  font-size: 3.6rem;
  font-family: "Shippori Mincho", sans-serif;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-company__groupTitle {
    font-size: 3rem;
  }
}
.top-company__groupGrid {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 1fr 17rem;
  gap: 7rem;
}
@media screen and (max-width: 768px) {
  .top-company__groupGrid {
    margin-top: 3.5rem;
    gap: 3rem;
    display: flex;
    flex-direction: column-reverse;
  }
}
.top-company__groupText {
  line-height: 2;
}
.top-company__groupText h4 {
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .top-company__groupText h4 {
    text-align: center;
  }
}
.top-company__groupText p {
  margin-top: 1.5rem;
}
.top-company__groupText a {
  display: inline-block;
  margin-top: 2rem;
  color: var(--color-primary);
  transition: opacity ease 0.3s;
  position: relative;
}
.top-company__groupText a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(100%);
  background-color: var(--color-primary);
  transition: transform ease 0.3s;
  transform-origin: top left;
}
.top-company__groupText a:hover {
  opacity: 0.7;
}
.top-company__groupText a:hover::after {
  transform: scaleX(0);
  transform-origin: top right;
}
.top-company__groupImg {
  margin-top: 5.5rem;
}
@media screen and (max-width: 768px) {
  .top-company__groupImg {
    margin-top: 0;
    text-align: center;
  }
}
.top-contact {
  padding: 19rem 0 15rem;
  background-color: #F5F4F0;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .top-contact {
    padding: 10rem 0 6.5rem;
  }
}
.top-contact .flow {
  margin: 9rem auto 0;
  max-width: 1000px;
}
@media screen and (max-width: 768px) {
  .top-contact .flow {
    margin: 5rem auto 0;
  }
}
.top-contact .flow__title {
  text-align: center;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 3.2rem;
  margin-bottom: 5.5rem;
}
@media screen and (max-width: 768px) {
  .top-contact .flow__title {
    font-size: 2.4rem;
    margin-bottom: 3.5rem;
  }
}
.top-contact .flow__item {
  background-color: #fff;
  border-radius: 1rem;
  border: 1px solid var(--color-primary);
  padding: 2rem 0;
  position: relative;
  margin-bottom: 8.5rem;
  display: grid;
  grid-template-columns: 53% 1fr;
}
@media screen and (max-width: 768px) {
  .top-contact .flow__item {
    padding: 2.5rem 0;
    grid-template-columns: 1fr;
    margin-bottom: 7.5rem;
  }
}
.top-contact .flow__item::after {
  content: "";
  position: absolute;
  bottom: -6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 34px 48px 0 48px;
  border-color: #002870 transparent transparent transparent;
}
@media screen and (max-width: 768px) {
  .top-contact .flow__item::after {
    border-width: 29px 41px 0 41px;
    bottom: -5.5rem;
  }
}
.top-contact .flow__item:last-child {
  margin-bottom: 0;
}
.top-contact .flow__item:last-child::after {
  content: none;
}
.top-contact .flow__itemTitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 0.5rem;
  padding-left: 3.5rem;
}
@media screen and (max-width: 1350px) {
  .top-contact .flow__itemTitle {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.top-contact .flow__itemMessage {
  padding: 1.5rem 0 0 3.5rem;
  color: var(--color-primary);
  font-size: 2.6rem;
  font-family: "Shippori Mincho", sans-serif;
}
@media screen and (max-width: 768px) {
  .top-contact .flow__itemMessage {
    padding: 2rem;
    font-size: 2.4rem;
  }
}
.top-contact .flow__itemBody {
  padding: 0 4rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .top-contact .flow__itemBody {
    padding: 0 2rem;
  }
}
.top-contact__inner {
  max-width: calc(1166px + 8rem);
}
.top-contact__text {
  margin: 4.5rem 0 7rem;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .top-contact__text {
    margin: 2.5rem 0 4rem;
  }
}

/* =============================================
  form
============================================= */
.form__title {
  text-align: center;
  font-size: 3.2rem;
  margin: 15rem 0 6rem;
  font-family: "Shippori Mincho", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .form__title {
    font-size: 2.4rem;
    margin: 7rem 0 4.5rem;
  }
}
.form__radio {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  .form__radio {
    width: -moz-fit-content;
    width: fit-content;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 auto;
    gap: 1rem;
  }
}
.form__radio label {
  position: relative;
  padding-left: 3.5rem;
}
.form__radio label::before {
  content: "";
  position: absolute;
  top: -0.1rem;
  left: 0;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #707070;
}
.form__radio label::after {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.6rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background-color: #76B8D9;
  opacity: 0;
  transition: opacity ease 0.3s;
}
.form__radio input {
  display: none;
}
.form__radio input:checked + label::after {
  opacity: 1;
}
.form__grid {
  margin-top: 8.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 6rem;
}
@media screen and (max-width: 768px) {
  .form__grid {
    margin-top: 5rem;
    gap: 0;
    grid-template-columns: 1fr;
  }
}
.form__item {
  margin-bottom: 5rem;
}
.form__item .require {
  color: #EB4848;
}
.form__item label {
  margin-bottom: 0.5rem;
  display: block;
}
.form__item input[type=text],
.form__item input[type=email],
.form__item input[type=tel] {
  background-color: #fff;
  width: 100%;
  height: 6rem;
  border-radius: 0.7rem;
  border: 1px solid #C7C7C7;
  padding: 0 1.5rem;
}
.form__item textarea {
  background-color: #fff;
  width: 100%;
  height: 24rem;
  border-radius: 0.7rem;
  border: 1px solid #C7C7C7;
  resize: none;
  padding: 1.5rem;
}
.form__privacy {
  text-align: center;
  margin-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .form__privacy {
    margin-bottom: 5rem;
    margin-top: -2rem;
  }
}
.form__privacy input {
  display: none;
}
.form__privacy input:checked + label::after {
  opacity: 1;
}
.form__privacy label {
  position: relative;
  padding-left: 3rem;
}
.form__privacy label::before {
  content: "";
  width: 2rem;
  height: 2rem;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #707070;
}
.form__privacy label::after {
  content: "";
  height: 0.8rem;
  width: 1.6rem;
  position: absolute;
  top: 2px;
  left: 2px;
  transform: rotate(-45deg);
  border-left: 2.5px solid #76B8D9;
  border-bottom: 2.5px solid #76B8D9;
  opacity: 0;
  transition: opacity ease 0.3s;
}
.form__privacy label a {
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  transition: opacity ease 0.3s;
}
.form__privacy label a:hover {
  opacity: 0.7;
}
.form__btn {
  text-align: center;
}
.form .error {
  color: #EB4848;
  display: block;
  font-size: 1.4rem;
  margin-top: 1rem;
}

/* =============================================
  confirm
============================================= */
.confirm {
  padding: 10rem 0;
}
@media screen and (max-width: 768px) {
  .confirm {
    padding: 3rem 0 5rem;
  }
}
.confirm__item {
  padding: 3.5rem 0;
  border-top: 1px solid #707070;
  display: grid;
  grid-template-columns: 20rem 1fr;
}
@media screen and (max-width: 768px) {
  .confirm__item {
    padding: 3rem 0;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.confirm__item:first-of-type {
  border-top: none;
}
.confirm__btn {
  margin-top: 6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .confirm__btn {
    margin-top: 3rem;
    gap: 2rem;
  }
}

/* =============================================
  thanks & 404
============================================= */
.thanks,
.nf404 {
  padding: 10rem 0;
}
@media screen and (max-width: 768px) {
  .thanks,
  .nf404 {
    padding: 3rem 0 5rem;
  }
}
.thanks p,
.nf404 p {
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .thanks p,
  .nf404 p {
    text-align: left;
  }
}
.thanks__btn,
.nf404__btn {
  margin-top: 6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .thanks__btn,
  .nf404__btn {
    margin-top: 3rem;
  }
}

/* =============================================
  footer
============================================= */
.footer {
  background-color: #fff;
  position: relative;
  z-index: 3;
}
.footer__inner {
  padding: 0 4rem;
  height: 13.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 3rem;
    height: auto;
    gap: 1.5rem 0.5rem;
    align-items: center;
  }
}
.footer__logo {
  transition: opacity ease 0.3s;
}
.footer__logo:hover {
  opacity: 0.7;
}
.footer__copy {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .footer__copy {
    font-size: 1rem;
  }
}
.footer__link {
  font-size: 1.2rem;
  border: 1px solid var(--color-black);
  display: block;
  width: 11.5rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  transition: opacity ease 0.3s, background-color ease 0.3s;
}
@media screen and (max-width: 768px) {
  .footer__link {
    margin-top: 0;
    margin-left: 0;
    font-size: 1rem;
    width: 9rem;
    min-width: 9rem;
    word-break: keep-all;
  }
}
.footer__link:hover {
  background-color: var(--color-black);
  color: #fff;
}

/* =============================================
  page
============================================= */
.page {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .page {
    margin-top: 6rem;
  }
}
.page__head {
  width: 100%;
  height: 20rem;
  background-color: #E6E3DA;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .page__head {
    height: 6rem;
  }
}
.page__head::before, .page__head::after {
  content: "";
  width: 300px;
  height: 100%;
  background-color: #76B8D0;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .page__head::before, .page__head::after {
    width: 8.3rem;
  }
}
.page__head::before {
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.page__head::after {
  bottom: 0;
  right: 0;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.page__title {
  font-family: "Shippori Mincho", sans-serif;
  font-size: 4.6rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .page__title {
    font-size: 1.8rem;
  }
}

/* =============================================
  entry
============================================= */
.entry {
  padding: 10rem 0;
}
@media screen and (max-width: 768px) {
  .entry {
    padding: 3rem 0 5rem;
  }
}
.entry__title {
  text-align: center;
  font-size: 3.8rem;
  font-family: "Shippori Mincho", sans-serif;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .entry__title {
    font-size: 2.4rem;
  }
}
.entry__date {
  display: block;
  font-size: 2rem;
  margin: 4.5rem 0 6rem;
  color: #707070;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .entry__date {
    font-size: 1.6rem;
    margin: 3rem 0;
  }
}
.entry__body h2, .entry__body h3, .entry__body h4, .entry__body h5, .entry__body h6, .entry__body p, .entry__body img, .entry__body ul, .entry__body ol, .entry__body iframe, .entry__body figure, .entry__body table {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .entry__body h2, .entry__body h3, .entry__body h4, .entry__body h5, .entry__body h6, .entry__body p, .entry__body img, .entry__body ul, .entry__body ol, .entry__body iframe, .entry__body figure, .entry__body table {
    margin-bottom: 4rem;
  }
}
.entry__body h2:last-child, .entry__body h3:last-child, .entry__body h4:last-child, .entry__body h5:last-child, .entry__body h6:last-child, .entry__body p:last-child, .entry__body img:last-child, .entry__body ul:last-child, .entry__body ol:last-child, .entry__body iframe:last-child, .entry__body figure:last-child, .entry__body table:last-child {
  margin-bottom: 0;
}
.entry__body p {
  line-height: 2;
}
.entry__body ul {
  padding-left: 1em;
  list-style: initial;
}
.entry__body ol {
  padding-left: 1em;
  list-style: decimal;
}
.entry__btn {
  text-align: center;
  margin-top: 6.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .entry__btn {
    margin-top: 5rem;
  }
}
.entry__btn .prev-link,
.entry__btn .next-link {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity ease 0.3s;
}
@media screen and (max-width: 768px) {
  .entry__btn .prev-link,
  .entry__btn .next-link {
    font-size: 1.4rem;
  }
}
.entry__btn .prev-link:hover,
.entry__btn .next-link:hover {
  opacity: 0.7;
}
.entry__btn .prev-link::after,
.entry__btn .next-link::after {
  content: "";
  width: 103px;
  height: 22px;
  position: absolute;
  top: 10px;
}
@media screen and (max-width: 768px) {
  .entry__btn .prev-link::after,
  .entry__btn .next-link::after {
    width: 51px;
    height: 17px;
  }
}
.entry__btn .prev-link {
  left: 7.5rem;
}
@media screen and (max-width: 768px) {
  .entry__btn .prev-link {
    left: 2.5rem;
  }
}
.entry__btn .prev-link::after {
  background: no-repeat url(../img/prev_arrow.svg) center center/contain;
  right: -30px;
}
@media screen and (max-width: 768px) {
  .entry__btn .prev-link::after {
    right: 0;
  }
}
.entry__btn .next-link {
  right: 7.5rem;
}
@media screen and (max-width: 768px) {
  .entry__btn .next-link {
    right: 2.5rem;
  }
}
.entry__btn .next-link::after {
  background: no-repeat url(../img/next_arrow.svg) center center/contain;
  left: -30px;
}
@media screen and (max-width: 768px) {
  .entry__btn .next-link::after {
    left: 0;
  }
}

/* =============================================
  recruit
============================================= */
.rct__title {
  font-family: "Shippori Mincho", sans-serif;
  font-size: 5rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .rct__title {
    font-size: 3.2rem;
  }
}
.rct__copy {
  font-family: "Shippori Mincho", sans-serif;
  font-size: 6.2rem;
  line-height: 2;
  color: var(--color-primary);
  margin-top: 8rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .rct__copy {
    font-size: 4rem;
    margin-top: 22.5rem;
    line-height: 1.8;
  }
}
.rct__text {
  font-size: 2rem;
  line-height: 2.5;
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .rct__text {
    margin-top: 3rem;
    font-size: 1.8rem;
  }
}
.rct__text:first-of-type {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .rct__text:first-of-type {
    margin-top: 4rem;
  }
}
.rct__mv {
  padding: 8rem 0 15rem;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .rct__mv {
    padding: 3rem 0 9rem;
  }
}
.rct__mvInner {
  position: relative;
  z-index: 1;
}
.rct__mvInner::after {
  content: "";
  position: absolute;
  bottom: -55px;
  right: -240px;
  aspect-ratio: 835/605;
  width: 75%;
  background: no-repeat url(../img/wind06.webp) center center/contain;
  z-index: -1;
  animation: rctWindAnim 1.2s ease forwards;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .rct__mvInner::after {
    width: 347px;
    bottom: auto;
    top: 2rem;
    right: -70px;
  }
}
.rct__info {
  padding: 20rem 0 15rem;
  background-color: #F0F5FD;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .rct__info {
    padding: 10rem 0 5rem;
  }
}
.rct__infoInner {
  max-width: calc(900px + 8rem);
}
.rct__infoInner::before {
  content: "";
  position: absolute;
  top: 1000px;
  left: -250px;
  width: 346px;
  height: 231px;
  background: no-repeat url(../img/wind07.webp) center center/contain;
}
@media screen and (max-width: 768px) {
  .rct__infoInner::before {
    width: 182px;
    left: -55px;
    top: 46%;
  }
}
.rct__infoList {
  margin: 5rem 0 15rem;
}
@media screen and (max-width: 768px) {
  .rct__infoList {
    margin: 0 0 20rem;
  }
}
.rct__infoList:last-child {
  margin: 5rem 0 0;
}
@media screen and (max-width: 768px) {
  .rct__infoList:last-child {
    margin: 0;
  }
}
.rct__infoList div {
  border-bottom: 1px solid var(--color-gray);
  padding: 5rem 0;
}
.rct__infoList div:last-child {
  border-bottom: none;
}
.rct__infoList div dt {
  font-size: 2.8rem;
  font-family: "Shippori Mincho", sans-serif;
  color: var(--color-primary);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .rct__infoList div dt {
    font-size: 2.2rem;
  }
}
.rct__infoList div dd {
  margin-top: 3.5rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .rct__infoList div dd {
    margin-top: 2.5rem;
  }
}
.rct__secTitle {
  font-family: "Shippori Mincho", sans-serif;
  font-size: 4.2rem;
  text-align: center;
  color: var(--color-primary);
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .rct__secTitle {
    font-size: 2.8rem;
  }
}
.rct__company {
  padding: 10rem 0;
}
@media screen and (max-width: 768px) {
  .rct__company {
    padding: 7rem 0;
  }
}
.rct__companyFlex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12rem;
}
@media screen and (max-width: 768px) {
  .rct__companyLogo {
    display: none;
  }
}
.rct__companyList {
  position: relative;
}
.rct__companyList::after {
  content: "";
  position: absolute;
  top: 0;
  left: 8.5rem;
  height: 100%;
  width: 1px;
  background-color: var(--color-gray);
}
@media screen and (max-width: 768px) {
  .rct__companyList::after {
    left: 5.8rem;
  }
}
.rct__companyList div {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 7rem;
}
@media screen and (max-width: 768px) {
  .rct__companyList div {
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .rct__companyList div dt, .rct__companyList div dd {
    font-size: 1.5rem;
  }
}
.rct__companyBtn {
  margin-top: 10rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .rct__companyBtn {
    margin-top: 4rem;
  }
}

@keyframes rctWindAnim {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
/* =============================================
  privacy
============================================= */
.privacy {
  background-color: #E6E3DA;
  padding: 10rem 0;
}
@media screen and (max-width: 768px) {
  .privacy {
    padding: 4rem 0;
  }
}
.privacy__inner {
  max-width: calc(1000px + 8rem);
}
.privacy__title {
  text-align: center;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 5.2rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .privacy__title {
    font-size: 2.6rem;
  }
}
.privacy__subtitle {
  text-align: center;
  font-family: "Shippori Mincho", sans-serif;
  font-size: 1.8rem;
  margin: 1.5rem 0 7rem;
}
@media screen and (max-width: 768px) {
  .privacy__subtitle {
    font-size: 1.4rem;
    margin: 1rem 0 4rem;
  }
}
.privacy__body h2 {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
}
.privacy__body p, .privacy__body address {
  margin-bottom: 3rem;
  font-size: 1.4rem;
  line-height: 2;
}
.privacy__body p:last-child, .privacy__body address:last-child {
  margin-bottom: 0;
}

/* =============================================
  manual
============================================= */
.manual-index__title {
  background-color: var(--color-primary);
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}
.manual-index__title span {
  font-size: 12px;
  margin-left: 15px;
}
.manual-index__nav {
  border: 1px solid #ccc;
  padding: 20px 20px;
}
.manual-index__list {
  list-style-type: decimal;
  padding-left: 1em;
}
.manual-index__item {
  margin-bottom: 10px;
}
.manual-index__item:last-child {
  margin-bottom: 0;
}
.manual-index__item ul {
  margin-top: 10px;
}
.manual-index__item ul li {
  margin-bottom: 10px;
}
.manual-index__item ul li:last-child {
  margin-bottom: 0;
}
.manual-index__item ul li a {
  color: #606060;
  transition: opacity ease 0.3s;
}
.manual-index__item ul li a:hover {
  opacity: 0.7;
}
.manual-index__link {
  font-weight: 500;
  transition: opacity ease 0.3s;
}
.manual-index__link:hover {
  opacity: 0.7;
}
.manual-content {
  margin-top: 100px;
}
.manual-content > * {
  margin-bottom: 30px;
}
.manual-content > *:last-child {
  margin-bottom: 0;
}
.manual-content h2 {
  font-weight: 500;
  font-size: 20px;
  background-color: var(--color-primary);
  color: #fff;
  padding: 10px 20px;
}
.manual-content h2:nth-child(n+1) {
  margin-top: 70px;
}
.manual-content h3 {
  font-weight: 500;
  font-size: 18px;
  position: relative;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 3px;
  margin-top: 30px;
}
.manual-content p {
  line-height: 1.8;
}
.manual-content a {
  color: var(--color-primary);
  transition: opacity ease 0.3s;
}
.manual-content a:hover {
  opacity: 0.7;
}
.manual-content ol {
  counter-reset: li_count var(--start, 0);
}
.manual-content ol li {
  line-height: 1.8;
  display: grid;
  grid-template-columns: 1.8em 1fr;
}
.manual-content ol li::before {
  counter-increment: li_count;
  content: "[" counter(li_count) "]";
  color: #F51010;
  margin-right: 5px;
  font-weight: 500;
}
.manual-content ol.ol--orange {
  border: 2px solid #FF9300;
  background-color: #fff8ee;
  padding: 20px;
}
.manual-content ol.ol--orange li {
  font-size: 14px;
}
.manual-content ol.ol--orange li::before {
  color: #FF9300;
}