@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@100..900&display=swap");
/* -------------------------------------------------------
reset
------------------------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font: inherit;
  font-size: 100%;
}

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

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

img {
  vertical-align: bottom;
  max-width: 100%;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

html {
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

input[type=text] {
  padding: 0;
  outline: none;
  border: none;
  border-radius: 0;
  background: none;
}

textarea {
  padding: 0;
  outline: none;
  border: 0;
  background: transparent;
  resize: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select {
  outline: none;
  border: none;
}

.anim {
  opacity: 0;
}

.anim.is-show {
  /*
  opacity: 1;
  transform: translateY(0);
  */
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
html,
body {
  font-size: 62.5%;
}

body {
  width: 100%;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.875;
  overflow-x: hidden;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
  color: #20334c;
  background-color: #FCFCFC;
  position: relative;
}
@media screen and (min-width: 1025px) {
  body {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
body.menuOpen {
  overflow: hidden;
}

a {
  color: #20334B;
  text-decoration: none;
  transition: all 0.4s;
}
@media screen and (min-width: 1025px) {
  a:hover {
    opacity: 0.6;
  }
}

select, option, button {
  cursor: pointer;
}

.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

.wrapper {
  position: relative;
  overflow: hidden;
}

.cursor,
.follower {
  display: none;
}
@media (hover: hover) {
  .cursor,
  .follower {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
  }
  .cursor.in,
  .follower.in {
    opacity: 1;
  }
}

@media (hover: hover) {
  .follower {
    z-index: 1000;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.5);
    transition: transform linear 0.3s, width ease 0.3s, height ease 0.3s, opacity ease 0.3s;
  }
  .follower.in {
    width: 40px;
    height: 40px;
  }
  .follower.is-active {
    width: 120px;
    height: 120px;
    background: none;
    border: 1px solid #ccc;
  }
}

#loading {
  position: fixed;
  pointer-events: none;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100lvw;
  height: 100lvh;
  background: linear-gradient(45deg, #393939, #3C392C, #392607);
  background-size: 600% 600%;
  animation: GradientBackground 10s ease infinite;
  transition: all 1.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#loading.completion {
  opacity: 0;
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }
}
@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }
}
.loading__circle {
  height: 250px;
  position: relative;
  width: 250px;
  border-radius: 100%;
}

.loading__circle {
  border: 2px solid transparent;
  border-color: transparent #898989 transparent #585858;
  animation: rotate-loading 2s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

#content {
  width: 100vw;
  overflow: hidden;
}

