:root {
  --font-family-base: Noto Sans JP, sans-serif;
  --font-weight-base: 400;
  --lineheight-base: 1.625;
  --font-size-base: 1.4rem;
  --color-primary: #004e9b;
  --color-secondary: #00a296;
  --color-warning: #f00;
  --color-danger: #c70000;
  --input-border-color: #a6aaad;
  --input-border-width: 0.1rem;
  --input-font-size: 14px;
  --input-font-weight: 400;
  --input-background: #fff;
}
@media (min-width: 768px) {
  :root {
    --font-size-base: 1.6rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  overflow-x: hidden;
}
html.noscroll {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  background-color: #fff;
  color: #000;
  margin: 0;
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-base);
  font-size: var(--font-size-base);
  line-height: var(--lineheight-base);
  text-align: left;
  position: relative;
  overflow-x: hidden;
  padding-top: var(--headH);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
  margin: 0;
}

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

b,
strong {
  font-weight: 700;
}

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

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

table {
  border-collapse: collapse;
}

th {
  font-weight: 400;
  text-align: inherit;
  text-align: -webkit-match-parent;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

textarea {
  overflow: auto;
  resize: vertical;
}

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

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

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

[hidden] {
  display: none !important;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

.alignleft {
  text-align: left;
}

img.aligncenter {
  display: block;
  margin: auto;
}
img.alignright {
  display: block;
  margin-left: auto;
}
img.alignleft {
  display: block;
  margin-right: auto;
}

.container {
  margin: auto;
  max-width: 103rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  width: 100%;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
}
@media (min-width: 1280px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
}
.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1280px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

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

.btn {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #000;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
}
.btn:focus, .btn.focus {
  outline: 0;
}
.btn.disabled, .btn:disabled {
  opacity: 0.6;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn-submit {
  background-color: #1d4b9a;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  margin: 1.5rem auto 0;
  width: 100%;
  max-width: 20rem;
  height: 6rem;
}
@media (min-width: 768px) {
  .btn-submit {
    font-size: 3.6rem;
    max-width: 30rem;
    height: 8rem;
  }
}
.btn-submit::after {
  content: "";
  background-color: #FFF;
  -webkit-mask: url(../images/home/ic_arrow.svg) no-repeat center/contain;
  mask: url(../images/home/ic_arrow.svg) no-repeat center/contain;
  aspect-ratio: 11/13;
  width: 1.1rem;
  position: relative;
  margin-left: 2rem;
  position: relative;
  top: 0.3rem;
}

.btn-next {
  background-color: #284a98;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  width: 100%;
  max-width: 20rem;
  height: 6rem;
}
@media (min-width: 768px) {
  .btn-next {
    font-size: 3.6rem;
    max-width: 30rem;
    height: 8rem;
  }
}
.btn-next::before {
  content: "";
  background-color: #FFF;
  -webkit-mask: url(../images/home/ic_arrow.svg) no-repeat center/contain;
  mask: url(../images/home/ic_arrow.svg) no-repeat center/contain;
  aspect-ratio: 11/13;
  width: 1.1rem;
  margin-right: 2rem;
  position: relative;
  top: 0.3rem;
  transform: rotate(180deg);
}

.btn-back {
  background-color: #ce6d38;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  width: 100%;
  max-width: 20rem;
  height: 6rem;
}
@media (min-width: 768px) {
  .btn-back {
    font-size: 3.6rem;
    max-width: 30rem;
    height: 8rem;
  }
}
.btn-back::after {
  content: "";
  background-color: #FFF;
  -webkit-mask: url(../images/home/ic_arrow.svg) no-repeat center/contain;
  mask: url(../images/home/ic_arrow.svg) no-repeat center/contain;
  aspect-ratio: 11/13;
  width: 1.1rem;
  position: relative;
  margin-left: 2rem;
  position: relative;
  top: 0.3rem;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
  display: block;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  padding: 1.75rem 1rem;
  width: 100%;
}
@media (min-width: 768px) {
  .btn-primary {
    max-width: 21.5rem;
  }
}

.p-header {
  background-color: #fff;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
  padding-block: 1.5rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
.p-header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .p-header__wrap {
    align-items: flex-end;
  }
}
.p-header__logo {
  width: 18rem;
  font-size: inherit;
}
@media (min-width: 768px) {
  .p-header__logo {
    width: 25.7rem;
  }
}
@media (max-width: 991px) {
  .p-header__nav {
    position: fixed;
    inset: 0;
    overflow-y: auto;
    pointer-events: none;
    transition: 0.2s all ease-in-out 0s;
  }
}
.p-header__nav-overlay {
  background-color: #fff;
  position: fixed;
  top: var(--headH);
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(100% - var(--headH));
  transform: scale(1, 0);
  transform-origin: top center;
  transition: 0.7s transform cubic-bezier(0.96, 0, 0.6, 1) 0s, 0.7s bottom cubic-bezier(0.96, 0, 0.6, 1) 0s;
  pointer-events: none;
  z-index: -1;
}
@media (min-width: 992px) {
  .p-header__nav-overlay {
    display: none;
  }
}
@media (max-width: 991px) {
  .p-header__nav-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: var(--headH);
    opacity: 0;
    transition: 0.3s opacity linear 0s;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .p-header__hamburger {
    display: none;
  }
}
.p-header.openMenu .p-header__nav {
  pointer-events: all;
}
.p-header.openMenu .p-header__nav-overlay {
  transform-origin: center bottom;
  transform: scale(1, 1);
}
.p-header.openMenu .p-header__nav-wrap {
  opacity: 1;
  transition: 0.5s opacity linear 0.7s;
}

.gl-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 992px) {
  .gl-nav {
    flex-direction: row;
    gap: 3.3rem;
  }
}
.gl-nav__item a {
  border-bottom: 2px solid transparent;
}
@media (min-width: 992px) {
  .gl-nav__item a {
    font-size: 1.6rem;
    line-height: 1.75;
    transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out;
  }
}
@media (hover: hover) and (pointer: fine) {
  .gl-nav__item a:hover {
    color: #0098e1;
    opacity: 0.7;
  }
}
.gl-nav__item.is-active a {
  border-bottom-color: var(--color-primary);
}

.hamburger-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1100;
  width: 2.8rem;
  height: 2rem;
}
.hamburger-box.is-active .hamburger-inner {
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: rotate(45deg);
}
.hamburger-box.is-active .hamburger-inner:before {
  transition: top 75ms ease, opacity 75ms ease 0.12s;
  opacity: 0;
  top: 0;
}
.hamburger-box.is-active .hamburger-inner:after {
  transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transform: rotate(-90deg);
  bottom: 0;
}

.hamburger-inner:after, .hamburger-inner:before {
  display: block;
  content: "";
}

.hamburger-inner:after, .hamburger-inner:before, .hamburger-inner {
  width: 2.8rem;
  height: 0.2rem;
  background-color: #000;
  transition: transform 0.15s ease;
  border-radius: 1.5px;
}

.hamburger-inner {
  position: relative;
  display: block;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 75ms;
}
.hamburger-inner:before {
  position: absolute;
  top: -0.8rem;
  transition: top 75ms ease 0.12s, opacity 75ms ease;
}
.hamburger-inner:after {
  position: absolute;
  bottom: -0.8rem;
  transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.p-footer {
  background-color: #e1e1e1;
  overflow: hidden;
  padding-block: 4rem 2rem;
}
@media (min-width: 768px) {
  .p-footer {
    padding-block: 2rem 4rem;
  }
}
.p-footer__wrap {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .p-footer__wrap {
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
  }
}
.p-footer__logo {
  width: 22rem;
}
@media (min-width: 768px) {
  .p-footer__logo {
    width: 25.7rem;
    flex-shrink: 0;
  }
}
.p-footer__address {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .p-footer__address {
    font-size: 1.4rem;
    line-height: 1.2857142857;
    margin-top: 1.5rem;
  }
}
@media (min-width: 992px) {
  .p-footer__address {
    margin-top: 3.7rem;
  }
}
@media (min-width: 768px) {
  .p-footer__nav {
    padding-top: 2.7rem;
  }
}
@media (min-width: 992px) {
  .p-footer__nav {
    flex: 1;
  }
}
.p-footer__copyright {
  border-top: 1px solid #adadad;
  font-size: 1.2rem;
  line-height: 1;
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .p-footer__copyright {
    padding-top: 0.8rem;
    margin-top: 1.6rem;
  }
}

.ft-nav {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
@media (min-width: 768px) {
  .ft-nav {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3.3rem;
  }
}
@media (min-width: 992px) {
  .ft-nav {
    justify-content: flex-end;
  }
}
@media (max-width: 767px) {
  .ft-nav {
    margin-top: 2rem;
  }
}
.ft-nav__item a {
  font-weight: 500;
}
@media (min-width: 768px) {
  .ft-nav__item a {
    font-size: 1.6rem;
    line-height: 1.75;
    transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out;
  }
}
@media (hover: hover) and (pointer: fine) {
  .ft-nav__item a:hover {
    color: #0098e1;
    opacity: 0.7;
  }
}

.form-control {
  background-color: var(--input-background);
  background-clip: padding-box;
  border: var(--input-border-width) solid var(--input-border-color);
  color: #000;
  display: block;
  font-family: var(--font-family-base);
  font-size: var(--input-font-size);
  font-weight: var(--input-font-weight);
  line-height: 1.5;
  padding: 0.5rem 1rem;
  width: 100%;
  height: 3.8rem;
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
.form-control::-moz-placeholder {
  color: #a6aaad;
  opacity: 1;
}
.form-control::placeholder {
  color: #a6aaad;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #1E1E1E;
  opacity: 1;
}
.form-control:focus-visible {
  outline: none;
}
.form-control[required] {
  background-color: #faeaef;
}
.form-control.valid {
  background-color: #FFF;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  max-width: 100%;
  min-height: 8rem;
}
@media (min-width: 768px) {
  textarea {
    min-height: 11.5rem;
  }
}

label.error {
  color: var(--color-danger);
  display: block;
  margin-top: 0.5rem;
}

.c-checkbox input {
  margin-right: 0.5rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.hline01 {
  background-color: #038cdf;
  clip-path: polygon(4% 0, 100% 0, 100% 50%, 96% 100%, 0 100%, 0 50%);
  color: #000;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hline01 {
    clip-path: polygon(1.5% 0, 100% 0, 100% 60%, 98.5% 100%, 0 100%, 0 40%);
    font-size: 3.6rem;
  }
}
.hline01::after {
  content: "";
  background-color: #fff;
  clip-path: polygon(4% 0, 100% 0, 100% 50%, 96% 100%, 0 100%, 0 50%);
  position: absolute;
  inset: 0.1rem;
  z-index: -1;
}
@media (min-width: 768px) {
  .hline01::after {
    clip-path: polygon(1.5% 0, 100% 0, 100% 60%, 98.5% 100%, 0 100%, 0 40%);
  }
}

.hline02 {
  background: #0057A4;
  background: linear-gradient(90deg, rgb(0, 87, 164) 0%, rgb(3, 140, 223) 100%);
  clip-path: polygon(4% 0, 100% 0, 100% 50%, 96% 100%, 0 100%, 0 50%);
  line-height: 1;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  height: 3.7rem;
  padding: 0 2rem 0.2rem;
}
@media (min-width: 768px) {
  .hline02 {
    font-size: 2.4rem;
    clip-path: polygon(1.5% 0, 100% 0, 100% 60%, 98.5% 100%, 0 100%, 0 40%);
    padding-inline: 4.5rem;
  }
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

@media (min-width: 768px) {
  .hover {
    transition: 0.3s ease;
  }
  .hover:hover {
    opacity: 0.7;
  }
}

.nospace::before, .nospace::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.nospace::before {
  margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}
.nospace::after {
  margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.main {
  padding-bottom: 4.8rem;
}
@media (min-width: 768px) {
  .main {
    padding-bottom: 9.6rem;
  }
}

.offset-anchor {
  margin-top: calc((var(--headH) + 1rem) * -1);
  padding-top: calc(var(--headH) + 1rem);
}

.c-wave {
  position: relative;
  overflow: hidden;
}
.c-wave::after {
  content: "";
  background: url("../images/common/wave_bg.png") no-repeat center/cover;
  width: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 767px) {
  .c-wave::after {
    background-size: 100%;
  }
}

.c-mv {
  background: #D0E8FF;
  background: linear-gradient(180deg, rgb(208, 232, 255) 0%, rgb(171, 210, 240) 100%);
  position: relative;
  overflow: hidden;
  z-index: 2;
}
@media (min-width: 768px) {
  .c-mv {
    height: 17.6rem;
  }
}
@media (min-width: 768px) {
  .c-mv__media {
    max-width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media (min-width: 1280px) {
  .c-mv__media {
    max-width: 61.09375;
  }
}
.c-mv__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 768px) {
  .c-mv__wrap {
    position: absolute;
    inset: 0;
    padding-left: 3.2rem;
    max-width: 98rem;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .c-mv__wrap {
    padding-block: 1.5rem;
  }
}
.c-mv__ttl {
  display: flex;
  align-items: center;
  font-weight: normal;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 768px) {
  .c-mv__ttl {
    align-items: flex-start;
  }
}
.c-mv__ttl-jp {
  font-size: 2.4rem;
  line-height: 1.5277777778;
}
@media (min-width: 768px) {
  .c-mv__ttl-jp {
    font-size: 3rem;
  }
}
@media (min-width: 1280px) {
  .c-mv__ttl-jp {
    font-size: 3.6rem;
  }
}
.c-mv__ttl-en {
  font-size: 1.6rem;
  line-height: 1.3333333333;
}
@media (min-width: 768px) {
  .c-mv__ttl-en {
    font-size: 1.8rem;
  }
}

.c-head {
  padding-block: 3.2rem 2rem;
}
@media (min-width: 768px) {
  .c-head {
    padding-block: 3.2rem 1.2rem;
  }
}
.c-head__wrap {
  display: flex;
}
@media (min-width: 768px) {
  .c-head__wrap {
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
  }
}
.c-head__txt {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.3333333333;
}
@media (min-width: 768px) {
  .c-head__txt {
    flex: 1;
    font-size: 3.6rem;
    padding-bottom: 2.9rem;
  }
}
.c-head--bg .c-head__wrap {
  background-repeat: no-repeat;
  background-position: center bottom;
}
@media (min-width: 768px) {
  .c-head--bg .c-head__wrap {
    background-position: right center;
  }
}
.c-head--services .c-head__wrap {
  background-image: url("../images/services/service_icon.png");
  background-size: 66.6666666667vw auto;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .c-head--services .c-head__wrap {
    background-size: 28.984375vw auto;
  }
}
@media (min-width: 1280px) {
  .c-head--services .c-head__wrap {
    background-size: 37.1rem auto;
  }
}
@media (max-width: 767px) {
  .c-head--services .c-head__txt {
    padding-bottom: 32vw;
  }
}
.c-head--projects .c-head__wrap {
  background-image: url("../images/projects/projects_icon.png");
  background-size: 66.6666666667vw auto;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .c-head--projects .c-head__wrap {
    background-size: 30.46875vw auto;
  }
}
@media (min-width: 1280px) {
  .c-head--projects .c-head__wrap {
    background-size: 39rem auto;
  }
}
@media (max-width: 767px) {
  .c-head--projects .c-head__txt {
    padding-bottom: 32vw;
  }
}
.c-head--machinery .c-head__wrap {
  background-image: url("../images/machinery/machinery_icon.png");
  background-size: 66.6666666667vw auto;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .c-head--machinery .c-head__wrap {
    background-size: 32.96875vw auto;
  }
}
@media (min-width: 1280px) {
  .c-head--machinery .c-head__wrap {
    background-size: 42.2rem auto;
  }
}
@media (max-width: 767px) {
  .c-head--machinery .c-head__txt {
    padding-bottom: 26.6666666667vw;
  }
}

.news-list {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .news-list {
    margin-bottom: 0;
  }
}
.news-item {
  border-bottom: 1px solid #bbc3cb;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.news-item:last-child {
  margin-bottom: 0;
}
.news-link {
  display: grid;
  gap: 0.5rem 1.5rem;
  justify-content: flex-start;
  grid-template-areas: "date cate" "txt txt";
  grid-template-columns: auto 1fr;
}
.news-link:hover .txt {
  color: #0098e1;
  opacity: 0.7;
}
.news-link .date {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: date;
}
.news-link .cate {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  color: var(--color-secondary);
  grid-area: cate;
}
.news-link .txt {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: txt;
  transition: 0.3s ease;
}

.tab-head {
  border-bottom: 1px solid #bbc3cb;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .tab-head {
    gap: 3rem;
    margin-bottom: 3rem;
  }
}
.tab-head li a {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  display: block;
}
@media (min-width: 768px) {
  .tab-head li a {
    font-size: 2.4rem;
  }
}
.tab-title {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .tab-title {
    font-size: 3.6rem;
  }
}
.tab-box {
  display: none;
}

.c-rel {
  display: flex;
  row-gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1.5rem -0.75rem 0;
}
@media (min-width: 768px) {
  .c-rel {
    margin-top: 3rem;
  }
}
.c-rel li {
  flex: 0 0 50%;
  padding-inline: 0.75rem;
}
@media (min-width: 768px) {
  .c-rel li {
    flex: 0 0 25%;
  }
}

.page-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  transform: translate3d(0, 150px, 0);
  transition: transform 0.4s cubic-bezier(0.55, 0, 0.1, 1) 0s;
  display: flex;
  gap: 1.5rem;
  flex-direction: column;
  z-index: 99;
}
@media (min-width: 768px) {
  .page-top {
    right: 2rem;
    bottom: 2rem;
  }
}
.page-top.is-visible {
  transform: translate3d(0, 0, 0);
}
.page-top.is-showcate .page-top__anchor {
  opacity: 1;
  visibility: visible;
}
.page-top__anchor, .page-top__btn {
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  width: 12rem;
  height: 3rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .page-top__anchor, .page-top__btn {
    font-size: 1.4rem;
    width: 13.4rem;
    height: 4rem;
  }
}
.page-top__anchor {
  background-color: #22ac38;
  border: 1px solid #fff;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.page-top__btn {
  background-color: var(--color-primary);
}