@charset "UTF-8";
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

RESET CSS

html5doctor.com Reset Stylesheet

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  width: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
} /* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
} /* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

button {
  padding: 0;
}

/* ------------------------- 使い方 ----------------------------------------------------------

    @include sizing(width, wide, 365px, sp, 276px);
    ==> width: clamp(276px, 7.46vw + 248px, 365px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を上限下限をつけて設定）

    @include sizing(width, wide, 365px, sp, 276px, noClamp);
    ==> width: calc(7.46vw + 248px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を設定）

    @include sizingRem(font-size, wide, 14px, sp, 12px);
    ==> font-size: clamp(0.75rem, 0.17vw + 0.70625rem, 0.875rem;
    （ビューポートがwide(1568px)のとき14px, sp(375px)のとき12pxになる自動補完値をremに変換して設定）
　　
    ※使いたいsassファイル上で@useしてください。
    ※scssファイル上での読みやすさ重視のため、mixinの引数に単位[px]が必要な仕様にしてあります。

// ---------------------------------------------------------------------------------------- */
/*animations
-----------------------------------------------------*/
@-webkit-keyframes popover {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  80% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes popover {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  80% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes popover2 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  80% {
    opacity: 1;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes popover2 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  80% {
    opacity: 1;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes fade-in-scale {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes fade-in-scale {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes up-down {
  0% {
    translate: 0 0;
  }
  10% {
    translate: 0 -1em;
  }
  20% {
    translate: 0 0;
  }
  100% {
    translate: 0 0;
  }
}
@keyframes up-down {
  0% {
    translate: 0 0;
  }
  10% {
    translate: 0 -1em;
  }
  20% {
    translate: 0 0;
  }
  100% {
    translate: 0 0;
  }
}
.js-observe.--up {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.3s cubic-bezier(0.12, 0, 0.39, 0);
  transition: all 0.3s cubic-bezier(0.12, 0, 0.39, 0);
}
.js-observe.--up.-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

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

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  scroll-padding-top: 66px;
  background-color: #fff;
  font-weight: 400;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}
@supports (text-autospace: normal) {
  html {
    text-autospace: normal;
  }
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 103px;
  }
}

body {
  color: #000;
  background-color: #fff;
  text-rendering: optimizeLegibility;
  font-family: "Noto Sans JP", sans-serif, sans-serif;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.035em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -ms-interpolation-mode: nearest-neighbor;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
}

video {
  max-width: 100%;
  height: auto;
}

:where(a),
:where(a:link),
:where(a:visited) {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

:where(a:active),
:where(a:hover) {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
li {
  list-style-type: none;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

img {
  border: 0;
  line-height: 0;
  vertical-align: bottom;
}

svg {
  vertical-align: bottom;
}

hr {
  display: none;
}

table {
  margin: 0;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
  margin: 0;
}

td {
  margin: 0;
}

em {
  font-weight: bold;
  font-style: normal;
}

form {
  margin: 0;
  padding: 0;
}

label {
  margin: 0;
  padding: 0;
}

input.btn {
  margin: 0 0.5em;
  padding: 0 1em;
}

button {
  border: none;
  font: inherit;
  line-height: inherit;
  background: none;
  margin: 0;
  cursor: pointer;
}

/* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
.js-focus-visible :focus:not(.focus-visible) {
  outline: 0;
}

/*
header
-----------------------------------------------------*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: grid;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: 1fr auto;
  padding: 11px 0.875rem;
  background-color: #fff;
}
@media screen and (min-width: 1280px) {
  .l-header {
    grid-template-columns: min(320px, 20.4081632653vw) 1fr min(320px, 20.4081632653vw);
    padding: 22px 2.0408163265vw;
  }
}
.l-header__sitetitle {
  position: relative;
  z-index: 10;
}
.l-header__sitetitle a, .l-header__sitetitle > span {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.875rem;
}
.l-header__sitetitle img {
  width: clamp(169px, 44.8vw, 230px);
}
@media screen and (min-width: 1280px) {
  .l-header__sitetitle img {
    width: 230px;
  }
}
.l-header__sitetitle span {
  font-size: 0.625rem;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .l-header__sitetitle span {
    font-size: 0.8125rem;
  }
}
.l-header-mainmenu {
  position: relative;
  background-color: #fff;
  z-index: 1;
  display: grid;
  align-items: start;
}
@media screen and (max-width: 1279px) {
  .l-header-mainmenu {
    position: absolute;
    top: 0;
    left: 100%;
    row-gap: 24px;
    width: 100vw;
    height: 100svh;
    padding-top: 85px;
    padding-inline: 8vw;
    padding-bottom: 120px;
    -webkit-transition: 0.5s left cubic-bezier(0.5, 1, 0.89, 1);
    transition: 0.5s left cubic-bezier(0.5, 1, 0.89, 1);
    overflow-y: scroll;
  }
  .l-header-mainmenu.is-open {
    left: 0;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
}
@media screen and (min-width: 1280px) {
  .l-header-mainmenu {
    justify-self: center;
  }
}
.l-header-mainmenu__image {
  justify-self: center;
  margin-top: 3.4666666667vw;
}
@media screen and (min-width: 1280px) {
  .l-header-mainmenu__image {
    display: none;
  }
}
.l-header-mainmenu__image img {
  width: min(250px, 32.5333333333vw);
}
@media screen and (min-width: 1280px) {
  .l-header-mainmenu__link.c-button {
    display: none;
  }
}
.l-header-link.c-button {
  width: min(256px, 100%);
}
@media screen and (max-width: 1279px) {
  .l-header-link.c-button {
    position: fixed;
    bottom: 1rem;
    left: 0;
    right: 0;
    width: 90%;
    margin-inline: auto;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
}
@media screen and (min-width: 1280px) {
  .l-header-link.c-button {
    justify-self: end;
  }
}
@media screen and (max-width: 1279px) {
  .l-header-link.c-button.-hidden {
    opacity: 0;
    visibility: hidden;
  }
}

.c-drawer-btn {
  position: relative;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 100vmax;
  background-color: #0054A7;
  cursor: pointer;
}
@media screen and (min-width: 1280px) {
  .c-drawer-btn {
    display: none;
  }
}
.c-drawer-btn__bar {
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  width: 16px;
  height: 1px;
  margin-inline: auto;
  background-color: #fff;
}
.c-drawer-btn__bar.--1 {
  top: 17px;
  -webkit-transition: top 0.2s 0.2s, -webkit-transform 0.2s 0s;
  transition: top 0.2s 0.2s, -webkit-transform 0.2s 0s;
  transition: top 0.2s 0.2s, transform 0.2s 0s;
  transition: top 0.2s 0.2s, transform 0.2s 0s, -webkit-transform 0.2s 0s;
}
.c-drawer-btn__bar.--2 {
  top: 21px;
  opacity: 1;
  -webkit-transition: opacity 0.2s 0.2s;
  transition: opacity 0.2s 0.2s;
}
.c-drawer-btn__bar.--3 {
  top: 25px;
  -webkit-transition: top 0.2s 0.2s, -webkit-transform 0.2s 0s;
  transition: top 0.2s 0.2s, -webkit-transform 0.2s 0s;
  transition: top 0.2s 0.2s, transform 0.2s 0s;
  transition: top 0.2s 0.2s, transform 0.2s 0s, -webkit-transform 0.2s 0s;
}
.c-drawer-btn.is-open .c-drawer-btn__bar.--1 {
  top: 21px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: top 0.2s 0.2s, -webkit-transform 0.2s 0.5s;
  transition: top 0.2s 0.2s, -webkit-transform 0.2s 0.5s;
  transition: top 0.2s 0.2s, transform 0.2s 0.5s;
  transition: top 0.2s 0.2s, transform 0.2s 0.5s, -webkit-transform 0.2s 0.5s;
}
.c-drawer-btn.is-open .c-drawer-btn__bar.--2 {
  opacity: 0;
  -webkit-transition: opacity 0.2s 0.2s;
  transition: opacity 0.2s 0.2s;
}
.c-drawer-btn.is-open .c-drawer-btn__bar.--3 {
  top: 21px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: top 0.2s 0.2s, -webkit-transform 0.2s 0.5s;
  transition: top 0.2s 0.2s, -webkit-transform 0.2s 0.5s;
  transition: top 0.2s 0.2s, transform 0.2s 0.5s;
  transition: top 0.2s 0.2s, transform 0.2s 0.5s, -webkit-transform 0.2s 0.5s;
}

/*
footer
-----------------------------------------------------*/
.l-footer {
  position: relative;
  overflow: hidden;
  padding-top: 2.6875rem;
  padding-inline: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .l-footer {
    display: grid;
    grid-template-rows: auto auto 1fr;
    grid-template-columns: auto 1fr;
    padding-top: 5.25rem;
    padding-inline: 6.1224489796vw 4.8469387755vw;
  }
}
.l-footer__logo {
  max-width: 400px;
}
@media screen and (min-width: 768px) {
  .l-footer__logo {
    grid-column: 1/2;
    width: 308px;
  }
}
.l-footer__logo a img {
  width: 100%;
}
.l-footer-nav {
  margin-block: 37px;
}
@media screen and (min-width: 768px) {
  .l-footer-nav {
    grid-column: 1/2;
  }
}
.l-footer__copyright {
  display: block;
  margin-block: 65px;
  font-size: 0.6875rem;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .l-footer__copyright {
    grid-column: 1/2;
    align-self: end;
    margin-block: 0 4.5rem;
    font-size: 0.8125rem;
  }
}
.l-footer__catchcopy {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: min(58px, 10.6666666667vw);
}
@media screen and (min-width: 768px) {
  .l-footer__catchcopy {
    justify-content: flex-start;
    grid-column: 2/3;
    grid-row: 1/4;
    padding-top: 6px;
  }
}
.l-footer__derukui {
  opacity: 0;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.l-footer__derukui img {
  width: min(250px, 45.3333333333vw);
}
.l-footer__derukui.-active {
  -webkit-animation: popover2 0.3s cubic-bezier(0.64, 0, 0.78, 0) 1 forwards;
          animation: popover2 0.3s cubic-bezier(0.64, 0, 0.78, 0) 1 forwards;
}
.l-footer__goodman {
  position: relative;
  top: 100px;
  margin-top: min(50px, 13.3333333333vw);
  width: min(168px, 30.1333333333vw);
  -webkit-transition: top 0.3s 0.3s cubic-bezier(0.64, 0, 0.78, 0);
  transition: top 0.3s 0.3s cubic-bezier(0.64, 0, 0.78, 0);
}
@media screen and (min-width: 768px) {
  .l-footer__goodman {
    top: 50px;
    margin-top: 72px;
  }
}
.l-footer__goodman.-active {
  top: 0;
}

/*
 main
-----------------------------------------------------*/
.l-main {
  overflow-x: clip;
  padding-top: 66px;
}
@media screen and (min-width: 768px) {
  .l-main {
    padding-top: 104px;
  }
}

/*
 container
-----------------------------------------------------*/
.l-section {
  position: relative;
  z-index: 1;
  padding-block: clamp(3.375rem, 8vw, 6.375rem);
}
.l-section.--bg {
  background: #f8f8f8;
}

.l-container {
  position: relative;
  z-index: 1;
}
.l-container.-primary {
  width: min(90%, 1500px);
  margin-inline: auto;
}
.l-container.-secondary {
  width: min(90%, 1248px);
  margin-inline: auto;
}

.l-section-header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .l-section-header {
    margin-bottom: 60px;
  }
}
.l-section-header.--hasmenu {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .l-section-header.--hasmenu {
    margin-bottom: 85px;
  }
}

.l-contents-head {
  margin-bottom: 2.5rem;
}
.l-contents-head__text {
  margin-block: 2em;
}
@media screen and (max-width: 767px) {
  .l-contents-head__text {
    font-size: 0.8125rem;
  }
}

.l-2collist {
  display: grid;
}
@media screen and (min-width: 768px) {
  .l-2collist {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: min(67px, 4.2729591837vw);
       -moz-column-gap: min(67px, 4.2729591837vw);
            column-gap: min(67px, 4.2729591837vw);
  }
}

.l-3collist {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
  gap: 30px min(96px, 6.1224489796vw);
  align-items: start;
}
@media screen and (min-width: 768px) {
  .l-3collist {
    row-gap: 40px;
    grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr));
  }
}

/*
spacer
-----------------------------------------------------*/
.l-spacer.-medium {
  padding-top: 90px;
}
.l-spacer.-small {
  padding-top: 3vw;
}
.l-spacer.-em1 {
  margin-top: 1em;
}
.l-spacer.-em2 {
  margin-top: 2em;
}
.l-spacer.-em3 {
  margin-top: 3em;
}
.l-spacer.-bottom {
  padding-bottom: min(124px, 26.6666666667vw);
}

/*
title
-----------------------------------------------------*/
.c-section__title {
  position: relative;
  z-index: 1;
}

.c-contents__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-contents__title {
    font-size: 2.5rem;
  }
}
.c-contents__titlecopy {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .c-contents__titlecopy {
    font-size: 1rem;
  }
}

.c-heading {
  font-weight: 700;
}
.c-heading.--01 {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-heading.--01 {
    font-size: 2rem;
  }
}
.c-heading.--02 {
  font-size: 1rem;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .c-heading.--02 {
    font-size: 1.5rem;
  }
}

.c-center-title {
  margin-block: 1.25rem;
  text-align: center;
}

/*
text
-----------------------------------------------------*/
.c-text-center {
  text-align: center;
}

.c-text-upper {
  text-transform: uppercase;
}

.c-paragraphs {
  letter-spacing: 0;
  line-height: 2;
  line-break: strict;
}
.c-paragraphs.--center {
  text-align: center;
}
.c-paragraphs > p {
  margin-block: 2em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-paragraphs > p {
    font-size: 0.8125rem;
  }
}
.c-paragraphs > p:first-child {
  margin-top: 0;
}
.c-paragraphs > p:last-child {
  margin-bottom: 0;
}

/*button
-----------------------------------------------------*/
.c-button {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  padding-block: 0.8125rem;
  padding-inline: 1.375rem;
  border: 2px solid #0054A7;
  border-radius: 100vmax;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #0054A7));
  background: linear-gradient(90deg, transparent 50%, #0054A7 50%);
  background-size: 201% 100%;
  color: #0054A7;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .c-button {
    padding-block: 1.0625rem;
    font-size: 0.9375rem;
  }
}
.c-button::before, .c-button::after {
  content: "";
  width: 15px;
  height: 12px;
}
@media screen and (min-width: 768px) {
  .c-button::before {
    content: none;
  }
}
.c-button::after {
  -webkit-mask-image: url(../img/common/icon-arrow.svg);
          mask-image: url(../img/common/icon-arrow.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #0054A7;
}
@media (any-hover: hover) {
  .c-button {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .c-button:hover {
    background-position: -99% 0;
    color: #FFF;
  }
  .c-button:hover::after {
    background: #fff;
    translate: 3px 0;
  }
}
.c-button.-blank {
  grid-template-columns: auto 1fr auto;
  justify-items: center;
}
.c-button.-blank::before {
  content: "";
}
.c-button.-blank::after {
  -webkit-mask-image: url(../img/common/icon-blank.svg);
          mask-image: url(../img/common/icon-blank.svg);
}
@media (any-hover: hover) {
  .c-button.-blank:hover::after {
    translate: 0;
  }
}
.c-button.-blank:not(.-reverse) {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #0054A7), color-stop(50%, #00A29A));
  background: linear-gradient(90deg, #0054A7 50%, #00A29A 50%);
  background-size: 200% 100%;
  border: none;
  color: #FFF;
}
.c-button.-blank:not(.-reverse)::after {
  background: #fff;
}
@media (any-hover: hover) {
  .c-button.-blank:not(.-reverse) {
    -webkit-transition: background-position 0.3s ease;
    transition: background-position 0.3s ease;
  }
  .c-button.-blank:not(.-reverse):hover {
    background-position: -100% 0;
  }
}
.c-button.--bg-w {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.12);
}
.p-top-info__list + .c-button {
  margin-block: 0;
}
@media (any-hover: hover) {
  .c-button .c-button__text {
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
  }
  .c-button:hover .c-button__text {
    color: #0054A7;
  }
}
.c-button--circle {
  display: grid;
  justify-items: center;
  grid-template-rows: 0.58fr 0.42fr;
  row-gap: 1rem;
  margin-inline: auto;
  width: 200px;
  height: 200px;
  border-radius: 100vmax;
  border: 1px solid #0054A7;
}
@media screen and (min-width: 768px) {
  .c-button--circle {
    width: 274px;
    height: 274px;
    border-radius: 100vmax;
  }
}
.c-button--circle .-wordimage {
  align-self: end;
  width: 80%;
  translate: 2% 0;
}
.c-button--circle .-text {
  align-self: start;
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  align-items: baseline;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .c-button--circle .-text {
    font-size: 0.75rem;
  }
}
.c-button--circle .-text::after {
  content: "";
  width: 7px;
  height: 10px;
  -webkit-mask-image: url(../img/common/icon-arrow.svg);
          mask-image: url(../img/common/icon-arrow.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #0054A7;
}

/*
grid
-----------------------------------------------------*/
.c-grid-end {
  justify-self: end;
}

.c-grid-center {
  justify-self: center;
}

/*
card
-----------------------------------------------------*/
.c-card__title {
  margin-bottom: 0.4375rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 960px) {
  .c-card__title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 959px) {
  .c-card__text {
    font-size: 0.75rem;
    line-height: 1.5833333333;
  }
}
.c-card__image img {
  width: 100%;
}
.c-card__image.-up {
  order: -1;
}

/*
gmenu
-----------------------------------------------------*/
.c-gmenu-primary {
  display: grid;
}
@media screen and (max-width: 1279px) {
  .c-gmenu-primary {
    border-top: 1px solid #ccc;
  }
}
@media screen and (min-width: 1280px) {
  .c-gmenu-primary {
    display: flex;
    -webkit-column-gap: min(44px, 2.806122449vw);
       -moz-column-gap: min(44px, 2.806122449vw);
            column-gap: min(44px, 2.806122449vw);
    -webkit-transition: font-size 0.3s;
    transition: font-size 0.3s;
  }
}
.c-gmenu-primary__item {
  position: relative;
}
@media screen and (max-width: 1279px) {
  .c-gmenu-primary__item {
    border-bottom: 1px solid #ccc;
  }
}
.c-gmenu-primary__item a, .c-gmenu-primary__item button {
  display: grid;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  align-items: center;
}
.c-gmenu-primary__item a::after {
  content: "";
  width: 7px;
  height: 10px;
  -webkit-mask-image: url(../img/common/icon-arrow.svg);
          mask-image: url(../img/common/icon-arrow.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #0054A7;
}
@media screen and (max-width: 1279px) {
  .c-gmenu-primary__item a::after {
    margin-right: 32px;
  }
}
@media screen and (max-width: 1279px) {
  .c-gmenu-primary__item button {
    padding-right: 23px;
    pointer-events: none;
  }
}
.c-gmenu-primary__item > a, .c-gmenu-primary__item > button {
  font-size: 0.9375rem;
  font-weight: 700;
}
@media screen and (max-width: 1279px) {
  .c-gmenu-primary__item > a, .c-gmenu-primary__item > button {
    grid-template-columns: auto 1fr auto;
    padding-block: 1em;
  }
}
@media screen and (min-width: 1280px) {
  .c-gmenu-primary__item > a, .c-gmenu-primary__item > button {
    display: block;
  }
  .c-gmenu-primary__item > a::after, .c-gmenu-primary__item > button::after {
    content: none;
  }
}
.c-gmenu-primary__item > a::before, .c-gmenu-primary__item > button::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 100vmax;
  margin-inline: 8px;
  -webkit-transform: translateY(-100%) scale(0);
          transform: translateY(-100%) scale(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: transparent;
}
@media screen and (min-width: 1280px) {
  .c-gmenu-primary__item > a::before, .c-gmenu-primary__item > button::before {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    margin-inline: auto;
  }
}
.c-gmenu-primary__item > a.-current::before, .c-gmenu-primary__item > button.-current::before {
  background-color: #0054A7;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}
@media (any-hover: hover) {
  .c-gmenu-primary__item > a:hover::before, .c-gmenu-primary__item > button:hover::before {
    background-color: #0054A7;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@media (any-hover: hover) {
  .c-gmenu-primary__text {
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
  }
  a:has(.c-gmenu-primary__text):hover .c-gmenu-primary__text {
    opacity: 0.7;
  }
}

.c-gmenu-sub {
  display: grid;
  row-gap: 4px;
  background: #fff;
}
@media screen and (max-width: 1279px) {
  .c-gmenu-sub {
    margin-left: 53px;
  }
}
@media screen and (min-width: 1280px) {
  .c-gmenu-sub {
    position: absolute;
    left: 0;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
    opacity: 0;
    visibility: hidden;
    display: block;
    width: 11.75rem;
    padding: 1.25rem;
    border: 1px solid #0054A7;
  }
  .c-gmenu-sub.is-open {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (max-width: 1279px) {
  .c-gmenu-sub__item:last-child {
    margin-bottom: 1em;
  }
}
.c-gmenu-sub__item a {
  grid-template-columns: 1fr auto;
  font-size: 0.875rem;
}
@media (any-hover: hover) {
  .c-gmenu-sub__item a:hover::after {
    -webkit-transform: translateX(3px);
            transform: translateX(3px);
  }
}

.c-gmenu-secondary {
  display: flex;
  gap: 1em 29px;
  font-size: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .c-gmenu-secondary {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .c-gmenu-secondary {
    font-size: 0.9375rem;
  }
}
.c-gmenu-secondary__item {
  line-height: normal;
}
.c-gmenu-secondary__item a {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .c-gmenu-secondary__item a:hover {
    color: #0054A7;
    text-decoration: none;
  }
}

/*
contents menu
-----------------------------------------------------*/
.c-contents-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 1rem;
}
.c-contents-menu__item {
  font-size: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .c-contents-menu__item {
    font-size: 0.9375rem;
  }
}
.c-contents-menu__item a {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  align-items: center;
  letter-spacing: 0;
  line-height: 1.8181818182;
}
.c-contents-menu__item a::before {
  content: "";
  width: 7px;
  height: 10px;
  translate: 0 2px;
  rotate: 90deg;
  -webkit-mask-image: url(../img/common/icon-arrow.svg);
          mask-image: url(../img/common/icon-arrow.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #0054A7;
}
@media (any-hover: hover) {
  .c-contents-menu__item a:hover {
    color: #0054A7;
  }
  .c-contents-menu__item a:hover::before {
    translate: 0 3px;
  }
}

/*
 mainvisual
-----------------------------------------------------*/
.c-mainvisual {
  position: relative;
}
.c-mainvisual__container {
  position: relative;
  display: grid;
  place-items: center;
}
.c-mainvisual__container > * {
  grid-area: 1/1;
}
.c-mainvisual .circle-container {
  position: relative;
  z-index: 1;
  width: min(90%, 720px);
  aspect-ratio: 1/1.01;
  margin-block: clamp(115px, 30.6666666667vw, 220px);
  container-type: size;
}
@media screen and (min-width: 1440px) {
  .c-mainvisual .circle-container {
    margin-block: 37px 63px;
  }
}
.c-mainvisual__image {
  position: relative;
  z-index: 1;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  opacity: 0;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}
.-loaded .c-mainvisual__image {
  -webkit-animation: popover2 0.4s cubic-bezier(0.64, 0, 0.78, 0) 1 forwards;
          animation: popover2 0.4s cubic-bezier(0.64, 0, 0.78, 0) 1 forwards;
}
.c-mainvisual__copy img {
  width: min(315px, 35cqi);
}
.c-mainvisual {
  /* --- 以下、揺れのアニメーション --- */
}
.c-mainvisual__element {
  position: absolute;
  width: 25cqi;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  opacity: 0;
  -webkit-transition: all 0.7s 0.7s cubic-bezier(0.64, 0, 0.78, 0);
  transition: all 0.7s 0.7s cubic-bezier(0.64, 0, 0.78, 0);
}
.-loaded .c-mainvisual__element:not(.--04) {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.c-mainvisual__element.--01 {
  top: 30px;
  right: -10px;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
@media screen and (min-width: 768px) {
  .c-mainvisual__element.--01 {
    max-width: 316px;
  }
}
.c-mainvisual__element.--02 {
  bottom: 20px;
  right: 2.6666666667vw;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
@media screen and (min-width: 768px) {
  .c-mainvisual__element.--02 {
    max-width: 256px;
  }
}
.c-mainvisual__element.--03 {
  top: 18px;
  left: -10px;
}
@media screen and (min-width: 768px) {
  .c-mainvisual__element.--03 {
    max-width: 306px;
  }
}
@media screen and (min-width: 1440px) {
  .c-mainvisual__element.--03 {
    top: 322px;
  }
}
.c-mainvisual__element.--04 {
  bottom: 10px;
  left: 0;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
@media screen and (min-width: 768px) {
  .c-mainvisual__element.--04 {
    max-width: 256px;
  }
}
@media screen and (min-width: 1440px) {
  .c-mainvisual__element.--04 {
    top: 100%;
    bottom: auto;
  }
}
@media screen and (min-width: 1440px) {
  .c-mainvisual__element.--04 {
    top: 920px;
  }
}
.c-mainvisual__element.--04.-active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.c-mainvisual__dots {
  width: 100%;
  height: 100%;
  margin-inline: auto;
}
.c-mainvisual__dot {
  position: absolute;
  opacity: 0;
}
.-loaded .c-mainvisual__dot {
  -webkit-animation: fade-in-scale 0.5s cubic-bezier(0.64, 0, 0.78, 0) 1 forwards;
          animation: fade-in-scale 0.5s cubic-bezier(0.64, 0, 0.78, 0) 1 forwards;
}
.c-mainvisual__dot.--02 {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}
.c-mainvisual__dot.--03 {
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.c-mainvisual__dot.--04 {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.c-mainvisual__dot.--05 {
  -webkit-animation-duration: 0.1s;
          animation-duration: 0.1s;
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
}
.c-mainvisual__dot.--06 {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.c-mainvisual__dot.--07 {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.c-mainvisual__dot.--08 {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
.c-mainvisual__dot.--01 {
  top: calc(18px + 8cqi);
  left: 32cqi;
  width: min(1.8666666667vw, 28px);
  height: min(1.8666666667vw, 28px);
  border-radius: 100vmax;
  background: #00366D;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
@media screen and (min-width: 1440px) {
  .c-mainvisual__dot.--01 {
    top: 84px;
    left: calc(50% - 410px);
  }
}
.c-mainvisual__dot.--02 {
  top: calc(39px + 25cqi);
  right: 8px;
  width: min(4.5333333333vw, 68px);
  height: min(4.5333333333vw, 68px);
  border-radius: 100vmax;
  background: #FAEE00;
}
@media screen and (min-width: 1440px) {
  .c-mainvisual__dot.--02 {
    top: 375px;
    right: 200px;
  }
}
.c-mainvisual__dot.--03 {
  top: min(18px + 93cqi, 833px);
  right: -4cqi;
  width: min(2.4vw, 33px);
  height: min(2.4vw, 33px);
  border-radius: 100vmax;
  background: #036EB8;
}
@media screen and (min-width: 1440px) {
  .c-mainvisual__dot.--03 {
    top: 970px;
    right: calc(50% - 360px);
  }
}
.c-mainvisual__dot.--04 {
  top: min(840px, 98cqi);
  left: 2cqi;
  width: min(1.6vw, 23px);
  height: min(1.6vw, 23px);
  border-radius: 100vmax;
  background: #FAEE00;
}
@media screen and (min-width: 1440px) {
  .c-mainvisual__dot.--04 {
    top: 1180px;
    left: 20px;
    width: min(6.1333333333vw, 23px);
    height: min(6.1333333333vw, 23px);
    border-radius: 100vmax;
    background: #FAEE00;
  }
}
.c-mainvisual__dot.--05 {
  top: calc(27px + 52cqi);
  left: -2cqi;
  width: min(2.6666666667vw, 38px);
  height: min(2.6666666667vw, 38px);
  border-radius: 100vmax;
  background: #00A29A;
}
@media screen and (min-width: 1440px) {
  .c-mainvisual__dot.--05 {
    top: 658px;
    left: 300px;
  }
}
.c-mainvisual__dot.--06 {
  top: calc(27px + 25cqi);
  left: 6px;
  width: min(4.2666666667vw, 62px);
  height: min(4.2666666667vw, 62px);
  border-radius: 100vmax;
  max-width: 62px;
  max-height: 62px;
  background: #036EB8;
}
@media screen and (min-width: 1440px) {
  .c-mainvisual__dot.--06 {
    top: 223px;
    left: 123px;
  }
}
@media screen and (min-width: 1440px) {
  .c-mainvisual__dot.--07 {
    top: 763px;
    right: 240px;
    width: min(14.1333333333vw, 53px);
    height: min(14.1333333333vw, 53px);
    border-radius: 100vmax;
    background: #00366D;
  }
}
@media screen and (min-width: 1440px) {
  .c-mainvisual__dot.--08 {
    top: 1440px;
    left: calc(50% - 330px);
    width: min(5.3333333333vw, 20px);
    height: min(5.3333333333vw, 20px);
    border-radius: 100vmax;
    background: #00A29A;
  }
}

.c-cta {
  display: grid;
  align-items: start;
  row-gap: 34px;
  grid-template-columns: [full-start] minmax(8vw, 1fr) [main-start] minmax(0, 1313px) [main-end] minmax(8vw, 1fr) [full-end];
  position: relative;
  z-index: 1;
  padding-block: 115px 35px;
  background-color: #0054A7;
  background-color: #FFFEEE;
}
@media screen and (min-width: 960px) {
  .c-cta {
    row-gap: 67px;
  }
}
.c-cta > * {
  grid-column: main;
}
@media screen and (min-width: 768px) {
  .c-cta {
    padding-block: 5.125rem 3.875rem;
  }
}
@media screen and (min-width: 960px) {
  .c-cta__container {
    display: grid;
    grid-template-columns: 33.511043412% minmax(31em, 700px);
    -webkit-column-gap: min(106px, 6.7602040816vw);
       -moz-column-gap: min(106px, 6.7602040816vw);
            column-gap: min(106px, 6.7602040816vw);
    justify-content: space-between;
  }
}
.c-cta__header {
  position: relative;
}
@media screen and (min-width: 960px) {
  .c-cta__header {
    margin-top: min(174px, 11.0969387755vw);
  }
}
.c-cta__text {
  container-type: inline-size;
}
@container (max-width:36em) {
  .c-cta__text .u-linebreak {
    display: none;
  }
}
.c-cta__title {
  margin-bottom: 3.125rem;
}
.c-cta__title img {
  width: min(71.2vw, 25rem);
}
@media screen and (min-width: 960px) {
  .c-cta__title img {
    width: 440px;
  }
}
.c-cta__image {
  position: absolute;
  -webkit-transform: translate(-40%, 40%);
          transform: translate(-40%, 40%);
  bottom: calc(100% + 20px);
  width: min(43.4666666667vw, 200px);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.64, 0, 0.78, 0);
  transition: -webkit-transform 0.3s cubic-bezier(0.64, 0, 0.78, 0);
  transition: transform 0.3s cubic-bezier(0.64, 0, 0.78, 0);
  transition: transform 0.3s cubic-bezier(0.64, 0, 0.78, 0), -webkit-transform 0.3s cubic-bezier(0.64, 0, 0.78, 0);
}
@media screen and (max-width: 959px) {
  .c-cta__image {
    right: 3.7333333333vw;
  }
}
@media screen and (min-width: 960px) {
  .c-cta__image {
    left: min(222px, 14.1581632653vw);
    bottom: calc(100% + 65px);
    width: min(17.0918367347vw, 268px);
  }
}
.c-cta__image.-active {
  -webkit-transform: translate(0);
          transform: translate(0);
}
.c-cta__text p {
  font-size: clamp(13px, 2.0833333333vw, 16px);
}
.c-cta__button {
  background: #fff;
  color: #0054A7;
}
.c-cta__button::after {
  background-color: #0054A7;
}
@media screen and (min-width: 768px) {
  .c-cta__button {
    grid-template-columns: unset !important;
    grid-auto-flow: column;
    justify-content: center;
    padding-block: 2rem;
    font-size: 1.5rem;
  }
}

/*
loading
-----------------------------------------------------*/
.c-loading {
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  z-index: -99;
}
.c-loading.-active {
  opacity: 1;
}

/*
 top
-----------------------------------------------------*/
.p-intro {
  position: relative;
  padding-block: 20px 40px;
}
@media screen and (min-width: 768px) {
  .p-intro {
    padding-block: 0 120px;
  }
}
.p-intro__title {
  width: min(80%, 538px);
  margin-inline: auto;
  margin-bottom: clamp(30px, 8vw, 4.5rem);
}
.p-intro__text {
  width: min(38em, 100%);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-intro__text {
    word-break: break-word;
    overflow-wrap: anywhere;
    text-align: center;
  }
}
.p-intro__text > p {
  font-size: clamp(0.8125rem, 3.4666666667vw, 1rem);
}
.p-intro__link {
  opacity: 0;
}
@media screen and (max-width: 1365px) {
  .p-intro__link {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1366px) {
  .p-intro__link {
    position: absolute;
    right: 28px;
    top: 50%;
    translate: 0 -50%;
  }
}
.p-intro__link.-active {
  -webkit-animation: fade-in-scale 0.5s 0.2s cubic-bezier(0.64, 0, 0.78, 0) 1 forwards;
          animation: fade-in-scale 0.5s 0.2s cubic-bezier(0.64, 0, 0.78, 0) 1 forwards;
}
@media (any-hover: hover) {
  .p-intro__link:hover .-text::after {
    translate: 3px 0;
  }
}
.p-intro__cta {
  margin-top: 45px;
}
@media screen and (max-width: 1279px) {
  .p-intro__cta {
    display: none;
  }
}
.p-intro__cta .c-button {
  width: 350px;
  padding-inline: 2rem;
  font-size: 1.25rem;
}

.p-top-business-section {
  display: grid;
  align-items: end;
}
@media screen and (min-width: 768px) {
  .p-top-business-section {
    container-type: inline-size;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    grid-template-columns: min(576px, 36.7346938776vw) 1fr;
    padding-left: min(60px, 3.8265306122vw);
  }
}
.p-top-business-section .-title {
  margin-bottom: 0.5rem;
}
.p-top-business-section .-title img {
  display: block;
  width: auto;
  height: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .p-top-business-section .-title img {
    height: 2.3125rem;
  }
}
.p-top-business-section.-construction .-image {
  margin-right: 20px;
}
@media screen and (min-width: 768px) {
  .p-top-business-section.-construction .-image {
    width: min(26.7857142857vw, 420px);
  }
}
@media screen and (min-width: 768px) {
  .p-top-business-section.-public .-image {
    width: min(36.6709183673vw, 575px);
  }
}
.p-top-business-section.-work {
  align-items: start;
}
@media screen and (min-width: 768px) {
  .p-top-business-section.-work .-image {
    width: min(34.1198979592vw, 535px);
  }
}
.p-top-business-section__text {
  margin-block: 1rem;
}
@container (min-width:680px) {
  .p-top-business-section__text {
    align-self: start;
    margin-bottom: 1rem;
    line-height: 1.75;
  }
}
@container (min-width:680px) {
  .p-top-business-section__image {
    grid-column: 2;
  }
}
.p-top-business-section + .p-top-business-section {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-top-business-section + .p-top-business-section {
    margin-top: 5rem;
  }
}
.p-top-business__link {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-top-business__link {
    width: 100% !important;
  }
}
@media screen and (min-width: 768px) {
  .p-top-business__link {
    margin-top: 40px;
    margin-bottom: 1.875rem;
    padding-left: min(60px, 3.8265306122vw);
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .p-top-business__link .c-button {
    width: 100%;
  }
}

.p-top-interview__title-en {
  width: 137px;
}
@media screen and (min-width: 768px) {
  .p-top-interview__title-en {
    position: absolute;
    top: calc(0.625rem + 2px);
    right: 0;
    width: 230px;
  }
}

@media screen and (max-width: 959px) {
  .p-message {
    padding-bottom: 7.5rem;
    padding-top: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .p-message {
    padding-bottom: 10rem;
  }
}
.p-message-container {
  margin-bottom: 70px;
}
@media screen and (min-width: 960px) {
  .p-message-container {
    display: grid;
    grid-template-areas: "img title" "img txt";
    grid-template-rows: auto 1fr;
    -webkit-column-gap: min(150px, 9.5663265306vw);
       -moz-column-gap: min(150px, 9.5663265306vw);
            column-gap: min(150px, 9.5663265306vw);
  }
}
@media screen and (min-width: 960px) {
  .p-message-container {
    margin-bottom: 0;
  }
}
.p-message__head {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 10.6666666667vw;
  margin-bottom: 34px;
}
@media screen and (min-width: 960px) {
  .p-message__head {
    display: contents;
  }
}
.p-message__title {
  flex: 1;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.125rem, 4.8vw, 2rem);
  font-weight: 600;
  line-height: 1.7777777778;
}
@media screen and (min-width: 768px) {
  .p-message__title {
    line-height: 1.875;
  }
}
@media screen and (min-width: 960px) {
  .p-message__title {
    grid-area: title;
    font-size: 2rem;
    margin-block: 2.625rem 3.5625rem;
  }
}
.p-message__image {
  margin-top: -28px;
  width: min(19.4666666667vw, 130px);
}
@media screen and (min-width: 960px) {
  .p-message__image {
    grid-area: img;
    width: 232px;
    margin-top: 0;
  }
}
.p-message__body {
  width: min(100%, 730px);
}
@media screen and (min-width: 960px) {
  .p-message__body {
    grid-area: txt;
  }
}
.p-message__signature {
  margin-top: 2.25rem;
  margin-bottom: 70px;
  font-size: 1.25rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-message__signature {
    font-size: 1.5rem;
  }
}
.p-message__signature .-role {
  display: inline-block;
  margin-right: 1em;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-message__signature .-role {
    font-size: 1rem;
  }
}
.p-message-about__head {
  margin-bottom: 2em;
  font-size: 0.875rem;
  line-height: normal;
  display: grid;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  justify-items: center;
  gap: 0.5rem 1rem;
}
@media screen and (min-width: 768px) {
  .p-message-about__head {
    margin-bottom: 60px;
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 960px) {
  .p-message-about__head {
    margin-left: calc(19.5rem + min(4.5918367347vw, 4.5rem));
  }
}
.p-message-about__head .-title {
  display: inline-grid;
  place-items: center;
  -webkit-column-gap: 0.75rem;
     -moz-column-gap: 0.75rem;
          column-gap: 0.75rem;
  grid-template-columns: auto 1fr auto;
  font-size: min(3.7333333333vw, 15px);
  font-weight: 700;
  letter-spacing: 0.1rem;
}
.p-message-about__head .-title::before, .p-message-about__head .-title::after {
  content: "";
  display: block;
  width: 1px;
  height: calc(1lh + 2px);
  background-color: #000;
  rotate: 30deg;
}
.p-message-about__head .-title::before {
  rotate: -30deg;
}
.p-message-about__head .-title.-active {
  -webkit-animation: up-down 2s 0.5s 3 forwards;
          animation: up-down 2s 0.5s 3 forwards;
}
.p-message-about__head .-text {
  grid-column: 1;
  display: grid;
  place-items: center;
  width: min(190px, 47.2vw);
  height: min(190px, 47.2vw);
  border-radius: 100vmax;
  background-color: #00366D;
  color: #fff;
  font-size: min(3.7333333333vw, 15px);
  text-align: center;
}
.p-message-about__head .-image {
  grid-row: 1/3;
  grid-column: 2;
  align-self: end;
  width: min(38.6666666667vw, 192px);
}
.p-message-about__list {
  display: grid;
  row-gap: 40px;
}
@media screen and (min-width: 960px) {
  .p-message-about__list {
    grid-template-columns: 19.5rem 1fr;
    row-gap: 60px;
    -webkit-column-gap: min(4.5918367347vw, 4.5rem);
       -moz-column-gap: min(4.5918367347vw, 4.5rem);
            column-gap: min(4.5918367347vw, 4.5rem);
  }
  .p-message-about__list > div {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: span 2;
  }
}
.p-message-about__title {
  margin-bottom: 1em;
}
.p-message-about__content {
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-message-about__content {
    font-size: 1.125rem;
  }
}

/*
 business
 -----------------------------------------------------*/
@media screen and (min-width: 960px) {
  .p-business__container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1248px) minmax(0, 1fr);
    grid-template-rows: auto 1fr;
  }
}

.p-business-intro {
  display: grid;
}
@media screen and (min-width: 960px) {
  .p-business-intro {
    grid-column: 1/3;
    grid-template-columns: minmax(0, 1fr) minmax(0, 594px) minmax(0, 665px);
    grid-template-rows: auto 1fr;
  }
}
.p-business-intro__text {
  margin-block: 1rem 2.625rem;
  margin-block: 1rem;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-business-intro__text {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 960px) {
  .p-business-intro__text {
    grid-area: 2/2/3/3;
    margin-right: 50px;
  }
}
.p-business-intro__image {
  justify-self: end;
  width: min(665px, 100%);
}
@media screen and (min-width: 960px) {
  .p-business-intro__image {
    grid-area: 1/3/3/4;
  }
}
.p-business-intro__image img {
  width: 100%;
}

.p-business-head {
  display: grid;
  grid-template-rows: auto 1fr;
  row-gap: 6px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-business-head {
    row-gap: 20px;
    margin-bottom: 2.625rem;
  }
}
@media screen and (min-width: 960px) {
  .p-business-head {
    grid-area: 1/1/2/3;
  }
}
.p-business-head .-title {
  height: 22px;
}
@media screen and (min-width: 768px) {
  .p-business-head .-title {
    height: 48px;
  }
}
.p-business-head .-title img {
  display: block;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-business-head .-copy {
    font-size: 1.25rem;
  }
}

.p-business-list {
  container-type: inline-size;
}
@media screen and (min-width: 960px) {
  .p-business-list {
    grid-column: 2/3;
  }
}
.p-business-list__item {
  display: flex;
  flex-direction: column;
  row-gap: min(22px, 1.4030612245vw);
}
@container (max-width:431px) {
  .p-business-list__item {
    display: grid;
    grid-template-columns: 32vw 1fr;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
}
.p-business-list__description {
  container-type: inline-size;
}
@container (max-width:279px) {
  .p-business-list__description .-title {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  @container (min-width:280px) {
    .p-business-list__description .-title {
      margin-bottom: 0.625rem;
      font-size: 1.25rem;
    }
  }
}
@container (max-width:279px) {
  .p-business-list__description .-text {
    font-size: 0.75rem;
  }
}
@container (min-width:280px) {
  .p-business-list__description .-text {
    line-height: 1.75;
  }
}
@media screen and (min-width: 768px) {
  @container (min-width:280px) {
    .p-business-list__description .-text {
      font-size: 1rem;
    }
  }
}
.p-business-list__image {
  width: 100%;
}
.p-business-list__image .work-slider {
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-business-list__image .work-slider {
    padding-bottom: 3rem;
  }
}
.p-business-list__image .work-slider .swiper-pagination {
  --swiper-pagination-bottom: 1rem;
  line-height: 0;
}
.p-business-list__image .work-slider .swiper-pagination-bullet {
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-inactive-color: transparent;
  --swiper-pagination-bullet-size: .5rem;
  border: 1px solid #036EB8;
}
@media screen and (min-width: 768px) {
  .p-business-list__image .work-slider .swiper-pagination-bullet {
    --swiper-pagination-bullet-size: .85rem;
  }
}
.p-business-list__image .work-slider .swiper-pagination-bullet-active {
  background: #036EB8;
}

@media screen and (min-width: 960px) {
  .p-construction-intro__text {
    margin-block: 4rem;
  }
}
.p-construction__image {
  margin-top: 2.625rem;
}
@media screen and (min-width: 960px) {
  .p-construction__image {
    margin-top: 4.5rem;
  }
}
.p-construction-list {
  margin-top: 4.6875rem;
}
@media screen and (min-width: 768px) {
  .p-construction-list {
    margin-top: 5.625rem;
  }
}

@media screen and (min-width: 960px) {
  .p-public-intro {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1248px);
  }
}
.p-public-list {
  row-gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-public-list {
    row-gap: 0;
    margin-block: 3.5rem 0;
  }
}
@media screen and (min-width: 960px) {
  .p-public-list {
    grid-column: 2/3;
    row-gap: 1.4375rem;
  }
}
.p-public-list__image {
  align-self: end;
  justify-self: center;
}
.p-public-list__item {
  display: grid;
  row-gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-public-list__item {
    grid-template-rows: subgrid;
    grid-row: span 2;
    row-gap: min(2.806122449vw, 2.75rem);
  }
}
.p-public-list__description {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 1.125rem;
     -moz-column-gap: 1.125rem;
          column-gap: 1.125rem;
}
@media screen and (min-width: 960px) {
  .p-public-list__description {
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
}
@media screen and (min-width: 960px) {
  @container (max-width:400px) {
    .p-public-list__description .-title {
      font-size: 0.875rem;
    }
  }
}
@media screen and (min-width: 960px) {
  @container (max-width:400px) {
    .p-public-list__description .-text {
      font-size: 0.75rem;
    }
  }
}
.p-public-list__description .-image {
  order: -1;
}
.p-public-list__description .-image img {
  width: clamp(120px, 13.9030612245vw, 218px);
  height: clamp(120px, 13.9030612245vw, 218px);
  border-radius: 100vmax;
}

@media screen and (min-width: 768px) {
  .p-work-head {
    margin-bottom: 0;
  }
}
.p-work-list {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-work-list {
    margin-top: 4rem;
  }
}
.p-work__image {
  align-self: end;
}

.p-group-intro {
  grid-template-columns: 1fr min(137px, 21.3333333333vw);
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  margin-bottom: 2.0625rem;
}
@media screen and (min-width: 960px) {
  .p-group-intro {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1094px) minmax(0, 137px);
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
}
.p-group-intro__head {
  grid-column: 1/3;
}
@media screen and (min-width: 768px) {
  .p-group-intro__head {
    margin-bottom: 2.25rem;
  }
}
.p-group-intro__text {
  grid-column: 1/2;
  margin-block: 0;
}
@media screen and (min-width: 960px) {
  .p-group-intro__text {
    grid-column: 2/3;
    margin-top: 1.625rem;
    margin-right: 0;
  }
}
.p-group-intro__image {
  grid-column: 2/3;
}
@media screen and (min-width: 960px) {
  .p-group-intro__image {
    grid-row: 2/3;
    grid-column: 3/4;
  }
}
.p-group-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(98px, 1fr));
  gap: clamp(12px, 3.2vw, 48px) clamp(14px, 3.7333333333vw, 32px);
}
@media screen and (min-width: 768px) {
  .p-group-list {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 960px) {
  .p-group-list {
    grid-column: 2/3;
  }
}
.p-group-list img {
  width: 100%;
}
.p-group__man {
  width: 85%;
  align-self: end;
  padding-bottom: clamp(40px, 5.2083333333vw, 80px);
}

/*
 interview
-----------------------------------------------------*/
.p-interview {
  padding-top: min(1.7857142857vw, 28px);
}
.p-interview__headerimage {
  position: relative;
}
.p-interview__headerimage .-image {
  width: 100%;
  min-height: 244px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-interview__headerimage .-image {
    aspect-ratio: 2/1;
  }
}
@media screen and (min-width: 1280px) {
  .p-interview__headerimage .-image {
    -o-object-position: 0;
       object-position: 0;
  }
}
.p-interview__headerimage .-interview-number {
  position: absolute;
  top: min(4.8vw, 60px);
  left: min(6.9333333333vw, 60px);
  display: grid;
  justify-items: center;
  row-gap: min(2.9333333333vw, 40px);
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.3s 0.5s, -webkit-transform 0.3s 0.5s;
  transition: opacity 0.3s 0.5s, -webkit-transform 0.3s 0.5s;
  transition: opacity 0.3s 0.5s, transform 0.3s 0.5s;
  transition: opacity 0.3s 0.5s, transform 0.3s 0.5s, -webkit-transform 0.3s 0.5s;
}
.-loaded .p-interview__headerimage .-interview-number {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.p-interview__headerimage .-interview {
  height: min(2.9333333333vw, 37px);
}
.p-interview__headerimage .-number {
  height: min(12.2666666667vw, 150px);
}
.p-interview__headerimage .-number.--1 {
  margin-right: min(2.4234693878vw, 38px);
}
.p-interview__body {
  padding-block: 2.8125rem 4.375rem;
  background-color: #f8f8f8;
}
@media screen and (min-width: 768px) {
  .p-interview__body {
    padding-block: 5rem 9.125rem;
  }
}
.p-interview__container {
  width: min(90%, 58rem);
  margin-inline: auto;
}
.p-interview__profile {
  display: grid;
  align-items: center;
  justify-items: start;
  grid-template-columns: min(23.4666666667vw, 195px) 1fr;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  margin-bottom: 70px;
}
@media screen and (min-width: 768px) {
  .p-interview__profile {
    -webkit-column-gap: 2.625rem;
       -moz-column-gap: 2.625rem;
            column-gap: 2.625rem;
    margin-bottom: 80px;
  }
}
.p-interview__profile .-image img {
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
}
.--shimizu .p-interview__profile .-image img, .--umitani .p-interview__profile .-image img {
  -o-object-position: bottom -5px left 0;
     object-position: bottom -5px left 0;
}
.p-interview__profile > *:not(.-image) {
  grid-column: 2/3;
}
.p-interview__profile .-person_data {
  padding-inline: 1.125rem;
}
.p-interview-section {
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .p-interview-section {
    margin-block: 70px;
  }
}
.p-interview-section__title {
  margin-bottom: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .p-interview-section__text > p {
    font-size: 1.125rem;
  }
}
.p-interview-schedule {
  margin-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-interview-schedule {
    margin-top: 6.75rem;
  }
}
.p-interview-schedule__title {
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-interview-schedule__title {
    font-size: 2.25rem;
  }
}
.p-interview-schedule__body {
  display: grid;
  row-gap: 1.5625rem;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-interview-schedule__body {
    row-gap: 2.375rem;
    margin-top: 3.4375rem;
  }
}
.p-interview-schedule__body li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  -webkit-column-gap: 1.1875rem;
     -moz-column-gap: 1.1875rem;
          column-gap: 1.1875rem;
}
.p-interview-schedule .-time {
  display: inline-block;
  padding-inline: 0.5625rem;
  padding-bottom: 2px;
  background: #0054A7;
  color: #fff;
  border-radius: 0.25rem;
  line-height: normal;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-interview-schedule .-time {
    font-size: 1.375rem;
  }
}
.p-interview-schedule .-content__title {
  margin-bottom: 0.375rem;
  line-height: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-interview-schedule .-content__title {
    line-height: 2.125rem;
  }
}
.p-interview-schedule .-content__text {
  margin-top: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-interview-schedule .-content__text {
    font-size: 0.75rem;
    line-height: 1.5833333333;
  }
}
@media screen and (min-width: 768px) {
  .p-interview-schedule .-content__text {
    margin-top: 0.5625rem;
    line-height: 1.75;
  }
}
.p-interview__slider {
  width: min(100%, 1500px);
  margin-inline: auto;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .p-interview__slider {
    margin-top: 90px;
  }
}
@media screen and (min-width: 1280px) {
  .p-interview__slider .swiper {
    overflow: visible;
  }
}
@media screen and (min-width: 1280px) {
  .p-interview__slider .swiper-wrapper {
    justify-content: center;
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
  }
}
.p-interview__slider .swiper-slide {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-interview-person {
  margin-inline: 30px 10px;
}
@media screen and (min-width: 1280px) {
  .p-interview-person {
    margin-inline: 0;
  }
}
@media (any-hover: hover) {
  .p-interview-person:hover a {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
}
.p-interview-person a {
  position: relative;
  display: grid;
  padding-top: 110px;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media screen and (min-width: 768px) {
  .p-interview-person a {
    padding-top: 120px;
  }
}
.p-interview-person__number {
  z-index: 3;
}
.p-interview-person__head {
  z-index: 2;
}
.p-interview-person__copy {
  z-index: 0;
}
.p-interview-person__image {
  z-index: 1;
}
.p-interview-person__copy {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  place-items: center;
  margin-inline: auto;
  width: 180px;
  height: 180px;
  border-radius: 100vmax;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-interview-person__copy {
    width: 190px;
    height: 190px;
    border-radius: 100vmax;
  }
}
.p-interview-person__copy.--01 {
  background: #00366D;
  color: #fff;
}
.p-interview-person__copy.--02 {
  background: #036EB8;
  color: #fff;
}
.p-interview-person__copy.--03 {
  background: #00A29A;
  color: #fff;
}
.p-interview-person__copy.--04 {
  background: #FAEE00;
}
.p-interview-person__copy.--05 {
  background: #103D96;
  color: #fff;
}
.p-interview-person__copy p {
  margin-bottom: 1em;
  font-size: 0.8125rem;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .p-interview-person__copy p {
    font-size: 0.9375rem;
  }
}
.p-interview-person__image {
  order: -1;
  position: relative;
  width: 200px;
}
@media screen and (min-width: 1280px) {
  .p-interview-person__image {
    justify-self: center;
    width: 220px;
  }
}
.p-interview-person__number {
  position: absolute;
}
.p-interview-person__number.--01 {
  right: 0;
  bottom: 120px;
}
.p-interview-person__number.--02 {
  left: -10px;
  bottom: 170px;
}
.p-interview-person__number.--03 {
  right: 10px;
  bottom: 160px;
}
.p-interview-person__number.--04 {
  left: 0;
  bottom: 115px;
}
.p-interview-person__number.--05 {
  right: -10px;
  bottom: 110px;
}
.p-interview-person__head {
  position: relative;
  display: grid;
  font-size: 0.875rem;
  font-weight: 700;
}
.p-interview-person__head .-person_data {
  padding: 1rem;
  background-color: #fff;
  border: 2px solid;
  line-height: normal;
  text-align: center;
}
.p-interview-person__head .-person_data .-name {
  display: inline-block;
  margin-right: 0.25rem;
  font-size: 1.25rem;
}
.p-interview-person__head .-person_data .-join {
  display: inline-block;
  margin-left: 0.5625rem;
}
.p-interview-person__head .-department {
  position: absolute;
  bottom: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-block: 0.25em;
  padding-inline: 1em;
  background-color: #fff;
  border: 2px solid;
  border-bottom: none;
  font-size: 0.8125rem;
  line-height: normal;
}
.p-interview__profile .p-interview-person__head .-department {
  position: relative;
  bottom: auto;
  order: -1;
}
.p-interview-aside {
  margin-bottom: 135px;
}
.p-interview-aside__title {
  margin-bottom: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-interview-aside__title {
    margin-bottom: 9rem;
  }
}

/*
 keyword
-----------------------------------------------------*/
.p-keywords-list {
  display: grid;
  gap: clamp(38px, 6.3775510204vw, 100px) min(3.6352040816vw, 57px);
  margin-top: 30px;
  margin-bottom: clamp(50px, 4.5280612245vw, 71px);
}
@media screen and (min-width: 768px) {
  .p-keywords-list {
    margin-top: 60px;
  }
}
@media screen and (min-width: 960px) {
  .p-keywords-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-keywords-item {
  position: relative;
  padding-block: 1.3125rem;
  padding-inline: 1rem;
  border-radius: 1rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-keywords-item {
    padding: 2.5rem 3.125rem;
  }
}
.p-keywords-item::after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  right: clamp(50px, 13.3333333333vw, 100px);
  width: clamp(67px, 17.8666666667vw, 135px);
  height: clamp(38px, 4.5280612245vw, 71px);
  -webkit-mask-image: url(../img/keywords/balloon-tail.svg);
          mask-image: url(../img/keywords/balloon-tail.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.p-keywords-item.--yellow {
  background-color: #FAEE00;
  color: inherit;
}
.p-keywords-item.--yellow::after {
  background-color: #FAEE00;
}
.p-keywords-item.--green {
  background-color: #00A29A;
}
.p-keywords-item.--green::after {
  background-color: #00A29A;
}
.p-keywords-item.--lightblue {
  background-color: #036EB8;
}
.p-keywords-item.--lightblue::after {
  background-color: #036EB8;
}
.p-keywords-item.--skyblue {
  background-color: #00A0E9;
}
.p-keywords-item.--skyblue::after {
  background-color: #00A0E9;
}
.p-keywords-item.--navy {
  background-color: #00366D;
}
.p-keywords-item.--navy::after {
  background-color: #00366D;
}
.p-keywords-item.--blue {
  background-color: #103D96;
}
.p-keywords-item.--blue::after {
  background-color: #103D96;
}
.p-keywords-item.--orange {
  background-color: #E2882D;
}
.p-keywords-item.--orange::after {
  background-color: #E2882D;
}
.p-keywords-item__title {
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .p-keywords-item__title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-keywords-item__content {
    font-size: 0.8125rem;
  }
}
.p-keywords__man {
  width: min(50.1333333333vw, 358px);
  margin-inline: auto;
  margin-bottom: 100px;
  -webkit-transform: translateY(10%);
          transform: translateY(10%);
  -webkit-transition: -webkit-transform 0.3s 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: -webkit-transform 0.3s 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.3s 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.3s 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.3s 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media screen and (max-width: 767px) {
  .p-keywords__man {
    margin-right: 0;
  }
}
.p-keywords__man.-active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*
  Responsive
-----------------------------------------------------*/
@media screen and (min-width: 768px) {
  .u-responsive-sp-visible {
    display: none;
  }
}

@media screen and (min-width: 960px) {
  .u-responsive-tab-visible {
    display: none;
  }
}

.u-responsive-sp-hidden {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-responsive-sp-hidden {
    display: initial;
  }
}

.u-responsive-tab-hidden {
  display: none;
}
@media screen and (min-width: 960px) {
  .u-responsive-tab-hidden {
    display: initial;
  }
}

@media screen and (min-width: 768px) {
  .u-pd-r__160 {
    padding-right: 160px;
  }
}

/*
  Screen Reader Text
-----------------------------------------------------*/
.screen-reader-text {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
}