@keyframes GradientBackground {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.mgb0 {
  margin-bottom: 0 !important;
}

.mgb10 {
  margin-bottom: 10px !important;
}

.mgb20 {
  margin-bottom: 20px !important;
}

.mgb30 {
  margin-bottom: 30px !important;
}

.mgb40 {
  margin-bottom: 40px !important;
}

.mgb50 {
  margin-bottom: 50px !important;
}

hr {
  height: 1px;
  border: none;
  background-color: #ccc;
}

.txt--bold {
  font-weight: bold;
}

.txt--center {
  text-align: center;
}

.txt--red {
  color: #ff6060;
}

.txt-red {
  color: #20334c;
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .txt-red {
    font-size: 1.6rem;
  }
}

.eng {
  font-family: "Oswald", sans-serif !important;
}

.sp {
  display: block;
}
@media screen and (min-width: 1025px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 1025px) {
  .pc {
    display: block;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------------------
中国語
--------------------------------------------------------------------------*/
.u-font-zh-page {
  font-family: "Noto Sans SC", sans-serif;
}
.u-font-zh-page p,
.u-font-zh-page .c-sec__title__jpn,
.u-font-zh-page div,
.u-font-zh-page ul,
.u-font-zh-page li,
.u-font-zh-page span,
.u-font-zh-page a {
  font-family: "Noto Sans SC", sans-serif;
}

.u-font-zh {
  font-family: "Noto Sans SC", sans-serif;
}

/*--------------------------------------------------------------------------
テキスト
--------------------------------------------------------------------------*/
.u-lh-18 {
  line-height: 1.8 !important;
}

.u-fw-500 {
  font-weight: 500 !important;
}

.u-fw-700 {
  font-weight: 700 !important;
}

.u-txt-blue {
  color: #0060ce;
}

/*--------------------------------------------------------------------------
margin, padding
--------------------------------------------------------------------------*/
.u-p-0 {
  padding: 0px !important;
}

.u-pt-0 {
  padding-top: 0px !important;
}

.u-pr-0 {
  padding-right: 0px !important;
}

.u-pb-0 {
  padding-bottom: 0px !important;
}

.u-pl-0 {
  padding-left: 0px !important;
}

.u-m-0 {
  margin: 0px !important;
}

.u-mt-0 {
  margin-top: 0px !important;
}

.u-mr-0 {
  margin-right: 0px !important;
}

.u-mb-0 {
  margin-bottom: 0px !important;
}

.u-ml-0 {
  margin-left: 0px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-0 {
    padding: 0px !important;
  }
  .md\:u-pt-0 {
    padding-top: 0px !important;
  }
  .md\:u-pr-0 {
    padding-right: 0px !important;
  }
  .md\:u-pb-0 {
    padding-bottom: 0px !important;
  }
  .md\:u-pl-0 {
    padding-left: 0px !important;
  }
  .md\:u-m-0 {
    margin: 0px !important;
  }
  .md\:u-mt-0 {
    margin-top: 0px !important;
  }
  .md\:u-mr-0 {
    margin-right: 0px !important;
  }
  .md\:u-mb-0 {
    margin-bottom: 0px !important;
  }
  .md\:u-ml-0 {
    margin-left: 0px !important;
  }
}
.u-fs-0 {
  font-size: 0px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-0 {
    font-size: 0px !important;
  }
}
.u-p-2 {
  padding: 2px !important;
}

.u-pt-2 {
  padding-top: 2px !important;
}

.u-pr-2 {
  padding-right: 2px !important;
}

.u-pb-2 {
  padding-bottom: 2px !important;
}

.u-pl-2 {
  padding-left: 2px !important;
}

.u-m-2 {
  margin: 2px !important;
}

.u-mt-2 {
  margin-top: 2px !important;
}

.u-mr-2 {
  margin-right: 2px !important;
}

.u-mb-2 {
  margin-bottom: 2px !important;
}

.u-ml-2 {
  margin-left: 2px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-2 {
    padding: 2px !important;
  }
  .md\:u-pt-2 {
    padding-top: 2px !important;
  }
  .md\:u-pr-2 {
    padding-right: 2px !important;
  }
  .md\:u-pb-2 {
    padding-bottom: 2px !important;
  }
  .md\:u-pl-2 {
    padding-left: 2px !important;
  }
  .md\:u-m-2 {
    margin: 2px !important;
  }
  .md\:u-mt-2 {
    margin-top: 2px !important;
  }
  .md\:u-mr-2 {
    margin-right: 2px !important;
  }
  .md\:u-mb-2 {
    margin-bottom: 2px !important;
  }
  .md\:u-ml-2 {
    margin-left: 2px !important;
  }
}
.u-fs-2 {
  font-size: 2px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-2 {
    font-size: 2px !important;
  }
}
.u-p-4 {
  padding: 4px !important;
}

.u-pt-4 {
  padding-top: 4px !important;
}

.u-pr-4 {
  padding-right: 4px !important;
}

.u-pb-4 {
  padding-bottom: 4px !important;
}

.u-pl-4 {
  padding-left: 4px !important;
}

.u-m-4 {
  margin: 4px !important;
}

.u-mt-4 {
  margin-top: 4px !important;
}

.u-mr-4 {
  margin-right: 4px !important;
}

.u-mb-4 {
  margin-bottom: 4px !important;
}

.u-ml-4 {
  margin-left: 4px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-4 {
    padding: 4px !important;
  }
  .md\:u-pt-4 {
    padding-top: 4px !important;
  }
  .md\:u-pr-4 {
    padding-right: 4px !important;
  }
  .md\:u-pb-4 {
    padding-bottom: 4px !important;
  }
  .md\:u-pl-4 {
    padding-left: 4px !important;
  }
  .md\:u-m-4 {
    margin: 4px !important;
  }
  .md\:u-mt-4 {
    margin-top: 4px !important;
  }
  .md\:u-mr-4 {
    margin-right: 4px !important;
  }
  .md\:u-mb-4 {
    margin-bottom: 4px !important;
  }
  .md\:u-ml-4 {
    margin-left: 4px !important;
  }
}
.u-fs-4 {
  font-size: 4px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-4 {
    font-size: 4px !important;
  }
}
.u-p-6 {
  padding: 6px !important;
}

.u-pt-6 {
  padding-top: 6px !important;
}

.u-pr-6 {
  padding-right: 6px !important;
}

.u-pb-6 {
  padding-bottom: 6px !important;
}

.u-pl-6 {
  padding-left: 6px !important;
}

.u-m-6 {
  margin: 6px !important;
}

.u-mt-6 {
  margin-top: 6px !important;
}

.u-mr-6 {
  margin-right: 6px !important;
}

.u-mb-6 {
  margin-bottom: 6px !important;
}

.u-ml-6 {
  margin-left: 6px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-6 {
    padding: 6px !important;
  }
  .md\:u-pt-6 {
    padding-top: 6px !important;
  }
  .md\:u-pr-6 {
    padding-right: 6px !important;
  }
  .md\:u-pb-6 {
    padding-bottom: 6px !important;
  }
  .md\:u-pl-6 {
    padding-left: 6px !important;
  }
  .md\:u-m-6 {
    margin: 6px !important;
  }
  .md\:u-mt-6 {
    margin-top: 6px !important;
  }
  .md\:u-mr-6 {
    margin-right: 6px !important;
  }
  .md\:u-mb-6 {
    margin-bottom: 6px !important;
  }
  .md\:u-ml-6 {
    margin-left: 6px !important;
  }
}
.u-fs-6 {
  font-size: 6px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-6 {
    font-size: 6px !important;
  }
}
.u-p-8 {
  padding: 8px !important;
}

.u-pt-8 {
  padding-top: 8px !important;
}

.u-pr-8 {
  padding-right: 8px !important;
}

.u-pb-8 {
  padding-bottom: 8px !important;
}

.u-pl-8 {
  padding-left: 8px !important;
}

.u-m-8 {
  margin: 8px !important;
}

.u-mt-8 {
  margin-top: 8px !important;
}

.u-mr-8 {
  margin-right: 8px !important;
}

.u-mb-8 {
  margin-bottom: 8px !important;
}

.u-ml-8 {
  margin-left: 8px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-8 {
    padding: 8px !important;
  }
  .md\:u-pt-8 {
    padding-top: 8px !important;
  }
  .md\:u-pr-8 {
    padding-right: 8px !important;
  }
  .md\:u-pb-8 {
    padding-bottom: 8px !important;
  }
  .md\:u-pl-8 {
    padding-left: 8px !important;
  }
  .md\:u-m-8 {
    margin: 8px !important;
  }
  .md\:u-mt-8 {
    margin-top: 8px !important;
  }
  .md\:u-mr-8 {
    margin-right: 8px !important;
  }
  .md\:u-mb-8 {
    margin-bottom: 8px !important;
  }
  .md\:u-ml-8 {
    margin-left: 8px !important;
  }
}
.u-fs-8 {
  font-size: 8px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-8 {
    font-size: 8px !important;
  }
}
.u-p-10 {
  padding: 10px !important;
}

.u-pt-10 {
  padding-top: 10px !important;
}

.u-pr-10 {
  padding-right: 10px !important;
}

.u-pb-10 {
  padding-bottom: 10px !important;
}

.u-pl-10 {
  padding-left: 10px !important;
}

.u-m-10 {
  margin: 10px !important;
}

.u-mt-10 {
  margin-top: 10px !important;
}

.u-mr-10 {
  margin-right: 10px !important;
}

.u-mb-10 {
  margin-bottom: 10px !important;
}

.u-ml-10 {
  margin-left: 10px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-10 {
    padding: 10px !important;
  }
  .md\:u-pt-10 {
    padding-top: 10px !important;
  }
  .md\:u-pr-10 {
    padding-right: 10px !important;
  }
  .md\:u-pb-10 {
    padding-bottom: 10px !important;
  }
  .md\:u-pl-10 {
    padding-left: 10px !important;
  }
  .md\:u-m-10 {
    margin: 10px !important;
  }
  .md\:u-mt-10 {
    margin-top: 10px !important;
  }
  .md\:u-mr-10 {
    margin-right: 10px !important;
  }
  .md\:u-mb-10 {
    margin-bottom: 10px !important;
  }
  .md\:u-ml-10 {
    margin-left: 10px !important;
  }
}
.u-fs-10 {
  font-size: 10px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-10 {
    font-size: 10px !important;
  }
}
.u-p-11 {
  padding: 11px !important;
}

.u-pt-11 {
  padding-top: 11px !important;
}

.u-pr-11 {
  padding-right: 11px !important;
}

.u-pb-11 {
  padding-bottom: 11px !important;
}

.u-pl-11 {
  padding-left: 11px !important;
}

.u-m-11 {
  margin: 11px !important;
}

.u-mt-11 {
  margin-top: 11px !important;
}

.u-mr-11 {
  margin-right: 11px !important;
}

.u-mb-11 {
  margin-bottom: 11px !important;
}

.u-ml-11 {
  margin-left: 11px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-11 {
    padding: 11px !important;
  }
  .md\:u-pt-11 {
    padding-top: 11px !important;
  }
  .md\:u-pr-11 {
    padding-right: 11px !important;
  }
  .md\:u-pb-11 {
    padding-bottom: 11px !important;
  }
  .md\:u-pl-11 {
    padding-left: 11px !important;
  }
  .md\:u-m-11 {
    margin: 11px !important;
  }
  .md\:u-mt-11 {
    margin-top: 11px !important;
  }
  .md\:u-mr-11 {
    margin-right: 11px !important;
  }
  .md\:u-mb-11 {
    margin-bottom: 11px !important;
  }
  .md\:u-ml-11 {
    margin-left: 11px !important;
  }
}
.u-fs-11 {
  font-size: 11px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-11 {
    font-size: 11px !important;
  }
}
.u-p-12 {
  padding: 12px !important;
}

.u-pt-12 {
  padding-top: 12px !important;
}

.u-pr-12 {
  padding-right: 12px !important;
}

.u-pb-12 {
  padding-bottom: 12px !important;
}

.u-pl-12 {
  padding-left: 12px !important;
}

.u-m-12 {
  margin: 12px !important;
}

.u-mt-12 {
  margin-top: 12px !important;
}

.u-mr-12 {
  margin-right: 12px !important;
}

.u-mb-12 {
  margin-bottom: 12px !important;
}

.u-ml-12 {
  margin-left: 12px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-12 {
    padding: 12px !important;
  }
  .md\:u-pt-12 {
    padding-top: 12px !important;
  }
  .md\:u-pr-12 {
    padding-right: 12px !important;
  }
  .md\:u-pb-12 {
    padding-bottom: 12px !important;
  }
  .md\:u-pl-12 {
    padding-left: 12px !important;
  }
  .md\:u-m-12 {
    margin: 12px !important;
  }
  .md\:u-mt-12 {
    margin-top: 12px !important;
  }
  .md\:u-mr-12 {
    margin-right: 12px !important;
  }
  .md\:u-mb-12 {
    margin-bottom: 12px !important;
  }
  .md\:u-ml-12 {
    margin-left: 12px !important;
  }
}
.u-fs-12 {
  font-size: 12px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-12 {
    font-size: 12px !important;
  }
}
.u-p-13 {
  padding: 13px !important;
}

.u-pt-13 {
  padding-top: 13px !important;
}

.u-pr-13 {
  padding-right: 13px !important;
}

.u-pb-13 {
  padding-bottom: 13px !important;
}

.u-pl-13 {
  padding-left: 13px !important;
}

.u-m-13 {
  margin: 13px !important;
}

.u-mt-13 {
  margin-top: 13px !important;
}

.u-mr-13 {
  margin-right: 13px !important;
}

.u-mb-13 {
  margin-bottom: 13px !important;
}

.u-ml-13 {
  margin-left: 13px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-13 {
    padding: 13px !important;
  }
  .md\:u-pt-13 {
    padding-top: 13px !important;
  }
  .md\:u-pr-13 {
    padding-right: 13px !important;
  }
  .md\:u-pb-13 {
    padding-bottom: 13px !important;
  }
  .md\:u-pl-13 {
    padding-left: 13px !important;
  }
  .md\:u-m-13 {
    margin: 13px !important;
  }
  .md\:u-mt-13 {
    margin-top: 13px !important;
  }
  .md\:u-mr-13 {
    margin-right: 13px !important;
  }
  .md\:u-mb-13 {
    margin-bottom: 13px !important;
  }
  .md\:u-ml-13 {
    margin-left: 13px !important;
  }
}
.u-fs-13 {
  font-size: 13px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-13 {
    font-size: 13px !important;
  }
}
.u-p-14 {
  padding: 14px !important;
}

.u-pt-14 {
  padding-top: 14px !important;
}

.u-pr-14 {
  padding-right: 14px !important;
}

.u-pb-14 {
  padding-bottom: 14px !important;
}

.u-pl-14 {
  padding-left: 14px !important;
}

.u-m-14 {
  margin: 14px !important;
}

.u-mt-14 {
  margin-top: 14px !important;
}

.u-mr-14 {
  margin-right: 14px !important;
}

.u-mb-14 {
  margin-bottom: 14px !important;
}

.u-ml-14 {
  margin-left: 14px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-14 {
    padding: 14px !important;
  }
  .md\:u-pt-14 {
    padding-top: 14px !important;
  }
  .md\:u-pr-14 {
    padding-right: 14px !important;
  }
  .md\:u-pb-14 {
    padding-bottom: 14px !important;
  }
  .md\:u-pl-14 {
    padding-left: 14px !important;
  }
  .md\:u-m-14 {
    margin: 14px !important;
  }
  .md\:u-mt-14 {
    margin-top: 14px !important;
  }
  .md\:u-mr-14 {
    margin-right: 14px !important;
  }
  .md\:u-mb-14 {
    margin-bottom: 14px !important;
  }
  .md\:u-ml-14 {
    margin-left: 14px !important;
  }
}
.u-fs-14 {
  font-size: 14px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-14 {
    font-size: 14px !important;
  }
}
.u-p-15 {
  padding: 15px !important;
}

.u-pt-15 {
  padding-top: 15px !important;
}

.u-pr-15 {
  padding-right: 15px !important;
}

.u-pb-15 {
  padding-bottom: 15px !important;
}

.u-pl-15 {
  padding-left: 15px !important;
}

.u-m-15 {
  margin: 15px !important;
}

.u-mt-15 {
  margin-top: 15px !important;
}

.u-mr-15 {
  margin-right: 15px !important;
}

.u-mb-15 {
  margin-bottom: 15px !important;
}

.u-ml-15 {
  margin-left: 15px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-15 {
    padding: 15px !important;
  }
  .md\:u-pt-15 {
    padding-top: 15px !important;
  }
  .md\:u-pr-15 {
    padding-right: 15px !important;
  }
  .md\:u-pb-15 {
    padding-bottom: 15px !important;
  }
  .md\:u-pl-15 {
    padding-left: 15px !important;
  }
  .md\:u-m-15 {
    margin: 15px !important;
  }
  .md\:u-mt-15 {
    margin-top: 15px !important;
  }
  .md\:u-mr-15 {
    margin-right: 15px !important;
  }
  .md\:u-mb-15 {
    margin-bottom: 15px !important;
  }
  .md\:u-ml-15 {
    margin-left: 15px !important;
  }
}
.u-fs-15 {
  font-size: 15px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-15 {
    font-size: 15px !important;
  }
}
.u-p-16 {
  padding: 16px !important;
}

.u-pt-16 {
  padding-top: 16px !important;
}

.u-pr-16 {
  padding-right: 16px !important;
}

.u-pb-16 {
  padding-bottom: 16px !important;
}

.u-pl-16 {
  padding-left: 16px !important;
}

.u-m-16 {
  margin: 16px !important;
}

.u-mt-16 {
  margin-top: 16px !important;
}

.u-mr-16 {
  margin-right: 16px !important;
}

.u-mb-16 {
  margin-bottom: 16px !important;
}

.u-ml-16 {
  margin-left: 16px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-16 {
    padding: 16px !important;
  }
  .md\:u-pt-16 {
    padding-top: 16px !important;
  }
  .md\:u-pr-16 {
    padding-right: 16px !important;
  }
  .md\:u-pb-16 {
    padding-bottom: 16px !important;
  }
  .md\:u-pl-16 {
    padding-left: 16px !important;
  }
  .md\:u-m-16 {
    margin: 16px !important;
  }
  .md\:u-mt-16 {
    margin-top: 16px !important;
  }
  .md\:u-mr-16 {
    margin-right: 16px !important;
  }
  .md\:u-mb-16 {
    margin-bottom: 16px !important;
  }
  .md\:u-ml-16 {
    margin-left: 16px !important;
  }
}
.u-fs-16 {
  font-size: 16px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-16 {
    font-size: 16px !important;
  }
}
.u-p-17 {
  padding: 17px !important;
}

.u-pt-17 {
  padding-top: 17px !important;
}

.u-pr-17 {
  padding-right: 17px !important;
}

.u-pb-17 {
  padding-bottom: 17px !important;
}

.u-pl-17 {
  padding-left: 17px !important;
}

.u-m-17 {
  margin: 17px !important;
}

.u-mt-17 {
  margin-top: 17px !important;
}

.u-mr-17 {
  margin-right: 17px !important;
}

.u-mb-17 {
  margin-bottom: 17px !important;
}

.u-ml-17 {
  margin-left: 17px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-17 {
    padding: 17px !important;
  }
  .md\:u-pt-17 {
    padding-top: 17px !important;
  }
  .md\:u-pr-17 {
    padding-right: 17px !important;
  }
  .md\:u-pb-17 {
    padding-bottom: 17px !important;
  }
  .md\:u-pl-17 {
    padding-left: 17px !important;
  }
  .md\:u-m-17 {
    margin: 17px !important;
  }
  .md\:u-mt-17 {
    margin-top: 17px !important;
  }
  .md\:u-mr-17 {
    margin-right: 17px !important;
  }
  .md\:u-mb-17 {
    margin-bottom: 17px !important;
  }
  .md\:u-ml-17 {
    margin-left: 17px !important;
  }
}
.u-fs-17 {
  font-size: 17px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-17 {
    font-size: 17px !important;
  }
}
.u-p-18 {
  padding: 18px !important;
}

.u-pt-18 {
  padding-top: 18px !important;
}

.u-pr-18 {
  padding-right: 18px !important;
}

.u-pb-18 {
  padding-bottom: 18px !important;
}

.u-pl-18 {
  padding-left: 18px !important;
}

.u-m-18 {
  margin: 18px !important;
}

.u-mt-18 {
  margin-top: 18px !important;
}

.u-mr-18 {
  margin-right: 18px !important;
}

.u-mb-18 {
  margin-bottom: 18px !important;
}

.u-ml-18 {
  margin-left: 18px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-18 {
    padding: 18px !important;
  }
  .md\:u-pt-18 {
    padding-top: 18px !important;
  }
  .md\:u-pr-18 {
    padding-right: 18px !important;
  }
  .md\:u-pb-18 {
    padding-bottom: 18px !important;
  }
  .md\:u-pl-18 {
    padding-left: 18px !important;
  }
  .md\:u-m-18 {
    margin: 18px !important;
  }
  .md\:u-mt-18 {
    margin-top: 18px !important;
  }
  .md\:u-mr-18 {
    margin-right: 18px !important;
  }
  .md\:u-mb-18 {
    margin-bottom: 18px !important;
  }
  .md\:u-ml-18 {
    margin-left: 18px !important;
  }
}
.u-fs-18 {
  font-size: 18px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-18 {
    font-size: 18px !important;
  }
}
.u-p-19 {
  padding: 19px !important;
}

.u-pt-19 {
  padding-top: 19px !important;
}

.u-pr-19 {
  padding-right: 19px !important;
}

.u-pb-19 {
  padding-bottom: 19px !important;
}

.u-pl-19 {
  padding-left: 19px !important;
}

.u-m-19 {
  margin: 19px !important;
}

.u-mt-19 {
  margin-top: 19px !important;
}

.u-mr-19 {
  margin-right: 19px !important;
}

.u-mb-19 {
  margin-bottom: 19px !important;
}

.u-ml-19 {
  margin-left: 19px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-19 {
    padding: 19px !important;
  }
  .md\:u-pt-19 {
    padding-top: 19px !important;
  }
  .md\:u-pr-19 {
    padding-right: 19px !important;
  }
  .md\:u-pb-19 {
    padding-bottom: 19px !important;
  }
  .md\:u-pl-19 {
    padding-left: 19px !important;
  }
  .md\:u-m-19 {
    margin: 19px !important;
  }
  .md\:u-mt-19 {
    margin-top: 19px !important;
  }
  .md\:u-mr-19 {
    margin-right: 19px !important;
  }
  .md\:u-mb-19 {
    margin-bottom: 19px !important;
  }
  .md\:u-ml-19 {
    margin-left: 19px !important;
  }
}
.u-fs-19 {
  font-size: 19px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-19 {
    font-size: 19px !important;
  }
}
.u-p-20 {
  padding: 20px !important;
}

.u-pt-20 {
  padding-top: 20px !important;
}

.u-pr-20 {
  padding-right: 20px !important;
}

.u-pb-20 {
  padding-bottom: 20px !important;
}

.u-pl-20 {
  padding-left: 20px !important;
}

.u-m-20 {
  margin: 20px !important;
}

.u-mt-20 {
  margin-top: 20px !important;
}

.u-mr-20 {
  margin-right: 20px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-ml-20 {
  margin-left: 20px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-20 {
    padding: 20px !important;
  }
  .md\:u-pt-20 {
    padding-top: 20px !important;
  }
  .md\:u-pr-20 {
    padding-right: 20px !important;
  }
  .md\:u-pb-20 {
    padding-bottom: 20px !important;
  }
  .md\:u-pl-20 {
    padding-left: 20px !important;
  }
  .md\:u-m-20 {
    margin: 20px !important;
  }
  .md\:u-mt-20 {
    margin-top: 20px !important;
  }
  .md\:u-mr-20 {
    margin-right: 20px !important;
  }
  .md\:u-mb-20 {
    margin-bottom: 20px !important;
  }
  .md\:u-ml-20 {
    margin-left: 20px !important;
  }
}
.u-fs-20 {
  font-size: 20px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-20 {
    font-size: 20px !important;
  }
}
.u-p-22 {
  padding: 22px !important;
}

.u-pt-22 {
  padding-top: 22px !important;
}

.u-pr-22 {
  padding-right: 22px !important;
}

.u-pb-22 {
  padding-bottom: 22px !important;
}

.u-pl-22 {
  padding-left: 22px !important;
}

.u-m-22 {
  margin: 22px !important;
}

.u-mt-22 {
  margin-top: 22px !important;
}

.u-mr-22 {
  margin-right: 22px !important;
}

.u-mb-22 {
  margin-bottom: 22px !important;
}

.u-ml-22 {
  margin-left: 22px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-22 {
    padding: 22px !important;
  }
  .md\:u-pt-22 {
    padding-top: 22px !important;
  }
  .md\:u-pr-22 {
    padding-right: 22px !important;
  }
  .md\:u-pb-22 {
    padding-bottom: 22px !important;
  }
  .md\:u-pl-22 {
    padding-left: 22px !important;
  }
  .md\:u-m-22 {
    margin: 22px !important;
  }
  .md\:u-mt-22 {
    margin-top: 22px !important;
  }
  .md\:u-mr-22 {
    margin-right: 22px !important;
  }
  .md\:u-mb-22 {
    margin-bottom: 22px !important;
  }
  .md\:u-ml-22 {
    margin-left: 22px !important;
  }
}
.u-fs-22 {
  font-size: 22px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-22 {
    font-size: 22px !important;
  }
}
.u-p-24 {
  padding: 24px !important;
}

.u-pt-24 {
  padding-top: 24px !important;
}

.u-pr-24 {
  padding-right: 24px !important;
}

.u-pb-24 {
  padding-bottom: 24px !important;
}

.u-pl-24 {
  padding-left: 24px !important;
}

.u-m-24 {
  margin: 24px !important;
}

.u-mt-24 {
  margin-top: 24px !important;
}

.u-mr-24 {
  margin-right: 24px !important;
}

.u-mb-24 {
  margin-bottom: 24px !important;
}

.u-ml-24 {
  margin-left: 24px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-24 {
    padding: 24px !important;
  }
  .md\:u-pt-24 {
    padding-top: 24px !important;
  }
  .md\:u-pr-24 {
    padding-right: 24px !important;
  }
  .md\:u-pb-24 {
    padding-bottom: 24px !important;
  }
  .md\:u-pl-24 {
    padding-left: 24px !important;
  }
  .md\:u-m-24 {
    margin: 24px !important;
  }
  .md\:u-mt-24 {
    margin-top: 24px !important;
  }
  .md\:u-mr-24 {
    margin-right: 24px !important;
  }
  .md\:u-mb-24 {
    margin-bottom: 24px !important;
  }
  .md\:u-ml-24 {
    margin-left: 24px !important;
  }
}
.u-fs-24 {
  font-size: 24px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-24 {
    font-size: 24px !important;
  }
}
.u-p-26 {
  padding: 26px !important;
}

.u-pt-26 {
  padding-top: 26px !important;
}

.u-pr-26 {
  padding-right: 26px !important;
}

.u-pb-26 {
  padding-bottom: 26px !important;
}

.u-pl-26 {
  padding-left: 26px !important;
}

.u-m-26 {
  margin: 26px !important;
}

.u-mt-26 {
  margin-top: 26px !important;
}

.u-mr-26 {
  margin-right: 26px !important;
}

.u-mb-26 {
  margin-bottom: 26px !important;
}

.u-ml-26 {
  margin-left: 26px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-26 {
    padding: 26px !important;
  }
  .md\:u-pt-26 {
    padding-top: 26px !important;
  }
  .md\:u-pr-26 {
    padding-right: 26px !important;
  }
  .md\:u-pb-26 {
    padding-bottom: 26px !important;
  }
  .md\:u-pl-26 {
    padding-left: 26px !important;
  }
  .md\:u-m-26 {
    margin: 26px !important;
  }
  .md\:u-mt-26 {
    margin-top: 26px !important;
  }
  .md\:u-mr-26 {
    margin-right: 26px !important;
  }
  .md\:u-mb-26 {
    margin-bottom: 26px !important;
  }
  .md\:u-ml-26 {
    margin-left: 26px !important;
  }
}
.u-fs-26 {
  font-size: 26px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-26 {
    font-size: 26px !important;
  }
}
.u-p-28 {
  padding: 28px !important;
}

.u-pt-28 {
  padding-top: 28px !important;
}

.u-pr-28 {
  padding-right: 28px !important;
}

.u-pb-28 {
  padding-bottom: 28px !important;
}

.u-pl-28 {
  padding-left: 28px !important;
}

.u-m-28 {
  margin: 28px !important;
}

.u-mt-28 {
  margin-top: 28px !important;
}

.u-mr-28 {
  margin-right: 28px !important;
}

.u-mb-28 {
  margin-bottom: 28px !important;
}

.u-ml-28 {
  margin-left: 28px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-28 {
    padding: 28px !important;
  }
  .md\:u-pt-28 {
    padding-top: 28px !important;
  }
  .md\:u-pr-28 {
    padding-right: 28px !important;
  }
  .md\:u-pb-28 {
    padding-bottom: 28px !important;
  }
  .md\:u-pl-28 {
    padding-left: 28px !important;
  }
  .md\:u-m-28 {
    margin: 28px !important;
  }
  .md\:u-mt-28 {
    margin-top: 28px !important;
  }
  .md\:u-mr-28 {
    margin-right: 28px !important;
  }
  .md\:u-mb-28 {
    margin-bottom: 28px !important;
  }
  .md\:u-ml-28 {
    margin-left: 28px !important;
  }
}
.u-fs-28 {
  font-size: 28px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-28 {
    font-size: 28px !important;
  }
}
.u-p-30 {
  padding: 30px !important;
}

.u-pt-30 {
  padding-top: 30px !important;
}

.u-pr-30 {
  padding-right: 30px !important;
}

.u-pb-30 {
  padding-bottom: 30px !important;
}

.u-pl-30 {
  padding-left: 30px !important;
}

.u-m-30 {
  margin: 30px !important;
}

.u-mt-30 {
  margin-top: 30px !important;
}

.u-mr-30 {
  margin-right: 30px !important;
}

.u-mb-30 {
  margin-bottom: 30px !important;
}

.u-ml-30 {
  margin-left: 30px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-30 {
    padding: 30px !important;
  }
  .md\:u-pt-30 {
    padding-top: 30px !important;
  }
  .md\:u-pr-30 {
    padding-right: 30px !important;
  }
  .md\:u-pb-30 {
    padding-bottom: 30px !important;
  }
  .md\:u-pl-30 {
    padding-left: 30px !important;
  }
  .md\:u-m-30 {
    margin: 30px !important;
  }
  .md\:u-mt-30 {
    margin-top: 30px !important;
  }
  .md\:u-mr-30 {
    margin-right: 30px !important;
  }
  .md\:u-mb-30 {
    margin-bottom: 30px !important;
  }
  .md\:u-ml-30 {
    margin-left: 30px !important;
  }
}
.u-fs-30 {
  font-size: 30px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-30 {
    font-size: 30px !important;
  }
}
.u-p-32 {
  padding: 32px !important;
}

.u-pt-32 {
  padding-top: 32px !important;
}

.u-pr-32 {
  padding-right: 32px !important;
}

.u-pb-32 {
  padding-bottom: 32px !important;
}

.u-pl-32 {
  padding-left: 32px !important;
}

.u-m-32 {
  margin: 32px !important;
}

.u-mt-32 {
  margin-top: 32px !important;
}

.u-mr-32 {
  margin-right: 32px !important;
}

.u-mb-32 {
  margin-bottom: 32px !important;
}

.u-ml-32 {
  margin-left: 32px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-32 {
    padding: 32px !important;
  }
  .md\:u-pt-32 {
    padding-top: 32px !important;
  }
  .md\:u-pr-32 {
    padding-right: 32px !important;
  }
  .md\:u-pb-32 {
    padding-bottom: 32px !important;
  }
  .md\:u-pl-32 {
    padding-left: 32px !important;
  }
  .md\:u-m-32 {
    margin: 32px !important;
  }
  .md\:u-mt-32 {
    margin-top: 32px !important;
  }
  .md\:u-mr-32 {
    margin-right: 32px !important;
  }
  .md\:u-mb-32 {
    margin-bottom: 32px !important;
  }
  .md\:u-ml-32 {
    margin-left: 32px !important;
  }
}
.u-fs-32 {
  font-size: 32px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-32 {
    font-size: 32px !important;
  }
}
.u-p-36 {
  padding: 36px !important;
}

.u-pt-36 {
  padding-top: 36px !important;
}

.u-pr-36 {
  padding-right: 36px !important;
}

.u-pb-36 {
  padding-bottom: 36px !important;
}

.u-pl-36 {
  padding-left: 36px !important;
}

.u-m-36 {
  margin: 36px !important;
}

.u-mt-36 {
  margin-top: 36px !important;
}

.u-mr-36 {
  margin-right: 36px !important;
}

.u-mb-36 {
  margin-bottom: 36px !important;
}

.u-ml-36 {
  margin-left: 36px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-36 {
    padding: 36px !important;
  }
  .md\:u-pt-36 {
    padding-top: 36px !important;
  }
  .md\:u-pr-36 {
    padding-right: 36px !important;
  }
  .md\:u-pb-36 {
    padding-bottom: 36px !important;
  }
  .md\:u-pl-36 {
    padding-left: 36px !important;
  }
  .md\:u-m-36 {
    margin: 36px !important;
  }
  .md\:u-mt-36 {
    margin-top: 36px !important;
  }
  .md\:u-mr-36 {
    margin-right: 36px !important;
  }
  .md\:u-mb-36 {
    margin-bottom: 36px !important;
  }
  .md\:u-ml-36 {
    margin-left: 36px !important;
  }
}
.u-fs-36 {
  font-size: 36px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-36 {
    font-size: 36px !important;
  }
}
.u-p-40 {
  padding: 40px !important;
}

.u-pt-40 {
  padding-top: 40px !important;
}

.u-pr-40 {
  padding-right: 40px !important;
}

.u-pb-40 {
  padding-bottom: 40px !important;
}

.u-pl-40 {
  padding-left: 40px !important;
}

.u-m-40 {
  margin: 40px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mr-40 {
  margin-right: 40px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-ml-40 {
  margin-left: 40px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-40 {
    padding: 40px !important;
  }
  .md\:u-pt-40 {
    padding-top: 40px !important;
  }
  .md\:u-pr-40 {
    padding-right: 40px !important;
  }
  .md\:u-pb-40 {
    padding-bottom: 40px !important;
  }
  .md\:u-pl-40 {
    padding-left: 40px !important;
  }
  .md\:u-m-40 {
    margin: 40px !important;
  }
  .md\:u-mt-40 {
    margin-top: 40px !important;
  }
  .md\:u-mr-40 {
    margin-right: 40px !important;
  }
  .md\:u-mb-40 {
    margin-bottom: 40px !important;
  }
  .md\:u-ml-40 {
    margin-left: 40px !important;
  }
}
.u-fs-40 {
  font-size: 40px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-40 {
    font-size: 40px !important;
  }
}
.u-p-44 {
  padding: 44px !important;
}

.u-pt-44 {
  padding-top: 44px !important;
}

.u-pr-44 {
  padding-right: 44px !important;
}

.u-pb-44 {
  padding-bottom: 44px !important;
}

.u-pl-44 {
  padding-left: 44px !important;
}

.u-m-44 {
  margin: 44px !important;
}

.u-mt-44 {
  margin-top: 44px !important;
}

.u-mr-44 {
  margin-right: 44px !important;
}

.u-mb-44 {
  margin-bottom: 44px !important;
}

.u-ml-44 {
  margin-left: 44px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-44 {
    padding: 44px !important;
  }
  .md\:u-pt-44 {
    padding-top: 44px !important;
  }
  .md\:u-pr-44 {
    padding-right: 44px !important;
  }
  .md\:u-pb-44 {
    padding-bottom: 44px !important;
  }
  .md\:u-pl-44 {
    padding-left: 44px !important;
  }
  .md\:u-m-44 {
    margin: 44px !important;
  }
  .md\:u-mt-44 {
    margin-top: 44px !important;
  }
  .md\:u-mr-44 {
    margin-right: 44px !important;
  }
  .md\:u-mb-44 {
    margin-bottom: 44px !important;
  }
  .md\:u-ml-44 {
    margin-left: 44px !important;
  }
}
.u-fs-44 {
  font-size: 44px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-44 {
    font-size: 44px !important;
  }
}
.u-p-48 {
  padding: 48px !important;
}

.u-pt-48 {
  padding-top: 48px !important;
}

.u-pr-48 {
  padding-right: 48px !important;
}

.u-pb-48 {
  padding-bottom: 48px !important;
}

.u-pl-48 {
  padding-left: 48px !important;
}

.u-m-48 {
  margin: 48px !important;
}

.u-mt-48 {
  margin-top: 48px !important;
}

.u-mr-48 {
  margin-right: 48px !important;
}

.u-mb-48 {
  margin-bottom: 48px !important;
}

.u-ml-48 {
  margin-left: 48px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-48 {
    padding: 48px !important;
  }
  .md\:u-pt-48 {
    padding-top: 48px !important;
  }
  .md\:u-pr-48 {
    padding-right: 48px !important;
  }
  .md\:u-pb-48 {
    padding-bottom: 48px !important;
  }
  .md\:u-pl-48 {
    padding-left: 48px !important;
  }
  .md\:u-m-48 {
    margin: 48px !important;
  }
  .md\:u-mt-48 {
    margin-top: 48px !important;
  }
  .md\:u-mr-48 {
    margin-right: 48px !important;
  }
  .md\:u-mb-48 {
    margin-bottom: 48px !important;
  }
  .md\:u-ml-48 {
    margin-left: 48px !important;
  }
}
.u-fs-48 {
  font-size: 48px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-48 {
    font-size: 48px !important;
  }
}
.u-p-52 {
  padding: 52px !important;
}

.u-pt-52 {
  padding-top: 52px !important;
}

.u-pr-52 {
  padding-right: 52px !important;
}

.u-pb-52 {
  padding-bottom: 52px !important;
}

.u-pl-52 {
  padding-left: 52px !important;
}

.u-m-52 {
  margin: 52px !important;
}

.u-mt-52 {
  margin-top: 52px !important;
}

.u-mr-52 {
  margin-right: 52px !important;
}

.u-mb-52 {
  margin-bottom: 52px !important;
}

.u-ml-52 {
  margin-left: 52px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-52 {
    padding: 52px !important;
  }
  .md\:u-pt-52 {
    padding-top: 52px !important;
  }
  .md\:u-pr-52 {
    padding-right: 52px !important;
  }
  .md\:u-pb-52 {
    padding-bottom: 52px !important;
  }
  .md\:u-pl-52 {
    padding-left: 52px !important;
  }
  .md\:u-m-52 {
    margin: 52px !important;
  }
  .md\:u-mt-52 {
    margin-top: 52px !important;
  }
  .md\:u-mr-52 {
    margin-right: 52px !important;
  }
  .md\:u-mb-52 {
    margin-bottom: 52px !important;
  }
  .md\:u-ml-52 {
    margin-left: 52px !important;
  }
}
.u-fs-52 {
  font-size: 52px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-52 {
    font-size: 52px !important;
  }
}
.u-p-56 {
  padding: 56px !important;
}

.u-pt-56 {
  padding-top: 56px !important;
}

.u-pr-56 {
  padding-right: 56px !important;
}

.u-pb-56 {
  padding-bottom: 56px !important;
}

.u-pl-56 {
  padding-left: 56px !important;
}

.u-m-56 {
  margin: 56px !important;
}

.u-mt-56 {
  margin-top: 56px !important;
}

.u-mr-56 {
  margin-right: 56px !important;
}

.u-mb-56 {
  margin-bottom: 56px !important;
}

.u-ml-56 {
  margin-left: 56px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-56 {
    padding: 56px !important;
  }
  .md\:u-pt-56 {
    padding-top: 56px !important;
  }
  .md\:u-pr-56 {
    padding-right: 56px !important;
  }
  .md\:u-pb-56 {
    padding-bottom: 56px !important;
  }
  .md\:u-pl-56 {
    padding-left: 56px !important;
  }
  .md\:u-m-56 {
    margin: 56px !important;
  }
  .md\:u-mt-56 {
    margin-top: 56px !important;
  }
  .md\:u-mr-56 {
    margin-right: 56px !important;
  }
  .md\:u-mb-56 {
    margin-bottom: 56px !important;
  }
  .md\:u-ml-56 {
    margin-left: 56px !important;
  }
}
.u-fs-56 {
  font-size: 56px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-56 {
    font-size: 56px !important;
  }
}
.u-p-60 {
  padding: 60px !important;
}

.u-pt-60 {
  padding-top: 60px !important;
}

.u-pr-60 {
  padding-right: 60px !important;
}

.u-pb-60 {
  padding-bottom: 60px !important;
}

.u-pl-60 {
  padding-left: 60px !important;
}

.u-m-60 {
  margin: 60px !important;
}

.u-mt-60 {
  margin-top: 60px !important;
}

.u-mr-60 {
  margin-right: 60px !important;
}

.u-mb-60 {
  margin-bottom: 60px !important;
}

.u-ml-60 {
  margin-left: 60px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-60 {
    padding: 60px !important;
  }
  .md\:u-pt-60 {
    padding-top: 60px !important;
  }
  .md\:u-pr-60 {
    padding-right: 60px !important;
  }
  .md\:u-pb-60 {
    padding-bottom: 60px !important;
  }
  .md\:u-pl-60 {
    padding-left: 60px !important;
  }
  .md\:u-m-60 {
    margin: 60px !important;
  }
  .md\:u-mt-60 {
    margin-top: 60px !important;
  }
  .md\:u-mr-60 {
    margin-right: 60px !important;
  }
  .md\:u-mb-60 {
    margin-bottom: 60px !important;
  }
  .md\:u-ml-60 {
    margin-left: 60px !important;
  }
}
.u-fs-60 {
  font-size: 60px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-60 {
    font-size: 60px !important;
  }
}
.u-p-64 {
  padding: 64px !important;
}

.u-pt-64 {
  padding-top: 64px !important;
}

.u-pr-64 {
  padding-right: 64px !important;
}

.u-pb-64 {
  padding-bottom: 64px !important;
}

.u-pl-64 {
  padding-left: 64px !important;
}

.u-m-64 {
  margin: 64px !important;
}

.u-mt-64 {
  margin-top: 64px !important;
}

.u-mr-64 {
  margin-right: 64px !important;
}

.u-mb-64 {
  margin-bottom: 64px !important;
}

.u-ml-64 {
  margin-left: 64px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-64 {
    padding: 64px !important;
  }
  .md\:u-pt-64 {
    padding-top: 64px !important;
  }
  .md\:u-pr-64 {
    padding-right: 64px !important;
  }
  .md\:u-pb-64 {
    padding-bottom: 64px !important;
  }
  .md\:u-pl-64 {
    padding-left: 64px !important;
  }
  .md\:u-m-64 {
    margin: 64px !important;
  }
  .md\:u-mt-64 {
    margin-top: 64px !important;
  }
  .md\:u-mr-64 {
    margin-right: 64px !important;
  }
  .md\:u-mb-64 {
    margin-bottom: 64px !important;
  }
  .md\:u-ml-64 {
    margin-left: 64px !important;
  }
}
.u-fs-64 {
  font-size: 64px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-64 {
    font-size: 64px !important;
  }
}
.u-p-80 {
  padding: 80px !important;
}

.u-pt-80 {
  padding-top: 80px !important;
}

.u-pr-80 {
  padding-right: 80px !important;
}

.u-pb-80 {
  padding-bottom: 80px !important;
}

.u-pl-80 {
  padding-left: 80px !important;
}

.u-m-80 {
  margin: 80px !important;
}

.u-mt-80 {
  margin-top: 80px !important;
}

.u-mr-80 {
  margin-right: 80px !important;
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

.u-ml-80 {
  margin-left: 80px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-80 {
    padding: 80px !important;
  }
  .md\:u-pt-80 {
    padding-top: 80px !important;
  }
  .md\:u-pr-80 {
    padding-right: 80px !important;
  }
  .md\:u-pb-80 {
    padding-bottom: 80px !important;
  }
  .md\:u-pl-80 {
    padding-left: 80px !important;
  }
  .md\:u-m-80 {
    margin: 80px !important;
  }
  .md\:u-mt-80 {
    margin-top: 80px !important;
  }
  .md\:u-mr-80 {
    margin-right: 80px !important;
  }
  .md\:u-mb-80 {
    margin-bottom: 80px !important;
  }
  .md\:u-ml-80 {
    margin-left: 80px !important;
  }
}
.u-fs-80 {
  font-size: 80px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-80 {
    font-size: 80px !important;
  }
}
.u-p-88 {
  padding: 88px !important;
}

.u-pt-88 {
  padding-top: 88px !important;
}

.u-pr-88 {
  padding-right: 88px !important;
}

.u-pb-88 {
  padding-bottom: 88px !important;
}

.u-pl-88 {
  padding-left: 88px !important;
}

.u-m-88 {
  margin: 88px !important;
}

.u-mt-88 {
  margin-top: 88px !important;
}

.u-mr-88 {
  margin-right: 88px !important;
}

.u-mb-88 {
  margin-bottom: 88px !important;
}

.u-ml-88 {
  margin-left: 88px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-88 {
    padding: 88px !important;
  }
  .md\:u-pt-88 {
    padding-top: 88px !important;
  }
  .md\:u-pr-88 {
    padding-right: 88px !important;
  }
  .md\:u-pb-88 {
    padding-bottom: 88px !important;
  }
  .md\:u-pl-88 {
    padding-left: 88px !important;
  }
  .md\:u-m-88 {
    margin: 88px !important;
  }
  .md\:u-mt-88 {
    margin-top: 88px !important;
  }
  .md\:u-mr-88 {
    margin-right: 88px !important;
  }
  .md\:u-mb-88 {
    margin-bottom: 88px !important;
  }
  .md\:u-ml-88 {
    margin-left: 88px !important;
  }
}
.u-fs-88 {
  font-size: 88px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-88 {
    font-size: 88px !important;
  }
}
.u-p-96 {
  padding: 96px !important;
}

.u-pt-96 {
  padding-top: 96px !important;
}

.u-pr-96 {
  padding-right: 96px !important;
}

.u-pb-96 {
  padding-bottom: 96px !important;
}

.u-pl-96 {
  padding-left: 96px !important;
}

.u-m-96 {
  margin: 96px !important;
}

.u-mt-96 {
  margin-top: 96px !important;
}

.u-mr-96 {
  margin-right: 96px !important;
}

.u-mb-96 {
  margin-bottom: 96px !important;
}

.u-ml-96 {
  margin-left: 96px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-96 {
    padding: 96px !important;
  }
  .md\:u-pt-96 {
    padding-top: 96px !important;
  }
  .md\:u-pr-96 {
    padding-right: 96px !important;
  }
  .md\:u-pb-96 {
    padding-bottom: 96px !important;
  }
  .md\:u-pl-96 {
    padding-left: 96px !important;
  }
  .md\:u-m-96 {
    margin: 96px !important;
  }
  .md\:u-mt-96 {
    margin-top: 96px !important;
  }
  .md\:u-mr-96 {
    margin-right: 96px !important;
  }
  .md\:u-mb-96 {
    margin-bottom: 96px !important;
  }
  .md\:u-ml-96 {
    margin-left: 96px !important;
  }
}
.u-fs-96 {
  font-size: 96px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-96 {
    font-size: 96px !important;
  }
}
.u-p-100 {
  padding: 100px !important;
}

.u-pt-100 {
  padding-top: 100px !important;
}

.u-pr-100 {
  padding-right: 100px !important;
}

.u-pb-100 {
  padding-bottom: 100px !important;
}

.u-pl-100 {
  padding-left: 100px !important;
}

.u-m-100 {
  margin: 100px !important;
}

.u-mt-100 {
  margin-top: 100px !important;
}

.u-mr-100 {
  margin-right: 100px !important;
}

.u-mb-100 {
  margin-bottom: 100px !important;
}

.u-ml-100 {
  margin-left: 100px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-100 {
    padding: 100px !important;
  }
  .md\:u-pt-100 {
    padding-top: 100px !important;
  }
  .md\:u-pr-100 {
    padding-right: 100px !important;
  }
  .md\:u-pb-100 {
    padding-bottom: 100px !important;
  }
  .md\:u-pl-100 {
    padding-left: 100px !important;
  }
  .md\:u-m-100 {
    margin: 100px !important;
  }
  .md\:u-mt-100 {
    margin-top: 100px !important;
  }
  .md\:u-mr-100 {
    margin-right: 100px !important;
  }
  .md\:u-mb-100 {
    margin-bottom: 100px !important;
  }
  .md\:u-ml-100 {
    margin-left: 100px !important;
  }
}
.u-fs-100 {
  font-size: 100px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-100 {
    font-size: 100px !important;
  }
}
.u-p-110 {
  padding: 110px !important;
}

.u-pt-110 {
  padding-top: 110px !important;
}

.u-pr-110 {
  padding-right: 110px !important;
}

.u-pb-110 {
  padding-bottom: 110px !important;
}

.u-pl-110 {
  padding-left: 110px !important;
}

.u-m-110 {
  margin: 110px !important;
}

.u-mt-110 {
  margin-top: 110px !important;
}

.u-mr-110 {
  margin-right: 110px !important;
}

.u-mb-110 {
  margin-bottom: 110px !important;
}

.u-ml-110 {
  margin-left: 110px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-110 {
    padding: 110px !important;
  }
  .md\:u-pt-110 {
    padding-top: 110px !important;
  }
  .md\:u-pr-110 {
    padding-right: 110px !important;
  }
  .md\:u-pb-110 {
    padding-bottom: 110px !important;
  }
  .md\:u-pl-110 {
    padding-left: 110px !important;
  }
  .md\:u-m-110 {
    margin: 110px !important;
  }
  .md\:u-mt-110 {
    margin-top: 110px !important;
  }
  .md\:u-mr-110 {
    margin-right: 110px !important;
  }
  .md\:u-mb-110 {
    margin-bottom: 110px !important;
  }
  .md\:u-ml-110 {
    margin-left: 110px !important;
  }
}
.u-fs-110 {
  font-size: 110px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-110 {
    font-size: 110px !important;
  }
}
.u-p-120 {
  padding: 120px !important;
}

.u-pt-120 {
  padding-top: 120px !important;
}

.u-pr-120 {
  padding-right: 120px !important;
}

.u-pb-120 {
  padding-bottom: 120px !important;
}

.u-pl-120 {
  padding-left: 120px !important;
}

.u-m-120 {
  margin: 120px !important;
}

.u-mt-120 {
  margin-top: 120px !important;
}

.u-mr-120 {
  margin-right: 120px !important;
}

.u-mb-120 {
  margin-bottom: 120px !important;
}

.u-ml-120 {
  margin-left: 120px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-p-120 {
    padding: 120px !important;
  }
  .md\:u-pt-120 {
    padding-top: 120px !important;
  }
  .md\:u-pr-120 {
    padding-right: 120px !important;
  }
  .md\:u-pb-120 {
    padding-bottom: 120px !important;
  }
  .md\:u-pl-120 {
    padding-left: 120px !important;
  }
  .md\:u-m-120 {
    margin: 120px !important;
  }
  .md\:u-mt-120 {
    margin-top: 120px !important;
  }
  .md\:u-mr-120 {
    margin-right: 120px !important;
  }
  .md\:u-mb-120 {
    margin-bottom: 120px !important;
  }
  .md\:u-ml-120 {
    margin-left: 120px !important;
  }
}
.u-fs-120 {
  font-size: 120px !important;
}

@media screen and (min-width: 768px) {
  .md\:u-fs-120 {
    font-size: 120px !important;
  }
}
.u-w-1100 {
  max-width: 1100px !important;
  margin-inline: auto;
}

.u-w-1360 {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 20px;
}

/*--------------------------------------------------------------------------
alignment
--------------------------------------------------------------------------*/
.u-txt-center {
  text-align: center;
}

.u-txt-right {
  text-align: right;
}

@media screen and (min-width: 768px) {
  .md\:u-txt-center {
    text-align: center !important;
  }
  .md\:u-txt-right {
    text-align: right;
  }
}
/*--------------------------------------------------------------------------
border
--------------------------------------------------------------------------*/
.u-border-top {
  border-top: 1px solid #D8E2EE;
}

.u-border-bottom {
  border-bottom: 1px solid #D8E2EE;
}

.u-border-none {
  border: none !important;
}

/*--------------------------------------------------------------------------
その他
--------------------------------------------------------------------------*/
.u-no-link {
  pointer-events: none;
  text-decoration: none !important;
  cursor: initial;
}

.u-hover-line {
  position: relative;
}
.u-hover-line::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #20334c;
  position: absolute;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.u-hover-line:hover {
  opacity: 1;
}
.u-hover-line:hover::before {
  transform: scale(1, 1);
}

/*--------------------------------------------------------------------------
.l-col-2
---------------------------------------------------------------------------*/
.l-col-2 {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: min(2.6vw, 50px);
}
@media screen and (max-width: 768px) {
  .l-col-2 {
    gap: min(5vw, 30px);
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

.md\:l-col-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: min(2.6vw, 50px);
}
@media screen and (max-width: 768px) {
  .md\:l-col-2 {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------------------
.l-col-3
---------------------------------------------------------------------------*/
.l-col-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: min(2.6vw, 50px);
}
@media screen and (max-width: 768px) {
  .l-col-3 {
    gap: min(5vw, 30px);
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

.md\:l-col-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: min(2.6vw, 50px);
}
@media screen and (max-width: 768px) {
  .md\:l-col-3 {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------------------
.l-stack 
---------------------------------------------------------------------------*/
.l-stack {
  display: flex;
  flex-direction: column;
  row-gap: clamp(4rem, 0rem + 6.667vw, 8rem); /* min: 40px, max: 80px */
}

.l-stack-sm {
  display: flex;
  flex-direction: column;
  row-gap: clamp(2.4rem, 0.8rem + 2.667vw, 4rem); /* min: 24px, max: 40px */
}

/*--------------------------------------------------------------------------
.c-breadcrumb
---------------------------------------------------------------------------*/
.c-breadcrumb {
  margin-bottom: clamp(3rem, -2rem + 8.333vw, 8rem); /* min: 30px, max: 80px */
}
.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
}
.c-breadcrumb__link {
  line-height: 2.5;
  font-size: 12px;
  color: #888;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.c-breadcrumb__link::after {
  content: "-";
  display: inline-block;
  margin-inline: 8px;
  font-size: 12px;
  color: #888;
}
.c-breadcrumb__link.current {
  color: #555;
  pointer-events: none;
  cursor: initial;
  text-decoration: none;
}
.c-breadcrumb__link.current::after {
  display: none;
}

/*--------------------------------------------------------------------------
  section
---------------------------------------------------------------------------*/
.c-sec {
  padding-block: 60px 0;
}
@media screen and (min-width: 769px) {
  .c-sec {
    padding-block: 80px 0;
  }
}
@media screen and (min-width: 1025px) {
  .c-sec {
    padding-block: 120px 0;
  }
}
.c-sec-last {
  padding-bottom: clamp(6rem, -2rem + 13.333vw, 14rem); /* min: 60px, max: 140px */
}
.c-sec .c-sec__inner {
  width: min(90%, 1360px);
  margin-inline: auto;
}
.c-sec .c-sec__inner .c-sec__img-w100 {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .c-sec .c-sec__inner .c-sec__img-w100 {
    margin-bottom: 80px;
  }
}
.c-sec .c-sec__inner .c-sec__img-w100 img {
  width: 100%;
}

/*========= ローディングアニメ ===============*/
.loader {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
  color: #20334c;
  font-size: 10px;
  margin: 80px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before, .loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}
.loader:before, .loader:after {
  content: "";
  position: absolute;
  top: 0;
}
.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 3.5em;
}

@-webkit-keyframes load7 {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
/*--------------------------------------------------------------------------
.c-sec__title
---------------------------------------------------------------------------*/
.c-sec__title {
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .c-sec__title {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .c-sec__title {
    padding-bottom: 17px;
  }
}
.c-sec__title-line2 {
  height: 177px;
}
@media screen and (max-width: 768px) {
  .c-sec__title-line2 {
    height: min(20vw, 90px);
  }
}
.c-sec__title__eng {
  font-weight: 300;
  width: fit-content;
  display: block;
  line-height: 1;
  background: linear-gradient(90deg, #C1D6EC 0%, #F0F7FE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-left: 1.35%;
}
@media screen and (max-width: 1024px) {
  .c-sec__title__eng {
    padding-left: 27px;
    font-size: 5rem;
  }
}
@media screen and (min-width: 1025px) {
  .c-sec__title__eng {
    font-size: min(9.5vw, 10rem);
    font-size: 10rem;
  }
}
.c-sec__title__jpn {
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .c-sec__title__jpn {
    font-size: min(6.1vw, 28px);
    margin-top: -32px;
    display: block;
  }
}
@media screen and (min-width: 1025px) {
  .c-sec__title__jpn {
    font-size: 3.4rem;
    position: absolute;
    bottom: 25px;
  }
}
.c-sec__title__jpn-sm {
  font-size: clamp(1.6rem, 0.8rem + 1.333vw, 2.4rem); /* min: 16px, max: 24px */
}
.c-sec__title:after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #0060CE;
  bottom: -12px;
  left: 0;
  position: absolute;
}
@media screen and (min-width: 1025px) {
  .c-sec__title:after {
    bottom: -2px;
  }
}
.c-sec__title:not(:has(.c-sec__title__eng)) .c-sec__title__jpn {
  position: initial;
  margin-top: 0;
}

/*--------------------------------------------------------------------------
.c-sec__title02 テキストが横並びのセクションタイトル
---------------------------------------------------------------------------*/
.c-sec__title02__eng {
  background: linear-gradient(90deg, #2C62AB 0%, #79C1FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  .c-sec__title02__eng {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 1025px) {
  .c-sec__title02__eng {
    font-size: 5.2rem;
  }
}
.c-sec__title02__jpn {
  font-weight: bold;
  font-size: clamp(1.6rem, 1.2rem + 0.667vw, 2rem); /* min: 16px, max: 20px */
  padding-left: 12px;
}

/*--------------------------------------------------------------------------
.c-sec__title03 
---------------------------------------------------------------------------*/
.c-sec__title03 {
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .c-sec__title03 {
    margin-bottom: 24px;
  }
}
.c-sec__title03__eng {
  font-weight: 300;
  font-size: clamp(3.2rem, 2rem + 2vw, 4.4rem); /* min: 32px, max: 44px */
  font-family: "Oswald", sans-serif;
  color: #0060ce;
  line-height: 1.5;
  display: block;
}
.c-sec__title03__jpn {
  font-weight: bold;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  display: block;
}

/*--------------------------------------------------------------------------
.c-sec__btn
---------------------------------------------------------------------------*/
.c-sec__btn {
  container-type: inline-size;
}
.c-sec__btn__link {
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 20px min(1.6vw, 40px);
  background: linear-gradient(90deg, #20334C 0%, #26518B 100%);
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 5px;
  border-radius: 100px;
  width: 100%;
  max-width: 300px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .c-sec__btn__link {
    max-width: 220px;
    padding: 22px min(4cqw, 28px);
  }
}
@media screen and (min-width: 1025px) {
  .c-sec__btn__link {
    font-size: 1.7rem;
  }
}
.c-sec__btn__link:after {
  content: "";
  background: url(/assets/img/common/icon_arw.svg) no-repeat;
  background-size: contain;
  width: 17px;
  height: 14px;
  display: block;
  position: relative;
  z-index: 1;
}
.c-sec__btn__link:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  left: -100%;
  bottom: 0;
  background: #20334c;
  z-index: 0;
  transition: 0.4s;
}
.c-sec__btn__link:hover {
  opacity: 1;
}
.c-sec__btn__link:hover:before {
  left: 0;
}
.c-sec__btn__link__text {
  position: relative;
  z-index: 1;
  max-width: 92%;
  font-size: clamp(1.4rem, 1.1rem + 0.5vw, 1.7rem); /* min: 14px, max: 17px */
}
.c-sec__btn__link-center {
  display: block;
  text-align: center;
  margin-inline: auto;
}
.c-sec__btn__link-center::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}
.c-sec__btn__link-red {
  background-image: linear-gradient(to right, #7E070C, #BB0000);
}
.c-sec__btn__link-red::before {
  background: #7E070C;
}
.c-sec__btn__link-lg {
  font-weight: bold;
  font-size: clamp(1.6rem, 0.8rem + 1.333vw, 2.4rem); /* min: 16px, max: 24px */
  padding-block: 24px;
  max-width: 500px;
}
@media screen and (max-width: 1024px) {
  .c-sec__btn__link-lg {
    padding-block: 22px;
  }
}
.c-sec__btn__link-sm {
  padding-block: 16px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .c-sec__btn__link-sm {
    font-size: 13px;
    line-height: 1.4;
  }
}
.c-sec__btn__link-line {
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
}
.c-sec__btn__link-line::before {
  display: none;
}
.c-sec__btn__link-white {
  padding-block: 10px;
  padding-left: 27px;
  background: #fff;
  border: 1px solid #D8E2EE;
  padding-right: 16px;
}
.c-sec__btn__link-white::before {
  background: #D8E2EE;
}
.c-sec__btn__link-white .c-sec__btn__link__text {
  font-size: 13px;
  font-weight: normal;
  line-height: 1.5;
  color: #0060CE;
}
.c-sec__btn__link-blank::after {
  width: 14px;
  background: url(/assets/img/common/icon_blank.svg) no-repeat;
}
.c-sec__btn__link-blank-white::after {
  width: 14px;
  background: url(/assets/img/common/icon_blank-white.svg) no-repeat;
}
.c-sec__btn__link-pdfw::after {
  width: 18px;
  height: 19px;
  background: url(/assets/img/common/icon_pdf-white.svg) no-repeat;
}
.c-sec__btn__link-rect {
  border-radius: 0;
}
.c-sec__btn + .c-sec__btn {
  margin-top: 15px;
}

/*--------------------------------------------------------------------------
.c-select
---------------------------------------------------------------------------*/
.c-select {
  margin-bottom: clamp(3rem, 0rem + 5vw, 6rem);
  padding-top: 0;
}
.c-select__btn {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.4rem + 0.333vw, 1.8rem); /* min: 16px, max: 18px */
  border: 1px solid #999999;
  border-radius: 6px;
  background-color: #fff;
  text-align: center;
  padding: 14px;
  position: relative;
  width: max(25%, 280px);
  -webkit-appearance: none;
  appearance: none;
  background-image: url(../img/common/icon_select-arw.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 8px auto; /* 画像のサイズ（幅 高さ）*/
  background-position: right 12px center; /* 画像の位置 */
}
@media screen and (max-width: 768px) {
  .c-select__btn {
    width: min(100%, 400px);
  }
}
.c-select option {
  font-family: "Noto Sans JP", sans-serif;
}

/*--------------------------------------------------------------------------
.c-btn-line
---------------------------------------------------------------------------*/
.c-btn-line {
  display: block;
  padding-block: 15px;
  padding-right: 24px;
  border-bottom: 1px solid #D8E2EE;
  font-size: clamp(1.4rem, 1rem + 0.667vw, 1.8rem); /* min: 14px, max: 18px */
  max-width: 420px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-btn-line {
    max-width: unset;
  }
}
.c-btn-line::after {
  content: "";
  width: 18px;
  height: 15px;
  display: block;
  background-image: url(../img/common/icon_arw_blu.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  right: 0;
  position: absolute;
  transform: translateY(-50%);
}
.c-btn-line__sm {
  font-size: clamp(1.3rem, 1.2rem + 0.167vw, 1.4rem); /* min: 13px, max: 14px */
  color: #666666;
}
.c-btn-line:hover {
  opacity: 0.7;
}

/*--------------------------------------------------------------------------
.c-link
---------------------------------------------------------------------------*/
.c-link {
  color: #20334c;
  display: block;
  line-height: 2;
  font-size: clamp(1.5rem, 1.4rem + 0.167vw, 1.6rem); /* min: 15px, max: 16px */
}
.c-link__icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(../img/common/icon_arw_round-blu.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
  margin-bottom: -2px;
}
.c-link-blank::after {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  background-image: url(../img/common/icon_blank.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 8px;
  margin-bottom: -2px;
}
.c-link-pdf::after {
  content: "";
  width: 18px;
  height: 19px;
  display: inline-block;
  background-image: url(../img/common/icon_pdf.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 8px;
  margin-bottom: -2px;
}
.c-link-lg {
  font-weight: bold;
  font-size: clamp(1.8rem, 1.6rem + 0.333vw, 2rem); /* min: 18px, max: 20px */
}
.c-link:hover {
  opacity: 0.7;
}

.c-link-2 {
  color: #2553A4;
  text-decoration: underline;
}

/*--------------------------------------------------------------------------
.c-tabmenu
---------------------------------------------------------------------------*/
.c-tabmenu {
  width: min(90%, 1360px);
  margin-inline: auto;
  margin-bottom: clamp(3rem, 0rem + 5vw, 6rem); /* min: 30px, max: 60px */
}
.c-tabmenu__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.c-tabmenu__list-col2 {
  grid-template-columns: repeat(2, 1fr);
}
.c-tabmenu__list-col3 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .c-tabmenu__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-tabmenu__link, .c-tabmenu button {
  border: none;
  padding: 20px 1.2vw;
  text-align: center;
  color: #20334c;
  background-color: #DDE8F7;
  font-weight: 500;
  line-height: 1.4;
  height: 100%;
  width: 100%;
  font-size: min(1.4vw, 18px);
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 20px;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .c-tabmenu__link, .c-tabmenu button {
    font-size: min(3.9vw, 16px);
    padding: 16px 10px;
    padding-inline: min(2vw, 20px);
  }
}
.c-tabmenu__link.activeList, .c-tabmenu button.activeList {
  pointer-events: none;
  cursor: initial;
  color: #fff;
  background-color: #0060ce;
}
@media (hover: hover) and (pointer: fine) {
  .c-tabmenu__link:hover, .c-tabmenu button:hover {
    opacity: 1;
    color: #fff;
    background-color: #0060ce;
  }
}
.c-tabmenu__link:hover.c-link-blank::after, .c-tabmenu button:hover.c-link-blank::after {
  background-image: url(../img/common/icon_blank-white.svg);
}
.c-tabmenu__link-white, .c-tabmenu button-white {
  color: #20334c;
  border: 1px solid #749DC9;
  position: relative;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .c-tabmenu__link-white, .c-tabmenu button-white {
    justify-content: space-between;
    text-align: left;
    font-size: max(2.2vw, 14px);
  }
}
.c-tabmenu__link-white::after, .c-tabmenu button-white::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #0060ce;
  border-bottom: 2px solid #0060ce;
  transform: rotate(45deg);
  vertical-align: super;
  margin-left: 11px;
}
@media (hover: hover) and (pointer: fine) {
  .c-tabmenu__link-white:hover::after, .c-tabmenu button-white:hover::after {
    border-color: #fff;
  }
}
.c-tabmenu li:has(+ li) {
  border-right: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .c-tabmenu li:has(+ li) {
    border-bottom: 1px solid #fff;
  }
}
.c-tabmenu li:has(.c-tabmenu__link-white) {
  border-right: none;
}
@media screen and (max-width: 768px) {
  .c-tabmenu li:has(.c-tabmenu__link-white) {
    border-bottom: none;
  }
}

/*--------------------------------------------------------------------------
.c-textline  テキスタが横に流れる
<div class="c-textline anim">
  <p class="c-textline__item eng">TOKAI LEASE</p>
  <p class="c-textline__item eng">TOKAI LEASE</p>
  <p class="c-textline__item eng">TOKAI LEASE</p>
  <p class="c-textline__item eng">TOKAI LEASE</p>
</div>
---------------------------------------------------------------------------*/
.c-textline {
  overflow: hidden;
  display: flex;
  width: 100vw;
  margin-top: 50px;
  font-weight: bold;
  z-index: 1;
  position: relative;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 1024px) {
  .c-textline {
    margin-top: 100px;
    top: -15px;
  }
}

.c-textline__item {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 22rem;
  color: #F1F5FA !important;
  line-height: 1;
  padding-right: 5rem;
}
@media screen and (max-width: 1024px) {
  .c-textline__item {
    font-size: 10rem;
    padding-right: 2rem;
  }
}

.c-textline__item:nth-child(odd) {
  animation: moveLeft 44s -22s infinite linear;
}

.c-textline__item:nth-child(even) {
  animation: moveLeft2 44s infinite linear;
}

@keyframes moveLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes moveLeft2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/*--------------------------------------------------------------------------
.c-card-01
<li class="c-card-01 anim">
  <div class="c-card-01__text">
    <a href="">
      <h4 class="c-card-01__title">
        <span class="c-card-01__eng eng">SUSTAINABILITY</span>
        <span class="c-card-01__jpn">サスビナビリティ</span>
      </h4>
      <img src="/assets/img/top/img_07.png" alt="サスビナビリティ">
    </a>
  </div>
</li>
--------------------------------------------------------------------------*/
.c-card-01 {
  border-radius: 12px;
  overflow: hidden;
}
.c-card-01__inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.c-card-01__inner::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to bottom, rgba(220, 233, 249, 0), #749DC9);
  mix-blend-mode: multiply;
}
.c-card-01__inner img {
  transition: 0.4s;
  width: 100%;
}
.c-card-01__inner:hover img {
  transform: scale(1.01);
}
.c-card-01__title {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  padding: 22px 20px;
  display: flex;
  align-items: flex-end;
  align-content: flex-end;
  flex-wrap: wrap;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .c-card-01__title {
    padding: 18px 15px;
  }
}
.c-card-01__eng {
  font-weight: 300;
  font-size: min(2.4vw, 32px);
  display: block;
  width: 100%;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .c-card-01__eng {
    font-size: 2.6rem;
  }
}
.c-card-01__jpn {
  font-weight: 500;
  font-size: min(1.6vw, 20px);
  display: block;
  width: 100%;
  line-height: 1;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .c-card-01__jpn {
    font-size: 1.4rem;
    margin-top: 7px;
  }
}

/*--------------------------------------------------------------------------
.c-card-02
--------------------------------------------------------------------------*/
.c-card-02__txtblock {
  margin-top: 7px;
}
.c-card-02__img {
  border-radius: 12px;
  overflow: hidden;
}
.c-card-02__img img {
  width: 100%;
}
.c-card-02__ttl {
  font-weight: bold;
  line-height: 1.4;
}
.c-card-02__ttl-m {
  font-weight: 500;
  font-size: 18px;
}
.c-card-02__ttl-lg {
  margin-top: clamp(0.4rem, -1rem + 2.333vw, 1.8rem); /* min: 4px, max: 18px */
  font-size: clamp(16px, 4.6svw, 20px);
}
.c-card-02__cat {
  display: inline-block;
  border: 1px solid #CFD7E2;
  background-color: #fff;
  font-size: clamp(1.2rem, 1.1rem + 0.167vw, 1.3rem); /* min: 12px, max: 13px */
  line-height: 1.2;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 5px;
}
.c-card-02__desc {
  margin-top: 6px;
}
.c-card-02 a {
  display: block;
  transition: 0.3s;
}
.c-card-02 a:hover {
  opacity: 0.6;
}

/*--------------------------------------------------------------------------
.c-card-03
--------------------------------------------------------------------------*/
.c-card-03 {
  container-type: inline-size;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.02);
  transition: 0.4s;
}
.c-card-03__lower {
  position: relative;
  background-color: #fff;
  padding: 7.1cqw 4.7cqw;
}
.c-card-03__lower-arw {
  padding-right: 29cqw;
}
@media screen and (max-width: 768px) {
  .c-card-03__lower-arw {
    padding-right: 22cqw;
  }
}
.c-card-03__arw {
  width: 16.6cqw;
  height: 16.6cqw;
  border-radius: 50%;
  background-image: linear-gradient(to right, #20334C, #26518B);
  display: grid;
  place-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 4.2cqw;
  cursor: pointer;
  transition: 0.4s;
}
.c-card-03__arw-img {
  width: 6cqw !important;
  object-fit: contain;
  margin: 0 auto;
  transition: 0.4s;
}
.c-card-03__ttl {
  font-weight: 500;
  font-size: 4cqw;
  line-height: 1.8;
}
.c-card-03:hover {
  opacity: 1 !important;
}
.c-card-03 a.c-card-03__inner {
  display: block;
}
.c-card-03:has(a.c-card-03__inner):hover {
  transform: scale(1.02);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
}
.c-card-03:has(a.c-card-03__inner):hover a {
  opacity: 1 !important;
}

/*--------------------------------------------------------------------------
.c-flex-item 
--------------------------------------------------------------------------*/
.c-flex-item__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-block: min(4.3vw, 84px);
  border-bottom: 1px solid #D8E2EE;
}
@media screen and (max-width: 768px) {
  .c-flex-item__inner {
    flex-direction: column;
    gap: 18px;
    padding-block: clamp(3rem, -2rem + 8.333vw, 8.4rem); /* min: 30px, max: 80px */
  }
}
.c-flex-item-reverse .c-flex-item__inner {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .c-flex-item-reverse .c-flex-item__inner {
    flex-direction: column;
  }
}
.c-flex-item__txtblock {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .c-flex-item__txtblock {
    width: 100%;
  }
}
.c-flex-item .c-sec__title03 {
  margin-bottom: 16px;
}
.c-flex-item__img {
  width: 50%;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-flex-item__img {
    width: 100%;
  }
}
.c-flex-item__img img {
  width: 100%;
}
.c-flex-item .c-sec__btn {
  margin-top: clamp(1.6rem, 0.8rem + 2.667vw, 4rem); /* min: 24px, max: 40px */
}
@media screen and (max-width: 1024px) {
  .c-flex-item .c-sec__btn__link {
    max-width: 240px;
  }
}
.c-flex-item .c-sec__btn.sp {
  width: 100%;
}
.c-flex-item .pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .c-flex-item .pc {
    display: none;
  }
}
.c-flex-item .sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-flex-item .sp {
    display: block;
  }
}

/*--------------------------------------------------------------------------
.c-bg-01 
--------------------------------------------------------------------------*/
.c-bg-01 {
  position: relative;
  overflow-y: visible;
}
.c-bg-01::before {
  content: "";
  display: block;
  width: 100vw;
  height: auto;
  aspect-ratio: 1920/1356;
  background: url(/assets/img/common/bg_01_sp.jpg) no-repeat;
  background-size: cover;
  background-position: center top;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .c-bg-01::before {
    background: linear-gradient(to bottom, transparent 0%, transparent 30%, #fcfcfc 100%), url(/assets/img/top/bg_01_pc.jpg) no-repeat;
    background-size: cover;
    background-position: center top 120px;
  }
}
@media screen and (max-width: 767px) {
  .c-bg-01::before {
    background: url(/assets/img/common/bg_01_sp.jpg) no-repeat;
    background-size: cover;
    background-position: center top 20vw;
    aspect-ratio: 390/1356;
  }
}
.c-bg-01-sec {
  margin-inline: calc(50% - 50svw);
}

/*--------------------------------------------------------------------------
.c-bg-02
--------------------------------------------------------------------------*/
.c-bg-02 {
  position: relative;
  overflow-y: visible;
}
.c-bg-02::before {
  content: "";
  display: block;
  width: auto;
  height: 100%;
  aspect-ratio: 1920/960;
  background: url(/assets/img/common/bg_02_pc.jpg) no-repeat;
  background-size: cover;
  background-position: center top;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .c-bg-02::before {
    background: url(/assets/img/common/bg_02_sp.jpg) no-repeat;
    background-size: cover;
    background-position: center top;
    aspect-ratio: 390/960;
    width: 100%;
  }
}
.c-bg-02-sec {
  margin-inline: calc(50% - 50svw);
}

/*--------------------------------------------------------------------------
.c-bluecopy
--------------------------------------------------------------------------*/
.c-bluecopy {
  font-size: clamp(1.8rem, 1.4rem + 0.667vw, 2.2rem); /* min: 18px, max: 22px */
  line-height: 1.4;
  color: #0060ce;
  font-weight: bold;
  margin-bottom: 24px;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .c-bluecopy {
    margin-bottom: 16px;
  }
}
.c-bluecopy-ttl {
  font-size: clamp(2rem, 0.6rem + 2.333vw, 3rem);
  padding-bottom: 16px;
  border-bottom: 1px solid #D8E2EE;
  margin-bottom: clamp(2.4rem, 0.8rem + 2.667vw, 4rem);
}

/*--------------------------------------------------------------------------
.c-table
--------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .c-table-scroll {
    overflow-x: scroll;
  }
}

.c-table {
  width: 100%;
  border-top: 1px solid #D9D9D9;
  border-left: 1px solid #D9D9D9;
}
.c-table-1100 {
  max-width: 1100px;
  margin: 0 auto;
}
.c-table__note {
  font-size: clamp(1.2rem, 1rem + 0.333vw, 1.4rem); /* min: 12px, max: 14px */
  color: #555555;
  letter-spacing: 0;
  margin-top: 12px;
}
.c-table__note-1100 {
  max-width: 1100px;
  margin-inline: auto;
}
.c-table__date {
  font-size: clamp(1.2rem, 1rem + 0.333vw, 1.4rem); /* min: 12px, max: 14px */
  color: #555555;
  text-align: right;
  margin-block: -16px 8px;
}
.c-table__date-1100 {
  max-width: 1100px;
  margin-inline: auto;
}
.c-table-lg {
  min-width: 700px;
}
.c-table__th, .c-table__td {
  border-bottom: 1px solid #D9D9D9;
  border-right: 1px solid #D9D9D9;
  text-align: center;
  padding: 16px 10px;
  line-height: 1.5;
  vertical-align: middle;
  box-sizing: content-box;
  letter-spacing: 0;
  box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .c-table__th, .c-table__td {
    padding: 6px 2px;
  }
}
.c-table__th {
  background-color: #F6F7F9;
  font-size: clamp(1.1rem, 0.6rem + 0.833vw, 1.6rem); /* min: 11px, max: 16px */
  min-width: 80px;
}
.c-table__th-blue {
  background-color: #EFF6FC;
}
.c-table__th-left {
  text-align: left;
}
.c-table__th-lg {
  font-size: clamp(1.4rem, 1rem + 0.667vw, 1.8rem); /* min: 14px, max: 18px */
}
@media screen and (max-width: 768px) {
  .c-table__th.sticky, .c-table__th.sticky-2 {
    position: sticky;
    top: 0;
    border-right: none;
    border-left: none;
  }
  .c-table__th.sticky::before, .c-table__th.sticky-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-right: 1px solid #D9D9D9;
    border-left: 1px solid #D9D9D9;
    z-index: -1;
  }
  .c-table__th.sticky {
    left: 0px;
  }
  .c-table__th.sticky-2 {
    left: 90.37px;
  }
}
.c-table__td {
  background-color: #fff;
  font-size: clamp(1.1rem, 0.7rem + 0.667vw, 1.5rem); /* min: 11px, max: 15px */
}
.c-table__td-left {
  text-align: left;
}
.c-table__td-lg {
  font-size: clamp(1.3rem, 1rem + 0.5vw, 1.6rem); /* min: 13px, max: 16px */
}

@media screen and (max-width: 768px) {
  .c-table-stack-sm .c-table__th,
  .c-table-stack-sm .c-table__td {
    display: block;
  }
}

/*--------------------------------------------------------------------------
.c-news
--------------------------------------------------------------------------*/
/**************************************************
.c-news-item
**************************************************/
.c-news-item {
  border-bottom: 2px solid #D8E2EE;
  padding-block: 24px;
}
.c-news-item:first-child {
  border-top: 2px solid #D8E2EE;
}
@media screen and (max-width: 1024px) {
  .c-news-item {
    padding-block: 16px;
  }
}
.c-news-item__upper {
  display: flex;
  margin-bottom: 12px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c-news-item__upper {
    flex-direction: column;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
  }
}
.c-news-item__time {
  line-height: 1;
  display: inline-block;
  margin-right: 8px;
  font-size: clamp(1.2rem, 0.9rem + 0.5vw, 1.5rem); /* min: 12px, max: 15px */
}
@media screen and (max-width: 1024px) {
  .c-news-item__time {
    margin-right: 6px;
  }
}
.c-news-item__tags {
  display: flex;
  gap: 8px;
}
@media screen and (max-width: 1024px) {
  .c-news-item__tags {
    gap: 3px;
  }
}
.c-news-item__tag a, .c-news-item__tag span {
  display: inline-block;
  padding: 4px 8px;
  text-align: center;
  font-size: 14px;
  min-width: 72px;
  border-radius: 2px;
  color: #5A6A81;
  line-height: 1;
  background-color: #F2F5F9;
}
@media screen and (max-width: 1024px) {
  .c-news-item__tag a, .c-news-item__tag span {
    font-size: 12px;
  }
}
.c-news-item__tag-link a, .c-news-item__tag-link span {
  color: #5A6A81;
  border: 1px solid #0060CE;
  background-color: #fff;
}
.c-news-item__txtblock {
  display: block;
}
.c-news-item__ttl {
  font-size: 16px;
  line-height: 1.8;
  width: 94%;
  color: #20334C;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .c-news-item__ttl {
    width: 100%;
    font-size: 14px;
  }
}
.c-news-item-link {
  position: relative;
}
.c-news-item-link::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../img/common/icon_arw_lightblu.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 1%;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
@media screen and (max-width: 768px) {
  .c-news-item-link::after {
    width: 20px;
    height: 20px;
    right: 3px;
    top: 30px;
  }
}
.c-news-item-link .c-news-item-02__txt a {
  text-decoration: underline;
}
.c-news-item .pdf {
  display: inline-block;
  vertical-align: middle;
}
.c-news-item .pdf-icon {
  display: inline-block;
}
.c-news-item .pdf-icon::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(../img/common/icon_pdf.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: super;
}
.c-news-item .pdf-txt {
  color: #666;
  font-size: 14px;
  vertical-align: text-bottom;
  display: inline-block;
  margin-left: 8px;
  vertical-align: super;
}
.c-news-item-sub .c-news-item__txtblock {
  margin-left: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-news-item-sub .c-news-item__txtblock {
    margin-left: 20px;
  }
}
.c-news-item-sub .c-news-item__txtblock::before {
  content: "";
  width: 15px;
  height: 10px;
  border-left: 2px solid #0060ce;
  border-bottom: 2px solid #0060ce;
  display: inline-block;
  margin-right: 10px;
  position: absolute;
  top: 5px;
  left: -20px;
}

.c-news-item:has(+ .c-news-item-sub),
.c-news-item-sub:has(+ .c-news-item-sub) {
  border-bottom: none;
}

/*--------------------------------------------------------------------------
.c-history 
--------------------------------------------------------------------------*/
.c-history__yearblock {
  display: flex;
}
.c-history__right {
  width: 15%;
  margin-right: 8px;
  min-width: 60px;
  max-width: 90px;
}
@media screen and (max-width: 768px) {
  .c-history__right {
    margin-right: 8px;
  }
}
.c-history__left {
  width: 85%;
}
.c-history__year {
  color: #0060ce;
  font-weight: bold;
  line-height: 1;
  font-size: clamp(1.6rem, 0.8rem + 1.333vw, 2.4rem); /* min: 16px, max: 24px */
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .c-history__year {
    margin-top: 8px;
  }
}
.c-history__year-sm {
  font-size: clamp(1.3rem, 0.8rem + 0.833vw, 1.8rem); /* min: 13px, max: 18px */
}
.c-history__item {
  border-left: 2px solid #0060ce;
  padding-left: 23px;
  padding-bottom: 30px;
  padding-top: 10px;
  position: relative;
}
.c-history__item::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #0060ce;
  position: absolute;
  top: 12px;
  left: 0;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .c-history__item::before {
    width: 14px;
    height: 14px;
  }
}
.c-history__item-ttl {
  color: #0060ce;
  font-weight: bold;
  font-size: clamp(1.5rem, 1rem + 0.833vw, 2rem); /* min: 15px, max: 20px */
  line-height: 1;
}
.c-history__item-desc {
  font-size: clamp(1.3rem, 1rem + 0.5vw, 1.6rem); /* min: 13px, max: 16px */
  line-height: 1.5;
  margin-top: 8px;
}
.c-history__item-imglist {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: clamp(1.2rem, 0rem + 2vw, 2.4rem); /* min: 12px, max: 24px */
}
@media screen and (max-width: 768px) {
  .c-history__item-imglist {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}
.c-history__item-img {
  border-radius: 12px;
  overflow: hidden;
  width: min(100%, 420px);
}

/*--------------------------------------------------------------------------
.swiper
--------------------------------------------------------------------------*/
.c-swiper-container {
  padding-top: 60px;
  margin-bottom: clamp(3rem, 2rem + 1.667vw, 4rem); /* min: 30px, max: 40px */
  position: relative;
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .c-swiper-container {
    padding-top: 50px;
    margin-left: 20px;
  }
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  height: 58px;
  width: 58px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  border: 1px solid #0060CE;
}
@media screen and (max-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    height: 40px;
    width: 40px;
    top: 20px;
  }
}

.swiper-button-prev {
  left: unset;
  right: 110px;
}
@media screen and (max-width: 768px) {
  .swiper-button-prev {
    right: 65px;
  }
}

.swiper-button-next {
  right: 40px;
}
@media screen and (max-width: 768px) {
  .swiper-button-next {
    right: 10px;
  }
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 100%;
  margin: auto;
  width: 100%;
  background-size: 45%;
  background-position: center;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  background-image: url(../img/common/icon_arw_lightblu.svg);
  transform: rotate(180deg);
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  background-image: url(../img/common/icon_arw_lightblu.svg);
}

/* 画像サイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}

/*--------------------------------------------------------------------------
.c-accordion
--------------------------------------------------------------------------*/
.c-accordion {
  border-bottom: 1px solid #D8E2EE;
  padding-block: 16px;
}
@media screen and (max-width: 768px) {
  .c-accordion {
    padding-block: 12px;
  }
}
.c-accordion__head, .c-accordion__cont-inner {
  display: flex;
  position: relative;
  cursor: pointer;
  transition: color 0.3s, border 0.3s;
}
.c-accordion__head {
  padding-right: 32px;
  position: relative;
}
.c-accordion__head::after {
  content: "";
  width: 16px;
  height: 10px;
  display: block;
  background-image: url(/assets/img/common/icon_select-arw.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  transition: transform 0.3s;
}
@media screen and (max-width: 768px) {
  .c-accordion__head::after {
    right: 2px;
    width: 14px;
    height: 8px;
    padding-right: 22px;
  }
}
.c-accordion__head.is-open::after {
  transform: translateY(-50%) rotate(180deg);
}
.c-accordion__icon {
  font-family: "Oswald", "Noto Sans JP", serif;
  color: #0060ce;
  font-weight: 300;
  font-size: 32px;
  margin-right: 14px;
}
@media screen and (max-width: 768px) {
  .c-accordion__icon {
    margin-right: 8px;
    font-size: 28px;
  }
}
.c-accordion__cont {
  padding-top: 0;
}
.c-accordion__cont .c-accordion__icon {
  color: #7E070C;
}
.c-accordion__q, .c-accordion__a {
  padding-top: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .c-accordion__q, .c-accordion__a {
    padding-top: 18px;
  }
}
.c-accordion__q {
  font-weight: bold;
  font-size: clamp(1.6rem, 1.4rem + 0.333vw, 1.8rem); /* min: 16px, max: 18px */
}

/*--------------------------------------------------------------------------
.c-list-indent ２行目以降インデント
--------------------------------------------------------------------------*/
.c-list-indent {
  padding-left: 20px;
  text-indent: -20px;
}

/*--------------------------------------------------------------------------
.c-flow
--------------------------------------------------------------------------*/
.c-flow {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .c-flow {
    margin-top: 40px;
  }
}
.c-flow__arrow {
  width: 80px;
  height: 73px;
  display: block;
  margin-inline: auto;
  margin-block: 8px;
}
@media screen and (max-width: 768px) {
  .c-flow__arrow {
    width: 40px;
    height: 33px;
    margin-block: 6px;
  }
}
.c-flow__arrow img {
  max-height: 100%;
}
.c-flow__mid {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-flow__mid-txt {
  font-weight: 500;
  line-height: 1.6;
  margin-left: 20px;
  max-width: 80%;
  padding-block: 8px;
}
@media screen and (max-width: 768px) {
  .c-flow__mid-txt {
    margin-left: 6px;
  }
}
.c-flow__mid .c-flow__arrow {
  margin-inline: 0;
  transform: translateY(0);
}
.c-flow-item {
  border-radius: 20px;
  background-color: rgba(201, 222, 243, 0.4);
  padding-inline: clamp(1rem, -2rem + 5vw, 4rem); /* min: 10px, max: 40px */
  padding-block: clamp(2rem, -1rem + 5vw, 5rem); /* min: 20px, max: 50px */
}
@media screen and (max-width: 768px) {
  .c-flow-item {
    border-radius: 12px;
  }
}
.c-flow-item-white {
  background-color: #fff;
}
.c-flow-item .c-bluecopy {
  font-size: clamp(2rem, 0.8rem + 2vw, 3.2rem); /* min: 20px, max: 32px */
  margin-bottom: 32px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-flow-item .c-bluecopy {
    margin-bottom: 12px;
    text-align: left;
  }
}
.c-flow .c-flex-item__inner {
  border-bottom: none;
  padding-block: 0;
}

.p-top__mv {
  width: 100%;
  height: 100svh;
  overflow: hidden;
  /*
  background: url(/assets/img/top/mv_sp.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  */
  position: relative;
}
@media screen and (min-width: 1025px) {
  .p-top__mv {
    /*
      background: url(/assets/img/top/mv_pc.jpg) no-repeat;
      background-size: cover;
      background-position: center;
      */
  }
}
.p-top__mv__line01 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  color: #fff;
  font-size: 34rem;
  font-size: min(37rem, 21.5vw);
  z-index: 2;
  font-weight: bold;
  padding-top: 4.25%;
}
@media screen and (max-width: 1025px) {
  .p-top__mv__line01 {
    font-size: 34vw;
    padding-top: 16.25%;
  }
}
@media (min-width: 1025px) and (max-height: 1025px) {
  .p-top__mv__line01 {
    font-size: 31vh;
  }
}
.p-top__mv__line01__inner {
  width: 100%;
  line-height: 0.9;
  text-align: center;
  mix-blend-mode: soft-light;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
.p-top__mv__line01__jpn {
  font-size: 4.6rem;
  font-weight: 900;
  line-height: 1.5;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .p-top__mv__line01__jpn {
    font-size: min(2.82vw, 4.85rem);
  }
}
@media screen and (max-width: 1025px) {
  .p-top__mv__line01__jpn {
    font-size: 5.5vw;
  }
}
@media (min-width: 1025px) and (max-height: 1025px) {
  .p-top__mv__line01__jpn {
    font-size: 4.2vh;
  }
}
.p-top__mv .mv__movie {
  grid-column: 1/5;
  grid-row: 1/2;
  height: 45vh;
  max-height: 320px;
}
@media screen and (min-width: 769px) {
  .p-top__mv .mv__movie {
    height: auto;
    max-height: none;
  }
}
@media screen and (min-width: 1025px) {
  .p-top__mv .mv__movie {
    grid-column: 3/5;
    grid-row: auto;
  }
}
.p-top__mv .mv__movie .video {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 100%;
}
.p-top__mv .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.p-top__mv .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 30px;
  height: 2px;
  border-radius: 0;
  opacity: 1;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .p-top__mv .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .p-top__mv .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 40px;
  }
}
.p-top__mv .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #20334c !important;
}

.p-top__slider {
  position: relative;
  z-index: 0;
  height: 100svh;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}
.p-top__slider a {
  display: block;
  width: 100%;
  height: 100%;
}
.p-top__slider a:hover {
  opacity: 1 !important;
}
.p-top__slider a:hover img {
  transform: none;
}
.p-top__slider img {
  height: 100%;
  width: 100%;
  max-width: 200vw !important;
  object-fit: cover;
  object-position: center top;
}

.p-about {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-about {
    min-height: 36vw;
  }
}
@media screen and (max-width: 768px) {
  .p-about {
    margin-top: 0px;
    padding-top: 50px;
  }
}
@media screen and (min-width: 768px) {
  .p-about .c-sec__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .p-about .c-sec__inner > * {
    width: 50%;
  }
}
.p-about__image {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about__image img {
    width: calc(100% + 20px);
    position: relative;
    left: -20px;
    max-width: 100vw;
  }
}
@media screen and (min-width: 768px) {
  .p-about__image img {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50vw;
    max-width: 50vw;
  }
}
.p-about__detail {
  padding-left: min(6.75%, 120px);
}
@media screen and (max-width: 767px) {
  .p-about__detail {
    padding-left: 0;
    letter-spacing: 0;
  }
}
.p-about__read + * {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-about__read + * {
    margin-top: 25px;
  }
}
@media screen and (min-width: 768px) {
  .p-about .c-sec__title__eng {
    font-size: min(9.5vw, 18rem);
    font-size: 11rem;
    padding-left: 5.5%;
  }
}
@media screen and (min-width: 1025px) {
  .p-about .c-sec__title__eng {
    font-size: min(9.5vw, 18rem);
    font-size: 18rem;
    padding-left: 5.5%;
  }
}
@media screen and (max-width: 767px) {
  .p-about .c-sec__title__eng {
    font-size: 9rem;
    margin-top: 26px;
  }
}

.p-products {
  background: url(/assets/img/top/bg_01_sp.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  background-position: center top;
}
@media screen and (min-width: 768px) {
  .p-products {
    background: linear-gradient(to bottom, transparent 0%, transparent 30%, #fcfcfc 100%), url(/assets/img/top/bg_01_pc.jpg) no-repeat;
    background-size: cover;
    background-position: center top 120px;
    padding-bottom: 280px;
    padding-bottom: 20vw;
  }
}
@media screen and (max-width: 767px) {
  .p-products {
    background: url(/assets/img/top/bg_01_sp.jpg) no-repeat;
    padding-bottom: 140vw;
    background-size: cover;
    background-position: center top 20vw;
  }
}
.p-products .c-sec__inner {
  position: relative;
  z-index: 1;
}
.p-products .c-sec__inner:before {
  content: "";
  width: 57%;
  height: 37%;
  display: block;
  position: absolute;
  background: url(/assets/img/top/icon_products_pc.svg) no-repeat;
  background-size: contain;
  background-position: left top;
  top: -30px;
  left: -155px;
  z-index: 0;
  max-width: 775px;
}
@media screen and (max-width: 767px) {
  .p-products .c-sec__inner:before {
    background: url(/assets/img/top/icon_products_sp_03.svg) no-repeat;
    background-size: 100%;
    background-position: center;
    left: auto;
    right: -20px;
    top: -70px;
    width: 34%;
    height: 34%;
  }
}
.p-products .c-sec__inner:after {
  content: "";
  width: 18%;
  height: 23%;
  display: block;
  position: absolute;
  background: url(/assets/img/top/icon_products_pc_02.svg) no-repeat;
  background-size: contain;
  background-position: left top;
  bottom: 25px;
  right: -120px;
  z-index: 0;
  max-width: 236px;
}
@media screen and (max-width: 767px) {
  .p-products .swiper-wrapper {
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) {
  .p-products .swiper-wrapper {
    transform: none !important;
    justify-content: space-between;
    max-width: 1360px !important;
  }
}
@media screen and (min-width: 768px) {
  .p-products .swiper-slide {
    width: calc((100% - 60px) / 3) !important;
  }
}
.p-products .swiper-slide-duplicate {
  display: none !important;
}
.p-products__carousel__item {
  transition: 0.4s;
  cursor: pointer;
}
.p-products__carousel__item img {
  transition: 0.4s;
}
.p-products__carousel__item a:hover {
  opacity: 1;
}
.p-products__carousel__item a:hover img {
  transform: scale(1.05);
}
.p-products__carousel__item a:hover .p-products__carousel__item__title {
  opacity: 0.6;
}
.p-products__carousel__item a:hover .p-products__carousel__item__line01:after {
  transform: scale(1.05);
}
.p-products__carousel__item__line01 {
  position: relative;
  color: #fff;
  overflow: hidden;
  border-radius: 12px;
}
.p-products__carousel__item__line01:after {
  content: "";
  width: 70px;
  height: 70px;
  display: block;
  position: absolute;
  right: 24px;
  bottom: 24px;
  background: url(/assets/img/common/icon_arw_red.svg) no-repeat;
  transition: 0.4s;
}
@media screen and (max-width: 1024px) {
  .p-products__carousel__item__line01:after {
    display: none;
  }
}
.p-products__carousel__item__title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 20px 25px 20px 25px;
  transition: 0.4s;
}
@media screen and (max-width: 1024px) {
  .p-products__carousel__item__title {
    padding: 15px;
  }
}
.p-products__carousel__item__eng {
  font-size: 4.6rem;
  font-weight: 300;
  display: block;
  line-height: 1.1;
}
@media screen and (max-width: 1024px) {
  .p-products__carousel__item__eng {
    font-size: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .p-products__carousel__item__eng {
    font-size: 7vw;
  }
}
.p-products__carousel__item__jpn {
  font-weight: 500;
  font-size: 2.2rem;
  display: block;
  width: 100%;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .p-products__carousel__item__jpn {
    font-size: 2.6vw;
  }
}
@media screen and (max-width: 768px) {
  .p-products__carousel__item__jpn {
    font-size: 3.5vw;
  }
}
.p-products__carousel__item__line02 {
  margin-top: 19px;
}
@media screen and (max-width: 1024px) {
  .p-products__carousel__item__line02 {
    font-size: 1.3rem;
    margin-top: 10px;
  }
}
.p-products .c-sec__btn {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-products .c-sec__btn {
    margin-top: 20px;
  }
}
.p-products .swiper-pagination-bullets.swiper-pagination-horizontal {
  position: relative;
  margin-top: 15px;
}
.p-products .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.p-products .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 30px;
  height: 2px;
  border-radius: 0;
  opacity: 1;
  background: #B3B3B3;
}
@media screen and (max-width: 767px) {
  .p-products .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .p-products .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 40px;
  }
}
.p-products .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #20334c !important;
}

.p-ir {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-ir {
    margin-top: -140vw;
    z-index: 1;
    position: relative;
  }
}
@media screen and (max-width: 1024px) {
  .p-ir {
    margin-top: -20vw;
  }
}
@media screen and (min-width: 1025px) {
  .p-ir {
    margin-top: -160px;
    margin-top: -15vw;
    position: relative;
    z-index: 1;
  }
}
@media screen and (min-width: 1025px) {
  .p-ir .c-sec__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1025px) {
  .p-ir .c-sec__inner > * {
    width: 50%;
  }
}
.p-ir__image {
  position: relative;
}
.p-ir__detail {
  padding-left: min(5%, 60px);
}
@media screen and (max-width: 1024px) {
  .p-ir__detail {
    padding-left: 0;
    letter-spacing: 0;
  }
}
.p-ir__read + * {
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .p-ir__read + * {
    margin-top: 25px;
  }
}
@media screen and (min-width: 1025px) {
  .p-ir .c-sec__title__eng {
    font-size: min(9.5vw, 18rem);
    font-size: 18rem;
    padding-left: 5.5%;
  }
}

.p-news {
  margin-top: 60px;
  background: url(/assets/img/top/bg_02_sp.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1024px) {
  .p-news {
    margin-top: 0px;
    padding-bottom: 45px;
  }
}
@media screen and (min-width: 1025px) {
  .p-news {
    background: url(/assets/img/top/bg_02_pc.jpg) no-repeat;
    background-size: 50%;
    background-position: left 50vw center;
    min-height: 48.25vw;
  }
}
@media screen and (min-width: 1025px) {
  .p-news .c-sec__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1025px) {
  .p-news .c-sec__inner > * {
    width: 50%;
  }
}
.p-news__image {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-news__image img {
    width: 100vw;
    max-width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
@media screen and (min-width: 1025px) {
  .p-news__image img {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50vw;
    max-width: 50vw;
  }
}
.p-news__detail {
  padding-left: min(6%, 90px);
}
@media screen and (max-width: 1024px) {
  .p-news__detail {
    padding-left: 0;
    padding-top: 40px;
  }
}
.p-news__read + * {
  margin-top: 50px;
}
.p-news__title__eng {
  background: linear-gradient(90deg, #2C62AB 0%, #79C1FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 1024px) {
  .p-news__title__eng {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 1025px) {
  .p-news__title__eng {
    font-size: 5.2rem;
  }
}
.p-news__title__jpn {
  font-weight: bold;
  font-size: 2rem;
  padding-left: 12px;
}
@media screen and (max-width: 1024px) {
  .p-news__title__jpn {
    display: none;
  }
}
.p-news__list {
  border-bottom: 1px solid #fff;
}
.p-news__list + * {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .p-news__list + * {
    margin-top: 24px;
  }
}
.p-news__list__link {
  padding: 20px 0;
  border-top: 1px solid #fff;
  display: block;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .p-news__list__link {
    padding: 15px 0;
  }
}
.p-news__list__link__line01 {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .p-news__list__link__line01 {
    font-size: 1.2rem;
  }
}
.p-news__list__link__line02 {
  display: block;
  width: fit-content;
  font-size: 1.5rem;
  position: relative;
  color: #20334c;
}
@media screen and (max-width: 1024px) {
  .p-news__list__link__line02 {
    font-size: 1.3rem;
    letter-spacing: 0;
  }
}
.p-news__list__link__line02:after {
  content: "";
  width: 0;
  height: 1px;
  display: block;
  transition: 0.6s;
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  background: #20334c;
}
.p-news__list__link__category {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin-left: 14px;
}
.p-news__list__link__category span {
  background: #F2F5F9;
  color: #5A6A81;
  padding: 5px 8px 7px;
  line-height: 1;
  border-radius: 2px;
}
.p-news__list__link:hover .p-news__list__link__line02:after {
  width: 100%;
}

.p-bnr {
  background: #F1F5FA;
  margin-top: -60px;
  z-index: 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-bnr {
    padding-bottom: 35px;
  }
}
@media screen and (min-width: 768px) {
  .p-bnr.c-sec {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.p-bnr__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .p-bnr__list {
    width: 100%;
    max-width: 100%;
    width: 85%;
  }
}
.p-bnr__list__item {
  width: 48%;
  max-width: 540px;
}
@media screen and (max-width: 1024px) {
  .p-bnr__list__item {
    width: 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }
}
.p-bnr a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.p-bnr a img {
  transition: 0.4s;
}
.p-bnr a .p-bnr__item__title {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  padding: 22px 32px;
  display: flex;
  align-items: flex-end;
  align-content: flex-end;
  flex-wrap: wrap;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .p-bnr a .p-bnr__item__title {
    padding: 18px 15px;
  }
}
.p-bnr a:hover img {
  transform: scale(1.01);
}
.p-bnr__item__eng {
  font-weight: 300;
  font-size: 3.8rem;
  display: block;
  width: 100%;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .p-bnr__item__eng {
    font-size: 2.6rem;
  }
}
.p-bnr__item__jpn {
  font-weight: 500;
  font-size: 2rem;
  display: block;
  width: 100%;
  line-height: 1;
  margin-top: 7px;
}
@media screen and (max-width: 1024px) {
  .p-bnr__item__jpn {
    font-size: 1.4rem;
  }
}

/*--------------------------------------------------------------------------
.c-page-firstsec 下層ページの最初のセクション
---------------------------------------------------------------------------*/
.c-page-firstsec {
  padding-top: 0;
}

/*--------------------------------------------------------------------------
.c-page-intro
---------------------------------------------------------------------------*/
.c-page-intro {
  background-image: url(../img/common/page-intro-bg.jpg);
  background-size: cover;
  background-position: center;
  margin-bottom: 10px;
}
.c-page-intro__inner {
  padding-top: 114px;
  padding-bottom: min(7vw, 125px);
  width: min(90%, 1360px);
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  .c-page-intro__inner {
    padding-bottom: clamp(5rem, -2.5rem + 12.5vw, 12.5rem); /* min: 50px, max: 125px */
  }
}

/*--------------------------------------------------------------------------
.c-pagettl
---------------------------------------------------------------------------*/
.c-pagettl__ttl-eng {
  font-family: "Oswald", sans-serif;
  font-size: min(6vw, 66px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #20334c;
  display: block;
}
@media screen and (max-width: 768px) {
  .c-pagettl__ttl-eng {
    font-size: min(12vw, 56px);
  }
}
.c-pagettl__ttl-jpn {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 18px;
  color: #20334c;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .c-pagettl__ttl-jpn {
    margin-top: 10px;
  }
}
.c-pagettl:has(.c-pagettl__desc) {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .c-pagettl:has(.c-pagettl__desc) {
    flex-direction: column;
    gap: 16px;
  }
}
.c-pagettl:has(.c-pagettl__desc) .c-pagettl__desc {
  width: 58%;
  font-size: clamp(1.6rem, 1.2rem + 0.667vw, 2rem); /* min: 16px, max: 20px */
  line-height: 2;
  color: #20334c;
}
@media screen and (max-width: 768px) {
  .c-pagettl:has(.c-pagettl__desc) .c-pagettl__desc {
    width: 100%;
  }
}

/*--------------------------------------------------------------------------
.c-page-menu .c-textline下のセクション
---------------------------------------------------------------------------*/
.c-page-menu {
  background: #F1F5FA;
  margin-top: -60px;
  z-index: 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .c-page-menu {
    padding-bottom: 35px;
  }
}
.c-page-menu.c-sec {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .c-page-menu.c-sec {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.c-page-menu__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: min(2.6vw, 50px);
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .c-page-menu__list {
    gap: min(5vw, 30px);
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}
.c-page-menu .c-page-menu__list + .c-product-menu__inner {
  margin-top: clamp(5.6rem, -2.8rem + 14vw, 14rem); /* min: 56px, max: 140px */
}

/*--------------------------------------------------------------------------
.c-product-menu
---------------------------------------------------------------------------*/
.c-product-menu__block:has(+ .c-product-menu__block) {
  margin-bottom: clamp(4rem, -6rem + 16.667vw, 14rem); /* min: 40px, max: 140px */
}
.c-product-menu__flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 32px;
  margin-top: clamp(3rem, 2rem + 1.667vw, 4rem); /* min: 30px, max: 40px */
}
@media screen and (max-width: 1024px) {
  .c-product-menu__flex {
    flex-direction: column;
    gap: 20px;
    font-size: min(22px, 1.75vw);
    width: 100%;
  }
}
.c-product-menu__txt {
  font-size: clamp(1.8rem, 1.4rem + 0.667vw, 2.2rem); /* min: 18px, max: 22px */
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .c-product-menu__txt {
    width: 100%;
  }
}
.c-product-menu__btnlist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 55%;
  max-width: 620px;
}
@media screen and (max-width: 1024px) {
  .c-product-menu__btnlist {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    width: min(100%, 700px);
    margin-right: auto;
  }
}
.c-product-menu .c-sec__btn__link {
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  .c-product-menu .c-sec__btn__link {
    max-width: 220px;
  }
}
.c-product-menu__btn-txt {
  line-height: 1.5;
  margin-bottom: 8px;
  font-size: clamp(1.4rem, 1.2rem + 0.333vw, 1.6rem); /* min: 14px, max: 16px */
}
@media screen and (max-width: 768px) {
  .c-product-menu__btn-txt {
    margin-bottom: 4px;
  }
}
.c-product-menu .c-sec__btn + .c-sec__btn {
  margin-top: 0px;
}

/*--------------------------------------------------------------------------
.c-page-info
---------------------------------------------------------------------------*/
.c-page-info {
  padding-top: 0;
}
.c-page-info .c-sec__inner {
  padding-block: clamp(5rem, 2rem + 5vw, 8rem); /* min: 50px, max: 80px */
  border-top: 1px solid #D8E2EE;
}
.c-page-info__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: min(2.6vw, 50px);
}
@media screen and (max-width: 1024px) {
  .c-page-info__list {
    gap: min(5vw, 30px);
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}
.c-page-info__list .c-card-02__ttl-lg {
  margin-bottom: clamp(0.8rem, 0rem + 1.333vw, 1.6rem); /* min: 8px, max: 16px */
}

/*--------------------------------------------------------------------------
.c-page-btnmenu
---------------------------------------------------------------------------*/
.c-page-btnmenu {
  padding-top: 0;
}
.c-page-btnmenu .c-sec__inner {
  padding-top: clamp(2.4rem, -1.6rem + 6.667vw, 6.4rem); /* min: 24px, max: 64px */
  border-top: 1px solid #D8E2EE;
  padding-bottom: clamp(5rem, -4rem + 15vw, 14rem); /* min: 50px, max: 140px */
}
.c-page-btnmenu__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: min(2.6vw, 50px);
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .c-page-btnmenu__list {
    gap: min(5vw, 30px);
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

/*--------------------------------------------------------------------------
.p-reason-01
---------------------------------------------------------------------------*/
.p-reason-01 {
  padding-top: 0;
}
.p-reason-01__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2%;
  max-width: 1360px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-reason-01__container {
    flex-direction: column;
    gap: 20px;
  }
}
.p-reason-01__txtblock {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .p-reason-01__txtblock {
    width: 100%;
    margin-top: 0px;
  }
}
.p-reason-01__img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-reason-01__img {
    width: 100%;
  }
}

/*--------------------------------------------------------------------------
.p-reason-02
---------------------------------------------------------------------------*/
.p-reason-02 {
  padding-top: clamp(5rem, -4rem + 15vw, 14rem); /* min: 50px, max: 140px */
}
@media screen and (max-width: 1024px) {
  .p-reason-02 .c-sec__title__jpn {
    font-size: min(5.8vw, 28px);
  }
}
.p-reason-02__container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  container-type: inline-size;
}
.p-reason-02__container::before {
  content: "";
  width: 40cqw;
  height: 40cqw;
  display: block;
  background-image: url(../img/reason/sec-2-bg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 7px;
  right: 0;
  z-index: -1;
}
.p-reason-02__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: clamp(3rem, 0rem + 5vw, 6rem); /* min: 30px, max: 60px */
  gap: min(2.6vw, 50px);
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-reason-02__list {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

/*--------------------------------------------------------------------------
.p-reason-03
---------------------------------------------------------------------------*/
.p-reason-03 {
  padding-top: clamp(5rem, -6rem + 18.333vw, 16rem); /* min: 50px, max: 160px */
}

/*--------------------------------------------------------------------------
.p-reason-04
---------------------------------------------------------------------------*/
.p-reason-04 {
  padding-top: clamp(5rem, -4.5rem + 15.833vw, 14.5rem); /* min: 50px, max: 145px */
}
.p-reason-04__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2%;
  max-width: 1360px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-reason-04__container {
    flex-direction: column;
    gap: 20px;
  }
}
.p-reason-04__txtblock {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .p-reason-04__txtblock {
    width: 100%;
  }
}
.p-reason-04__img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-reason-04__img {
    width: 100%;
  }
}
.p-reason-04 .c-sec__btn {
  margin-top: clamp(2.4rem, 0.8rem + 2.667vw, 4rem); /* min: 24px, max: 40px */
}

/*--------------------------------------------------------------------------
.p-reason-02
---------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .p-work .c-pagettl__ttl-eng {
    font-size: min(11vw, 56px);
  }
}

/*--------------------------------------------------------------------------
.p-work-cat
---------------------------------------------------------------------------*/
.p-work-cat {
  padding-top: 0;
}
.p-work-cat .c-sec__title {
  margin-bottom: clamp(3rem, 0rem + 5vw, 6rem); /* min: 30px, max: 60px */
}
/*--------------------------------------------------------------------------
.p-work-facility
---------------------------------------------------------------------------*/
.p-work-facility {
  padding-top: clamp(5rem, -4rem + 15vw, 14rem); /* min: 50px, max: 140px */
  padding-bottom: clamp(5rem, -4rem + 15vw, 14rem); /* min: 50px, max: 140px */
}
.p-work-facility .c-sec__title {
  margin-bottom: clamp(3rem, 0rem + 5vw, 6rem); /* min: 30px, max: 60px */
}

/*--------------------------------------------------------------------------
.p-work-facility 各カテゴリーの事例ページ
---------------------------------------------------------------------------*/
.p-work-cat-list .c-sec__title {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-work-cat-list .c-sec__title {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------------------
記事詳細ページ
---------------------------------------------------------------------------*/
.p-work-post-cat {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p-work-post-cat {
    margin-bottom: 60px;
  }
}
.p-work-post-cat__cat {
  display: inline-block;
  color: #5A6A81;
  background-color: #F2F5F9;
  padding: 6px 12px;
  border-radius: 2px;
  line-height: 1;
  text-align: center;
  font-size: clamp(1.3rem, 1.2rem + 0.167vw, 1.4rem); /* min: 13px, max: 14px */
  margin-bottom: 12px;
}

.p-work-post-main {
  /* ページネーションの基本スタイル */
  /* 矢印 */
  /* 画像サイズ調整 */
}
.p-work-post-main__slider {
  max-width: 1200px;
  margin: 0 auto;
}
.p-work-post-main .swiper-horizontal > .swiper-pagination-bullets, .p-work-post-main .swiper-pagination-bullets.swiper-pagination-horizontal, .p-work-post-main .swiper-pagination-custom, .p-work-post-main .swiper-pagination-fraction {
  display: flex;
  align-items: center;
  gap: 8px;
  position: initial;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .p-work-post-main .swiper-horizontal > .swiper-pagination-bullets, .p-work-post-main .swiper-pagination-bullets.swiper-pagination-horizontal, .p-work-post-main .swiper-pagination-custom, .p-work-post-main .swiper-pagination-fraction {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
.p-work-post-main .swiper-pagination-bullet {
  background-color: transparent;
  height: 100%;
  opacity: 1;
  width: 100%;
  margin: 0 !important;
  overflow: hidden;
  border-radius: 0;
  aspect-ratio: 145/90;
  max-width: 160px;
}
.p-work-post-main .swiper-button-prev,
.p-work-post-main .swiper-button-next {
  border: none;
  background: transparent;
  top: 42%;
}
@media screen and (max-width: 768px) {
  .p-work-post-main .swiper-button-prev,
  .p-work-post-main .swiper-button-next {
    top: 33vw;
  }
}
.p-work-post-main .swiper-button-prev::after,
.p-work-post-main .swiper-button-next::after {
  background-image: none;
  background-size: unset;
  transform: rotate(0deg);
  color: #fff;
  display: flex;
  justify-content: center;
}
.p-work-post-main .swiper-button-prev {
  left: 10px;
}
.p-work-post-main .swiper-button-prev::after {
  content: "prev";
}
.p-work-post-main .swiper-button-next {
  right: 10px;
}
.p-work-post-main .swiper-button-next::after {
  content: "next";
}
.p-work-post-main .swiper-slide {
  height: auto;
}
.p-work-post-main .swiper-slide img {
  object-fit: cover;
  height: 100%;
}
.p-work-post-main .swiper-slide div {
  height: 100%;
}
.p-work-post-main__txtblock {
  margin-top: clamp(5rem, -3rem + 13.333vw, 13rem); /* min: 50px, max: 130px */
}
.p-work-post-main__txtblock h4 {
  font-size: clamp(2rem, 1rem + 1.667vw, 3rem);
  line-height: 1.4;
  padding-bottom: 13px;
  border-bottom: 1px solid #D8E2EE;
  margin-bottom: 30px;
  margin-top: clamp(4rem, -2rem + 10vw, 10rem);
}
@media screen and (max-width: 768px) {
  .p-work-post-main__txtblock h4 {
    margin-bottom: 16px;
  }
}
.p-work-post-main .c-sec__btn {
  margin-top: clamp(5rem, -2rem + 11.667vw, 12rem); /* min: 50px, max: 120px */
  margin-bottom: clamp(5rem, -4rem + 15vw, 14rem); /* min: 50px, max: 140px */
}

/*--------------------------------------------------------------------------
.p-flat-point 
---------------------------------------------------------------------------*/
.p-flat-point {
  padding-top: 0;
}
.p-flat-point__upper {
  max-width: 970px;
  margin: 0 auto;
}
.p-flat-point__upper-inner {
  display: flex;
  align-items: center;
  gap: min(3.5vw, 30px);
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-flat-point__upper-inner {
    flex-direction: column;
    gap: 16px;
  }
}
.p-flat-point__upper-img {
  width: 36%;
}
@media screen and (max-width: 768px) {
  .p-flat-point__upper-img {
    width: 100%;
  }
}
.p-flat-point__upper-txt {
  margin-bottom: 0;
  line-height: 1.8;
  width: 63%;
  font-size: clamp(1.8rem, 1rem + 1.333vw, 2.6rem); /* min: 18px, max: 26px */
}
@media screen and (max-width: 768px) {
  .p-flat-point__upper-txt {
    width: 100%;
  }
}
.p-flat-point__item-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-block: clamp(3rem, -2rem + 8.333vw, 8.4rem); /* min: 30px, max: 80px */
  border-bottom: 1px solid #D8E2EE;
}
@media screen and (max-width: 768px) {
  .p-flat-point__item-inner {
    flex-direction: column;
    gap: 16px;
  }
}
.p-flat-point__item:nth-child(2n) .p-flat-point__item-inner {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .p-flat-point__item:nth-child(2n) .p-flat-point__item-inner {
    flex-direction: column;
  }
}
.p-flat-point__item-txtblock {
  width: 55%;
  max-width: 680px;
}
@media screen and (max-width: 768px) {
  .p-flat-point__item-txtblock {
    width: 100%;
  }
}
.p-flat-point__item-img {
  width: 41%;
}
@media screen and (max-width: 768px) {
  .p-flat-point__item-img {
    width: 100%;
  }
}

/*--------------------------------------------------------------------------
.p-flat-optioin
---------------------------------------------------------------------------*/
.p-flat-option {
  padding-top: clamp(5rem, -4.5rem + 15.833vw, 14.5rem); /* min: 50px, max: 145px */
}
.p-flat-option .c-sec__title {
  margin-bottom: clamp(4rem, 3rem + 1.667vw, 5rem); /* min: 40px, max: 50px */
}
.p-flat-option__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  column-gap: min(2.6vw, 50px);
  row-gap: clamp(2rem, -2rem + 6.667vw, 6rem); /* min: 20px, max: 60px */
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-flat-option__list {
    gap: min(5vw, 30px);
    grid-template-columns: 1fr 1fr;
  }
}

/*--------------------------------------------------------------------------
.p-flat-eg
---------------------------------------------------------------------------*/
.p-flat-eg {
  padding-top: clamp(5rem, -5.8rem + 18vw, 15.8rem); /* min: 50px, max: 158px */
}
.p-flat-eg .c-sec__title {
  margin-bottom: 0;
}
.p-flat-eg__slider {
  padding-top: 60px;
  margin-bottom: clamp(3rem, 2rem + 1.667vw, 4rem); /* min: 30px, max: 40px */
  position: relative;
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .p-flat-eg__slider {
    padding-top: 50px;
    margin-left: 20px;
  }
}
.p-flat-eg .c-card-02__img {
  aspect-ratio: 420/294;
}

/*--------------------------------------------------------------------------
.p-flat-spec
---------------------------------------------------------------------------*/
.p-flat-spec {
  padding-top: clamp(5rem, -5.8rem + 18vw, 15.8rem); /* min: 50px, max: 158px */
}
.p-flat-spec__cont {
  max-width: 1100px;
  margin: 0 auto;
}
.p-flat-spec__details {
  margin-top: clamp(3rem, -4rem + 11.667vw, 10rem); /* min: 30px, max: 100px */
}
@media screen and (max-width: 768px) {
  .p-flat-spec__table {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
}
.p-flat-spec__table .c-table {
  height: 100%;
}
.p-flat-spec .p-flat-spec__table + .p-flat-spec__table {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-flat-spec .p-flat-spec__table + .p-flat-spec__table {
    margin-top: 20px;
  }
}

/*--------------------------------------------------------------------------
オフィス備品・什器ページ
---------------------------------------------------------------------------*/
.p-eq-catalog {
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-eq-catalog {
    margin-top: 40px;
  }
}
.p-eq-catalog .c-bluecopy {
  font-size: clamp(1.8rem, 1rem + 1.333vw, 2.6rem);
}
.p-eq-catalog .c-sec__btn__link {
  max-width: 520px;
  margin: 0 auto;
}
.p-eq-catalog .c-sec__btn__link__text {
  margin: 0 auto;
}

/*--------------------------------------------------------------------------

---------------------------------------------------------------------------*/
.p-ir-select {
  margin-bottom: clamp(6rem, 0rem + 10vw, 12rem); /* min: 60px, max: 120px */
}

/*--------------------------------------------------------------------------
.p-irtop-outline
---------------------------------------------------------------------------*/
.p-irtop-outline {
  padding-top: 0;
}
.p-irtop-outline .c-flex-item {
  align-items: flex-start;
}
.p-irtop-outline .c-flex-item:first-child {
  padding-top: 0;
}

/*--------------------------------------------------------------------------
.p-irtop-news
---------------------------------------------------------------------------*/
.p-irtop-news {
  padding-bottom: clamp(5rem, -4rem + 15vw, 14rem); /* min: 50px, max: 140px */
}
.p-irtop-news .c-sec__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.p-irtop-news__pdf {
  background-color: #F1F5FA;
  margin-block: clamp(2.4rem, 0.8rem + 2.667vw, 4rem); /* min: 24px, max: 40px */
  padding: clamp(2rem, 1rem + 1.667vw, 3rem); /* min: 20px, max: 30px */
}
.p-irtop-news__pdf__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  max-width: 740px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-irtop-news__pdf__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.p-irtop-news__pdf .c-sec__btn {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .p-irtop-news__pdf .c-sec__btn {
    width: 100%;
  }
}
.p-irtop-news__pdf .c-sec__btn__link-white {
  min-width: 227px;
}
.p-irtop-news__pdf-txt {
  color: #666666;
  line-height: 1.8;
  letter-spacing: 0;
  font-size: clamp(1.3rem, 1.2rem + 0.167vw, 1.4rem); /* min: 13px, max: 14px */
  width: 65%;
}
@media screen and (max-width: 768px) {
  .p-irtop-news__pdf-txt {
    width: 100%;
  }
}

/*--------------------------------------------------------------------------
.p-irtop-info
---------------------------------------------------------------------------*/
.p-irtop-info__cal {
  margin-top: clamp(3rem, 0rem + 5vw, 6rem); /* min: 30px, max: 60px */
  margin-bottom: clamp(2.4rem, 0.8rem + 2.667vw, 4rem); /* min: 24px, max: 40px */
}

/*--------------------------------------------------------------------------
メッセージページ
---------------------------------------------------------------------------*/
.p-ir-message-main__img {
  width: 62%;
  margin-inline: auto 0;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-ir-message-main__img {
    width: 90%;
  }
}
.p-ir-message-main__ttl {
  background-color: #fff;
  padding: 32px;
  color: #20334C;
  font-family: "Noto Sans JP";
  font-size: min(3vw, 28px);
  font-style: normal;
  font-weight: 900;
  line-height: 140%; /* 39.2px */
  margin-top: -100px;
  width: fit-content;
  max-width: 90%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-ir-message-main__ttl {
    padding: 16px;
    margin-top: -60px;
    font-size: min(4.8vw, 22px);
  }
}

/*--------------------------------------------------------------------------
コーポレート・ガバナンスページ
---------------------------------------------------------------------------*/
.p-ir-gov .c-sec {
  padding-bottom: 60px;
}

.p-ir-gov-structure__img {
  max-width: 850px;
  margin: 0 auto;
  margin-top: 40px;
}

/*--------------------------------------------------------------------------
財務ハイライトページ
---------------------------------------------------------------------------*/
.p-ir-highlight-main__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5.7vw;
  margin-bottom: clamp(4rem, -2rem + 10vw, 10rem); /* min: 40px, max: 100px */
}
@media screen and (max-width: 768px) {
  .p-ir-highlight-main__list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 32px;
  }
}

/*--------------------------------------------------------------------------
IRライブラリー、株式情報ページ
---------------------------------------------------------------------------*/
.p-ir-btnlist .c-sec__btn__link {
  max-width: unset;
}
.p-ir-btnlist .c-sec__btn + .c-sec__btn {
  margin-top: 0;
}

/*--------------------------------------------------------------------------
IRカレンダーページ
---------------------------------------------------------------------------*/
.p-ir-calendar__schedule {
  margin-bottom: clamp(6rem, 0rem + 10vw, 12rem); /* min: 60px, max: 120px */
}
.p-ir-calendar__note {
  margin-top: 30px;
}

/*--------------------------------------------------------------------------
マネジメントページ
---------------------------------------------------------------------------*/
.p-ir-mgmt-main__cont .c-card-01__inner img {
  aspect-ratio: 521/309;
  object-fit: cover;
}

/*--------------------------------------------------------------------------
.p-irabout
---------------------------------------------------------------------------*/
.p-irabout .c-tabmenu {
  margin-bottom: 0;
}
.p-irabout .p-irabout-subttl-2 {
  font-size: clamp(2rem, 0.6rem + 2.333vw, 3.4rem); /* min: 20px, max: 34px */
  padding-bottom: 30px;
  border-bottom: 1px solid #D8E2EE;
  margin-top: clamp(4rem, -2rem + 10vw, 10rem); /* min: 40px, max: 100px */
  margin-bottom: clamp(2.4rem, 0.8rem + 2.667vw, 4rem); /* min: 24px, max: 40px */
}

.p-irabout-subttl {
  text-align: center;
  background-color: #0060ce;
  color: #fff;
  font-weight: bold;
  font-size: clamp(1.8rem, 1.2rem + 1vw, 2.4rem);
  padding: 20px 12px;
  width: 410px;
  max-width: 100%;
  line-height: 1.2;
  border-radius: 12px;
  margin: 0 auto;
  margin-bottom: max(-2.2vw, -30px);
  position: relative;
  z-index: 1;
}

/*--------------------------------------------------------------------------
.p-irabout-company
---------------------------------------------------------------------------*/
.p-irabout-company .c-sec__title {
  margin-bottom: clamp(2.4rem, -0.8rem + 5.333vw, 5.6rem); /* min: 24px, max: 56px */
}
.p-irabout-company .c-flex-item__inner {
  padding-block: 0;
  border: none;
}
.p-irabout-company .c-flex-item {
  border-bottom: none;
}

/*--------------------------------------------------------------------------
.p-irabout-num
---------------------------------------------------------------------------*/
.p-irabout-num {
  margin-top: clamp(4rem, 1.4rem + 4.333vw, 6.6rem); /* min: 40px, max: 66px */
}
.p-irabout-num__cont {
  margin-inline: 10px;
  background-color: #F1F5FA;
  max-width: 1220px;
  margin: 0 auto;
  padding-block: 72px 57px;
  padding-inline: clamp(1rem, -4rem + 8.333vw, 6rem); /* min: 10px, max: 60px */
}
@media screen and (max-width: 768px) {
  .p-irabout-num__cont {
    padding-top: 30px;
  }
}
.p-irabout-num__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(2.6vw, 30px);
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-irabout-num__list {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-irabout-num__item {
  border-radius: 12px;
  border: 2px solid #0060ce;
  background-color: #fff;
  padding-block: 20px 10px;
  text-align: center;
  container-type: inline-size;
}
.p-irabout-num__item:nth-child(3n-1) {
  animation-delay: 0.2s;
}
.p-irabout-num__item:nth-child(3n) {
  animation-delay: 0.4s;
}
@media screen and (max-width: 768px) {
  .p-irabout-num__item {
    padding: 15px 10px;
  }
  .p-irabout-num__item:nth-child(3n-1), .p-irabout-num__item:nth-child(3n) {
    animation-delay: 0s;
  }
  .p-irabout-num__item:nth-child(2n) {
    animation-delay: 0.2s;
  }
}
.p-irabout-num__item-ttl {
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 13px;
  font-size: 6.4cqw;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .p-irabout-num__item-ttl {
    font-size: 14cqw;
    margin-bottom: 4px;
  }
}
.p-irabout-num__item-ttl-m {
  font-size: 5.5cqw;
}
@media screen and (max-width: 768px) {
  .p-irabout-num__item-ttl-m {
    font-size: 12cqw;
  }
}
.p-irabout-num__item-ttl:has(.p-irabout-num__item-ttl--sm) {
  line-height: 1;
}
.p-irabout-num__item-ttl--sm {
  font-size: 70%;
  font-weight: 400;
}
.p-irabout-num__item-img {
  width: 38cqw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-irabout-num__item-img {
    width: 64cqw;
  }
}
.p-irabout-num__item-num {
  font-weight: bold;
  color: #0060ce;
  font-size: 21cqw;
  font-family: "Oswald", sans-serif;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-irabout-num__item-num {
    font-size: 32cqw;
  }
}
.p-irabout-num__item-sm {
  color: #0060ce;
  font-weight: bold;
  font-size: 7.8cqw;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.2;
  margin-left: 6px;
}
@media screen and (max-width: 768px) {
  .p-irabout-num__item-sm {
    font-size: 12cqw;
  }
}
.p-irabout-num__item-note {
  font-size: clamp(1.1rem, 0.9rem + 0.333vw, 1.3rem); /* min: 11px, max: 13px */
  color: #595959;
  line-height: 1;
}

/*--------------------------------------------------------------------------
.p-irabout-model
---------------------------------------------------------------------------*/
.p-irabout-model__cont {
  max-width: 800px;
  margin: 0 auto;
  margin-top: clamp(2.4rem, -1.2rem + 6vw, 6rem); /* min: 24px, max: 60px */
}
.p-irabout-model .c-sec__btn {
  margin-top: 24, 40;
}

/*--------------------------------------------------------------------------
.p-irabout-products
---------------------------------------------------------------------------*/
.p-irabout-products .c-sec__title {
  margin-bottom: clamp(4rem, -0.8rem + 8vw, 8.8rem); /* min: 40px, max: 88px */
}
.p-irabout-products__list {
  border-top: 1px solid #D8E2EE;
}
.p-irabout-products .c-flex-item__inner {
  padding-block: clamp(3rem, -2rem + 8.333vw, 7rem);
}
.p-irabout-products .c-flex-item__img {
  width: 41%;
}
@media screen and (max-width: 768px) {
  .p-irabout-products .c-flex-item__img {
    width: 100%;
  }
}
.p-irabout-products .c-flex-item__txtblock {
  width: 51%;
}
@media screen and (max-width: 768px) {
  .p-irabout-products .c-flex-item__txtblock {
    width: 100%;
  }
}
.p-irabout-products .c-flex-item:nth-child(2n) .c-flex-item__inner {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .p-irabout-products .c-flex-item:nth-child(2n) .c-flex-item__inner {
    flex-direction: column;
  }
}
.p-irabout-products__eg .c-sec__btn {
  margin-top: clamp(2.4rem, 0.8rem + 2.667vw, 4rem); /* min: 24px, max: 40px */
}
.p-irabout-products__map {
  container-type: inline-size;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.p-irabout-products__btn {
  display: block;
  width: fit-content;
  border-radius: 12px;
  border: 2px solid #0060CE;
  background: #FFF;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.2);
  padding: 10px 14px;
  line-height: 1;
  font-weight: 900;
  color: #0060CE;
  text-align: center;
  position: absolute;
  font-size: clamp(1.5rem, 1rem + 0.833vw, 2rem); /* min: 15px, max: 20px */
}
@media screen and (max-width: 768px) {
  .p-irabout-products__btn {
    padding: 4px 8px;
    letter-spacing: 0;
    font-size: min(4vw, 18px);
    border-radius: 8px;
  }
}
.p-irabout-products__btn.factory {
  left: 6.6cqw;
  top: 28cqw;
}
.p-irabout-products__btn.support {
  left: 23cqw;
  top: 42cqw;
}
.p-irabout-products__btn.convini {
  left: 28cqw;
  top: 22cqw;
}
.p-irabout-products__btn.fire-dpt {
  left: 44cqw;
  top: 15cqw;
}
@media screen and (max-width: 768px) {
  .p-irabout-products__btn.fire-dpt {
    top: 6cqw;
  }
}
.p-irabout-products__btn.school {
  left: 63cqw;
  top: 46cqw;
}
.p-irabout-products__btn.office {
  left: 72cqw;
  top: 25cqw;
}

.p-irabout-remodal {
  border-radius: 12px;
  background: #FFF;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
}
@media only screen and (min-width: 641px) {
  .p-irabout-remodal {
    max-width: 1060px;
    padding-inline: min(5.6vw, 60px);
    padding-block: min(6.6vw, 70px);
  }
}
.p-irabout-remodal__cont {
  display: grid;
  grid-template-columns: 0.64fr 0.36fr;
  gap: min(5.6vw, 60px);
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-irabout-remodal__cont {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.p-irabout-remodal__txtblock {
  text-align: left;
}
.p-irabout-remodal .c-bluecopy {
  padding-bottom: 12px;
  border-bottom: 1px solid #D8E2EE;
}
.p-irabout-remodal .remodal-close:before {
  font-size: 40px;
  top: 10px;
  left: 10px;
}
@media screen and (max-width: 768px) {
  .p-irabout-remodal .remodal-close:before {
    top: 4px;
    left: 4px;
    font-size: 32px;
  }
}

/*--------------------------------------------------------------------------
.p-irabout-history
---------------------------------------------------------------------------*/
.p-irabout-history__list {
  margin-left: 6px;
}
@media screen and (max-width: 768px) {
  .p-irabout-history__list {
    margin-left: 3px;
  }
}
.p-irabout-history .c-sec__btn {
  margin-top: clamp(2.4rem, 0.8rem + 2.667vw, 4rem); /* min: 24px, max: 40px */
}
.p-irabout-history .c-sec__btn {
  margin-top: 24px;
}

/*--------------------------------------------------------------------------
.p-irabout-mission
---------------------------------------------------------------------------*/
.p-irabout-mission {
  padding-top: clamp(5rem, -5rem + 16.667vw, 15rem); /* min: 50px, max: 150px */
}
.p-irabout-mission__cont {
  margin-top: clamp(3rem, 0rem + 5vw, 6rem); /* min: 30px, max: 60px */
}
.p-irabout-mission__list {
  border-top: 1px solid #D8E2EE;
}

/*--------------------------------------------------------------------------
.p-sustain-subsec
---------------------------------------------------------------------------*/
.p-sustain-subsec {
  padding-top: clamp(6rem, 0rem + 10vw, 12rem); /* min: 60px, max: 120px */
}
.p-sustain-subsec:first-of-type {
  padding-top: 0;
}

/*--------------------------------------------------------------------------
.p-sustain-bold
---------------------------------------------------------------------------*/
.p-sustain-bold {
  font-weight: bold;
  font-size: clamp(1.6rem, 1.2rem + 0.667vw, 2rem); /* min: 16px, max: 20px */
  line-height: 1.6;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .p-sustain-bold {
    margin-bottom: 8px;
  }
}

/*--------------------------------------------------------------------------
.p-stb-outline
---------------------------------------------------------------------------*/
.p-stb-outline .c-flex-item:first-child .c-flex-item__inner {
  padding-top: 0;
}
.p-stb-outline .p-stb-zero {
  position: relative;
  width: min(100%, 1200px);
  margin: 0 auto;
  margin-block: clamp(4rem, 0rem + 6.667vw, 8rem); /* min: 40px, max: 80px */
  border-radius: 12px;
  overflow: hidden;
  background-size: contain;
  container-type: inline-size;
  background-image: url(../img/sustainability/zerowaste-pc.jpg);
  aspect-ratio: 1200/380;
  padding-inline: 20px;
}
@media screen and (max-width: 768px) {
  .p-stb-outline .p-stb-zero {
    aspect-ratio: 780/540;
    background-image: url(../img/sustainability/zerowaste-sp.jpg);
  }
}
.p-stb-outline .p-stb-zero__inner {
  padding-top: 5.8cqw;
  padding-bottom: 5cqw;
}
@media screen and (max-width: 768px) {
  .p-stb-outline .p-stb-zero__inner {
    padding-top: 6.4cqw;
    padding-bottom: 4.3cqw;
  }
}
.p-stb-outline .p-stb-zero__txt {
  font-size: 12.8cqw;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  mix-blend-mode: soft-light;
  font-family: "Oswald", sans-serif;
  text-align: center;
  margin-bottom: 3.3cqw;
}
@media screen and (max-width: 768px) {
  .p-stb-outline .p-stb-zero__txt {
    margin-bottom: 5cqw;
    font-size: 23cqw;
  }
}
.p-stb-outline .p-stb-zero .c-sec__btn__link {
  width: min(66vw, 380px);
  max-width: unset;
  margin: 0 auto;
  padding-block: min(1.5vw, 16px);
  font-size: clamp(1.6rem, 1.2rem + 0.667vw, 2rem); /* min: 16px, max: 20px */
  font-weight: 500;
}

.p-stb .c-page-btnmenu .c-sec__inner {
  padding-top: 24px;
}

/*--------------------------------------------------------------------------
メッセージページ
---------------------------------------------------------------------------*/
.p-sustain-message-main .c-flex-item__img {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .p-sustain-message-main .c-flex-item__img {
    width: 100%;
  }
}
.p-sustain-message-main .c-flex-item__txtblock {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .p-sustain-message-main .c-flex-item__txtblock {
    width: 100%;
  }
}
.p-sustain-message-main .c-sec__title__jpn {
  font-size: min(2.4vw, 28px);
}
@media screen and (max-width: 768px) {
  .p-sustain-message-main .c-sec__title__jpn {
    font-size: min(5.2vw, 28px);
  }
}

/*--------------------------------------------------------------------------

---------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------

---------------------------------------------------------------------------*/
.p-sustain-data__annotation {
  font-size: 13px;
  display: flex;
}
.p-sustain-data__annotation ul li {
  text-indent: -20px;
  padding-left: 20px;
}

/*--------------------------------------------------------------------------
サステナビリティ方針 ページ
---------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------

---------------------------------------------------------------------------*/
.p-sustain-esg .l-col-3 {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-sustain-esg .l-col-3 {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .p-sustain-esg .l-col-2 {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}
.p-sustain-esg .c-flex-item__inner {
  border-bottom: none;
  padding-block: 0;
}

/*--------------------------------------------------------------------------
環境方針
---------------------------------------------------------------------------*/
.p-sustain-policy-policy__img {
  max-width: 600px;
  margin-inline: auto;
  margin-top: 30px;
}

/*--------------------------------------------------------------------------
CO2排出ゼロエネルギー　
---------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------
エアコンパネル（廃棄物ゼロ商品）
---------------------------------------------------------------------------*/
.p-ac-compare__img {
  max-width: 460px;
  margin-inline: auto;
  margin-bottom: 20px;
  container-type: inline-size;
}
.p-ac-compare__img img {
  border-radius: 3cqw;
}
.p-ac-compare .c-table {
  border-left: none;
  max-width: 700px;
  margin-inline: auto;
}
.p-ac-compare .c-table__th {
  font-weight: bold;
}
.p-ac-compare .c-table__th, .p-ac-compare .c-table__td {
  background-color: transparent;
  border-right: none;
  font-size: 16px;
  padding-inline: 0;
}
@media screen and (max-width: 768px) {
  .p-ac-compare .c-table__th, .p-ac-compare .c-table__td {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------------------
リユース基礎（廃棄物ゼロ商品）
---------------------------------------------------------------------------*/
.p-sustain-reuse .c-flow-item-prev {
  max-width: 1000px;
  margin-inline: auto;
}
.p-sustain-reuse .c-sec__btn {
  margin-top: clamp(3rem, 0rem + 5vw, 6rem); /* min: 30px, max: 60px */
}
.p-sustain-reuse .c-flex-item__img {
  width: 43%;
}
@media screen and (max-width: 768px) {
  .p-sustain-reuse .c-flex-item__img {
    width: 100%;
  }
}
.p-sustain-reuse .c-flex-item__txtblock {
  width: 56%;
}
@media screen and (max-width: 768px) {
  .p-sustain-reuse .c-flex-item__txtblock {
    width: 100%;
  }
}

/*--------------------------------------------------------------------------
二重折版断熱工法
---------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------
二重折版断熱工法
---------------------------------------------------------------------------*/
.p-sustain-step .c-flex-item__txtblock {
  width: 46%;
}
@media screen and (max-width: 768px) {
  .p-sustain-step .c-flex-item__txtblock {
    width: 100%;
  }
}
.p-sustain-step__step {
  margin-bottom: 40px;
  margin-top: 0 !important;
}
.p-sustain-step__step .c-card-02:has(+ .c-card-02) {
  position: relative;
}
.p-sustain-step__step .c-card-02:has(+ .c-card-02)::after {
  content: "";
  display: block;
  width: min(2.3vw, 40px);
  height: min(2.3vw, 40px);
  background-image: url(/assets/img/common/icon_arw-step.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 40%;
  right: max(-2.5vw, -44px);
}
@media screen and (max-width: 768px) {
  .p-sustain-step__step .c-card-02:has(+ .c-card-02)::after {
    display: none;
  }
}
.p-sustain-step__plusa .p-sustain-bold {
  margin-bottom: 8px;
}
.p-sustain-step__plusa .l-col-3 {
  margin-top: 16px;
}
.p-sustain-step .c-flex-item__inner {
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-sustain-step .c-flex-item__inner {
    padding-top: 30px;
  }
}

/*--------------------------------------------------------------------------

---------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------
.p-sustain-gov-efforts
---------------------------------------------------------------------------*/
.p-sustain-gov-efforts__btns {
  margin-inline: initial;
  margin-top: clamp(3rem, 2rem + 1.667vw, 4rem); /* min: 30px, max: 40px */
}
.p-sustain-gov-efforts__btns .c-sec__btn__link {
  max-width: unset;
}
.p-sustain-gov-efforts__btns .c-sec__btn + .c-sec__btn {
  margin-top: 0;
}

/*--------------------------------------------------------------------------
.p-sustain-bcp
---------------------------------------------------------------------------*/
.p-sustain-gov-bcp {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 30px;
}
.p-sustain-gov-bcp__upper {
  margin-top: 30px;
}
.p-sustain-gov-bcp__upper.l-col-2 {
  gap: min(2.6vw, 30px);
}
.p-sustain-gov-bcp__card {
  position: relative;
}
.p-sustain-gov-bcp__lower {
  padding-block: 20px;
  padding-inline: clamp(1rem, -3rem + 6.667vw, 5rem); /* min: 10px, max: 50px */
  border: 1px solid #0060CE;
  border-radius: 20px;
}

/*--------------------------------------------------------------------------
社会
---------------------------------------------------------------------------*/
.p-sustain-social .p-sustain-bold {
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .p-sustain-social .p-sustain-bold {
    font-size: 18px;
  }
}
.p-sustain-social .c-flex-item__inner {
  border-bottom: none;
  padding-bottom: 0;
}

/*--------------------------------------------------------------------------
コロナウィルス感染対策
---------------------------------------------------------------------------*/
.p-sustain-social-safety__cards {
  margin-top: 30px;
}
.p-sustain-social-safety .c-flex-item__inner {
  align-items: flex-start;
}
.p-sustain-social-safety .c-flex-item__inner .c-flex-item__txtblock {
  margin-top: 56px;
}
@media screen and (max-width: 768px) {
  .p-sustain-social-safety .c-flex-item__inner .c-flex-item__txtblock {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------------------
コロナウィルス感染対策
---------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------
建設現場向けデジタルサイネージ
---------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------

---------------------------------------------------------------------------*/
.p-recruit .c-page-intro__inner {
  padding-bottom: clamp(5rem, -2.5rem + 12.5vw, 6.5rem);
}

/*--------------------------------------------------------------------------
.p-recruit-mv
---------------------------------------------------------------------------*/
.p-recruit-mv {
  padding-top: 0;
}
.p-recruit-mv__container {
  container-type: inline-size;
  position: relative;
}
.p-recruit-mv__bg {
  width: 100%;
}
.p-recruit-mv__txt {
  color: #fff;
  font-size: 2.6cqw;
  line-height: 1.8;
  top: 15cqw;
  position: absolute;
  left: 5.3cqw;
}
@media screen and (max-width: 768px) {
  .p-recruit-mv__txt {
    font-size: 5.1cqw;
    line-height: 1.6;
    font-weight: 500;
    top: 40cqw;
    left: 4cqw;
  }
}

/*--------------------------------------------------------------------------
.p-recruit-about
---------------------------------------------------------------------------*/
.p-recruit-about {
  margin-top: max(-4.4vw, -60px);
  padding-top: 0;
}
.p-recruit-about__upper .c-flex-item__inner {
  padding-left: clamp(2.4rem, 0.8rem + 2.667vw, 4rem);
}
@media screen and (max-width: 768px) {
  .p-recruit-about__upper .c-flex-item__inner {
    padding-left: 0;
  }
}
.p-recruit-about__upper .c-flex-item:first-child .c-flex-item__inner {
  padding-top: 0;
  align-items: flex-start;
  border-bottom: none;
  padding-bottom: 0;
}
.p-recruit-about__upper .c-flex-item__txtblock {
  width: 44%;
}
@media screen and (max-width: 768px) {
  .p-recruit-about__upper .c-flex-item__txtblock {
    width: 100%;
  }
}
.p-recruit-about__upper .c-sec__title {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .p-recruit-about__upper .c-sec__title {
    margin-top: 30px;
  }
}
.p-recruit-about .p-recruit-card__imgblock {
  width: 49%;
  position: relative;
  aspect-ratio: 660/500;
}
@media screen and (max-width: 768px) {
  .p-recruit-about .p-recruit-card__imgblock {
    width: 86%;
    margin: 0 auto;
  }
}
.p-recruit-about .p-recruit-card__img {
  position: absolute;
}
.p-recruit-about .p-recruit-card__img:nth-child(1) {
  width: 83%;
  top: 0;
  left: 0;
}
.p-recruit-about .p-recruit-card__img:nth-child(2) {
  width: 36%;
  bottom: 0;
  right: 0;
}
.p-recruit-about .p-recruit-card__imgblock + .c-flex-item__txtblock {
  margin-top: min(18vw, 250px);
}
@media screen and (max-width: 768px) {
  .p-recruit-about .p-recruit-card__imgblock + .c-flex-item__txtblock {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------------------
.p-recruit-member
---------------------------------------------------------------------------*/
.p-recruit-member {
  padding-bottom: clamp(5rem, 0rem + 8.333vw, 10rem); /* min: 50px, max: 100px */
}
.p-recruit-member .c-sec__title {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-recruit-member .c-sec__title {
    margin-bottom: 16px;
  }
}

/*--------------------------------------------------------------------------
.p-recruit .c-page-info
---------------------------------------------------------------------------*/
.p-recruit .c-page-info .c-sec__inner {
  padding-bottom: clamp(3rem, 0rem + 5vw, 6rem); /* min: 30px, max: 60px */
}
.p-recruit .c-page-btnmenu .c-sec__inner {
  border: none;
  padding-block: 0;
}
.p-recruit .c-page-info__list,
.p-recruit .c-page-btnmenu__list {
  max-width: 890px;
  margin: 0 auto;
}
.p-recruit .c-page-info__list {
  grid-template-columns: repeat(1, 1fr);
  max-width: 500px;
}

/*--------------------------------------------------------------------------
.p-recruit-entry
---------------------------------------------------------------------------*/
.p-recruit-entry {
  padding-inline: 20px;
  padding-top: clamp(3rem, -2rem + 8.333vw, 8rem); /* min: 30px, max: 80px */
  padding-bottom: clamp(5rem, -4rem + 15vw, 14rem); /* min: 50px, max: 140px */
}
.p-recruit-entry__btn .c-sec__btn__link {
  max-width: 500px;
  margin: 0 auto;
}
.p-recruit-entry__btn .c-sec__btn__link::after {
  display: none;
}

/*--------------------------------------------------------------------------
キャリアプランページ
---------------------------------------------------------------------------*/
.p-recruit-training .l-col-3 {
  row-gap: min(4vw, 60px);
}

/*--------------------------------------------------------------------------
募集要項ページ
---------------------------------------------------------------------------*/
.p-career-flow-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p-career-flow-item {
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-career-flow-item {
    display: block;
  }
}
.p-career-flow-item::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-right: 2px solid #8DC2FF;
  border-bottom: 2px solid #8DC2FF;
  transform: rotate(45deg);
  bottom: -14px;
  position: absolute;
  left: 16%;
}
@media screen and (max-width: 768px) {
  .p-career-flow-item::after {
    left: 48.9%;
  }
}
.p-career-flow-item:last-child::after {
  display: none;
}
.p-career-flow-item__heading, .p-career-flow-item__cont {
  padding: 13px 10px;
}
@media screen and (max-width: 768px) {
  .p-career-flow-item__heading, .p-career-flow-item__cont {
    padding: 6px 10px;
  }
}
.p-career-flow-item__heading {
  color: #fff;
  background-color: #0060CE;
  font-size: 18px;
  line-height: 1.6;
  width: 34%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-career-flow-item__heading {
    width: 100%;
    font-size: 16px;
  }
}
.p-career-flow-item__cont {
  width: 66%;
  background-color: #E6EFFA;
  font-size: 16px;
  line-height: 1.8;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .p-career-flow-item__cont {
    width: 100%;
    font-size: 14px;
    line-height: 1.6;
    border-right: none;
  }
}
.p-career-flow-item__cont-blank {
  background-color: transparent;
}

.p-career .c-sec__inner {
  max-width: 1200px;
}

/*--------------------------------------------------------------------------
.p-career-search
---------------------------------------------------------------------------*/
.p-career-search {
  padding-top: 0;
}
.p-career-search .c-sec__inner {
  max-width: 1200px;
  background-color: #F1F5FA;
  border-radius: 12px;
  padding: clamp(2rem, 0rem + 3.333vw, 4rem); /* min: 20px, max: 40px */
  padding-bottom: clamp(2rem, 1rem + 1.667vw, 3rem); /* min: 20px, max: 30px */
}
@media screen and (max-width: 768px) {
  .p-career-search .c-sec__inner {
    padding: 0;
    background-color: transparent;
  }
}
.p-career-search__container {
  max-width: 1100px;
  margin: 0 auto;
}
.p-career-search .c-table__td {
  text-align: left;
}
.p-career-search .c-table__td:has(input[type=checkbox]) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  row-gap: 12px;
}
@media screen and (max-width: 768px) {
  .p-career-search .c-table__td:has(input[type=checkbox]) {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .p-career-search .c-table__td,
  .p-career-search .c-table__th {
    display: block;
  }
}
.p-career-search .c-table__th {
  width: 25%;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-career-search .c-table__th {
    width: 100%;
  }
}
.p-career-search input[type=checkbox] {
  cursor: pointer;
}
.p-career-search input[type=search] {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 10px;
}
.p-career-search button {
  border: none; /* ボーダーを消す */
  outline: none; /* フォーカス時のアウトラインを消す */
  cursor: pointer; /* マウスカーソルをポインタに変更 */
}
.p-career-search .clear-btnblock {
  text-align: right;
}
.p-career-search .clear-btnblock__btn {
  background: none;
  color: #555;
  padding: 6px;
}
.p-career-search .clear-btnblock__btn:hover {
  opacity: 0.7;
}
.p-career-search .c-sec__btn {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-career-search .c-sec__btn {
    margin-top: 8px;
  }
}
.p-career-search .c-sec__btn span {
  cursor: pointer;
}
.p-career-search .c-sec__btn .c-sec__btn__link {
  margin: 0 auto;
}
.p-career-search .c-sec__btn .c-sec__btn__link:after {
  display: none;
}

/*--------------------------------------------------------------------------
.p-career-main
---------------------------------------------------------------------------*/
.p-career-main {
  padding-bottom: clamp(5rem, -4rem + 15vw, 14rem); /* min: 50px, max: 140px */
  padding-top: clamp(4rem, 0rem + 6.667vw, 8rem); /* min: 40px, max: 80px */
  overflow: unset;
}
.p-career-main__num {
  margin-bottom: 30px;
}
.p-career-main__num-sm {
  font-weight: bold;
}

.p-career-card {
  margin-bottom: clamp(1.6rem, 0.8rem + 1.333vw, 2.4rem); /* min: 16px, max: 24px */
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background-color: #fff;
  padding-bottom: 24px;
  transition: 0.4s;
}
.p-career-card.show {
  display: block;
}
.p-career-card.hide {
  display: none !important;
}
.p-career-card__cont {
  padding: 40px;
  padding-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .p-career-card__cont {
    padding: 20px 15px;
    padding-bottom: 8px;
  }
}
.p-career-card__ttl {
  border-bottom: 1px solid #D8E2EE;
  padding-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .p-career-card__ttl {
    font-size: min(4.5vw, 18px);
    margin-bottom: 12px;
  }
}
.p-career-card__data > div {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .p-career-card__data > div {
    display: block;
  }
}
.p-career-card__data dt,
.p-career-card__data dd {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .p-career-card__data dt,
  .p-career-card__data dd {
    font-size: min(4.3vw, 16px);
  }
}
.p-career-card__data dt {
  line-height: 1.6;
  min-width: 120px;
  font-weight: bold;
}
.p-career-card__data dd {
  line-height: 1.6;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .p-career-card__data dd {
    margin-bottom: 10px;
  }
}
.p-career-card__btn {
  text-align: right;
  width: 100%;
}
.p-career-card__btn .c-sec__btn__link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding-block: 13px;
  max-width: 240px;
  margin: 0 0 0 auto;
}
.p-career-card:hover {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}
.p-career-card:hover a {
  opacity: 1;
}

.p-career-single-secttl {
  padding-bottom: 8px;
  border-bottom: 1px solid #D8E2EE;
  font-size: clamp(2rem, 1.2rem + 1.333vw, 2.8rem); /* min: 20px, max: 28px */
}

.p-career-single .c-table {
  max-width: 1100px;
  margin: 0 auto;
}
.p-career-single .c-table__td,
.p-career-single .c-table__th {
  font-size: 16px;
  padding-inline: 30px;
}
@media screen and (max-width: 768px) {
  .p-career-single .c-table__td,
  .p-career-single .c-table__th {
    display: block;
    text-align: left;
    padding-inline: 10px;
    font-size: min(4.3vw, 16px);
  }
}
.p-career-single .c-table__td {
  text-align: left;
}

/*--------------------------------------------------------------------------
.p-career-single-outline
---------------------------------------------------------------------------*/
.p-career-single-outline {
  padding-top: 0;
}
.p-career-single-outline .c-sec__title__jpn {
  font-size: min(5.6vw, 28px);
}
.p-career-single-outline .c-flex-item__inner {
  align-items: flex-start;
  border-bottom: none;
  padding-bottom: 0;
  padding-top: 0;
}
.p-career-single-outline .c-flex-item__txtblock {
  width: 51%;
}
@media screen and (max-width: 768px) {
  .p-career-single-outline .c-flex-item__txtblock {
    width: 100%;
  }
}
.p-career-single-outline .c-flex-item__img {
  width: 44%;
}
@media screen and (max-width: 768px) {
  .p-career-single-outline .c-flex-item__img {
    width: 100%;
  }
}

/*--------------------------------------------------------------------------
.p-career-single-desc
---------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------
.p-career-single-step
---------------------------------------------------------------------------*/
.p-career-single-step {
  padding-bottom: clamp(5rem, -4rem + 15vw, 14rem); /* min: 50px, max: 140px */
}
.p-career-single-step__btnblock {
  padding-top: clamp(5rem, -2rem + 11.667vw, 12rem); /* min: 50px, max: 120px */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-career-single-step__btnblock {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.p-career-single-step .c-sec__btn__link {
  max-width: 100%;
  height: 100px;
}
.p-career-single-step .c-sec__btn .num {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.6rem, 2rem + 1vw, 3.2rem); /* min: 26px, max: 32px */
  font-weight: 500;
  display: block;
  line-height: 1.2;
}
.p-career-single-step .c-sec__btn .subtxt {
  font-size: 16px;
  display: block;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-career-single-step .c-sec__btn .subtxt {
    font-size: min(4.2vw, 16px);
  }
}
.p-career-single-step .c-sec__btn .c-sec__btn__link-red {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
.p-career-single-step .c-sec__btn + .c-sec__btn {
  margin-top: 0;
}

/*--------------------------------------------------------------------------
求める人物像ページ
---------------------------------------------------------------------------*/
.p-recruit-ideal-main__img {
  max-width: 850px;
  margin-inline: auto;
}

/*--------------------------------------------------------------------------
.p-recruit-works
---------------------------------------------------------------------------*/
.p-recruit-works .c-tabmenu__list {
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 1024px) {
  .p-recruit-works .c-tabmenu__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .p-recruit-works .c-tabmenu__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-recruit-works .c-flex-item__txtblock {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-recruit-works .c-flex-item__txtblock {
    width: 100%;
  }
}
.p-recruit-works .c-flex-item__img {
  width: 42%;
}
@media screen and (max-width: 768px) {
  .p-recruit-works .c-flex-item__img {
    width: 100%;
  }
}
.p-recruit-works .c-flex-item .c-sec__btn__link {
  width: fit-content;
  max-width: unset;
}

/*--------------------------------------------------------------------------
VOICEトップ
.p-recruit-voice-main
---------------------------------------------------------------------------*/
.p-recruit-voice-main .c-card-02 {
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-recruit-voice-main .c-card-02 {
    padding-bottom: 20px;
  }
}
.p-recruit-voice-main__list {
  row-gap: clamp(2rem, -2rem + 8.333vw, 8rem); /* min: 30px, max: 80px */
}

/*--------------------------------------------------------------------------
詳細ページ
---------------------------------------------------------------------------*/
.p-recruit-voice-single .c-sec__title__eng {
  font-size: clamp(4.8rem, 4rem + 1.333vw, 5.6rem); /* min: 48px, max: 56px */
  padding-left: 0;
}
.p-recruit-voice-single .c-table__th {
  width: 165px;
  min-width: unset;
}
@media screen and (max-width: 768px) {
  .p-recruit-voice-single .c-table__th {
    width: 30%;
  }
}

.p-recruit-voice-article__outline-sm {
  font-size: clamp(1.3rem, 1.1rem + 0.333vw, 1.5rem); /* min: 13px, max: 15px */
}
.p-recruit-voice-article__outline .c-flex-item__txtblock {
  width: 45%;
  container-type: inline-size;
}
@media screen and (max-width: 768px) {
  .p-recruit-voice-article__outline .c-flex-item__txtblock {
    width: 100%;
  }
}
.p-recruit-voice-article__outline .c-sec__title__jpn {
  font-size: max(20px, 5cqw);
}
.p-recruit-voice-article__para .c-flex-item__txtblock {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-recruit-voice-article__para .c-flex-item__txtblock {
    width: 100%;
  }
}
.p-recruit-voice-article__para .c-flex-item__img {
  width: 42%;
}
@media screen and (max-width: 768px) {
  .p-recruit-voice-article__para .c-flex-item__img {
    width: 100%;
  }
}

.p-recruit-achievement {
  background-color: #fff;
  border-radius: 12px;
  max-width: 1200px;
  margin-inline: auto;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-recruit-achievement {
    margin-top: 0px;
  }
}
.p-recruit-achievement .c-bluecopy {
  margin-top: 8px;
}
.p-recruit-achievement .c-flex-item__inner {
  padding-block: clamp(2rem, -2rem + 6.667vw, 6rem); /* min: 20px, max: 60px */
  padding-inline: clamp(1rem, -4rem + 8.333vw, 6rem); /* min: 10px, max: 60px */
}
.p-recruit-achievement .c-flex-item__txtblock {
  width: 63%;
}
@media screen and (max-width: 768px) {
  .p-recruit-achievement .c-flex-item__txtblock {
    width: 100%;
  }
}
.p-recruit-achievement .c-flex-item__img {
  width: 31.5%;
}
@media screen and (max-width: 768px) {
  .p-recruit-achievement .c-flex-item__img {
    width: 100%;
  }
}
.p-recruit-achievement-noimg .c-flex-item__txtblock {
  width: 100%;
}

/*--------------------------------------------------------------------------
福利厚生ページ
---------------------------------------------------------------------------*/
.p-recruit-benefits-num__container {
  display: flex;
  flex-direction: column;
  row-gap: min(2.6vw, 40px);
}

.p-recruit-benefits-num {
  display: flex;
  flex-direction: column;
  row-gap: clamp(1.6rem, -0.8rem + 4vw, 4rem); /* min: 16px, max: 40px */
}

.p-benefit-card {
  border-radius: 12px;
  border: 1px solid #0060CE;
  background-color: #fff;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-benefit-card {
    padding-inline: 10px;
  }
}
.p-benefit-card .c-bluecopy {
  margin-bottom: 16px;
  line-height: 1.1;
}
.p-benefit-card__chart {
  width: 90%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-benefit-card__chart {
    width: 100%;
  }
}
.p-benefit-card__chart img {
  width: 100%;
}
.p-benefit-card__note {
  font-size: 13px;
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .p-benefit-card__note {
    font-size: 12px;
  }
}

.p-benefit-data {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-benefit-data {
    gap: 16px;
  }
}
.p-benefit-data__icon {
  width: min(35%, 80px);
}
.p-benefit-data__num {
  font-size: 66px;
  font-weight: 500;
  line-height: 1;
}
.p-benefit-data__unit {
  font-size: 26px;
  font-weight: bold;
  display: inline-block;
  margin-left: 3px;
  line-height: 1.3;
}
.p-benefit-data__unit-sm {
  font-size: min(5.6vw, 26px);
}

.p-recruit-benefits-details .l-col-2 {
  row-gap: min(2.6vw, 30px);
  max-width: unset;
}

.p-benefit-card2 {
  border-radius: 12px;
  background-color: rgba(14, 90, 176, 0.0588235294);
  display: flex;
  align-items: center;
  padding: 30px;
  gap: 2%;
}
@media screen and (max-width: 768px) {
  .p-benefit-card2 {
    padding-inline: 10px;
    padding-block: max(4vw, 16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.p-benefit-card2__icon {
  width: 22%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-benefit-card2__icon {
    width: max(40%, 80px);
  }
}
.p-benefit-card2__right {
  width: 76%;
}
@media screen and (max-width: 768px) {
  .p-benefit-card2__right {
    width: 100%;
  }
}
.p-benefit-card2 .c-bluecopy {
  margin-bottom: 16px;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .p-benefit-card2 .c-bluecopy {
    text-align: center;
  }
}

/*--------------------------------------------------------------------------
東海リースで輝く女性社員
---------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .p-recruit-women-career .c-sec__title__jpn,
  .p-recruit-women-effort .c-sec__title__jpn,
  .p-recruit-women-system .c-sec__title__jpn {
    font-size: min(4.9vw, 28px);
  }
}

.p-recruit-women-effort .c-card-01__inner::after {
  display: none;
}
.p-recruit-women-effort .c-card-01__title {
  padding-bottom: 12px;
}

.p-recruit-women-system__img {
  max-width: 840px;
  margin-inline: auto;
}

.p-recruit-women-voice__card {
  border-radius: 12px;
  background: #F3F9FF;
}
@media screen and (max-width: 768px) {
  .p-recruit-women-voice__card {
    padding-block: 20px;
    padding-inline: 10px;
  }
}
.p-recruit-women-voice__card .c-flex-item__inner {
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .p-recruit-women-voice__card .c-flex-item__inner {
    padding-block: 16px;
    padding-inline: 10px;
  }
}
.p-recruit-women-voice__card p {
  font-size: clamp(1.6rem, 1.4rem + 0.333vw, 1.8rem); /* min: 16px, max: 18px */
}
.p-recruit-women-voice__card .c-sec__btn {
  margin-top: 24px;
}

.count0:not(:first-of-type) {
  display: none;
}

/*--------------------------------------------------------------------------
.p-news-main
---------------------------------------------------------------------------*/
.p-news-main {
  padding-top: 0;
  padding-bottom: clamp(5rem, -4rem + 15vw, 14rem); /* min: 50px, max: 140px */
}

.js-pagination-wrap ul:not(.pagination) {
  opacity: 0;
  visibility: hidden;
  height: 0;
}

.js-pagination-wrap ul.activeList {
  opacity: 1;
  visibility: visible;
  transition: 0.4s;
  height: auto;
}

.pagination-container {
  margin-top: clamp(3rem, 1rem + 3.333vw, 5rem); /* min: 30px, max: 50px */
}
.pagination-container .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination-container .page-item a, .pagination-container .page-item span {
  width: 28px;
  height: 40px;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  font-size: 15px;
  line-height: 40px;
  font-weight: 500;
  color: #0060ce;
}
.pagination-container .page-item .now {
  color: #999999;
  border-radius: 50%;
}
.pagination-container .prev,
.pagination-container .next {
  content: "";
  display: block;
  width: 30px;
  height: 40px;
  margin-block: 8px;
  background-image: url(../img/common/icon_pagenation-arw.svg);
  background-repeat: no-repeat;
  background-size: 28% 28%;
  background-position: 50% 50%;
}
@media screen and (max-width: 768px) {
  .pagination-container .prev,
  .pagination-container .next {
    width: 30px;
    height: 30px;
  }
}
.pagination-container .prev {
  transform: scale(-1);
}

.p-news-single .c-pagettl__ttl-eng {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: clamp(2.4rem, 0.6rem + 3vw, 4.2rem); /* min: 24px, max: 42px */
}
.p-news-single .c-pagettl__ttl-jpn {
  font-size: 15px;
}

.p-news-single img {
  margin-top: 40px !important;
}
@media screen and (max-width: 768px) {
  .p-news-single img {
    margin-top: 30px !important;
  }
}

/*--------------------------------------------------------------------------
.p-news-single-main
---------------------------------------------------------------------------*/
.p-news-single-main {
  padding-top: 0;
  padding-bottom: clamp(5rem, -4rem + 15vw, 14rem); /* min: 50px, max: 140px */
}
.p-news-single-main strong {
  font-size: clamp(1.8rem, 1.4rem + 0.667vw, 2.2rem); /* min: 18px, max: 22px */
  line-height: 1.4;
  color: #0060ce;
  font-weight: bold;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .p-news-single-main strong {
    margin-bottom: 16px;
  }
}
.p-news-single-main small {
  font-size: clamp(1.3rem, 1.2rem + 0.167vw, 1.4rem); /* min: 13px, max: 14px */
  line-height: 1.8;
}
.p-news-single-main p:has(small) {
  margin-top: clamp(1rem, 0.5rem + 0.833vw, 1.5rem); /* min: 10px, max: 15px */
}
.p-news-single-main img {
  max-width: min(100%, 1100px);
  border-radius: 12px;
}
.p-news-single-main .p-news-single-main__imgs img {
  border-radius: 0;
  margin-top: 0 !important;
}
.p-news-single-main p:has(img) {
  text-align: center;
}
.p-news-single-main h2 {
  font-size: clamp(2.2rem, 1.4rem + 1.667vw, 3.4rem); /* min: 24px, max: 34px */
  font-weight: 900;
  line-height: 1.4;
  padding-bottom: 15px;
  margin-bottom: 50px;
  color: #20334c;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-news-single-main h2 {
    margin-bottom: 30px;
  }
}
.p-news-single-main h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #0060ce;
  position: absolute;
  left: 0;
  bottom: 0;
}
.p-news-single-main h3 {
  font-size: clamp(2rem, 1rem + 1.667vw, 3rem); /* min: 20px, max: 30px */
  line-height: 1.4;
  color: #0060ce;
  font-weight: bold;
  padding-bottom: 13px;
  border-bottom: 1px solid #D8E2EE;
  margin-bottom: 30px;
  margin-top: clamp(4rem, -2rem + 10vw, 10rem); /* min: 40px, max: 100px */
}
@media screen and (max-width: 768px) {
  .p-news-single-main h3 {
    margin-bottom: 16px;
  }
}
.p-news-single-main h4 {
  font-size: clamp(1.8rem, 1.4rem + 0.667vw, 2.2rem); /* min: 18px, max: 22px */
  line-height: 1.4;
  color: #0060ce;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: clamp(4rem, -2rem + 10vw, 10rem); /* min: 40px, max: 100px */
}
@media screen and (max-width: 768px) {
  .p-news-single-main h4 {
    margin-bottom: 16px;
  }
}
.p-news-single-main__files {
  margin-top: clamp(4rem, -2rem + 10vw, 10rem); /* min: 40px, max: 100px */
}
.p-news-single-main .c-news-item-02__tags {
  margin-block: clamp(2.4rem, 0.8rem + 2.667vw, 3rem); /* min: 24px, max: 30px */
}
.p-news-single-main .c-sec__btn {
  margin-top: clamp(5rem, -5.5rem + 17.5vw, 15.5rem); /* min: 50px, max: 155px */
}

/*--------------------------------------------------------------------------
.p-apr-01
---------------------------------------------------------------------------*/
.p-apr-01__intro {
  margin-bottom: clamp(3rem, 0rem + 5vw, 6rem); /* min: 30px, max: 60px */
}

/*--------------------------------------------------------------------------
社長あいさつページ
---------------------------------------------------------------------------*/
.p-company-grt-main .c-flex-item__img {
  width: 44%;
}
@media screen and (max-width: 768px) {
  .p-company-grt-main .c-flex-item__img {
    width: 100%;
  }
}
.p-company-grt-main .c-sec__title__jpn {
  font-size: min(2.8vw, 28px);
}
@media screen and (max-width: 768px) {
  .p-company-grt-main .c-sec__title__jpn {
    font-size: min(5vw, 28px);
  }
}

/*--------------------------------------------------------------------------
会社概要ページ
---------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .p-company-pfl-vision .c-bluecopy {
    font-size: min(4.6svw, 22px);
  }
}

/*--------------------------------------------------------------------------
事業所一覧ページ
---------------------------------------------------------------------------*/
.p-company .c-tabmenu.p-office-tabmenu2 {
  margin-top: clamp(6rem, 0rem + 5vw, 12rem); /* min: 30px, max: 60px */
  margin-bottom: 0;
}
.p-company .c-tabmenu.p-office-tabmenu2 .c-tabmenu__list {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .p-company .c-tabmenu.p-office-tabmenu2 .c-tabmenu__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-office-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 30px;
  column-gap: max(3.4vw, 16px);
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-office-list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 12px;
  }
}

.p-office-item {
  border-top: 1px solid #D8E2EE;
  border-bottom: 1px solid #D8E2EE;
  display: flex;
  container-type: inline-size;
}
.p-office-item__left {
  background-color: #F3F9FF;
  padding: 3cqw 16px;
  width: 32%;
}
@media screen and (max-width: 768px) {
  .p-office-item__left {
    padding: 3cqw 6px;
    width: 34%;
  }
}
.p-office-item__left.col3 {
  width: 24%;
}
@media screen and (max-width: 768px) {
  .p-office-item__left.col3 {
    width: 26%;
  }
}
.p-office-item__left.col1 {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-office-item__left.col1 {
    width: 100%;
  }
}
.p-office-item__mid {
  padding: 3cqw 16px;
  width: 60%;
}
@media screen and (max-width: 768px) {
  .p-office-item__mid {
    width: 58%;
    padding: 3cqw 6px;
  }
}
.p-office-item__right {
  width: max(16%, 96px);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-office-item__right {
    width: max(16%, 72px);
  }
}
.p-office-item__name {
  font-weight: bold;
  font-size: max(2.7cqw, 14px);
  line-height: 1.4;
  letter-spacing: 0;
}
.p-office-item__ad {
  font-size: max(2.4cqw, 14px);
  line-height: 1.8;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .p-office-item__ad {
    font-size: max(2.6cqw, 13px);
  }
}
.p-office-item__btn {
  position: relative;
  padding: 6px 6px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background-image: linear-gradient(to right, #20334C, #26518B);
}
.p-office-item__btn::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: #20334C;
  position: absolute;
  left: -100%;
  top: 0;
  transition: 0.3s;
}
.p-office-item__btn:hover::before {
  left: 0;
}
.p-office-item__link {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 13px;
  display: block;
  width: 100%;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.2;
}
.p-office-item__link:hover {
  opacity: 1;
}

/*--------------------------------------------------------------------------
.p-office-map 事業所一覧の地図
---------------------------------------------------------------------------*/
.p-office-map {
  max-width: 1200px;
  margin: 0 auto;
}

.p-office-district {
  padding-top: clamp(4rem, 2rem + 3.333vw, 6rem); /* min: 40px, max: 60px */
}

.p-branch__container {
  position: relative;
  container-type: inline-size;
}
.p-branch__img img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-branch__btnlist {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
    margin-top: 16px;
  }
}
.p-branch__btnblock {
  position: absolute;
}
.p-branch__btnblock.tohoku {
  top: 22cqw;
  right: 19cqw;
}
@media screen and (max-width: 768px) {
  .p-branch__btnblock.tohoku {
    top: unset;
    right: unset;
  }
}
.p-branch__btnblock.kanto {
  top: 35cqw;
  right: 19cqw;
}
@media screen and (max-width: 768px) {
  .p-branch__btnblock.kanto {
    top: unset;
    right: unset;
  }
}
.p-branch__btnblock.hokuriku {
  top: 26cqw;
  right: 42cqw;
}
@media screen and (max-width: 768px) {
  .p-branch__btnblock.hokuriku {
    top: unset;
    right: unset;
  }
}
.p-branch__btnblock.chubu {
  top: 43cqw;
  right: 26cqw;
}
@media screen and (max-width: 768px) {
  .p-branch__btnblock.chubu {
    top: unset;
    right: unset;
  }
}
.p-branch__btnblock.kinki {
  top: 46cqw;
  right: 38cqw;
}
@media screen and (max-width: 768px) {
  .p-branch__btnblock.kinki {
    top: unset;
    right: unset;
  }
}
.p-branch__btnblock.chugoku {
  top: 31cqw;
  right: 56cqw;
}
@media screen and (max-width: 768px) {
  .p-branch__btnblock.chugoku {
    top: unset;
    right: unset;
  }
}
.p-branch__btnblock.shikoku {
  top: 47.5cqw;
  right: 51cqw;
}
@media screen and (max-width: 768px) {
  .p-branch__btnblock.shikoku {
    top: unset;
    right: unset;
  }
}
.p-branch__btnblock.kyusyu {
  top: 37cqw;
  right: 70cqw;
}
@media screen and (max-width: 768px) {
  .p-branch__btnblock.kyusyu {
    top: unset;
    right: unset;
  }
}
@media screen and (max-width: 768px) {
  .p-branch__btnblock {
    position: relative;
  }
}
.p-branch__btn {
  display: block;
  width: 11cqw;
  border-radius: 12px;
  border: 1px solid #2553A4;
  color: #2553A4;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  font-size: max(14px, 1.5cqw);
  padding: 10px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-branch__btn {
    width: 100%;
  }
}
.p-branch__btn::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #2553A4;
  border-bottom: 1px solid #2553A4;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 1cqw;
}
@media screen and (max-width: 768px) {
  .p-branch__btn::after {
    right: 12px;
  }
}

.p-office-fct__imglist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: max(3.6vw, 20px);
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-office-fct__imglist {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
.p-office-fct__imgtxt {
  font-size: 16px;
  font-weight: 700;
  margin-top: 8px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-office-fct__imgtxt {
    font-size: 15px;
  }
}

.p-office-map-fct {
  position: relative;
  container-type: inline-size;
}
.p-office-map-fct .c-bluecopy {
  position: absolute;
  left: 5.5cqw;
  top: 4cqw;
}
@media screen and (max-width: 768px) {
  .p-office-map-fct .c-bluecopy {
    position: initial;
    top: unset;
    left: unset;
  }
}

.p-office-china__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: max(3.4vw, 20px);
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-office-china__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
.p-office-china__list .p-office-item {
  /* min: 16px, max: 40px */
}
.p-office-china__img {
  width: 82%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-office-china__img {
    width: 100%;
  }
}

/*--------------------------------------------------------------------------

---------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------
プライバシーポリシーページ
（）：カッコ付きアイテム　→ .p-privacy__item
①:まる数字 → .p-privacy__sublist-item
ア:カタカナ → .p-privacy__detail-item
---------------------------------------------------------------------------*/
.p-privacy__item {
  padding-left: 30px;
  text-indent: -40px;
}

.p-privacy__sublist-item {
  padding-left: 10px;
  text-indent: -14px;
}

.p-privacy__detail-item {
  padding-left: 26px;
  text-indent: -28px;
}

/*--------------------------------------------------------------------------
お問い合わせトップ
---------------------------------------------------------------------------*/
.p-contact .l-col-2.p-contact-list {
  margin-bottom: min(2.6vw, 50px);
  max-width: unset;
}
@media screen and (max-width: 768px) {
  .p-contact .l-col-2.p-contact-list {
    margin-bottom: min(5vw, 30px);
  }
}

.p-contact-card {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  background-color: #fff;
  transition: 0.4s;
  padding-inline: min(6.1%, 40px);
  padding-block: min(6.1%, 40px);
}
.p-contact-card__ttl {
  border-bottom: 1px solid #D8E2EE;
  padding-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .p-contact-card__ttl {
    font-size: min(4.5vw, 18px);
    margin-bottom: 12px;
  }
}
.p-contact-card .c-sec__btn__link {
  max-width: 340px;
}
.p-contact-card__btnlist {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .p-contact-card__btnlist {
    margin-top: 16px;
  }
}
.p-contact-card__btnlist.l-col-2 {
  margin-top: 32px;
  margin-bottom: 0;
  gap: 15px;
  margin-inline: 0;
  max-width: 900px;
}
@media screen and (max-width: 768px) {
  .p-contact-card__btnlist.l-col-2 {
    margin-top: 16px;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}
.p-contact-card__btnlist.l-col-2 .c-sec__btn__link {
  max-width: unset;
}
@media screen and (max-width: 768px) {
  .p-contact-card__btnlist.l-col-2 .c-sec__btn__link {
    max-width: 340px;
  }
}
.p-contact-card__btnlist.l-col-2 .c-sec__btn {
  margin-top: 0;
}

.l-col-2.p-contact-list .p-contact-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}
@media screen and (max-width: 768px) {
  .l-col-2.p-contact-list .p-contact-card {
    display: block;
  }
}

/*--------------------------------------------------------------------------
お問い合わせフォーム
---------------------------------------------------------------------------*/
.p-inquiry .dynamic-verification {
  position: absolute;
  left: -9999px;
}
.p-inquiry .c-sec__btn__link {
  border: none;
}
.p-inquiry .c-sec__btn__link::after {
  display: none;
}
.p-inquiry__bold {
  font-weight: 700;
}
.p-inquiry__sm {
  font-size: 14px;
}
.p-inquiry__form {
  grid-template-columns: 1fr;
  display: grid;
  row-gap: 40px;
}
@media screen and (max-width: 768px) {
  .p-inquiry__form {
    row-gap: 24px;
  }
}
.p-inquiry__form button#submit-btn {
  border: none;
  margin-top: clamp(2.4rem, 0.8rem + 2.667vw, 4rem); /* min: 24px, max: 40px */
}
.p-inquiry__form button#submit-btn .c-sec__btn__link:after {
  display: none;
}
.p-inquiry__container {
  border-radius: 12px;
  background: #F3F9FF;
  padding-inline: clamp(1rem, -6rem + 11.667vw, 8rem); /* min: 10px, max: 80px */
  padding-block: clamp(3rem, 0rem + 5vw, 6rem); /* min: 30px, max: 60px */
  container-type: inline-size;
  margin-top: clamp(3rem, -2rem + 8.333vw, 8rem); /* min: 30px, max: 80px */
}
.p-inquiry .error {
  color: #BB0000;
  font-size: 16px;
}

.p-inquiry__item {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-inquiry__item {
    flex-direction: column;
    gap: 8px;
  }
}
.p-inquiry__item-left {
  width: 27%;
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .p-inquiry__item-left {
    flex-direction: column;
    gap: 4px;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .p-inquiry__item-left {
    padding-top: 0px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    column-gap: 10px;
    align-items: center;
  }
}
.p-inquiry__item-left p {
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
}
.p-inquiry__item-right {
  width: 72%;
}
@media screen and (max-width: 768px) {
  .p-inquiry__item-right {
    width: 100%;
  }
}
.p-inquiry__item-right-flex {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.p-inquiry__item-right select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
}
.p-inquiry__item-right input:not([type=submit]),
.p-inquiry__item-right textarea,
.p-inquiry__item-right select {
  border-radius: 5px;
  border: 1px solid #BAD3F1;
  background: #FFF;
  padding: 22px 16px;
  line-height: 1.4;
  width: 100%;
  color: #20334c;
  font-size: 16px;
}
.p-inquiry__item-right input:not([type=submit])::placeholder,
.p-inquiry__item-right textarea::placeholder,
.p-inquiry__item-right select::placeholder {
  color: #B5B5B5;
  font-size: 16px;
}
.p-inquiry__item-right .radio-wrap {
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-inquiry__item-right .radio-wrap {
    padding-top: 0;
  }
}
.p-inquiry__item-right label.check-line {
  display: block;
  white-space: nowrap;
}
.p-inquiry__item-right label.radio-line {
  margin-right: 16px;
  white-space: nowrap;
}
.p-inquiry__item-right input[type=checkbox] {
  width: fit-content;
}
.p-inquiry__item-right input[type=checkbox],
.p-inquiry__item-right input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #BAD3F1;
  width: 18px;
  height: 18px;
  position: relative;
  cursor: pointer;
  margin-right: 6px;
  padding: 0;
  vertical-align: text-top;
  transition: all 0.2s ease;
  border-radius: 2px;
}
.p-inquiry__item-right input[type=checkbox]:checked {
  background-color: #0060CE;
  border-color: #0060CE;
}
.p-inquiry__item-right input[type=checkbox]:checked::after {
  position: absolute;
  top: 7%;
  left: 34%;
  transform: rotate(50deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
}
.p-inquiry__item-right input[type=radio] {
  border-radius: 50%;
}
.p-inquiry__item-right input[type=radio]:checked::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background-color: #0060CE;
  font-size: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-inquiry__item-right .select-wrap {
  position: relative;
  width: 210px;
}
.p-inquiry__item-right .select-wrap-lg {
  width: 100%;
}
.p-inquiry__item-right .select-wrap::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 7px solid #555555;
  border-bottom: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
}
.p-inquiry__item-right .option-default {
  color: #B5B5B5;
  font-size: 16px;
}
.p-inquiry__item-right .p-region {
  color: #20334c; /* 選択された後の通常の文字色 */
}
.p-inquiry__item-right .p-region.no-value {
  color: #B5B5B5; /* 初期表示時の色（グレーなど） */
}

.p-inquiry-required {
  color: #fff;
  background: #0060ce;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: clamp(1.2rem, 1rem + 0.333vw, 1.4rem); /* min: 12px, max: 14px */
  line-height: 1;
  height: fit-content;
  width: fit-content;
}

/*--------------------------------------------------------------------------
確認画面
---------------------------------------------------------------------------*/
.p-inquiry-confirm__lead {
  margin-bottom: 16px;
  line-height: 1.6;
}
.p-inquiry-confirm .p-inquiry__container {
  margin-top: 30px;
}
.p-inquiry-confirm .p-inquiry__item-left {
  padding-top: 0;
}
.p-inquiry-confirm form {
  grid-template-columns: 1fr;
  display: grid;
  row-gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-inquiry-confirm form {
    row-gap: 16px;
  }
}
.p-inquiry-confirm .p-inquiry__item {
  align-items: center;
}
.p-inquiry-confirm .p-inquiry__item {
  border-bottom: 1px solid rgb(186, 211, 241);
  padding-bottom: 20px;
}
.p-inquiry-confirm .p-inquiry__item-right {
  padding: 6px 10px;
  border-radius: 7px;
  min-height: 42px;
}
.p-inquiry-confirm .p-inquiry-required {
  font-size: clamp(1.1rem, 1rem + 0.167vw, 1.2rem); /* min: 11px, max: 12px */
}
.p-inquiry-confirm input[type=submit] {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
}
.p-inquiry-confirm button.submit-btn.back {
  padding: 10px;
  border-radius: 9px;
  border: 1px solid #888;
  background: #fff;
}
.p-inquiry-confirm__btnlist {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-inquiry-confirm__btnlist {
    margin-top: 24px;
  }
}
.p-inquiry-confirm .c-sec__btn__link {
  border: none;
}

/*--------------------------------------------------------------------------
完了画面
---------------------------------------------------------------------------*/
.p-inquiry-finish .c-lead {
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

/*--------------------------------------------------------------------------
サイトマッぷ
---------------------------------------------------------------------------*/
.p-sitemap-cont__list {
  columns: 3 auto;
}
@media screen and (max-width: 768px) {
  .p-sitemap-cont__list {
    columns: 2 auto;
  }
}
.p-sitemap-cont__sublist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-sitemap-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
  break-inside: avoid;
}
@media screen and (max-width: 768px) {
  .p-sitemap-item {
    font-size: 16px;
  }
}
.p-sitemap-item__link {
  font-size: 17px;
  font-weight: 700;
  width: fit-content;
}

.p-sitemap-subitem {
  display: flex;
  flex-direction: column;
  gap: 8px;
  break-inside: avoid;
}
.p-sitemap-subitem__link {
  font-size: 15px;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .p-sitemap-subitem__link {
    font-size: 14px;
  }
}

.l-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .l-header {
    padding: 23px 30px;
    max-width: 1920px;
  }
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 1279px) {
  .l-header__inner {
    padding: 0 15px;
    height: 62px;
  }
}
.l-header__nav {
  background: #fff;
  color: #000;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 1025px) {
  .l-header__nav {
    padding: 0 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  }
}
@media screen and (min-width: 1525px) {
  .l-header__nav {
    padding: 0 30px;
  }
}
.l-header__nav__list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 1280px) {
  .l-header__nav__list {
    gap: 0 10px;
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1325px) {
  .l-header__nav__list {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1525px) {
  .l-header__nav__list {
    gap: 0 min(1.2vw, 24px);
    font-size: 1.6rem;
  }
}
.l-header__nav__list__item {
  position: relative;
}
@media screen and (min-width: 1280px) {
  .l-header__nav__list__sub {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    background: #F0F7FF;
    padding: 40px 30px;
    padding: 30px 25px;
    border-radius: 12px;
    left: 0;
    top: 45px;
    top: 55px;
    opacity: 1;
    visibility: visible;
    min-width: fit-content;
    width: fit-content;
    min-width: 234px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  }
}
.l-header__nav__list__sub__item {
  font-weight: 400;
}
.l-header__nav__list a {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
  line-height: 1.3;
}
.l-header .headerInner h1, .l-header .headerInner .logo {
  width: 100%;
  background: #fff;
}
.l-header .headerInner h1 a, .l-header .headerInner .logo a {
  display: flex;
  align-items: center;
  padding-left: 10px;
  height: 60px;
}
@media screen and (min-width: 1025px) {
  .l-header .headerInner h1 a, .l-header .headerInner .logo a {
    justify-content: center;
    padding: 20px 0;
    height: auto;
  }
}
@media screen and (min-width: 1280px) {
  .l-header__btn {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .l-header__inquiry {
    margin-left: 12px;
  }
}
@media screen and (min-width: 1525px) {
  .l-header__inquiry {
    margin-left: 24px;
  }
}
.l-header__inquiry__link {
  color: #fff;
  background: linear-gradient(90deg, #BB0000 0%, #7E070C 100%);
  padding: 15px 30px;
  border-radius: 100px;
}
@media screen and (min-width: 1025px) {
  .l-header__inquiry__link {
    padding: 15px;
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1325px) {
  .l-header__inquiry__link {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1525px) {
  .l-header__inquiry__link {
    padding: 15px 30px;
    font-size: 1.6rem;
  }
}
.l-header__logo {
  width: clamp(19rem, 15.3rem + 6.167vw, 22.7rem); /* min: 190px, max: 227px */
}
@media screen and (max-width: 1279px) {
  .l-header .l-header__nav + .l-header__inquiry.sp.t-inquiry {
    font-size: 1.1rem;
    font-weight: bold;
    padding: 0;
    margin-top: 7px;
  }
}
@media screen and (max-width: 1279px) {
  .l-header .l-header__nav + .l-header__inquiry.sp.t-inquiry a {
    padding: 0;
    padding: 12px 15px;
  }
}
@media screen and (min-width: 1280px) {
  .l-header .l-header__nav__list__sub__link__text {
    position: relative;
    display: grid;
    grid-template-columns: 0.9fr 0.1fr;
    gap: 4px;
    align-items: center;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1280px) {
  .l-header .l-header__nav__list__sub__link__text:after {
    content: "";
    width: 12px;
    height: 10px;
    display: inline-block;
    background: url(/assets/img/common/icon_arw_blu.svg) no-repeat;
    background-size: cover;
    background-position: center;
  }
}
@media screen and (min-width: 1280px) {
  .l-header .l-header__nav__list__sub__item + .l-header__nav__list__sub__item {
    margin-top: 12px;
  }
}

@media screen and (min-width: 1280px) {
  .l-header__nav__list__item.t-ir .l-header__nav__list__sub,
  .l-header__nav__list__item.t-products .l-header__nav__list__sub,
  .l-header__nav__list__item.t-sastinability .l-header__nav__list__sub {
    width: 267px;
  }
}

@media screen and (min-width: 1280px) {
  .l-header__nav__list__sub {
    visibility: hidden;
    opacity: 0;
    transition: 0.4s;
  }
}

@media screen and (min-width: 1280px) {
  .l-header__nav__list__item:hover .l-header__nav__list__sub {
    visibility: visible;
    opacity: 1;
  }
}

@media screen and (max-width: 1279px) {
  .l-header__nav__list__item > .l-header__nav__list__link > a {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1279px) {
  .l-header__nav__list__item > a {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1279px) {
  .l-header__nav__list__sub__item .l-header__nav__list__sub__link {
    line-height: 2.2;
    font-size: 1.4rem;
    letter-spacing: -0.005em;
  }
}
@media screen and (max-width: 1280px) {
  .l-header__nav__list__sub__item .l-header__nav__list__sub__link:before {
    content: "-";
  }
}

@media screen and (max-width: 1280px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #21426C;
    padding: 60px 5% 50px;
    align-items: flex-start;
    overflow: scroll;
    left: -200vw;
    width: 100vw;
  }
}
.l-header__nav .l-header__nav__list__link {
  padding: 24px 0;
}
@media screen and (max-width: 1280px) {
  .l-header__nav .l-header__nav__list__link {
    color: #fff !important;
    padding-block: 0;
  }
}
@media screen and (max-width: 1280px) {
  .l-header__nav a, .l-header__nav span {
    color: #fff !important;
  }
}

@media screen and (max-width: 1279px) {
  .l-header__nav__list__sub {
    position: relative;
    opacity: 1;
    visibility: visible;
    background: none;
    margin-top: 3px;
  }
}

@media screen and (max-width: 1279px) {
  .l-header__nav__list {
    align-items: flex-start;
    width: 90%;
    margin-inline: auto;
    gap: 50px 24px;
  }
}
@media screen and (max-width: 768px) {
  .l-header__nav__list {
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
  }
}

@media screen and (max-width: 1279px) {
  .l-header__nav__list__item {
    width: 25%;
  }
}
@media screen and (max-width: 768px) {
  .l-header__nav__list__item {
    width: 50%;
  }
}

@media screen and (max-width: 1280px) {
  .l-header__nav + .l-header__inquiry.sp.t-inquiry {
    display: block;
    margin-left: auto;
    margin-right: 13px;
  }
}

@media screen and (max-width: 1280px) {
  .l-header.open .l-header__nav {
    color: #fff;
    width: 100vw;
    height: 100svh;
    max-width: 100vw;
    min-width: 100vw;
    margin: 0 calc(50% - 50vw);
    opacity: 0;
  }
}
.l-header.open .l-header__nav {
  opacity: 1;
}

@media screen and (max-width: 1279px) {
  .l-header__nav__list__item.t-reason {
    order: 1;
  }
}
@media screen and (max-width: 768px) {
  .l-header__nav__list__item.t-products {
    margin-top: -100px;
  }
}
@media screen and (max-width: 1279px) {
  .l-header__nav__list__item.t-products {
    order: 3;
  }
}
@media screen and (max-width: 768px) {
  .l-header__nav__list__item.t-works {
    width: 100%;
    margin-top: 25px;
  }
}
@media screen and (max-width: 1279px) {
  .l-header__nav__list__item.t-works {
    order: 4;
  }
}
@media screen and (max-width: 768px) {
  .l-header__nav__list__item.t-sdgs {
    width: 100%;
    margin-top: 35px;
    padding-bottom: 35px;
  }
}
@media screen and (max-width: 1279px) {
  .l-header__nav__list__item.t-sdgs {
    order: 5;
  }
}
@media screen and (max-width: 1279px) {
  .l-header__nav__list__item.t-compnay {
    order: 2;
  }
}
@media screen and (max-width: 1279px) {
  .l-header__nav__list__item.t-ir {
    order: 6;
  }
}
@media screen and (max-width: 1279px) {
  .l-header__nav__list__item.t-sastinability {
    order: 7;
  }
}
@media screen and (max-width: 768px) {
  .l-header__nav__list__item.t-news {
    width: 100%;
    margin-top: 25px;
  }
}
@media screen and (max-width: 1279px) {
  .l-header__nav__list__item.t-news {
    order: 7;
  }
}
@media screen and (max-width: 768px) {
  .l-header__nav__list__item.t-recruit {
    width: 100%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 1279px) {
  .l-header__nav__list__item.t-recruit {
    order: 8;
  }
}
@media screen and (max-width: 768px) {
  .l-header__nav__list__item.t-inquiry {
    width: 100%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 1279px) {
  .l-header__nav__list__item.t-inquiry {
    order: 9;
  }
}
@media screen and (max-width: 768px) {
  .l-header__nav__list__item.t-sitemap {
    width: 100%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 1279px) {
  .l-header__nav__list__item.t-sitemap {
    order: 10;
  }
}
@media screen and (max-width: 768px) {
  .l-header__nav__list__item.t-privacy {
    width: 100%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 1279px) {
  .l-header__nav__list__item.t-privacy {
    order: 11;
  }
}

@media screen and (max-width: 1279px) {
  .l-header__nav__list + .l-header__inquiry.t-inquiry {
    margin-top: 50px;
    width: 100%;
  }
}

@media screen and (max-width: 1279px) {
  .l-header__nav__list + .l-header__inquiry.t-inquiry a {
    border: 1px solid #fff;
    width: 100%;
    margin: 0 auto;
    max-width: 244px;
    display: block;
    text-align: center;
    font-size: 1.6rem;
    padding-top: 17px;
    padding-bottom: 17px;
  }
}

.l-header__btn {
  position: relative;
  cursor: pointer;
  border: none !important;
  border-radius: 0 !important;
  z-index: 100;
  transition: 0.2s;
  border: none;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 40px;
  height: 40px;
  z-index: 19999;
  display: none;
  top: 2px;
}
@media screen and (max-width: 1280px) {
  .l-header__btn {
    display: block;
    top: 4px;
  }
}
.l-header__btn--area {
  position: relative;
  width: 32px;
  margin-inline: auto;
}

.l-header__btn span {
  position: absolute;
  width: 100%;
  width: 100%;
  height: 2px;
  background-color: #203653;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
.l-header__btn span:nth-of-type(1) {
  height: 2px;
  width: 100%;
  bottom: 5px;
}
.l-header__btn span:nth-of-type(2) {
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: -5px;
}

.l-header__btn.active span {
  bottom: 0px;
}

.l-header__btn.active span:nth-of-type(1) {
  -webkit-transform: rotate(-315deg);
  transform: rotate(-315deg) !important;
}

.menuOpen .header.is-fixed .header__trrigger-btn.active span:nth-of-type(1) {
  -webkit-transform: rotate(-315deg);
  transform: rotate(-315deg) !important;
}

.l-header__btn.active span:nth-of-type(2) {
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg) !important;
}

.menuOpen .header.is-fixed .header__trrigger-btn.active span:nth-of-type(2) {
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg) !important;
}

.menuOpen .l-header nav {
  opacity: 1;
  visibility: visible;
  top: 0;
  transition: 0.4s;
}
.menuOpen .l-header__btn span {
  background: #fff;
}
.menuOpen .l-header__nav {
  left: 0;
}

.l-header.is-fixed {
  background: rgba(255, 255, 255, 0.9);
}
.l-header.is-fixed a {
  color: #203653;
}
@media screen and (min-width: 1025px) {
  .l-header.is-fixed {
    padding: 10px 0px;
  }
}
.l-header.is-fixed .l-header__inner {
  align-items: center;
}
.l-header.is-fixed .l-header__btn span {
  background: #203653;
}
@media screen and (min-width: 1025px) {
  .l-header.is-fixed .l-header__list-item a:after {
    background: #203653;
  }
}

@media screen and (min-width: 1279px) {
  .menuOpen .l-header__btn span {
    background-color: #fff;
  }
}

.menu__wrap {
  background: #E9E9E9;
  height: 60px;
  width: 60px;
  text-align: center;
  position: fixed;
  top: 0;
  right: 0;
}
@media screen and (min-width: 1025px) {
  .menu__wrap {
    position: static;
    padding: 40px 10px;
    height: 100%;
    max-height: 220px;
    width: 100%;
  }
}

.menu__list {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
@media screen and (min-width: 1025px) {
  .menu__list {
    position: static;
    display: block;
  }
}
.menu__list li {
  width: 100%;
  display: flex;
}
@media screen and (min-width: 1025px) {
  .menu__list li a {
    padding: 10px 5px;
  }
}
.menu__list li a .eng {
  font-family: "Oswald", sans-serif;
  line-height: 1;
}
/*=============================
.btnMenu
=============================*/
.btnMenu {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  margin: 5px 0 0;
}
@media screen and (min-width: 1025px) {
  .btnMenu {
    width: 60px;
    height: 60px;
    margin: 10px 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .btnMenu {
    margin: 10px 0 0 10px;
  }
}

.btnMenu span {
  position: absolute;
  left: 25%;
  height: 55px;
  width: 2px;
  background-color: #20334c;
}

.btnMenu, .btnMenu span {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}

.btnMenu span:nth-of-type(1) {
  top: 0;
  left: 4px;
  height: 1px;
  width: 32px;
}
@media screen and (min-width: 1025px) {
  .btnMenu span:nth-of-type(1) {
    top: 20px;
    left: 9px;
    height: 62px;
    width: 2px;
  }
}

.btnMenu span:nth-of-type(2) {
  top: 7px;
  left: 8px;
  height: 1px;
  width: 28px;
}
@media screen and (min-width: 1025px) {
  .btnMenu span:nth-of-type(2) {
    top: 10px;
    left: 22px;
    height: 55px;
    width: 2px;
  }
}

.btnMenu span:nth-of-type(3) {
  top: 14px;
  left: 12px;
  height: 1px;
  width: 24px;
}
@media screen and (min-width: 1025px) {
  .btnMenu span:nth-of-type(3) {
    top: 0;
    left: 37px;
    height: 43px;
    width: 2px;
  }
}

.btnMenu.active span:nth-of-type(1) {
  opacity: 0;
}

.btnMenu.active span:nth-of-type(2) {
  height: 30px;
  width: 2px;
  top: 3px;
  left: 20px;
  -webkit-transform: translateY(-10px) rotate(-315deg);
  transform: translateY(-10px) rotate(-315deg);
}
@media screen and (min-width: 1025px) {
  .btnMenu.active span:nth-of-type(2) {
    height: 55px;
    width: 2px;
    top: 10px;
    left: 22px;
    -webkit-transform: translateY(-5px) rotate(335deg) translateX(2px);
    transform: translateY(-5px) rotate(335deg) translateX(2px);
  }
}

.btnMenu.active span:nth-of-type(3) {
  height: 30px;
  width: 2px;
  top: 3px;
  left: 20px;
  -webkit-transform: translateY(-10px) rotate(-405deg);
  transform: translateY(-10px) rotate(-405deg);
}
@media screen and (min-width: 1025px) {
  .btnMenu.active span:nth-of-type(3) {
    height: 55px;
    width: 2px;
    top: 0;
    left: 37px;
    -webkit-transform: translateY(10px) rotate(-335deg) translateX(-14px);
    transform: translateY(10px) rotate(-335deg) translateX(-14px);
  }
}

/*=============================
.nav
=============================*/
.navBg {
  background: #F9F9F9;
  width: 100%;
  height: 100%;
  transform-origin: top left;
  transform: scale(1, 0);
  transition: transform 0.5s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
.navBg:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  transition: all 0.5s 0.5s;
  transform-origin: top center;
  background: url(../../files/img/common/copy.svg) center center no-repeat;
  background-attachment: fixed;
  background-size: 380px;
}

.nav__wrap {
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
  display: flex;
  pointer-events: none;
  height: 100%;
}
@media screen and (min-width: 1025px) {
  .nav__wrap {
    padding-left: 100px;
  }
}
.nav__wrap .nav__wrapTop {
  opacity: 0;
}
.nav__wrap.open {
  pointer-events: all;
  overflow-y: scroll;
  height: 100%;
}
.nav__wrap.open .navBg {
  transform-origin: bottom center;
  transform: scale(1, 1);
  pointer-events: inherit;
}
.nav__wrap.open .navBg:after {
  transform: translateY(-100%);
}
.nav__wrap.open .nav__wrapTop {
  z-index: 20;
  opacity: 1;
  transition: all 0.7s 0.7s;
}
@media screen and (min-width: 1025px) {
  .nav__wrap.open .nav__wrapTop {
    transform: translate(0, -20px);
  }
}
.nav__wrap.open .nev__list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}
.nav__wrap.open .nev__list .listCont {
  width: 100%;
  padding: 80px 30px 30px;
  border-right: 1px solid #DEDEDE;
  border-bottom: 1px solid #DEDEDE;
}
@media screen and (min-width: 769px) {
  .nav__wrap.open .nev__list .listCont {
    width: 50%;
    padding: 60px;
  }
}
@media screen and (min-width: 1025px) {
  .nav__wrap.open .nev__list .listCont:nth-of-type(5), .nav__wrap.open .nev__list .listCont:nth-of-type(6) {
    border-bottom: none;
  }
}
@media screen and (min-width: 1280px) {
  .nav__wrap.open .nev__list .listCont {
    width: 33.3333333333%;
  }
  .nav__wrap.open .nev__list .listCont:nth-of-type(4) {
    border-bottom: none;
  }
}
.nav__wrap.open .nev__list .listCont .nev__list--btn {
  font-size: 1.8rem;
  font-weight: bold;
  padding-right: 10px;
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  .nav__wrap.open .nev__list .listCont .nev__list--btn {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1201px) {
  .nav__wrap.open .nev__list .listCont .nev__list--btn {
    font-size: 2.4rem;
  }
}
.nav__wrap.open .nev__list .listCont .nev__list--btn svg {
  margin-left: 10px;
}
.nav__wrap.open .nev__list .listCont .underList li {
  margin-bottom: 5px;
}
@media screen and (min-width: 769px) {
  .nav__wrap.open .nev__list .listCont .underList li {
    margin-bottom: 20px;
  }
}
.nav__wrap.open .nev__list .listCont .underList li a {
  color: #707070;
  font-size: 1.8rem;
  font-weight: bold;
  transition: all 0.3s;
}
.nav__wrap.open .nev__list .listCont .underList li a svg {
  fill: #668BAE;
  width: 6px;
  margin-right: 10px;
  transition: all 0.3s;
}
.nav__wrap.open .nev__list .listCont .underList li a.red {
  color: #20334c;
}
.nav__wrap.open .nev__list .listCont .underList li a.red svg {
  fill: #20334c;
}
@media screen and (min-width: 1025px) {
  .nav__wrap.open .nev__list .listCont .underList li a:hover {
    opacity: 1;
    color: #20334c;
  }
  .nav__wrap.open .nev__list .listCont .underList li a:hover svg {
    transform: translateX(3px);
  }
  .nav__wrap.open .nev__list .listCont .underList li a:hover.red {
    color: #668BAE;
  }
  .nav__wrap.open .nev__list .listCont .underList li a:hover.red svg {
    fill: #668BAE;
  }
}
.nav__wrap.open .nev__list .listCont.info {
  padding-bottom: 150px;
}
@media screen and (min-width: 1025px) {
  .nav__wrap.open .nev__list .listCont.info {
    padding-bottom: 0;
  }
}
.nav__wrap.open .nev__list .listCont.info .info__ttl {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.nav__wrap.open .nev__list .listCont.info .info__list {
  margin-bottom: 30px;
}
.nav__wrap.open .nev__list .listCont.info .info__list li {
  margin-bottom: 10px;
}
.nav__wrap.open .nev__list .listCont.info .info__list li a {
  text-decoration: underline;
  transition: all 0.3s;
}
.nav__wrap.open .nev__list .listCont.info .info__list li a svg {
  fill: #668BAE;
  width: 10px;
  margin-left: 10px;
  transition: all 0.3s;
}
@media screen and (min-width: 1025px) {
  .nav__wrap.open .nev__list .listCont.info .info__list li a:hover {
    opacity: 1;
    color: #20334c;
  }
}
.nav__wrap.open .nev__list .listCont.info .info__address {
  color: #707070;
  font-size: 1.4rem;
  margin-bottom: 30px;
}
.nav__wrap.open .nev__list .listCont.info .info__logo {
  width: 100%;
  max-width: 212px;
  margin-bottom: 8px;
}
.nav__wrap.open .nev__list .listCont.info .info__logo img {
  width: 100%;
}
.nav__wrap.open .nev__list .listCont.info .copy {
  font-size: 1.3rem;
}

#loading_barWrap {
  width: 100vw;
  height: 15px;
  position: fixed;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #f1f1f1;
}

#loading_bar {
  width: 0;
  height: 15px;
  background: #F1FFEF;
  transition-duration: 1s;
}

#to-top a {
  display: none;
}

@media screen and (max-width: 1024px) {
  #to-top a img {
    max-width: 48px;
  }
}
@media screen and (min-width: 1025px) {
  .l-header__nav__list__item:has(.l-header__nav__list__sub) {
    padding-right: 12px;
  }
  .l-header__nav__list__item:has(.l-header__nav__list__sub)::after {
    content: "";
    background: url(/assets/img/common/icon_arw_down.svg);
    width: 8px;
    height: 4px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background-size: cover;
  }
}
@media screen and (min-width: 1260px) {
  .l-header__nav__list__item:has(.l-header__nav__list__sub)::after {
    right: -3px;
  }
}
.l-footer {
  padding: 40px 0 150px;
  background: #fff;
  color: #20334c;
  border-bottom: 1px solid #749DC9;
}
@media screen and (max-width: 1024px) {
  .l-footer {
    padding: 40px 0 50px;
  }
}
@media screen and (min-width: 1025px) {
  .l-footer {
    padding: 100px 0;
  }
}
.l-footer__logo {
  width: clamp(17.5rem, 13.8rem + 6.167vw, 21.2rem); /* min: 175px, max: 212px */
}
.l-footer__nav {
  width: calc(100% - 320px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .l-footer__nav {
    width: 100%;
    margin-top: 40px;
  }
}
.l-footer__nav__list {
  width: fit-content;
}
@media screen and (max-width: 1024px) {
  .l-footer__nav__list {
    width: 49%;
  }
}
.l-footer__nav__list__item {
  line-height: 1;
  margin-top: 17px;
}
.l-footer__nav__list__item > a {
  font-size: 1.5rem;
  font-weight: 500;
}
.l-footer__nav__list__sub a {
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 20px;
  display: block;
}
.l-footer__nav__list__sub .l-footer__nav__list__sub__link:before {
  content: "-";
}
@media screen and (max-width: 1024px) {
  .l-footer .l-footer__nav__list__sub {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .l-footer .l-footer__nav.pc {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) {
  .l-footer .l-footer__nav.pc {
    display: flex !important;
  }
}
@media screen and (max-width: 1024px) {
  .l-footer .l-footer__nav.sp {
    display: flex !important;
    margin-top: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .l-footer .l-footer__nav.sp {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .l-footer .l-footer__nav.sp .l-footer__nav__list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (max-width: 1024px) {
  .l-footer .l-footer__nav.sp .l-footer__nav__list__item {
    width: 48.5%;
  }
}
.l-footer .l-footer__nav.sp .l-footer__nav__list__item:nth-of-type(odd) {
  width: 55%;
}
.l-footer .l-footer__nav.sp .l-footer__nav__list__item:nth-of-type(even) {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .l-footer .l-footer__nav__list__text {
    font-size: 1.5rem;
    font-weight: 500;
  }
}
.l-footer__inner {
  width: 90%;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.l-footer__inner .footer__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.l-footer__inner .footer__list .footer__list-item {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .l-footer__inner .footer__list .footer__list-item {
    width: 50%;
  }
}
@media screen and (min-width: 1025px) {
  .l-footer__inner .footer__list .footer__list-item {
    width: 20%;
    margin-bottom: 0;
  }
}
.l-footer__inner .footer__list .footer__list-item > a {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.l-footer__inner .footer__list .footer__list-item .footer__list-sub .footer__list-sub-item {
  margin-bottom: 5px;
}
.l-footer__inner .footer__list .footer__list-item .footer__list-sub .footer__list-sub-item a {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #707070;
}
.l-footer__inner a {
  position: relative;
  width: fit-content;
}
.l-footer__inner a:after {
  content: "";
  width: 0;
  height: 1px;
  display: block;
  transition: 0.4s;
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  background: #20334c;
  opacity: 1 !important;
}
.l-footer__inner a:hover:after {
  width: 100%;
}
.l-footer__inner .l-footer__nav__list__sub__link:after {
  bottom: -5px;
}

.p-copyright {
  color: #20334c;
  font-size: 1.3rem;
  padding: 40px 0;
  line-height: 1.2;
  background-color: #fff;
  padding-inline: 20px;
}
@media screen and (max-width: 1024px) {
  .p-copyright {
    padding: 20px 0;
    font-size: 1.1rem;
  }
}
.p-copyright__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .p-copyright__inner {
    width: 90vw;
  }
}

#to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1;
}/*# sourceMappingURL=style.css.map */