@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

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

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

html {
  color: var(--color-main);
  font-size: var(--font-size);
  font-family: var(--font);
}

li {
  list-style-type: none;
}

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

:root {
  --color-main: #1c1c1c;
  --color-link: #0054a6;
  --color-bg: #f8f8f8;
  --color-border: #CDCDCD;
  --font: "Montserrat", "Noto Sans JP", sans-serif;
  --font-ja: "Noto Sans JP", sans-serif;
  --font-size: 62.5%;
  --base-width: 1120px;
}

.breadcrumb {
  max-width: var(--base-width);
  margin: 0 auto;
  padding: 8px 32px;
}
.breadcrumb ul {
  overflow-x: scroll;
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  width: 100%;
  white-space: nowrap;
  padding: 12px 0;
}
.breadcrumb li:not(:first-child) {
  position: relative;
}
.breadcrumb li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -14px;
  width: 10px;
  border-top: 1px solid #8e8e8e;
  transform: translateY(-50%) rotate(-45deg);
}
.breadcrumb a, .breadcrumb span {
  font-size: 1.2rem;
  line-height: 2;
  font-weight: bold;
}
.breadcrumb a {
  color: #8e8e8e;
}

@keyframes ripple {
  from {
    width: 56px;
    height: 56px;
    opacity: 0;
  }
  to {
    width: 112px;
    height: 112px;
    opacity: 1;
  }
}
@keyframes smallRipple {
  from {
    width: 32px;
    height: 32px;
    opacity: 0;
  }
  to {
    width: 64px;
    height: 64px;
    opacity: 1;
  }
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 21.5px;
  font-size: 1.6rem;
  font-weight: bold;
}
.button > span:first-child {
  z-index: 1;
}
.button > span:last-child {
  position: relative;
}
.button > span:last-child::before, .button > span:last-child::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.button > span:last-child::after {
  box-sizing: border-box;
  width: 56px;
  height: 56px;
  border: 1px solid #0193dc;
  z-index: 1;
  opacity: 0.5;
}
.button__ico {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 5px;
  background-image: url(/assets/img/common/ico-button.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.button[target=_blank] .button__ico {
  width: 16px;
  height: 16px;
  background-image: url(/assets/img/common/ico-blank-lightblue.svg);
}

.card {
  display: block;
}

.container {
  padding-top: 1px;
  background-color: var(--color-bg);
}
.container__inner {
  box-sizing: border-box;
  max-width: var(--base-width);
  margin: 24px auto 0;
  padding: 32px 32px 64px;
  background-color: #fff;
}
.container__inner.child {
  background-color: var(--color-bg);
  margin-top: 16px;
  margin-bottom: 40px;
  padding: 40px 32px;
  text-indent: 0;
}
.container + .contact {
  margin-top: 30px;
}

.headingLv1 {
  padding-top: 32px;
}
.headingLv1:not(.-large) {
  padding-bottom: 51px;
}
.headingLv1 h1 {
  width: calc(100% - 64px);
  max-width: var(--base-width);
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  margin: 0 auto;
}
.headingLv1 h1 .en {
  margin-top: -0.1em;
  font-size: 4.2rem;
  line-height: 1.2;
  font-weight: bold;
}
.headingLv1 h1 .ja {
  margin-top: -0.5em;
  font-size: 1.2rem;
  line-height: 2;
  font-weight: bold;
}
.headingLv1__text {
  margin-top: 57px;
  padding: 32px;
  background-color: var(--color-bg);
}
.headingLv1__text .heading {
  max-width: var(--base-width);
  margin: -0.5em auto 0;
  font-size: 2.2rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.headingLv1__text .text {
  max-width: var(--base-width);
  margin: -0.5em auto 0;
  font-size: 1.5rem;
  line-height: 1.8;
}
.headingLv1__text .text:not(:first-child) {
  margin-top: calc(16px - 0.5em);
}
.headingLv1__image {
  width: calc(100% - 32px);
  aspect-ratio: 343/150;
  margin: 40px 0 0 auto;
}
.headingLv1__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.headingLv1__image + .headingLv1__text {
  position: relative;
  z-index: -1;
  top: -22px;
  margin: 0 auto -22px;
  padding: 48px 32px 32px;
}

.-min-width-311 .headingLv1 h1 {
  min-width: 311px;
}

.headingLv2 {
  max-width: var(--base-width);
  margin: 24px auto 0;
  padding: 0 32px;
  font-family: var(--font-ja);
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: bold;
}

.headingLv2WithSub {
  display: flex;
  flex-direction: column;
  gap: 6px 0;
  max-width: var(--base-width);
  padding: 0 32px;
}
.headingLv2WithSub .en {
  margin-top: -0.1em;
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: bold;
}
.headingLv2WithSub .ja {
  font-size: 1.4rem;
  line-height: 2;
  font-weight: bold;
}

.headingLv3 {
  padding-bottom: 0.95em;
  border-bottom: 1px solid #cdcdcd;
  font-family: var(--font-ja);
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.headingLv3.-sustainability {
  display: flex;
  align-items: center;
  gap: 0 16px;
}
.headingLv3.-sustainability strong {
  font-family: var(--font);
  letter-spacing: 0;
}
.headingLv3.-sustainability span {
  font-size: 1.4rem;
}

.headingLv4 {
  font-family: var(--font-ja);
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: bold;
}

.historyDl {
  display: grid;
  grid-template-columns: 25% auto;
  padding-bottom: 48px;
  font-family: var(--font-ja);
  font-size: 1.5rem;
  line-height: 1.8;
}
.historyDl dt, .historyDl dd {
  position: relative;
}
.historyDl dt:not(:first-of-type), .historyDl dd:not(:first-of-type) {
  padding-top: 48px;
}
.historyDl dt {
  font-weight: bold;
}
.historyDl dt::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: calc(100% - 1rem);
  background-color: var(--color-border);
}
.historyDl dt:not(:first-of-type)::after {
  height: 100%;
}
.historyDl dt:last-of-type::after {
  top: 0;
  height: calc(100% + 48px);
}
.historyDl dd {
  padding-left: 12%;
}
.historyDl dd::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: -4.5px;
  width: 9px;
  height: 9px;
  background-color: #0054a6;
  border-radius: 50%;
}
.historyDl dd:not(:first-of-type)::before {
  top: calc(48px + 1rem);
}
.historyDl dd p {
  margin-bottom: -0.5em;
}
.historyDl dd p + p {
  margin-top: 24px;
}

.layout-wrapper .container__inner > section:not(:first-child) {
  margin-top: 56px;
}
.layout-wrapper .headingLv3 + * {
  margin-top: 24px;
}
.layout-wrapper .headingLv4 + * {
  margin-top: 6px;
}
.layout-wrapper p, .layout-wrapper dd, .layout-wrapper ul, .layout-wrapper ol {
  font-family: var(--font-ja);
  font-size: 1.5rem;
  line-height: 1.8;
}

.layout-grid {
  display: grid;
  gap: 48px 0;
}

.lead {
  max-width: var(--base-width);
  margin: 0 auto 32px;
  padding: 57px 32px 0;
  font-family: var(--font-ja);
  font-size: 1.5rem;
  line-height: 2;
}

.link {
  text-decoration: underline;
}
.link:hover {
  color: var(--color-link);
}
.link[target=_blank] {
  padding-right: 1.4em;
  background: url(/assets/img/common/ico-blank.svg) no-repeat right;
  background-size: 1em;
}
.link[target=_blank]:hover {
  background-image: url(/assets/img/common/ico-blank-blue.svg);
}
.link[href$=".pdf"] {
  padding-right: 2.6em;
  background: url(/assets/img/common/ico-pdf.svg) no-repeat right;
}
.link[href$=".pdf"]:hover {
  background-image: url(/assets/img/common/ico-pdf-blue.svg);
}
.link[href^="mailto:"] {
  padding-right: 1.6em;
  background: url(/assets/img/common/ico-mail.svg) no-repeat bottom right;
}
.link[href^="mailto:"]:hover {
  background-image: url(/assets/img/common/ico-mail-blue.svg);
}

.localNav {
  margin: 30px auto 32px;
}
.localNav ul {
  padding: 0 32px;
}
.localNav li:not(:first-child) {
  border-top: 1px solid #c6c6c6;
}
.localNav a {
  display: block;
  padding: 17px 0;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: bold;
}
.localNav a.isActive {
  color: #0054a6;
}
[data-scroll=heading] {
  overflow: hidden;
}
[data-scroll=heading] span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%) skewX(12deg);
}
[data-scroll=heading].isScrolled span {
  opacity: 1;
  transform: none;
  transition: opacity 500ms cubic-bezier(0.36, 0.14, 0, 1), transform 500ms cubic-bezier(0.36, 0.14, 0, 1);
}
[data-scroll=heading].isScrolled span:nth-child(1) {
  transition-delay: 0s;
}
[data-scroll=heading].isScrolled span:nth-child(2) {
  transition-delay: 0.03s;
}
[data-scroll=heading].isScrolled span:nth-child(3) {
  transition-delay: 0.06s;
}
[data-scroll=heading].isScrolled span:nth-child(4) {
  transition-delay: 0.09s;
}
[data-scroll=heading].isScrolled span:nth-child(5) {
  transition-delay: 0.12s;
}
[data-scroll=heading].isScrolled span:nth-child(6) {
  transition-delay: 0.15s;
}
[data-scroll=heading].isScrolled span:nth-child(7) {
  transition-delay: 0.18s;
}
[data-scroll=heading].isScrolled span:nth-child(8) {
  transition-delay: 0.21s;
}
[data-scroll=heading].isScrolled span:nth-child(9) {
  transition-delay: 0.24s;
}
[data-scroll=heading].isScrolled span:nth-child(10) {
  transition-delay: 0.27s;
}
[data-scroll=heading].isScrolled span:nth-child(11) {
  transition-delay: 0.3s;
}
[data-scroll=heading].isScrolled span:nth-child(12) {
  transition-delay: 0.33s;
}
[data-scroll=heading].isScrolled span:nth-child(13) {
  transition-delay: 0.36s;
}
[data-scroll=heading].isScrolled span:nth-child(14) {
  transition-delay: 0.39s;
}
[data-scroll=heading].isScrolled span:nth-child(15) {
  transition-delay: 0.42s;
}
[data-scroll=heading].isScrolled span:nth-child(16) {
  transition-delay: 0.45s;
}
[data-scroll=heading].isScrolled span:nth-child(17) {
  transition-delay: 0.48s;
}
[data-scroll=heading].isScrolled span:nth-child(18) {
  transition-delay: 0.51s;
}
[data-scroll=heading].isScrolled span:nth-child(19) {
  transition-delay: 0.54s;
}
[data-scroll=heading].isScrolled span:nth-child(20) {
  transition-delay: 0.57s;
}
[data-scroll=heading].isScrolled span:nth-child(21) {
  transition-delay: 0.6s;
}
[data-scroll=heading].isScrolled span:nth-child(22) {
  transition-delay: 0.63s;
}
[data-scroll=heading].isScrolled span:nth-child(23) {
  transition-delay: 0.66s;
}
[data-scroll=heading].isScrolled span:nth-child(24) {
  transition-delay: 0.69s;
}
[data-scroll=heading].isScrolled span:nth-child(25) {
  transition-delay: 0.72s;
}
[data-scroll=heading].isScrolled span:nth-child(26) {
  transition-delay: 0.75s;
}
[data-scroll=heading].isScrolled span:nth-child(27) {
  transition-delay: 0.78s;
}
[data-scroll=heading].isScrolled span:nth-child(28) {
  transition-delay: 0.81s;
}
[data-scroll=heading].isScrolled span:nth-child(29) {
  transition-delay: 0.84s;
}
[data-scroll=heading].isScrolled span:nth-child(30) {
  transition-delay: 0.87s;
}
[data-scroll=heading].isScrolled span:nth-child(31) {
  transition-delay: 0.9s;
}
[data-scroll=heading].isScrolled span:nth-child(32) {
  transition-delay: 0.93s;
}
[data-scroll=heading].isScrolled span:nth-child(33) {
  transition-delay: 0.96s;
}
[data-scroll=heading].isScrolled span:nth-child(34) {
  transition-delay: 0.99s;
}
[data-scroll=heading].isScrolled span:nth-child(35) {
  transition-delay: 1.02s;
}
[data-scroll=heading].isScrolled span:nth-child(36) {
  transition-delay: 1.05s;
}
[data-scroll=heading].isScrolled span:nth-child(37) {
  transition-delay: 1.08s;
}
[data-scroll=heading].isScrolled span:nth-child(38) {
  transition-delay: 1.11s;
}
[data-scroll=heading].isScrolled span:nth-child(39) {
  transition-delay: 1.14s;
}
[data-scroll=heading].isScrolled span:nth-child(40) {
  transition-delay: 1.17s;
}
[data-scroll=heading].isScrolled span:nth-child(41) {
  transition-delay: 1.2s;
}
[data-scroll=heading].isScrolled span:nth-child(42) {
  transition-delay: 1.23s;
}
[data-scroll=heading].isScrolled span:nth-child(43) {
  transition-delay: 1.26s;
}
[data-scroll=heading].isScrolled span:nth-child(44) {
  transition-delay: 1.29s;
}
[data-scroll=heading].isScrolled span:nth-child(45) {
  transition-delay: 1.32s;
}
[data-scroll=heading].isScrolled span:nth-child(46) {
  transition-delay: 1.35s;
}
[data-scroll=heading].isScrolled span:nth-child(47) {
  transition-delay: 1.38s;
}
[data-scroll=heading].isScrolled span:nth-child(48) {
  transition-delay: 1.41s;
}
[data-scroll=heading].isScrolled span:nth-child(49) {
  transition-delay: 1.44s;
}
[data-scroll=heading].isScrolled span:nth-child(50) {
  transition-delay: 1.47s;
}
[data-scroll=heading].isScrolled span:nth-child(51) {
  transition-delay: 1.5s;
}
[data-scroll=heading].isScrolled span:nth-child(52) {
  transition-delay: 1.53s;
}
[data-scroll=heading].isScrolled span:nth-child(53) {
  transition-delay: 1.56s;
}
[data-scroll=heading].isScrolled span:nth-child(54) {
  transition-delay: 1.59s;
}
[data-scroll=heading].isScrolled span:nth-child(55) {
  transition-delay: 1.62s;
}
[data-scroll=heading].isScrolled span:nth-child(56) {
  transition-delay: 1.65s;
}
[data-scroll=heading].isScrolled span:nth-child(57) {
  transition-delay: 1.68s;
}
[data-scroll=heading].isScrolled span:nth-child(58) {
  transition-delay: 1.71s;
}
[data-scroll=heading].isScrolled span:nth-child(59) {
  transition-delay: 1.74s;
}
[data-scroll=heading].isScrolled span:nth-child(60) {
  transition-delay: 1.77s;
}
[data-scroll=heading].isScrolled span:nth-child(61) {
  transition-delay: 1.8s;
}
[data-scroll=heading].isScrolled span:nth-child(62) {
  transition-delay: 1.83s;
}
[data-scroll=heading].isScrolled span:nth-child(63) {
  transition-delay: 1.86s;
}
[data-scroll=heading].isScrolled span:nth-child(64) {
  transition-delay: 1.89s;
}
[data-scroll=heading].isScrolled span:nth-child(65) {
  transition-delay: 1.92s;
}
[data-scroll=heading].isScrolled span:nth-child(66) {
  transition-delay: 1.95s;
}
[data-scroll=heading].isScrolled span:nth-child(67) {
  transition-delay: 1.98s;
}
[data-scroll=heading].isScrolled span:nth-child(68) {
  transition-delay: 2.01s;
}
[data-scroll=heading].isScrolled span:nth-child(69) {
  transition-delay: 2.04s;
}
[data-scroll=heading].isScrolled span:nth-child(70) {
  transition-delay: 2.07s;
}
[data-scroll=heading].isScrolled span:nth-child(71) {
  transition-delay: 2.1s;
}
[data-scroll=heading].isScrolled span:nth-child(72) {
  transition-delay: 2.13s;
}
[data-scroll=heading].isScrolled span:nth-child(73) {
  transition-delay: 2.16s;
}
[data-scroll=heading].isScrolled span:nth-child(74) {
  transition-delay: 2.19s;
}
[data-scroll=heading].isScrolled span:nth-child(75) {
  transition-delay: 2.22s;
}
[data-scroll=heading].isScrolled span:nth-child(76) {
  transition-delay: 2.25s;
}
[data-scroll=heading].isScrolled span:nth-child(77) {
  transition-delay: 2.28s;
}
[data-scroll=heading].isScrolled span:nth-child(78) {
  transition-delay: 2.31s;
}
[data-scroll=heading].isScrolled span:nth-child(79) {
  transition-delay: 2.34s;
}
[data-scroll=heading].isScrolled span:nth-child(80) {
  transition-delay: 2.37s;
}
[data-scroll=heading].isScrolled span:nth-child(81) {
  transition-delay: 2.4s;
}

[data-scroll=slide] {
  opacity: 0;
  transform: translateY(50px);
}
[data-scroll=slide].isScrolled {
  opacity: 1;
  transform: none;
  transition: opacity 500ms cubic-bezier(0.36, 0.14, 0, 1), transform 500ms cubic-bezier(0.36, 0.14, 0, 1);
}

.simpleDl {
  font-family: var(--font-ja);
  font-size: 1.5rem;
  line-height: 1.8;
}
.simpleDl dt {
  margin-top: -0.5em;
  font-weight: bold;
}
.simpleDl dt:not(:first-child) {
  margin-top: 21px;
  padding-top: 21px;
  border-top: 1px solid var(--color-border);
}

.simpleOl {
  counter-reset: item;
}
.simpleOl:not(:first-child) {
  margin-top: 56px;
}
.simpleOl > li {
  padding-left: 1.5rem;
  text-indent: -1.5rem;
}
.simpleOl > li + li {
  margin-top: 40px;
}
.simpleOl > li::before {
  counter-increment: item;
  content: counter(item) ".";
}
.simpleOl > li ol {
  margin-top: 9px;
}
.simpleOl > li ol li {
  text-indent: 0;
}
.simpleOl > li > ul {
  margin: 24px 0 40px;
}
.simpleOl > li > ol > li + li {
  margin-top: 9px;
}
.simpleOl > li > ol > li > ol {
  padding-left: 2.5rem;
}

.simpleUl li {
  padding-left: 16px;
  position: relative;
  padding-left: 1.5rem;
  text-indent: -1.5rem;
}
.simpleUl li::before {
  content: "・";
  font-size: 1.5rem;
}

.contact {
  display: block;
  color: #fff;
  background-image: linear-gradient(to right, #0192df, #0054a6);
  font-weight: bold;
  padding: 38px 32px 37px;
}
.contact div {
  display: flex;
  align-items: center;
  gap: 19px;
  padding: 0 16px 29px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}
.contact div p:first-of-type {
  font-size: 2.8rem;
}
.contact div p:nth-of-type(2) {
  font-size: 1.1rem;
}
.contact span {
  position: relative;
  margin-left: auto;
}
.contact span::before, .contact span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.contact span::after {
  box-sizing: border-box;
  width: 32px;
  height: 32px;
  border: 1px solid #fff;
  z-index: 1;
  opacity: 0.5;
}
.contact img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact > p {
  font-size: 1.2rem;
  line-height: 1.5;
}
footer {
  display: grid;
  gap: 27px;
  font-weight: bold;
  padding: 43px 32px 48px;
}
footer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 16px;
  font-size: 1.1rem;
}
footer p {
  color: #8e8e8e;
  font-size: 0.9rem;
  font-weight: 500;
}
.isMenuOpened header button::before {
  transform: rotate(16deg);
}
.isMenuOpened header button::after {
  transform: rotate(-16deg);
}
.isMenuOpened header span::before {
  color: transparent;
}
.isMenuOpened header span::after {
  color: var(--color-main);
}

header {
  position: fixed;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: saturate(180%) blur(5px);
          backdrop-filter: saturate(180%) blur(5px);
  padding: 0 16px;
  width: 100%;
  height: 56px;
  z-index: 20;
}
header button {
  all: unset;
  position: relative;
  display: grid;
  justify-content: center;
  align-items: flex-end;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  width: 32px;
  height: 28px;
  cursor: pointer;
}
header button::before, header button::after {
  position: absolute;
  background-color: var(--color-main);
  width: 100%;
  height: 1px;
  content: "";
  transform-origin: left;
  transition: transform 200ms;
}
header button::before {
  top: 0;
}
header button::after {
  top: 9px;
  left: 0;
}
header span {
  color: transparent;
}
header span::before, header span::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: color 200ms;
}
header span::before {
  color: var(--color-main);
  content: "Menu";
}
header span::after {
  content: "Close";
}

main {
  padding-top: 56px;
}

@keyframes openAccordion {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.isMenuOpened {
  height: 100%;
  overflow: hidden !important;
}
.isMenuOpened nav {
  top: 56px;
  visibility: visible;
  opacity: 1;
}

nav {
  position: fixed;
  box-sizing: border-box;
  background-color: var(--color-bg);
  padding: 16px 32px 76px;
  width: 100%;
  height: calc(100% - 56px);
  top: calc(-100% + 56px);
  z-index: 10;
  overflow: auto;
  visibility: hidden;
  opacity: 0;
  transition: top 400ms, visibility 400ms, opacity 400ms;
}
nav div p {
  display: none;
}
nav > button {
  all: unset;
  position: fixed;
  background-color: #fff;
  font-size: 0;
  width: 100%;
  height: 52px;
  bottom: 0;
  left: 0;
  cursor: pointer;
}
nav > button span {
  position: absolute;
  width: 32px;
  margin-left: -16px;
  top: 21px;
  left: 50%;
}
nav > button span::before, nav > button span::after {
  position: absolute;
  background-color: var(--color-main);
  width: 100%;
  height: 1px;
  content: "";
  transform-origin: left;
}
nav > button span::before {
  top: 0;
  transform: rotate(16deg);
}
nav > button span::after {
  top: 9px;
  left: 0;
  transform: rotate(-16deg);
}

.footerNav {
  background-color: var(--color-bg);
  padding: 35px 32px 47px;
}

.nav {
  font-weight: bold;
  margin-bottom: 24px;
}
.nav li {
  border-bottom: 1px solid #c6c6c6;
}
.nav > li:last-child {
  display: none;
}
.nav > li > a {
  display: block;
  font-size: 1.8rem;
  padding: 18px 0;
}
.nav .isActive {
  color: #0054a6;
}
.nav button {
  all: unset;
  display: flex;
  justify-content: space-between;
  font-size: 1.8rem;
  padding: 18px 0;
  width: 100%;
  cursor: pointer;
}
.nav button.isOpened img {
  transform: rotate(270deg);
}
.nav button.isOpened + ul {
  display: block;
  animation: openAccordion 400ms;
}
.nav img {
  width: 7px;
  margin-right: 2px;
  transform: rotate(90deg);
  transition: transform 200ms;
}
.nav ul {
  display: none;
  font-size: 1.3rem;
  padding-left: 16px;
  border-top: 1px solid #c6c6c6;
}
.nav ul li:last-child {
  border-bottom: 0;
}
.nav ul a {
  display: block;
  background: url(/assets/img/common/ico-arrow.svg) no-repeat right;
  padding: 19px 0;
}
.nav + div {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav + div > a {
  display: grid;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  width: 40px;
  height: 40px;
  margin-left: auto;
  border-radius: 50%;
}
.nav + div ul {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: bold;
}
.nav + div li:first-child::after {
  display: inline-block;
  background-color: #c6c6c6;
  vertical-align: middle;
  width: 1px;
  height: 12.5px;
  margin: 0 10px;
  content: "";
  transform: rotate(40deg);
}
.nav + div ul a {
  color: #8e8e8e;
  padding: 5px 0;
}
.nav + div ul a.isActive {
  color: #0054a6;
}
.cc-window {
  position: fixed;
  box-sizing: border-box;
  display: grid;
  padding: 24px 32px;
  width: 100%;
  bottom: 0;
  z-index: 10;
}
.cc-window.cc-invisible {
  opacity: 0;
  transition: opacity 400ms;
}

.cc-message {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 23px;
}
.cc-message div {
  margin-bottom: 9px;
}

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

.cc-compliance {
  display: flex;
  gap: 15px;
  font-size: 1.2rem;
  font-weight: bold;
}

.cc-btn {
  flex: 1;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  cursor: pointer;
}

.cc-deny {
  color: #0093dc !important;
  background-color: transparent !important;
  border: 1px solid #1793dc !important;
}

.cc-allow {
  background-color: #0093dc !important;
  border: 1px solid #0093dc !important;
}
.prevTop {
  position: fixed;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  width: 40px;
  height: 40px;
  border: 1px solid #1793dc;
  right: 16px;
  bottom: -40px;
  z-index: 1;
  transform: rotate(-90deg);
  transition: bottom 200ms;
}
.prevTop.isScrolled {
  bottom: 16px;
}

.recruitHomeBottomNav ~ .prevTop.isScrolled {
  bottom: 72px;
}

.not-found {
  margin: 34px 0 80px;
  padding: 0 32px;
}
.not-found__title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.not-found__title img {
  width: 100%;
  max-width: 311px;
}
.not-found__title span {
  font-size: 4.5rem;
  color: #0093DC;
  font-weight: 700;
  font-family: var(--font);
}
.not-found__desc {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2;
  margin: 32px 0 33px;
}

.text-link {
  text-align: center;
}
.text-link a {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease-in-out;
}
.text-link a:hover {
  opacity: 0.7;
}
.text-link a:hover::before {
  transform: translateX(5px);
}
.text-link a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 14px;
  background-image: url(../img/not-found/icon-arrow.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 14px;
  vertical-align: -1px;
  transition: transform 0.3s ease-in-out;
}

.aboutusHomeLinks {
  padding: 48px 0 64px;
  background-color: var(--color-bg);
}
.aboutusHomeLinks__inner {
  display: grid;
  gap: 24px;
  max-width: var(--base-width);
  margin: 0 auto;
  padding: 0 32px;
}

.aboutusHomeCard {
  padding: 32px;
  background-color: #ffffff;
}
.aboutusHomeCard__title {
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: bold;
}
.aboutusHomeCard__text {
  margin-top: 16px;
  font-size: 1.5rem;
  line-height: 1.8;
}
.aboutusHomeCard__link {
  margin: 32px 0 16px;
}

.aboutusHomeSectionMessage {
  padding: 48px 0 64px;
  background: linear-gradient(180deg, transparent 0%, transparent 308px, var(--color-bg) 308px, var(--color-bg) 100%);
}
.aboutusHomeSectionMessage__inner {
  max-width: var(--base-width);
  margin: 0 auto;
  padding: 0 32px;
}

.aboutusHomeMessage {
  display: grid;
  justify-content: center;
  margin-top: 32px;
}
.aboutusHomeMessage + .aboutusHomeMessage {
  margin-top: 49px;
}
.aboutusHomeMessage__image {
  justify-self: center;
}
.aboutusHomeMessage__title {
  margin-top: calc(32px - 0.25em);
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.aboutusHomeMessage__name {
  margin-top: 16px;
  font-size: 1.3rem;
  line-height: 2.3;
  font-weight: bold;
}
.aboutusHomeMessage__text {
  margin: calc(32px - 0.4em) 0 -0.4em;
  font-size: 1.5rem;
  line-height: 1.8;
}

.aboutusHomeSection {
  padding: 48px 0;
}
.aboutusHomeSection + .aboutusHomeSection {
  position: relative;
}
.aboutusHomeSection + .aboutusHomeSection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: calc(100% - 64px);
  max-width: var(--base-width);
  border-top: 1px solid var(--color-border);
}
.aboutusHomeSection__inner {
  max-width: var(--base-width);
  margin: 32px auto 0;
  padding: 0 32px;
}
.aboutusHomeSection.-ts h2 {
  flex-shrink: 0;
  font-size: 4.2rem;
  line-height: 2;
}
.aboutusHomeSection.-ts p {
  font-family: var(--font-ja);
  font-size: 1.5rem;
  line-height: 1.8;
}
.aboutusHomeSection.-mission .aboutusHomeSection__inner {
  display: grid;
  grid-template-columns: 100%;
  gap: 24px 0;
}
.aboutusHomeSection.-mission h3 {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: bold;
  color: #0054a6;
}
.aboutusHomeSection.-mission p {
  margin-top: 16px;
  font-size: 2.1rem;
  line-height: 1.6;
  font-weight: bold;
}
.aboutusHomeSection.-vision p {
  font-size: 2.1rem;
  line-height: 1.6;
  font-weight: bold;
}
.aboutusHomeSection.-vision p span {
  color: #0054a6;
}
.aboutusHomeSection.-value .aboutusHomeSection__inner {
  display: grid;
  grid-template-columns: 100%;
  gap: 16px 0;
}
.aboutusHomeSection.-value h3, .aboutusHomeSection.-value dl {
  font-size: 2.1rem;
  line-height: 1.6;
  font-weight: bold;
}
.aboutusHomeSection.-value h3 span, .aboutusHomeSection.-value h3 dt, .aboutusHomeSection.-value dl span, .aboutusHomeSection.-value dl dt {
  letter-spacing: 0.2em;
  color: #0054a6;
}
.aboutusHomeSection.-value h3 span:is(h3 span), .aboutusHomeSection.-value h3 dt:is(h3 span), .aboutusHomeSection.-value dl span:is(h3 span), .aboutusHomeSection.-value dl dt:is(h3 span) {
  margin-left: 0.3em;
}
.aboutusHomeSection.-value dl {
  display: grid;
  grid-template-columns: 2.1rem auto;
  gap: 16px 8px;
}
.aboutusHomeSection.-value dl dt {
  text-align: center;
}

.aboutusCompanyGrid {
  display: grid;
  gap: 12px 0;
}
.aboutusCompanyGrid img {
  width: 100%;
  height: auto;
}

.aboutusCompanyMember h3,.aboutusCompanyMember h4 {
  font-family: var(--font-ja);
  font-size: 1.3rem;
  line-height: 1.8;
  font-weight: bold;
}
.aboutusCompanyMember p {
  display: flex;
}
.aboutusCompanyMember p .ja {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: bold;
}
.aboutusCompanyMember p .en {
  font-family: var(--font);
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: bold;
  color: #8e8e8e;
}
.aboutusCompanyMember.-large p {
  align-items: center;
  gap: 0 16px;
}
.aboutusCompanyMember.-large p .ja {
  font-size: 2.2rem;
  line-height: 1.4;
}
.aboutusCompanyMember:not(.-large) {
  display: grid;
  grid-template-columns: 39.8713826367% auto;
  gap: 0 24px;
  align-items: center;
}
.aboutusCompanyMember:not(.-large) img {
  width: 100%;
  height: auto;
}
.aboutusCompanyMember:not(.-large) p {
  flex-direction: column;
  gap: 2px 0;
}

.aboutusCompanyMemberGrid {
  display: grid;
  gap: 24px 0;
  margin-top: 42px;
}

.aboutusCompanyMemberDl {
  padding-top: 12px;
}
.aboutusCompanyMemberDl dt {
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: bold;
}
.aboutusCompanyMemberDl dt:not(:first-child) {
  margin-top: 24px;
}
.aboutusCompanyMemberDl dd {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: bold;
}

.aboutusCompanyMapLink {
  display: inline-block;
  margin-top: 0.7em;
  font-family: var(--font-ja);
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: bold;
}

.aboutusCompanySectionLv4:not(:first-of-type) {
  margin-top: 48px;
}

.aboutusCompanyHeadingLv4 {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
}
.aboutusCompanyHeadingLv4 + * {
  margin-top: 24px;
}

.aboutusHistoryUl {
  font-size: 1.5rem;
  line-height: 2;
}
.aboutusHistoryUl li:not(:first-child) {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}
.aboutusHistoryUl li p:first-child {
  font-weight: bold;
}

.aboutusGeLink {
  margin-top: 24px;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.aboutusGeLink + .aboutusGeLink {
  margin-top: 4px;
}

.aboutusEruboshiLogo {
  text-align: center;
}
.aboutusEruboshiLogo img {
  width: 238px;
  height: auto;
}
.aboutusEruboshiLogo + * {
  margin-top: 16px;
}

.aboutusEruboshiLinks {
  margin-top: 49px;
  padding: 40px 32px;
  background-color: var(--color-bg);
}
.aboutusEruboshiLinks h3 {
  margin-top: -0.2em;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.aboutusEruboshiLinks ul {
  margin-top: 26px;
}
.aboutusEruboshiLinks li:not(:first-child) {
  margin-top: 25px;
  padding-top: 27px;
  border-top: 1px solid #c6c6c6;
}

.aboutusEruboshiLink a {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.aboutusEruboshiLink p {
  margin-top: calc(15px - 0.5em);
  font-size: 1.2rem;
  line-height: 1.95;
}

.contact-error {
  display: none;
}

.contact-form {
  font-family: var(--font-ja);
}
.contact-form .headingLv4 {
  display: flex;
  align-items: center;
  gap: 0 16px;
}
.contact-form .headingLv4 span {
  flex-shrink: 0;
  display: block;
  padding: 0.5em;
  background-color: #c40000;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: normal;
  color: #fff;
}
.contact-form dl {
  display: grid;
  grid-template-columns: 100%;
  gap: 12px 0;
}
.contact-form dl dd .grid {
  width: 100%;
  display: grid;
  gap: 16px 0;
  grid-template-columns: 0 auto;
}
.contact-form dl dd .grid input[type=radio] {
  grid-column: 1/2;
}
.contact-form dl dd .grid input[type=radio] + label {
  grid-column: 2/3;
}
.contact-form dl dd .grid .select-wrap {
  grid-row: 2/3;
  grid-column: 1/3;
}
.contact-form input[type=radio] {
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact-form input[type=radio] + label {
  font-size: 1.7rem;
  line-height: 1.7;
}
.contact-form .select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  border: none;
  font-size: 1.5rem;
}
.contact-form input[type=text],
.contact-form textarea {
  width: 100%;
  font-family: var(--font-ja);
  font-size: 1.5rem;
  line-height: 1.8;
}
.contact-form .confirm {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 0 auto;
  margin-top: 32px;
}
.contact-form .confirm input[type=submit] {
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  border: none;
  width: 0;
  height: 0;
}
.contact-form .confirm input[type=submit] + label {
  pointer-events: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  height: 72px;
  margin: 0 auto;
  background-color: #c6c6c6;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #fff;
}
.contact-form .confirm input[type=submit].isActive + label {
  pointer-events: all;
  background-color: #0093dc;
  transition: background-color 0.4s;
}
.contact-form.-input .back, .contact-form.-input #mail_post + label {
  display: none;
}
.contact-form.-input dl dd {
  display: flex;
  flex-wrap: wrap;
}
.contact-form.-input dl dd p {
  order: 2;
  margin-top: 0.8em;
  padding-left: 1.8em;
  background-image: url(/assets/img/common/ico-warning.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 1.3em 1.3em;
  font-size: 1.5rem;
  line-height: 1.8;
  font-weight: bold;
  color: #c40813;
}
.contact-form.-input dl dd p + input, .contact-form.-input dl dd p + textarea, .contact-form.-input dl dd p + .select select, .contact-form.-input dl dd p + * input[type=radio] + label::before {
  background-color: #fee2e2;
}
.contact-form.-input dl dd .select-wrap {
  display: flex;
  flex-wrap: wrap;
}
.contact-form.-input input[type=radio] + label {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 32px;
}
.contact-form.-input input[type=radio] + label::before, .contact-form.-input input[type=radio] + label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  border-radius: 50%;
}
.contact-form.-input input[type=radio] + label::before {
  left: 0;
  width: 22px;
  height: 22px;
  border: 1px solid var(--color-border);
}
.contact-form.-input input[type=radio] + label::after {
  opacity: 0;
  left: 5px;
  width: 14px;
  height: 14px;
  background-color: #0054a6;
  transition: opacity 0.2s;
}
.contact-form.-input input[type=radio]:checked + label::after {
  opacity: 1;
}
.contact-form.-input .select-wrap {
  box-sizing: border-box;
  position: relative;
  width: 100%;
}
.contact-form.-input .select-wrap span {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  padding: 0 16px;
  width: 100%;
  height: 40px;
  font-size: 1.5rem;
  background-color: var(--color-bg);
  border: 1px solid var(--color-bg);
}
.contact-form.-input .select-wrap.isHidden span {
  display: flex;
}
.contact-form.-input .select {
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  border: 1px solid var(--color-border);
}
.contact-form.-input .select::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 14px;
  display: block;
  width: 0.4em;
  height: 0.4em;
  border-top: 1px solid #0b56a4;
  border-right: 1px solid #0b56a4;
  transform: translateY(-80%) rotate(135deg);
}
.contact-form.-input .select select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 100%;
  padding: 0 calc(16px + 1em) 0 16px;
  text-overflow: ellipsis;
}
.contact-form.-input input[type=text],
.contact-form.-input textarea {
  box-sizing: border-box;
  height: 40px;
  padding: 16px;
  border: 1px solid var(--color-border);
}
.contact-form.-input input[type=text]:is(textarea),
.contact-form.-input textarea:is(textarea) {
  height: 320px;
}
.contact-form.-input .check {
  display: inline-grid;
  grid-template-columns: 0 auto;
  margin-top: 32px;
}
.contact-form.-input .check input[type=checkbox] {
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact-form.-input .check input[type=checkbox] + label {
  cursor: pointer;
  position: relative;
  padding-left: 32px;
  font-size: 1.5rem;
  line-height: 1.7;
}
.contact-form.-input .check input[type=checkbox] + label::before, .contact-form.-input .check input[type=checkbox] + label::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
}
.contact-form.-input .check input[type=checkbox] + label::before {
  left: 0;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 1px solid var(--color-border);
  background-color: #f8f8f8;
  transition: background-color 0.2s;
}
.contact-form.-input .check input[type=checkbox] + label::after {
  opacity: 0;
  left: 5px;
  width: 13px;
  height: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-80%) rotate(-45deg);
  transition: opacity 0.2s;
}
.contact-form.-input .check input[type=checkbox]:checked + label::before {
  background-color: #0054a6;
}
.contact-form.-input .check input[type=checkbox]:checked + label::after {
  opacity: 1;
}
.contact-form.-confirm form dl, .contact-form.-confirm .contact-policy, .contact-form.-confirm .check, .contact-form.-confirm #mail_preview + label {
  display: none;
}
.contact-form.-confirm .headingLv4:not(:first-child) {
  margin-top: 16px;
}
.contact-form.-confirm dl {
  margin-top: 40px;
}
.contact-form.-confirm dl dd {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}
.contact-form.-confirm dl p {
  font-size: 1.5rem;
  line-height: 1.8;
}
.contact-form.-confirm dl p.heading {
  font-size: 1.7rem;
  font-weight: bold;
}
.contact-form.-confirm dl p + p {
  margin-top: 4px;
}
.contact-form .back {
  margin: 40px auto 0;
  text-align: center;
}
.contact-form .back button {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  border: none;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.contact-form .back button::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  margin-right: 0.6em;
  border-top: 1px solid #707070;
  border-left: 1px solid #707070;
  transform: rotate(-45deg);
}
.contact-form .back button:hover {
  text-decoration: underline;
}

.contact-policy {
  margin-top: 40px;
}
.contact-policy h2 {
  font-size: 1.7rem;
  line-height: 1.5;
}
.contact-policy__inner {
  box-sizing: border-box;
  height: 320px;
  overflow-y: auto;
  overflow-x: hidden;
  margin-top: 16px;
  padding: 8px 16px 16px;
  border: 1px solid var(--color-border);
  font-size: 1.5rem;
  line-height: 1.8;
  word-break: break-all;
}
.contact-policy__inner .headingLv3 {
  margin-top: 40px;
  font-size: 1.5rem;
  line-height: 1.8;
}
.contact-policy__inner .simpleOl:not(:first-child) {
  margin-top: 16px;
}
.contact-policy__inner > h3:not(:first-child) {
  margin-top: 40px;
}
.contact-policy__inner > p {
  margin-top: 16px;
  text-indent: 1em;
}
.contact-policy__inner > ol {
  margin-top: 16px;
}
.contact-policy__inner > ol li {
  text-indent: -1em;
  margin-left: 1em;
}
.contact-policy__inner > ol > li > ol {
  margin-top: 8px;
}
.contact-policy__inner > ol > li > ol + p {
  margin-top: 8px;
}
.contact-policy__inner a {
  color: var(--color-link);
}
.contact-policy__inner address {
  margin-top: 16px;
  font-style: normal;
}
.contact-policy__inner small {
  display: block;
  margin-top: 8px;
  font-size: 0.8em;
  line-height: 1.5;
}
.contact-policy__inner .right {
  text-align: right;
}
.contact-policy__inner .box {
  margin: 8px 0;
  padding: 8px 12px;
  border: 1px solid var(--color-border);
}
.contact-policy__inner .box p {
  font-size: 0.86em;
}
.contact-policy__inner .pmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 16px;
  padding: 8px 12px;
  border: 1px solid var(--color-border);
}
.contact-policy__inner .pmark img {
  width: 60%;
  max-width: 320px;
  margin: 0 auto;
}
.contact-policy__inner .pmark p {
  margin-top: 8px;
}

.contact-notice {
  margin-top: 48px;
  padding: 48px 32px;
  background-color: #F8F8F8;
}
.contact-notice h2 {
  font-size: 1.7rem;
  line-height: 1.5;
  font-size: bold;
}
.contact-notice h3 {
  margin-top: 32px;
  font-size: 1.5rem;
  line-height: 1.5;
  font-size: bold;
}
.contact-notice p {
  margin-top: 16px;
  font-size: 1.5rem;
  line-height: 1.5;
}
.contact-notice .note {
  margin-top: 8px;
  font-size: 1.2rem;
  line-height: 1.5;
}
.contact-notice .note::before {
  content: "※";
}

.homeHero {
  position: relative;
  box-sizing: border-box;
  background-color: #fff;
  padding: 110.6666666667vw 32px 13.6vw;
  min-height: calc(100vh - 56px);
  overflow: hidden;
}
.homeHero h1 {
  position: relative;
  font-size: 8.2666666667vw;
  line-height: 1.5;
  margin-bottom: 8.8vw;
  z-index: 1;
}
.homeHero a {
  display: inline-flex;
  align-items: center;
  gap: 21.5px;
  font-weight: bold;
}
.homeHero a > span:first-child {
  position: relative;
}
.homeHero a > span:first-child::before, .homeHero a > span:first-child::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.homeHero a > span:first-child::before {
  background-color: #0093dc;
  width: 9px;
  height: 9px;
}
.homeHero a > span:first-child::after {
  box-sizing: border-box;
  width: 56px;
  height: 56px;
  border: 1px solid #0193dc;
  z-index: 1;
  opacity: 0.5;
  animation: smallRipple 1s infinite;
}
.homeHero a > span:last-child {
  z-index: 1;
}
.homeHero dotlottie-player {
  position: absolute;
  width: 221.3333333333vw;
  height: auto;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.homeNews {
  background-color: var(--color-bg);
  padding: 42px 32px 70px;
  overflow: hidden;
}
.homeNews h2 {
  font-size: 4rem;
  margin-bottom: 30px;
}
.homeNews .swiper {
  margin-bottom: 58px;
  overflow: visible;
}
.homeNews .swiper-slide div:first-of-type {
  margin-bottom: 16px;
}
.homeNews .swiper div:first-of-type > img {
  width: 100%;
}
.homeNews .swiper-wrapper span {
  display: none;
}
.homeNews .swiper-slide div:last-of-type {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 16px;
}
.homeNews .swiper p {
  color: #0054a6;
}
.homeNews .swiper p::after {
  display: inline-block;
  background-color: #c6c6c6;
  vertical-align: middle;
  width: 1px;
  height: 12.5px;
  margin: 0 10px;
  content: "";
  transform: rotate(40deg);
}
.homeNews time {
  color: #8e8e8e;
}
.homeNews h3 {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2;
}
.homeNewsItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 28px;
}
.homeNews .swiper-button-prev,
.homeNews .swiper-button-next {
  display: none;
}
.homeNews .swiper-pagination {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: bold;
}
.homeNews .swiper-pagination-current {
  color: var(--color-link);
}
.homeNews .swiper-pagination-current::after {
  display: inline-block;
  background-color: #c6c6c6;
  vertical-align: middle;
  width: 1px;
  height: 12.5px;
  margin: 0 10px;
  content: "";
  transform: rotate(40deg);
}
.homeNews .swiper-pagination-totalStatic {
  color: #8e8e8e;
}

.homeAbout {
  padding: 48px 32px 64px;
}
.homeAbout__title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 27px;
}
.homeAbout > div {
  margin-bottom: 48px;
}
.homeAbout div div:first-of-type {
  margin-bottom: 41px;
}
.homeAbout__lead {
  font-size: 3.4rem;
  line-height: 1.39;
  margin-bottom: 22px;
}
.homeAbout__text {
  font-size: 1.5rem;
  line-height: 2;
}
.homeAbout div img {
  width: 100%;
}

.homeService {
  background-color: var(--color-bg);
  padding: 38px 0 64px;
}
.homeService h2 {
  font-size: 4rem;
  margin: 0 32px 37px;
}
.homeServiceCard {
  position: relative;
  background-color: #fff;
}
.homeService .swiper img, .homeServiceCard > picture img {
  display: block;
  width: 100%;
}
.homeServiceCard > div:last-of-type {
  padding: 0 32px 40px;
}
.homeServiceCard__tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0 8px;
  height: 25px;
  margin-bottom: 8px;
  bottom: 25px;
  z-index: 1;
}
.homeServiceCard__tag--mobile {
  background-color: #0093dc;
}
.homeServiceCard__tag--business {
  background-color: #ef6100;
}
.homeServiceCard__tag--sharing {
  background-color: #00b2ca;
}
.homeServiceCard__notice {
  position: relative;
  top: -16px;
  margin-bottom: 16px;
  font-family: var(--font-ja);
  font-size: 1.2rem;
  line-height: 2;
}
.homeService h3,
.homeService h4 {
  margin-bottom: 24px;
}
.homeService h4 img {
  max-width: 100%;
}
.homeServiceCard__text {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 46px;
}
.homeServiceCard--1 > picture img {
  position: absolute;
  width: 60px;
  top: 0;
  z-index: 1;
}
.homeServiceCards {
  display: grid;
  gap: 24px;
  padding: 24px 32px 0;
  margin-bottom: 48px;
}
.homeService > p {
  text-align: right;
  margin-right: 60px;
}

.homeNav {
  font-weight: bold;
  border-top: 1px solid #c6c6c6;
  border-bottom: 1px solid #c6c6c6;
  margin: 48px 32px;
}
.homeNav a {
  display: flex;
  align-items: center;
  padding-right: 16px;
  height: 100px;
}
.homeNav a:first-of-type {
  border-bottom: 1px solid #c6c6c6;
}
.homeNav p:first-of-type {
  font-size: 2.3rem;
  width: 128px;
}
.homeNav p:nth-of-type(2) {
  font-size: 1.1rem;
}
.homeNav span {
  position: relative;
  margin-left: auto;
}
.homeNav span::before, .homeNav span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.homeNav span::after {
  box-sizing: border-box;
  width: 32px;
  height: 32px;
  border: 1px solid #0193dc;
  z-index: 1;
  opacity: 0.5;
}
.homeNav img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
[lang=en] .homeHero h1 {
  font-size: 5.8666666667vw;
  line-height: 1.2;
}
[lang=en] .homeAbout__lead {
  line-height: 1.2;
}

.newsTag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.newsTag > *:not(:last-child) {
  margin-right: 2.2em;
  border-top: none;
  position: relative;
}
.newsTag > *:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.8em;
  width: 1.4em;
  border-top: 1px solid #8e8e8e;
  transform: translateY(-50%) rotate(-45deg);
  opacity: 50%;
}
.newsTag__category {
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: bold;
  color: #0054a6;
}
.newsTag__date {
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: bold;
  color: #8e8e8e;
}

.newsPager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 24px;
  margin: 40px auto;
}
.newsPager a:first-child, .newsPager a:last-child {
  position: relative;
  box-sizing: border-box;
  display: block;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border: 1px solid #0b56a4;
  border-radius: 50%;
}
.newsPager a:first-child::before, .newsPager a:last-child::before {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #0b56a4;
  border-right: 1px solid #0b56a4;
}
.newsPager a:first-child:first-child::before, .newsPager a:last-child:first-child::before {
  right: 44%;
  transform: translate(50%, -50%) rotate(-135deg);
}
.newsPager a:first-child:last-child::before, .newsPager a:last-child:last-child::before {
  left: 44%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.newsPager a:first-child.-disabled, .newsPager a:last-child.-disabled {
  background-color: #c6c6c6;
  border-color: #c6c6c6;
}
.newsPager a:first-child.-disabled::before, .newsPager a:last-child.-disabled::before {
  border-color: #fff;
}
.newsPager > span {
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: bold;
  color: #0b56a4;
}

.newsHomeNavCategory {
  max-width: var(--base-width);
  margin: 0 auto;
}
.newsHomeNavCategory a {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: bold;
}
.newsHomeNavCategory a.isActive {
  color: #0054a6;
}
.newsHomeNavCategory .select-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 8px;
}
.newsHomeNavCategory .select-wrap p {
  white-space: nowrap;
  font-size: 1.4rem;
  line-height: 1.7;
  font-weight: bold;
}
.newsHomeNavCategory .select-wrap .select {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: 130px;
  height: 40px;
  border: 1px solid var(--color-border);
}
.newsHomeNavCategory .select-wrap .select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  display: block;
  width: 0.4em;
  height: 0.4em;
  border-top: 1px solid #0b56a4;
  border-right: 1px solid #0b56a4;
  transform: translateY(-80%) rotate(135deg);
}
.newsHomeNavCategory .select-wrap .select select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 100%;
  padding: 0 calc(16px + 1em) 0 16px;
  border: none;
  text-overflow: ellipsis;
  font-size: 1.5rem;
}

.newsHomeList {
  padding: 40px 0;
  background-color: #f8f8f8;
}
.newsHomeList > *:nth-child(1) {
  display: grid;
  grid-template-columns: 100%;
  gap: 40px 0;
  max-width: var(--base-width);
  margin: 0 auto;
  padding: 0 32px;
}
.newsHomeList article a {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 0;
}
.newsHomeList article a > * {
  width: 100%;
}
.newsHomeList article a > *:nth-child(1) {
  aspect-ratio: 311/175;
}
.newsHomeList article a > *:nth-child(1) img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.newsHomeList article h2 {
  font-size: 1.5rem;
  line-height: 1.8;
  font-weight: bold;
}

.newsDetailHead {
  max-width: var(--base-width);
  margin: 0 auto;
  padding: 32px;
}
.newsDetailHead h1 {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: bold;
}
.newsDetailHead .newsTag {
  margin-top: 16px;
}

.newsDetailWrap {
  max-width: var(--base-width);
  margin: 0 auto;
  padding: 0 32px;
}

.newsDetailThumb img {
  width: 100%;
  margin-top: 0 !important;
}

.newsDetail {
  font-family: var(--font-ja);
  word-wrap: break-word;
}
.newsDetail > *:first-child {
  margin-top: 0;
}
.newsDetail h2 {
  margin-top: 32px;
  padding-bottom: 0.6em;
  border-bottom: 1px solid #cdcdcd;
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: bold;
}
.newsDetail h3 {
  margin-top: 32px;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: bold;
}
.newsDetail h4 {
  margin-top: 32px;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
}
.newsDetail p {
  margin-top: 24px;
  font-size: 1.5rem;
  line-height: 1.8;
}
.newsDetail a {
  word-break: break-all;
  font-weight: bold;
  text-decoration: underline;
}
.newsDetail a:hover {
  color: var(--color-link);
}
.newsDetail a[target=_blank] {
  padding-right: 1.4em;
  background: url(/assets/img/common/ico-blank.svg) no-repeat right;
  background-size: 1em;
}
.newsDetail a[target=_blank]:hover {
  background-image: url(/assets/img/common/ico-blank-blue.svg);
}
.newsDetail a[href$=".pdf"] {
  padding-right: 2.6em;
  background: url(/assets/img/common/ico-pdf.svg) no-repeat right;
}
.newsDetail a[href$=".pdf"]:hover {
  background-image: url(/assets/img/common/ico-pdf-blue.svg);
}
.newsDetail img {
  margin-top: 24px;
}
.newsDetail ul {
  margin-top: 24px;
}
.newsDetail ul li {
  margin-left: 1em;
  text-indent: -1em;
  font-size: 1.5rem;
  line-height: 1.8;
}
.newsDetail ul li::before {
  content: "•";
  margin-right: 0.4em;
  margin-left: 0.2em;
}
.newsDetail ul li:not(:first-child) {
  margin-top: 8px;
}
.newsDetail ol {
  counter-reset: item;
  margin-top: 24px;
}
.newsDetail ol li {
  position: relative;
  margin-left: 1em;
  text-indent: -1em;
  font-size: 1.5rem;
  line-height: 1.8;
}
.newsDetail ol li::before {
  counter-increment: item;
  content: counter(item);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  margin-right: 0.2em;
  border: 1px solid #1c1c1c;
  border-radius: 50%;
  text-indent: 0;
  font-size: 0.8em;
  line-height: 1;
}
.newsDetail ol li:not(:first-child) {
  margin-top: 8px;
}
.newsDetail table {
  width: 100%;
  margin-top: 24px;
  border: 1px solid #c6c6c6;
  font-size: 1.5rem;
  line-height: 1.8;
}
.newsDetail table th {
  background-color: #efefef;
}
.newsDetail table th, .newsDetail table td {
  padding: 0.8em;
  border: 1px solid #c6c6c6;
  text-align: left;
}

.newsDetailNav {
  display: grid;
  grid-template-columns: 102px auto 102px;
  grid-template-rows: repeat(2, 1fr);
  margin-top: 48px;
  padding: 32px 0 80px;
}
.newsDetailNav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.1em;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: bold;
}
.newsDetailNav a::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #1c1c1c;
  border-right: 1px solid #1c1c1c;
}
.newsDetailNav a.-prev::after {
  left: 0;
  transform: translateY(-50%) rotate(-135deg);
}
.newsDetailNav a.-next {
  grid-column: 3/4;
}
.newsDetailNav a.-all {
  grid-column: 1/4;
  border-top: 1px solid #cdcdcd;
  border-bottom: 1px solid #cdcdcd;
}
.newsDetailNav a.-next::after, .newsDetailNav a.-all::after {
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}

.newsDetailNavCategory {
  margin: 0 -32px;
  padding: 32px 32px 40px;
  background-color: #f8f8f8;
}
.newsDetailNavCategory p, .newsDetailNavCategory a {
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.newsDetailNavCategory p {
  padding-bottom: 1em;
}
.newsDetailNavCategory a {
  position: relative;
  display: flex;
  align-items: center;
  height: 3.2em;
}
.newsDetailNavCategory a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #1c1c1c;
  border-right: 1px solid #1c1c1c;
  transform: translateY(-50%) rotate(45deg);
}
.newsDetailNavCategory ul {
  padding-left: 16px;
  border-top: 1px solid #cdcdcd;
  border-bottom: 1px solid #cdcdcd;
}
.newsDetailNavCategory ul li:not(:first-child) {
  border-top: 1px solid #cdcdcd;
}

.othersLink .link {
  font-weight: 700;
  word-break: break-all;
}

.othersUl {
  margin: 40px 0;
}

.others .container__inner {
  max-width: 100%;
}
.others p + p:not(.caution) {
  margin-top: 40px;
}
.others p + p:not(.caution).only-link {
  margin-top: 24px;
}
.others .caution {
  font-size: 1.2rem;
  margin-top: 6px;
}
.others .caution.has-margin {
  margin-top: 56px;
}
.others .right {
  text-align: right;
}

.privacy-mark {
  padding: 24px;
  border: 1px solid #C6C6C6;
  display: flex;
  gap: 0 24px;
  margin-top: 56px;
}
.privacy-mark p {
  font-size: 1.2rem;
  line-height: 21.6px;
}

.othersdlBlock + .othersdlBlock {
  margin-top: 24px;
}
.sitemapDl:first-child dt {
  padding-top: 0;
  border-top: none;
}
.sitemapDl:last-child {
  border-top: 1px solid #C6C6C6;
  padding-top: 48px;
}
.sitemapDl:last-child dd {
  padding-left: 0;
}
.sitemapDl:last-child dd a {
  padding: 0;
  line-height: 3;
}
.sitemapDl:last-child dd a:not(:last-child) {
  border: none;
}
.sitemapDl:not(:last-child) dd a {
  position: relative;
}
.sitemapDl:not(:last-child) dd a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #1C1C1C;
  border-right: 1px solid #1C1C1C;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: rotate(45deg) translateY(-50%);
}
.sitemapDl dt {
  font-size: 1.8rem;
  font-weight: 700;
  padding: 16px 0;
  border-bottom: 1px solid #C6C6C6;
  border-top: 1px solid #C6C6C6;
}
.sitemapDl dd {
  display: flex;
  flex-direction: column;
  padding-left: 16px;
}
.sitemapDl dd a {
  font-size: 1.3rem;
  padding: 12.5px 0;
  font-weight: 700;
}
.sitemapDl dd a:not(:last-child) {
  border-bottom: 1px solid #C6C6C6;
}

.recruitCards {
  max-width: var(--base-width);
  margin: 0 auto;
  padding: 0 32px;
  font-family: var(--font-ja);
}
.recruitCards li {
  border-left: 4px solid #0054A6;
}
.recruitCards li.-light {
  border-left-color: #0093DC;
}
.recruitCards .card {
  display: block;
  padding: 32px 32px 40px;
  background-color: #fff;
}
.recruitCards .card p:nth-child(1) {
  margin-top: 0;
  font-size: 2.2rem;
  line-height: 1.9;
  font-weight: bold;
}
.recruitCards .card p:nth-child(2) {
  margin-top: 8px;
  font-size: 1.5rem;
  line-height: 1.8;
}
.recruitCards .card p:nth-child(3) {
  margin-top: 32px;
}

.recruitLocalNav {
  padding-bottom: 80px;
  background-color: var(--color-bg);
}
.recruitHomeHeadingBlock h1 {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  margin-top: 32px;
  padding: 0 32px;
}
.recruitHomeHeadingBlock h1 .en {
  margin-top: -0.1em;
  font-size: 4.2rem;
  line-height: 1.2;
  font-weight: bold;
}
.recruitHomeHeadingBlock h1 .ja {
  margin-top: -0.5em;
  font-size: 1.2rem;
  line-height: 2;
  font-weight: bold;
}
.recruitHomeHeadingBlock img {
  width: 100%;
  height: auto;
}

.recruitHomeMessage {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
  max-width: var(--base-width);
  margin: 57px auto 0;
  padding: 0 32px;
}
.recruitHomeMessage__image p {
  margin-top: 16px;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: bold;
}
.recruitHomeMessage__text p {
  margin-top: -0.4em;
  font-size: 1.5rem;
  line-height: 1.8;
}
.recruitHomeMessage__text p:not(:first-child) {
  margin-top: calc(32px - 0.4em);
}

.recruitHomeNav {
  margin-top: 56px;
}
.recruitHomeNav a {
  display: flex;
  justify-content: space-between;
}
.recruitHomeNav a img {
  width: 7px;
  margin-right: 2px;
  transform: rotate(90deg);
  transition: transform 200ms;
}

.recruitHomeBottomNav {
  z-index: 2;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 50%;
  margin-left: auto;
  transition: bottom 0.2s ease;
}
.recruitHomeBottomNav:not(.isVisible) {
  bottom: -56px;
}
.recruitHomeBottomNav a {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  height: 56px;
  padding: 16px;
  background-image: url(/assets/img/common/ico-blank-white.svg);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: right 16px center;
  font-family: var(--font-ja);
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  color: #fff;
  background-color: #0093dc;
}

.recruitHomeSection {
  padding: 42px 0 70px;
}
.recruitHomeSection.-bg {
  background-color: var(--color-bg);
}
.recruitHomeSection .recruitCards {
  margin-top: 38px;
}
.recruitHomeSection img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.recruitHomeSection.-about {
  padding-bottom: 0;
}
.recruitHomeSection.-about > p {
  max-width: var(--base-width);
  margin: 0 auto;
  padding: 0 32px;
}
.recruitHomeSection.-about > p:nth-of-type(1) {
  margin-top: 32px;
  font-size: 3.4rem;
  line-height: 1.38;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.recruitHomeSection.-about > p:nth-of-type(2) {
  margin-top: calc(16px - 0.25em);
  font-size: 1.5rem;
  line-height: 2;
}
.recruitHomeSection.-style section {
  position: relative;
  max-width: var(--base-width);
  margin: 32px auto 0;
  padding: 0 32px 32px;
}
.recruitHomeSection.-style section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 64px);
  height: 1px;
  background-color: #c6c6c6;
}
.recruitHomeSection.-style section > *:not(:first-child) {
  display: block;
  margin-top: 12px;
}
.recruitHomeSection.-style h3 {
  margin-top: -0.32em;
  font-size: 2.1rem;
  line-height: 1.64;
  font-weight: bold;
}
.recruitHomeSection.-style li {
  text-indent: -1em;
  margin-left: 1em;
  font-size: 1.5rem;
  line-height: 2;
}
.recruitHomeSection.-style li::before {
  content: "•";
  margin-right: 0.4em;
  margin-left: 0.2em;
}
.recruitHomeSection.-interview > p {
  max-width: var(--base-width);
  margin: calc(32px - 0.25em) auto 0;
  padding: 0 32px;
  font-size: 1.5rem;
  line-height: 2;
}
.recruitHomeSection.-community {
  background: linear-gradient(to top, var(--color-bg) 0%, var(--color-bg) 224px, transparent 224px, transparent 100%);
}

.recruitHomeAboutCards {
  margin-top: 40px;
  background-color: var(--color-bg);
}
.recruitHomeAboutCards__inner {
  max-width: var(--base-width);
  margin: 0 auto;
  padding: 40px 32px 44px;
}
.recruitHomeAboutCards h3 {
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.recruitHomeAboutCards ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin: 32px -32px 0;
}
.recruitHomeAboutCards li {
  display: grid;
  grid-template-rows: 36px 60px auto;
  padding: 16px;
  background-color: #fff;
}
.recruitHomeAboutCards li > * {
  justify-self: center;
}
.recruitHomeAboutCards li h4 {
  font-size: 1.8rem;
  line-height: 1.38;
  font-weight: bold;
  color: #0054a6;
}
.recruitHomeAboutCards li h4 span {
  padding-bottom: 0.4em;
  border-bottom: 1px solid #0054a6;
}
.recruitHomeAboutCards li div {
  align-self: center;
}
.recruitHomeAboutCards li p {
  align-self: end;
  font-size: 1.9rem;
  font-weight: bold;
}
.recruitHomeAboutCards li p span {
  margin: 0 1px;
}
.recruitHomeAboutCards li p span.-large {
  font-size: 3.8rem;
}
.recruitHomeAboutCards li p.-min {
  font-size: 1.3rem;
}
.recruitHomeAboutCards li p.-min span.-large {
  font-size: 2.9rem;
}
.recruitHomeAboutCards .note {
  margin-top: 8px;
  text-align: right;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: bold;
}

.recruitHomeModel {
  max-width: var(--base-width);
  margin: 0 auto;
  padding: 0 32px;
}
.recruitHomeModel__image {
  margin: 32px -32px 0;
}
.recruitHomeModel__text {
  margin-top: 32px;
}
.recruitHomeModel__text p:nth-child(1) {
  margin-top: -0.25em;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.recruitHomeModel__text p:nth-child(2) {
  margin-top: 16px;
  font-size: 1.5rem;
  line-height: 1.8;
}
.recruitHomeModel__text p:nth-child(3) {
  margin-top: 32px;
}

.recruitHomeInterview {
  max-width: var(--base-width);
  margin: 32px auto 0;
  padding: 0 32px;
}
.recruitHomeInterview h3 {
  position: relative;
  font-size: 2.2rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.recruitHomeInterview h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -32px;
  width: 20px;
  height: 1px;
  background-color: #0054a6;
}
.recruitHomeInterview > ul {
  margin-top: 24px;
}
.recruitHomeInterview__card.-commingsoon .recruitHomeInterview__image p {
  background-color: #fff;
  color: #0054a6;
}
.recruitHomeInterview__image {
  position: relative;
}
.recruitHomeInterview__image p {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: #0054a6;
  font-size: 1.5rem;
  line-height: 1.8;
  font-weight: bold;
  color: #fff;
}
.recruitHomeInterview__text p:nth-child(1) {
  margin-top: calc(24px - 0.25em);
  font-size: 2rem;
  line-height: 1.5;
}
.recruitHomeInterview__text p:nth-child(3) {
  font-size: 2.2rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.recruitHomeInterview__text ul {
  display: flex;
  align-items: center;
  margin-top: 16px;
}
.recruitHomeInterview__text ul li {
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: bold;
}
.recruitHomeInterview__text ul li:not(:last-child) {
  margin-right: 2.2em;
  border-top: none;
  position: relative;
}
.recruitHomeInterview__text ul li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.8em;
  width: 1.4em;
  border-top: 1px solid #8e8e8e;
  transform: translateY(-50%) rotate(-45deg);
  opacity: 50%;
}

.recruitHomeCommunity {
  display: grid;
  gap: 32px;
  max-width: var(--base-width);
  margin: 32px auto;
  padding: 0 32px;
}
.recruitHomeCommunity p:nth-of-type(1) {
  font-size: 1.5rem;
  line-height: 1.8;
}
.recruitHomeCommunity p:nth-of-type(2) {
  margin-top: 16px;
}

.recruitStaffHeadingBlock {
  font-family: var(--font-ja);
}
.recruitStaffHeadingBlock__tag p {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: #0054A6;
  font-size: 1.5rem;
  line-height: 1.8;
  font-weight: bold;
  color: #fff;
}
.recruitStaffHeadingBlock h1 {
  margin: -0.3em 0;
  font-size: 2.4rem;
  line-height: 1.6;
  font-weight: bold;
}
.recruitStaffHeadingBlock__box {
  display: flex;
  align-items: center;
  gap: 0 24px;
}
.recruitStaffHeadingBlock__name {
  margin: -0.4em 0;
  font-size: 2.2rem;
  line-height: 1.8;
  font-weight: bold;
}
.recruitStaffHeadingBlock ul {
  display: flex;
  align-items: center;
}
.recruitStaffHeadingBlock ul li {
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: bold;
}
.recruitStaffHeadingBlock ul li:not(:last-child) {
  margin-right: 2.2em;
  border-top: none;
  position: relative;
}
.recruitStaffHeadingBlock ul li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.8em;
  width: 1.4em;
  border-top: 1px solid #8e8e8e;
  transform: translateY(-50%) rotate(-45deg);
  opacity: 50%;
}

.recruitStaff {
  margin: 64px auto 0;
  padding: 0 32px 62px;
  font-family: var(--font-ja);
  background: linear-gradient(to top, var(--color-bg) 0%, var(--color-bg) 150px, transparent 150px, transparent 100%);
}
.recruitStaff section {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}
.recruitStaff section:not(:first-child) {
  margin-top: 64px;
}
.recruitStaff h2 {
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: bold;
}
.recruitStaff h2 .memo {
  display: block;
  font-size: 1.7rem;
}
.recruitStaff p {
  margin-top: 24px;
  font-size: 1.5rem;
  line-height: 1.8;
}
.recruitStaff img {
  max-width: 100%;
  margin-top: 24px;
}
.recruitStaff .day-schedule-wrap {
  width: 100%;
  overflow-x: scroll;
}
.recruitStaff .day-schedule {
  width: 880px;
  background-color: #fff;
}
.recruitStaff .day-schedule tr th,
.recruitStaff .day-schedule tr td {
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-ja);
  font-size: 1.5rem;
  line-height: 1.8;
  padding: 10px;
  text-align: left;
}
.recruitStaff .day-schedule.col2 tr th {
  width: 25%;
}
.recruitStaff .day-schedule.col2 tr td.detail {
  width: 75%;
}
.recruitStaff .day-schedule.col3 tr th {
  width: 12%;
}
.recruitStaff .day-schedule.col3 tr td.detail {
  width: 65%;
}

.recruiteCareerplanFigure {
  background-color: var(--color-bg);
}
.recruiteCareerplanFigure__inner {
  box-sizing: border-box;
  max-width: var(--base-width);
  margin: 0 auto;
  background-color: #fff;
}
.recruiteCareerplanFigure dl {
  padding: 40px 32px;
  font-family: var(--font-ja);
}
.recruiteCareerplanFigure dl dt {
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: bold;
}
.recruiteCareerplanFigure dl dd {
  margin-top: calc(17px - 0.4em);
  font-size: 1.5rem;
  line-height: 1.8;
}
.recruiteCareerplanFigure__image div {
  padding: 24px 32px;
  background-color: #efefef;
}
.recruiteCareerplanFigure__image img {
  max-width: 100%;
  height: auto;
}

.recruiteCareerplanSupport {
  display: grid;
  justify-content: start;
  gap: 32px 0;
  max-width: var(--base-width);
  margin: 0 auto;
  padding: 40px 32px;
}
.recruiteCareerplanSupport .headingLv2WithSub {
  margin: 0;
  padding: 0;
}
.recruiteCareerplanSupport p {
  font-size: 1.5rem;
  line-height: 1.8;
}
.recruiteCareerplanSupport ul {
  margin-top: 16px;
  font-family: var(--font-ja);
}
.recruiteCareerplanSupport li {
  text-indent: -1em;
  margin-left: 1em;
  font-size: 1.8rem;
  line-height: 1.5;
}
.recruiteCareerplanSupport li::before {
  content: "•";
  margin-right: 0.4em;
  margin-left: 0.2em;
}
.recruiteCareerplanSupport__image {
  grid-row: 2/3;
}
.recruiteCareerplanSupport img {
  max-width: 100%;
  height: auto;
}

.recruiteCareerplanCase {
  padding: 40px 0;
  background-color: var(--color-bg);
}
.recruiteCareerplanCase section {
  box-sizing: border-box;
  max-width: var(--base-width);
  margin: 0 auto;
  padding: 24px 32px;
  background-color: #fff;
}
.recruiteCareerplanCase section:first-of-type {
  margin-top: 32px;
  padding-top: 40px;
}
.recruiteCareerplanCase h2 {
  max-width: var(--base-width);
  margin: 0 auto;
  padding: 0 32px;
}
.recruiteCareerplanCase h3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid #cdcdcd;
}
.recruiteCareerplanCase h3 span:nth-child(1) {
  padding: 0.4em 0.7em;
  background-color: #0054a6;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: bold;
  color: #fff;
}
.recruiteCareerplanCase h3 span:nth-child(2) {
  font-size: 2.2rem;
  line-height: 1.45;
  font-weight: bold;
}
.recruiteCareerplanCase h3 svg {
  margin: 0 2px;
}
.recruiteCareerplanCase dl {
  margin-top: 32px;
}

.serviceHome {
  padding: 24px 0 0;
  margin: 6px 0 0;
  background-color: var(--color-bg);
}
.serviceHome__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.serviceHomeSection:not(:last-child) {
  margin-bottom: 24px;
}
.serviceHomeSection__title {
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 24px;
  font-size: 2rem;
  padding: 0 32px;
  position: relative;
  display: flex;
  align-items: center;
}
.serviceHomeSection__title.-orange::before {
  background-color: #F16100;
}
.serviceHomeSection__title.-lightBlue::before {
  background-color: #00B2CE;
}
.serviceHomeSection__title::before {
  content: "";
  display: block;
  width: 3px;
  height: 24px;
  background-color: #0091DF;
  margin-right: 10px;
}

.serviceHomeCard {
  background-color: #fff;
}
.serviceHomeCard__inner {
  padding: 32px 32px 96px;
}
.serviceHomeCard__inner .serviceHomeCardBlock:not(:last-child) {
  margin-bottom: 64px;
}

.serviceHomeCardBlock__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-main);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 17px;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}
.serviceHomeCardBlock__img {
  max-width: 364px;
  width: 100%;
  margin: 0 auto 32px;
}
.serviceHomeCardBlock__img img {
  max-width: 100%;
  height: auto;
}
.serviceHomeCardBlock__img p {
  margin-top: 8px;
  font-family: var(--font-ja);
  font-size: 1.2rem;
  line-height: 2;
}
.serviceHomeCardBlock__logo img {
  max-width: 100%;
}
.serviceHomeCardBlock__catch {
  margin: 32px 0 25px;
}
.serviceHomeCardBlock__catch strong {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.07em;
}
.serviceHomeCardBlock__desc {
  font-size: 1.5rem;
  line-height: 30px;
  margin-bottom: 41px;
  line-height: 1.8;
}

.sustainability-greeting {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 32px 0;
}
.sustainability-greeting__img img {
  max-width: 100%;
}
.sustainability-greeting__txt h2 {
  margin-bottom: 40px;
}
.sustainability-greeting__txt h2 strong {
  font-size: 2rem;
  line-height: 30px;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  font-weight: 700;
  display: block;
}
.sustainability-greeting__txt h2 span {
  font-size: 1.3rem;
  font-weight: 700;
  display: block;
}
.sustainability-greeting__txt p {
  font-size: 1.5rem;
  line-height: 27px;
}

.sustainability-esg-block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 25px;
}
.sustainability-esg-block + .sustainability-esg-block {
  margin-top: 40px;
}
.sustainability-esg-block figure {
  flex-shrink: 0;
}
.sustainability-esg-block img {
  width: 100%;
  max-width: 143px;
  border: 1px solid #C6C6C6;
}
.sustainability-esg-block ul {
  width: 100%;
}
.sustainability-esg-block ul li {
  font-size: 1.5rem;
  font-weight: 500;
  position: relative;
  padding-left: 1.5rem;
  line-height: 27px;
}
.sustainability-esg-block ul li + li {
  margin-top: 9px;
}
.sustainability-esg-block ul li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.sustainability-esg-works {
  background-color: #F8F8F8;
  padding: 40px 32px;
  margin-top: 56px;
  margin-left: -32px;
  margin-bottom: -64px;
  box-sizing: border-box;
  width: calc(100% + 64px);
}
.sustainability-esg-works__title {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 32px;
}
.sustainability-esg-works__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.sustainability-esg-works__list li {
  width: 100%;
  background-color: #fff;
  padding: 24px 14px 24px 24px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.sustainability-esg-works__list li figure img {
  max-width: 56px;
}
.sustainability-esg-works__list li dl {
  padding-left: 23px;
  margin-left: 23px;
  position: relative;
}
.sustainability-esg-works__list li dl::before {
  content: "";
  display: block;
  width: 1px;
  height: 88px;
  background-color: #C6C6C6;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.sustainability-esg-works__list li dl dt {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0054A6;
  line-height: 21px;
}
.sustainability-esg-works__list li dl dd {
  line-height: 1.15;
}
.sustainability-esg-works__list li dl dd * + * {
  margin-left: 3px;
}
.sustainability-esg-works__list li dl dd span {
  font-size: 1.7rem;
  font-weight: 900;
}
.sustainability-esg-works__list li dl dd span.ml8 {
  margin-left: 8px;
}
.sustainability-esg-works__list li dl dd strong {
  font-size: 3.8rem;
  font-weight: 700;
  font-family: var(--font);
}
.sustainability-esg-works__list li dl dd strong.small {
  font-size: 2.8rem;
}
.sustainability-esg-works__caution {
  margin-top: 16px;
  font-size: 1.2rem;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px){
  .sp-hidden {
    display: none;
  }
  .aboutusHomeSection.-ts .aboutusHomeSection__inner {
    margin-top: 0;
  }
  .aboutusHistoryUl li p:first-child {
    margin: -0.25em 0;
  }
  .aboutusHistoryUl li p:not(:first-child) {
    margin: calc(10px - 0.25em) 0 -0.25em;
  }
  .contact-form .headingLv4:not(:first-child) {
    margin-top: 32px;
  }
  .newsHomeNavCategory {
    padding: 0 32px 48px;
  }
  .newsHomeNavCategory ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 24px;
  }
  .newsHomeNavCategory ul li {
    border-bottom: 1px solid #c6c6c6;
  }
  .newsHomeNavCategory a {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 3.2em;
  }
  .newsHomeNavCategory a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2px;
    display: block;
    width: 0.5em;
    height: 0.5em;
    border-top: 1px solid #1c1c1c;
    border-right: 1px solid #1c1c1c;
    transform: translateY(-50%) rotate(45deg);
  }
  .newsHomeNavCategory .select-wrap {
    margin-top: 24px;
  }
  .recruitCards li:not(:first-child) {
    margin-top: 32px;
  }
  .recruitHomeSection.-community .headingLv2WithSub .en {
    letter-spacing: -0.02em;
  }
  .recruitHomeInterview > ul > li:not(:first-child) {
    margin-top: 32px;
  }
  .recruitStaffHeadingBlock {
    display: flex;
    flex-direction: column;
  }
  .recruitStaffHeadingBlock__text {
    order: 2;
    position: relative;
    top: -35px;
    display: flex;
    flex-direction: column;
    gap: 24px 0;
    margin-bottom: -32px;
    padding: 0 32px;
  }
  .recruitStaffHeadingBlock__image {
    order: 1;
  }
  .recruiteCareerplanFigure dl dt:not(:first-child) {
    margin-top: 33px;
  }
}
@media screen and (min-width: 768px){
  .pc-hidden {
    display: none;
  }
  .breadcrumb {
    margin: 60px auto 16px;
  }
  .breadcrumb ul {
    overflow-x: auto;
  }
  .button:hover > span:last-child::before {
    width: 56px;
    height: 56px;
  }
  .button:hover > span:last-child::after {
    animation: ripple 1s infinite;
  }
  .button:hover .button__ico {
    display: block;
  }
  .button > span:last-child::before {
    background-color: #0093dc;
    width: 9px;
    height: 9px;
    transition: width 200ms, height 200ms;
  }
  .button__ico {
    display: none;
    background-image: url(/assets/img/common/ico-button-white.svg);
  }
  .button[target=_blank] .button__ico {
    background-image: url(/assets/img/common/ico-blank-white.svg);
  }
  .card:hover .button > span:last-child::before {
    width: 56px;
    height: 56px;
  }
  .card:hover .button > span:last-child::after {
    animation: ripple 1s infinite;
  }
  .card:hover .button__ico {
    display: block;
  }
  .container {
    padding-bottom: 30px;
  }
  .container__inner {
    margin: 57px auto 110px;
    padding: 80px;
  }
  .container__inner.child {
    padding: 48px;
  }
  .container + .contact {
    margin-top: 114px;
  }
  .headingLv1 {
    padding-top: 58px;
  }
  .headingLv1:not(.-large) {
    padding-bottom: 82px;
  }
  .headingLv1 h1 {
    gap: 24px;
  }
  .headingLv1 h1 .en {
    font-size: 5.8rem;
  }
  .headingLv1 h1 .ja {
    font-size: 1.4rem;
  }
  .headingLv1__text {
    margin-top: 80px;
    padding: 80px 32px 24px;
  }
  .headingLv1__text .heading {
    font-size: 3.1rem;
  }
  .headingLv1__text .text:not(:first-child) {
    margin-top: calc(24px - 0.5em);
  }
  .headingLv1__image {
    aspect-ratio: 1243/440;
    margin-top: 68px;
  }
  .headingLv1__image + .headingLv1__text {
    top: -190px;
    margin-bottom: -190px;
    padding: 246px 32px 80px;
  }
  .-min-width-311 .headingLv1 h1 {
    min-width: 0;
  }
  .headingLv2 {
    margin-top: 80px;
    font-size: 3.2rem;
  }
  .headingLv2WithSub {
    margin-right: auto;
    margin-left: auto;
  }
  .headingLv2WithSub .en {
    font-size: 3.7rem;
  }
  .headingLv3 {
    font-size: 2.6rem;
  }
  .headingLv3.-sustainability strong {
    font-size: 2.8rem;
  }
  .historyDl {
    grid-template-columns: 94px auto;
  }
  .historyDl dd {
    padding-left: 44px;
  }
  .layout-wrapper .container__inner > section:not(:first-child) {
    margin-top: 72px;
  }
  .layout-wrapper .headingLv3 + * {
    margin-top: 40px;
  }
  .layout-grid {
    gap: 56px 36px;
  }
  .layout-grid.-col2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .layout-grid.-col3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .lead {
    margin: 0 auto 80px;
    padding: 80px 32px 0;
  }
  .localNav {
    max-width: var(--base-width);
    margin: 80px auto 68px;
  }
  .localNav ul {
    display: flex;
    justify-content: center;
    gap: 0 80px;
    padding: 32px 0;
    border-top: 1px solid #c6c6c6;
    border-bottom: 1px solid #c6c6c6;
  }
  .localNav li:not(:first-child) {
    border-top: none;
    position: relative;
  }
  .localNav li:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -60px;
    width: 38px;
    border-top: 1px solid #8e8e8e;
    transform: translateY(-50%) rotate(-45deg);
    opacity: 50%;
  }
  .localNav a:hover {
    text-decoration: underline;
  }
  .simpleDl {
    display: grid;
    grid-template-columns: 14% auto;
  }
  .simpleDl dt {
    margin-top: 0;
    padding-right: 1em;
  }
  .simpleDl dd:not(:first-of-type) {
    margin-top: 21px;
    padding-top: 21px;
    border-top: 1px solid var(--color-border);
  }
  .simpleOl:not(:first-child) {
    margin-top: 72px;
  }
  .simpleOl > li + li {
    margin-top: 23px;
  }
  .simpleOl > li > ul {
    margin: 40px 0;
  }
  .simpleOl > li > ol > li > ol {
    padding-left: 3.5rem;
  }
  .contact {
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 0 168px 0 56px;
    max-width: var(--base-width);
    height: 180px;
    margin: 0 auto;
  }
  .contact:hover span::before {
    width: 56px;
    height: 56px;
  }
  .contact:hover span::after {
    animation: ripple 1s infinite;
  }
  .contact:hover img {
    display: block;
  }
  .contact div {
    gap: 0;
    padding: 0;
    border-bottom: 0;
    margin-bottom: 0;
  }
  .contact div::after {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.5);
    vertical-align: middle;
    width: 1px;
    height: 40px;
    margin: 0 40px;
    content: "";
    transform: rotate(40deg);
  }
  .contact div p:first-of-type {
    font-size: 4rem;
  }
  .contact div p:nth-of-type(2) {
    font-size: 1.3rem;
    white-space: nowrap;
    margin-left: 24px;
  }
  .contact span {
    position: absolute;
    right: 84px;
  }
  .contact span::before {
    background-color: #fff;
    width: 9px;
    height: 9px;
    transition: width 200ms, height 200ms;
  }
  .contact span::after {
    width: 56px;
    height: 56px;
  }
  .contact img {
    display: none;
  }
  .contact > p {
    font-size: 1.4rem;
  }
  footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 59px;
    padding-bottom: 59px;
    max-width: var(--base-width);
    margin: 0 auto;
  }
  footer a:hover {
    text-decoration: underline;
  }
  footer p {
    line-height: 1.5;
  }
  header {
    padding: 0 0 0 38px;
    width: auto;
    height: 88px;
  }
  header a {
    transition: opacity 200ms;
  }
  header a:hover {
    opacity: 0.8;
  }
  header img {
    width: 173px;
  }
  header button {
    display: none;
  }
  main {
    padding-top: 88px;
  }
  .isMenuOpened {
    overflow: visible !important;
  }
  .isMenuOpened nav {
    top: 0;
  }
  nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: saturate(180%) blur(5px);
            backdrop-filter: saturate(180%) blur(5px);
    padding: 0 64px 0 0;
    height: 88px;
    top: 0;
    overflow: visible;
    visibility: visible;
    opacity: 1;
  }
  nav .nav {
    display: flex;
    gap: 24px;
    margin-bottom: 0;
  }
  nav .nav li {
    border-bottom: 0;
  }
  nav .nav > li:last-child {
    display: block;
  }
  nav .nav > li > a {
    position: relative;
    font-size: 1.4rem;
  }
  nav .nav > li > a::after {
    position: absolute;
    background-color: var(--color-main);
    width: 0;
    height: 1px;
    bottom: 13px;
    left: 50%;
    content: "";
    transition: width 200ms, left 200ms;
  }
  nav .nav > li > a:hover::after {
    width: 100%;
    left: 0;
  }
  nav .nav .isActive::after {
    background-color: #0054a6;
  }
  nav .nav > li:hover span::after {
    width: 100%;
    left: 0;
  }
  nav .nav > li:hover ul {
    margin-top: 0;
    visibility: visible;
    opacity: 1;
  }
  nav .nav button {
    position: relative;
    font-size: 1.4rem;
    pointer-events: none;
  }
  nav .nav button.isOpened + ul {
    display: grid;
  }
  nav .nav span::after {
    position: absolute;
    background-color: var(--color-main);
    width: 0;
    height: 1px;
    bottom: 13px;
    left: 50%;
    content: "";
    transition: width 200ms, left 200ms;
  }
  nav .nav img {
    display: none;
  }
  nav .nav ul {
    position: absolute;
    display: grid;
    gap: 14px;
    background-color: var(--color-bg);
    font-size: 1.2rem;
    padding: 24px;
    border-top: 0;
    margin-top: -10px;
    visibility: hidden;
    opacity: 0;
    transition: margin-top 200ms, visibility 200ms, opacity 200ms;
  }
  nav .nav ul li:last-child {
    border-bottom: 0;
  }
  nav .nav ul a {
    display: inline;
    background: none;
    padding: 0;
  }
  nav .nav ul a:hover {
    text-decoration: underline;
  }
  nav .nav + div > a {
    display: none;
  }
  nav .nav + div ul a {
    position: relative;
    transition: color 200ms;
  }
  nav .nav + div ul a::after {
    position: absolute;
    background-color: var(--color-main);
    width: 0;
    height: 1px;
    bottom: 2px;
    left: 50%;
    content: "";
    transition: width 200ms, left 200ms;
  }
  nav .nav + div ul a.isActive::after {
    background-color: #0054a6;
  }
  nav .nav + div ul a:hover {
    color: var(--color-main);
  }
  nav .nav + div ul a:hover::after {
    width: 100%;
    left: 0;
  }
  nav .nav + div ul a.isActive:hover {
    color: #0054a6;
  }
  nav > button {
    display: none;
  }
  .footerNav {
    padding-top: 80px;
    padding-bottom: 83px;
  }
  .footerNav > div {
    max-width: var(--base-width);
    margin: 0 auto;
  }
  .footerNav .nav {
    display: flex;
    gap: 4.0995607613vw;
  }
  .footerNav .nav li {
    border-bottom: 0;
  }
  .footerNav .nav > li > a {
    line-height: 1.22;
    padding: 0;
    transition: color 200ms;
  }
  .footerNav .nav > li > a:hover {
    color: #0054a6;
  }
  .footerNav .nav button {
    line-height: 1.22;
    padding: 0;
    margin-bottom: 20px;
    pointer-events: none;
  }
  .footerNav .nav img {
    display: none;
  }
  .footerNav .nav ul {
    display: block;
    font-size: 1.2rem;
    line-height: 2;
    padding-left: 0;
    border-top: 0;
  }
  .footerNav .nav ul li:last-child {
    border-bottom: 0;
  }
  .footerNav .nav ul a {
    display: inline;
    background: none;
    padding: 0;
  }
  .footerNav .nav ul a:hover {
    text-decoration: underline;
  }
  .footerNav .nav + div p a {
    transition: opacity 200ms;
  }
  .footerNav .nav + div p a:hover {
    opacity: 0.8;
  }
  .footerNav .nav + div > a {
    box-sizing: border-box;
    border: 1px solid transparent;
    transition: border-color 200ms;
  }
  .footerNav .nav + div > a:hover {
    border-color: #0b56a4;
  }
  .footerNav .nav + div ul a {
    position: relative;
    transition: color 200ms;
  }
  .footerNav .nav + div ul a::after {
    position: absolute;
    background-color: var(--color-main);
    width: 0;
    height: 1px;
    bottom: 2px;
    left: 50%;
    content: "";
    transition: width 200ms, left 200ms;
  }
  .footerNav .nav + div ul a.isActive::after {
    background-color: #0054a6;
  }
  .footerNav .nav + div ul a:hover {
    color: var(--color-main);
  }
  .footerNav .nav + div ul a:hover::after {
    width: 100%;
    left: 0;
  }
  .footerNav .nav + div ul a.isActive:hover {
    color: #0054a6;
  }
  .cc-window {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 42px;
    padding: 20px 64px;
  }
  .cc-message {
    display: flex;
    gap: 42px;
    font-size: 1.3rem;
    margin-bottom: 0;
  }
  .cc-message div {
    margin-bottom: 0;
  }
  .cc-link:hover {
    text-decoration: none;
  }
  .cc-compliance {
    gap: 13px;
    font-size: 1.3rem;
  }
  .cc-btn {
    width: 102px;
    transition: color 200ms, background-color 200ms;
  }
  .cc-deny:hover {
    color: #fff !important;
    background-color: #0093dc !important;
  }
  .cc-allow:hover {
    color: #0093dc !important;
    background-color: transparent !important;
  }
  .prevTop {
    position: sticky;
    margin: 0 24px 0 auto;
    right: 24px;
    transition: background-color 200ms, bottom 200ms;
  }
  .prevTop.isScrolled {
    bottom: 24px;
  }
  .prevTop::after {
    position: absolute;
    background: url(/assets/img/common/ico-button-white.svg) no-repeat;
    width: 14px;
    height: 5px;
    content: "";
    opacity: 0;
    transition: opacity 200ms;
  }
  .prevTop:hover {
    background-color: #0093dc;
  }
  .prevTop:hover::after {
    opacity: 1;
  }
  .recruitHomeBottomNav ~ .prevTop.isScrolled {
    bottom: 80px;
  }
  .not-found {
    margin: 35px 0 112px;
  }
  .not-found__title img {
    max-width: 490px;
  }
  .not-found__title span {
    font-size: 7.5rem;
  }
  .aboutusHomeLinks {
    padding: 64px 0;
  }
  .aboutusHomeLinks__inner {
    grid-template-columns: repeat(2, auto);
    gap: 64px;
  }
  .aboutusHomeCard {
    padding: 56px;
  }
  .aboutusHomeCard__title {
    font-size: 2.7rem;
  }
  .aboutusHomeCard__link {
    margin: 32px 0 6px;
  }
  .aboutusHomeSectionMessage {
    position: relative;
    padding: 112px 0 112px;
    background: none;
  }
  .aboutusHomeSectionMessage::before {
    content: "";
    z-index: -1;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 78%;
    height: 58%;
    background-color: var(--color-bg);
  }
  .aboutusHomeMessage {
    grid-template-columns: auto 30.3571428571%;
    gap: 0 80px;
    margin-top: 64px;
  }
  .aboutusHomeMessage > *:nth-child(1) {
    grid-row: 1/5;
    grid-column: 2;
  }
  .aboutusHomeMessage > *:nth-child(2) {
    grid-row: 1/2;
    grid-column: 1;
  }
  .aboutusHomeMessage > *:nth-child(3) {
    grid-row: 2/3;
    grid-column: 1;
  }
  .aboutusHomeMessage > *:nth-child(4) {
    grid-row: 3/4;
    grid-column: 1;
  }
  .aboutusHomeMessage + .aboutusHomeMessage {
    margin-top: 64px;
  }
  .aboutusHomeMessage__image {
    justify-self: stretch;
  }
  .aboutusHomeMessage__image img {
    width: 100%;
    height: auto;
  }
  .aboutusHomeMessage__title {
    margin-top: -0.25em;
    font-size: 3.1rem;
  }
  .aboutusHomeSection {
    padding: 80px 0;
  }
  .aboutusHomeSection.-ts h2 {
    font-size: 5.8rem;
  }
  .aboutusHomeSection.-ts .aboutusHomeSection__inner {
    display: flex;
    align-items: center;
    gap: 0 64px;
  }
  .aboutusHomeSection.-mission {
    padding-top: 120px;
  }
  .aboutusHomeSection.-mission .aboutusHomeSection__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 100px;
  }
  .aboutusHomeSection.-mission h3 {
    font-size: 2rem;
  }
  .aboutusHomeSection.-mission p {
    font-size: 3rem;
  }
  .aboutusHomeSection.-vision p {
    font-size: 3rem;
  }
  .aboutusHomeSection.-value .aboutusHomeSection__inner {
    grid-template-columns: 22% auto;
    gap: 0 40px;
  }
  .aboutusHomeSection.-value h3, .aboutusHomeSection.-value dl {
    font-size: 2.8rem;
  }
  .aboutusHomeSection.-value dl {
    gap: 8px 24px;
  }
  .aboutusCompanyGrid {
    grid-template-columns: 43.75% auto;
    gap: 0 40px;
  }
  .aboutusCompanyMember p .ja {
    font-size: 2rem;
  }
  .aboutusCompanyMember.-large {
    align-items: center;
  }
  .aboutusCompanyMember.-large h3 {
    font-size: 1.7rem;
  }
  .aboutusCompanyMember.-large p .ja {
    font-size: 2.8rem;
  }
  .aboutusCompanyMember:not(.-large) {
    grid-template-columns: 49.3421052632% auto;
  }
  .aboutusCompanyMemberGrid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 24px;
    margin-top: 48px;
  }
  .aboutusCompanyMemberDl {
    padding-top: 0;
  }
  .aboutusCompanyMemberDl dt:not(:first-child) {
    margin-top: 32px;
  }
  .aboutusCompanyMapLink {
    margin-top: 1em;
  }
  .aboutusHistoryUl li {
    display: grid;
    grid-template-columns: 140px auto;
  }
  .aboutusHistoryUl li:not(:first-child) {
    margin-top: 20px;
    padding-top: 20px;
  }
  .aboutusGeLink {
    font-size: 1.6rem;
  }
  .aboutusEruboshiLogo img {
    width: 300px;
  }
  .aboutusEruboshiLogo + * {
    margin-top: 40px;
  }
  .aboutusEruboshiLinks {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 0 50px;
    margin-top: 72px;
    padding: 48px;
  }
  .aboutusEruboshiLinks ul {
    margin-top: 0;
    padding-left: 50px;
    border-left: 1px solid #c6c6c6;
  }
  .aboutusEruboshiLinks li:not(:first-child) {
    margin-top: 33px;
    padding-top: 0;
    border-top: none;
  }
  .aboutusEruboshiLink a {
    font-size: 1.6rem;
  }
  .contact-form dl dd .grid {
    grid-template-columns: 0 38% auto;
    gap: 8px 0;
  }
  .contact-form dl dd .grid input[type=radio] + label {
    min-height: 40px;
  }
  .contact-form dl dd .grid .select-wrap {
    grid-row: 1/2;
    grid-column: 3/4;
  }
  .contact-form .confirm input[type=submit] + label {
    height: 80px;
  }
  .contact-form .confirm input[type=submit].isActive + label:hover {
    background-color: #0054a6;
  }
  .contact-form.-input .headingLv4 {
    justify-content: space-between;
  }
  .contact-form.-input dl {
    grid-template-columns: 24% auto;
    gap: 40px 55px;
    align-items: start;
  }
  .contact-form.-input dl dt {
    padding-top: 6px;
  }
  .contact-form.-input .select-wrap p {
    position: absolute;
    bottom: -0.8em;
    left: 0;
    transform: translateY(100%);
  }
  .contact-form.-input .check input[type=checkbox] + label {
    font-size: 1.7rem;
  }
  .contact-form.-confirm dl {
    margin-top: 80px;
    gap: 24px 0;
  }
  .contact-form.-confirm .confirm {
    margin-top: 80px;
  }
  .contact-policy {
    margin-top: 72px;
  }
  .contact-policy__inner {
    height: 210px;
    margin-top: 24px;
    padding: 12px 24px 24px;
  }
  .contact-policy__inner .headingLv3 {
    font-size: 1.5rem;
  }
  .isHome header {
    background-color: transparent;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
  .isHome nav {
    background-color: transparent;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
  .isHome nav li:first-child {
    display: none;
  }
  .isHome nav li:nth-child(2) {
    display: none;
  }
  .isScrolled nav {
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: saturate(180%) blur(5px);
            backdrop-filter: saturate(180%) blur(5px);
    transition: background-color 400ms, -webkit-backdrop-filter 400ms;
    transition: background-color 400ms, backdrop-filter 400ms;
    transition: background-color 400ms, backdrop-filter 400ms, -webkit-backdrop-filter 400ms;
  }
  .homeHero {
    padding: 38.579795022vw 4.7584187408vw 4.3191800878vw;
    min-height: 100vh;
    margin-top: -88px;
  }
  .homeHero::before {
    width: 78.4773060029vw;
    height: 16.1786237189vw;
  }
  .homeHero h1 {
    font-size: 3.6603221083vw;
    margin-bottom: 1.756954612vw;
  }
  .homeHero a {
    position: relative;
    z-index: 1;
  }
  .homeHero dotlottie-player {
    width: 100%;
  }
  .homeNews {
    position: relative;
    padding-top: 89px;
    padding-bottom: 78px;
  }
  .homeNews::before {
    position: absolute;
    background-color: #fff;
    width: 21.5226939971vw;
    height: 100%;
    top: 0;
    right: 0;
    content: "";
  }
  .homeNews > div {
    position: relative;
    max-width: var(--base-width);
    margin: 0 auto;
  }
  .homeNews h2 {
    font-size: 6.4rem;
    margin-bottom: 46px;
  }
  .homeNews .swiper {
    margin-bottom: 23px;
  }
  .homeNews .swiper-slide:hover div:first-of-type::after {
    background-color: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
  }
  .homeNews .swiper-slide:hover span {
    transform: scale(1) translate(-50%, -50%);
  }
  .homeNews .swiper-slide:hover span::after {
    animation: ripple 1s infinite;
  }
  .homeNews .swiper-slide div:first-of-type {
    position: relative;
    margin-bottom: 24px;
  }
  .homeNews .swiper-slide div:first-of-type::after {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    content: "";
    transition: background-color 400ms, -webkit-backdrop-filter 400ms;
    transition: background-color 400ms, backdrop-filter 400ms;
    transition: background-color 400ms, backdrop-filter 400ms, -webkit-backdrop-filter 400ms;
  }
  .homeNews .swiper-wrapper span {
    position: absolute;
    display: block;
    background-color: #0091df;
    width: 56px;
    height: 56px;
    top: 50%;
    left: 50%;
    z-index: 1;
    border-radius: 50%;
    transform-origin: left top;
    transform: scale(0) translate(-50%, -50%);
    transition: transform 400ms;
  }
  .homeNews .swiper-wrapper span::after {
    position: absolute;
    box-sizing: border-box;
    border: 1px solid #0193dc;
    top: 50%;
    left: 50%;
    content: "";
    opacity: 0.5;
    transform: translate(-50%, -50%);
    border-radius: 50%;
  }
  .homeNews .swiper-wrapper span img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .homeNews h3 {
    font-size: 1.5rem;
    line-height: 1.8;
  }
  .homeNewsItem {
    justify-content: flex-end;
    margin-right: 0;
  }
  .homeNewsItem__pager {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 104px;
  }
  .homeNews .swiper-button-prev,
  .homeNews .swiper-button-next {
    display: block;
    position: static;
    color: var(--color-main);
    width: auto;
    height: auto;
    margin-top: 0;
  }
  .homeNews .swiper-button-prev::after,
  .homeNews .swiper-button-next::after {
    font-size: 1.4rem;
  }
  .homeNewsItem p {
    position: absolute;
    top: 44px;
    right: 0;
  }
  .homeAbout {
    padding-top: 112px;
    padding-bottom: 132px;
    max-width: var(--base-width);
    margin: 0 auto;
  }
  .homeAbout__title {
    font-size: 2.2rem;
    margin-bottom: 21px;
  }
  .homeAbout > div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 83px;
  }
  .homeAbout div div:first-of-type {
    width: 36.4285714286%;
    margin-bottom: 0;
  }
  .homeAbout__lead {
    font-size: 4.0995607613vw;
    line-height: 1.5;
    margin-bottom: 25px;
  }
  .homeAbout__text {
    font-size: 1.5rem;
    line-height: 1.8;
  }
  .homeAbout div div:last-of-type {
    width: 56.9642857143%;
  }
  .homeService {
    position: relative;
    padding: 109px 0 112px;
  }
  .homeService h2 {
    font-size: 6.4rem;
    padding-left: 32px;
    max-width: 1152px;
    margin: 0 auto 80px;
  }
  .homeServiceCard > div:last-of-type {
    padding: 0 56px 64px;
  }
  .homeServiceCard__tag {
    font-size: 1.5rem;
    padding: 0 10px;
    height: 34px;
    margin-bottom: 15px;
    bottom: 34px;
  }
  .homeServiceCard__notice {
    position: absolute;
    top: auto;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: var(--base-width);
    margin-bottom: 0;
    text-align: right;
    font-size: 1.4rem;
  }
  .homeService h3 {
    margin-bottom: 27px;
  }
  .homeService h3 img {
    width: 320px;
  }
  .homeService h4 {
    margin-bottom: 25px;
  }
  .homeServiceCard__text {
    font-size: 1.8rem;
    margin-bottom: 53px;
  }
  .homeServiceCard--1 {
    position: relative;
  }
  .homeServiceCard--1 > div:last-of-type {
    position: absolute;
    box-sizing: border-box;
    display: grid;
    justify-content: flex-end;
    padding: 0 56px 0 0;
    width: 100%;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
  }
  .homeServiceCard--1 .homeServiceCard__tag {
    position: static;
    justify-self: flex-start;
    margin-bottom: 32px;
  }
  .homeServiceCard--1 p:nth-of-type(2) {
    font-size: 2rem;
    margin-bottom: 62px;
  }
  .homeServiceCard--1 > picture img {
    width: 100px;
  }
  .homeServiceCards {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding-top: 120px;
    max-width: var(--base-width);
    margin: 0 auto;
  }
  .homeServiceCard--2 h4 img {
    width: 198px;
  }
  .homeServiceCard--3 h4 img {
    width: 395px;
  }
  .homeServiceCard--4 h4 img {
    width: 243px;
  }
  .homeServiceCard--5 h4 img {
    width: 112px;
  }
  .homeServiceCard--6 h4 img {
    width: 212px;
  }
  .homeService > p {
    position: absolute;
    width: var(--base-width);
    margin: 0 auto;
    top: 143px;
    right: 60px;
  }
  .homeNav {
    position: relative;
    display: flex;
    max-width: var(--base-width);
    margin: 112px auto 64px;
  }
  .homeNav::after {
    position: absolute;
    background-color: #c6c6c6;
    width: 1px;
    height: 40px;
    top: 50%;
    left: 50%;
    content: "";
    transform-origin: top;
    transform: rotate(40deg) translate(-50%, -50%);
  }
  .homeNav a {
    flex: 1;
    gap: 24px;
    padding: 0 84px 0 56px;
    height: 158px;
  }
  .homeNav a:first-of-type {
    border-bottom: 0;
  }
  .homeNav a:hover span::before {
    width: 56px;
    height: 56px;
  }
  .homeNav a:hover span::after {
    animation: ripple 1s infinite;
  }
  .homeNav a:hover img {
    display: block;
  }
  .homeNav p:first-of-type {
    font-size: 4rem;
    width: auto;
  }
  .homeNav p:nth-of-type(2) {
    font-size: 1.3rem;
    line-height: 1.5;
  }
  .homeNav span::before {
    background-color: #0093dc;
    width: 9px;
    height: 9px;
    transition: width 200ms, height 200ms;
  }
  .homeNav span::after {
    width: 56px;
    height: 56px;
  }
  .homeNav img {
    display: none;
  }
  .homeNav + .contact {
    margin-bottom: 114px;
  }
  [lang=en] .homeHero {
    padding-top: 40.5563689605vw;
  }
  [lang=en] .homeHero h1 {
    font-size: 3.074670571vw;
    margin-bottom: 3.074670571vw;
  }
  .newsPager {
    margin-top: 80px;
  }
  .newsHomeNavCategory {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 48px;
    padding: 0 32px 48px;
  }
  .newsHomeNavCategory ul {
    display: flex;
    justify-content: flex-start;
    gap: 0 80px;
  }
  .newsHomeNavCategory ul li:not(:first-child) {
    border-top: none;
    position: relative;
  }
  .newsHomeNavCategory ul li:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -60px;
    width: 38px;
    border-top: 1px solid #8e8e8e;
    transform: translateY(-50%) rotate(-45deg);
    opacity: 50%;
  }
  .newsHomeNavCategory a:hover {
    text-decoration: underline;
  }
  .newsHomeList {
    padding: 80px 0 64px;
    margin-bottom: 120px;
  }
  .newsHomeList > *:nth-child(1) {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 48px;
  }
  .newsDetailHead {
    padding: 48px 32px 80px;
  }
  .newsDetailHead__inner {
    padding-right: 28%;
  }
  .newsDetailHead h1 {
    font-size: 3.6rem;
  }
  .newsDetailWrap {
    display: grid;
    grid-template-columns: 72% auto;
    gap: 0 7%;
  }
  .newsDetailWrap .newsDetail {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .newsDetailWrap .newsDetailNav {
    grid-column: 1/3;
    grid-row: 2/3;
  }
  .newsDetailWrap .newsDetailNavCategory {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .newsDetail h2 {
    margin-top: 72px;
    padding-bottom: 1em;
    font-size: 2.6rem;
  }
  .newsDetail h3 {
    margin-top: 48px;
    font-size: 2rem;
  }
  .newsDetail h4 {
    margin-top: 48px;
  }
  .newsDetail p {
    margin-top: 16px;
  }
  .newsDetail img {
    margin-top: 48px;
  }
  .newsDetail ul {
    margin-top: 48px;
  }
  .newsDetail ol {
    margin-top: 48px;
  }
  .newsDetail table {
    margin-top: 48px;
  }
  .newsDetailNav {
    grid-template-columns: 120px auto 120px auto 120px;
    grid-template-rows: auto;
    margin-top: 136px;
    margin-bottom: 72px;
    padding: 40px 60px;
    border-top: 1px solid #cdcdcd;
    border-bottom: 1px solid #cdcdcd;
  }
  .newsDetailNav a.-next {
    grid-column: 5/6;
  }
  .newsDetailNav a.-all {
    grid-column: 3/4;
    grid-row: 1/2;
    border: none;
  }
  .newsDetailNav a.-all::after {
    display: none;
  }
  .newsDetailNavCategory {
    margin: 0;
    padding: 0;
    background-color: transparent;
  }
  .othersLink .link {
    font-size: 1.6rem;
  }
  .others .container__inner {
    max-width: var(--base-width);
  }
  .others .caution.has-margin {
    margin-top: 72px;
  }
  .privacy-mark {
    margin-top: 72px;
    align-items: center;
  }
  .sitemap {
    display: flex;
    flex-wrap: wrap;
    gap: 66px 36px;
  }
  .sitemapDl {
    width: calc(33.33% - 24px);
    max-width: 296px;
  }
  .sitemapDl:last-child {
    border-top: none;
    padding-top: 0;
  }
  .sitemapDl:last-child dd a {
    line-height: 2;
  }
  .sitemapDl:not(:last-child) dd a::after {
    display: none;
  }
  .sitemapDl dt {
    margin-bottom: 11px;
    padding: 0;
    border-bottom: none;
    border-top: none;
  }
  .sitemapDl dd {
    padding-left: 0;
  }
  .sitemapDl dd a {
    padding: 0;
    font-weight: 400;
    font-size: 1.5rem;
  }
  .sitemapDl dd a:not(:last-child) {
    border-bottom: none;
  }
  .sitemapDl dd a:hover {
    text-decoration: underline;
  }
  .recruitCards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 68px;
  }
  .recruitCards .card {
    padding: 50px 44px;
  }
  .recruitCards .card p:nth-child(1) {
    font-size: 2.7rem;
  }
  .recruitLocalNav {
    margin-bottom: 114px;
    padding-bottom: 140px;
  }
  .recruitHomeHeadingBlock {
    position: relative;
  }
  .recruitHomeHeadingBlock h1 {
    position: absolute;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
    width: 400px;
    height: 190px;
    padding-top: 16px;
    padding-left: 64px;
    background-color: #fff;
    justify-content: center;
  }
  .recruitHomeHeadingBlock h1 .en {
    font-size: 5.8rem;
  }
  .recruitHomeHeadingBlock h1 .ja {
    font-size: 1.4rem;
  }
  .recruitHomeMessage {
    margin-top: 140px;
    flex-direction: row;
    gap: 0 70px;
  }
  .recruitHomeMessage > *:nth-child(1) {
    order: 2;
  }
  .recruitHomeNav {
    margin-top: 140px;
    margin-bottom: 0;
  }
  .recruitHomeNav ul {
    border: none;
  }
  .recruitHomeNav a {
    gap: 0 8px;
  }
  .recruitHomeBottomNav {
    width: 185px;
  }
  .recruitHomeSection {
    padding: 108px 0;
  }
  .recruitHomeSection .recruitCards {
    margin-top: 64px;
  }
  .recruitHomeSection.-about > p:nth-of-type(1) {
    margin-top: 80px;
    font-size: 5.6rem;
  }
  .recruitHomeSection.-style section {
    display: grid;
    grid-template-columns: auto 35%;
    margin-top: 60px;
    padding-bottom: 60px;
  }
  .recruitHomeSection.-style section > *:not(.image) {
    grid-column: 1/2;
  }
  .recruitHomeSection.-style section .image {
    grid-column: 2/3;
    grid-row: 1/5;
  }
  .recruitHomeSection.-style section h3 {
    grid-row: 2/3;
  }
  .recruitHomeSection.-style section ul {
    grid-row: 3/4;
  }
  .recruitHomeSection.-style h3 {
    font-size: 2.6rem;
  }
  .recruitHomeSection.-style li {
    font-size: 1.8rem;
  }
  .recruitHomeSection.-interview > p {
    margin-top: 40px;
  }
  .recruitHomeSection.-community {
    background-color: var(--color-bg);
	margin-bottom: 112px;
  }
  .recruitHomeAboutCards {
    margin-top: 110px;
  }
  .recruitHomeAboutCards__inner {
    padding: 80px 32px;
  }
  .recruitHomeAboutCards h3 {
    font-size: 2.2rem;
  }
  .recruitHomeAboutCards ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 47px 57px;
    margin: 60px 0 0;
  }
  .recruitHomeAboutCards li {
    padding: 32px;
    grid-template-rows: 60px 110px auto;
  }
  .recruitHomeAboutCards li h4 {
    font-size: 2.2rem;
  }
  .recruitHomeAboutCards li div {
    display: flex;
    align-items: center;
  }
  .recruitHomeAboutCards li div img {
    transform: scale(184%);
  }
  .recruitHomeAboutCards li p {
    font-size: 4.2rem;
  }
  .recruitHomeAboutCards li p span.-large {
    font-size: 8rem;
  }
  .recruitHomeAboutCards li p.-min {
    font-size: 2.6rem;
  }
  .recruitHomeAboutCards li p.-min span.-large {
    font-size: 5.4rem;
  }
  .recruitHomeAboutCards .note {
    margin-top: 16px;
  }
  .recruitHomeModel {
    margin-top: 60px;
  }
  .recruitHomeModel__image {
    margin: 32px 0;
  }
  .recruitHomeModel__text {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    margin-top: 40px;
  }
  .recruitHomeModel__text p:nth-child(1) {
    grid-column: 1/2;
    font-size: 3.1rem;
  }
  .recruitHomeModel__text p:nth-child(2) {
    grid-column: 1/2;
  }
  .recruitHomeModel__text p:nth-child(3) {
    grid-column: 2/3;
    margin-top: 0;
    margin-right: 24px;
  }
  .recruitHomeInterview {
    margin-top: 90px;
  }
  .recruitHomeInterview h3 {
    font-size: 2.7rem;
  }
  .recruitHomeInterview h3::before {
    left: -60px;
    width: 40px;
  }
  .recruitHomeInterview > ul {
    display: grid;
    gap: 56px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
  }
  .recruitHomeCommunity {
    grid-template-columns: auto 55%;
    grid-template-rows: auto auto;
    gap: 62px;
    margin-top: 62px;
  }
  .recruitHomeCommunity div {
    grid-column: 2/3;
    grid-row: 1/4;
  }
  .recruitHomeCommunity p:nth-of-type(1) {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .recruitHomeCommunity p:nth-of-type(2) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .recruitStaffHeadingBlock h1 {
    font-size: 3.6rem;
  }
  .recruitStaffHeadingBlock {
    position: relative;
    width: 100%;
    aspect-ratio: 1366/500;
  }
  .recruitStaffHeadingBlock__text {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 24px 0;
    width: 57.1180555556%;
    padding: 50px 32px;
    background-color: #fff;
  }
  .recruitStaffHeadingBlock__image {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .recruitStaffHeadingBlock__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .recruitStaff {
    margin-top: 100px;
    padding-bottom: 155px;
    background: linear-gradient(to top, var(--color-bg) 0%, var(--color-bg) 402px, transparent 402px, transparent 100%);
  }
  .recruitStaff section:not(:first-child) {
    margin-top: 112px;
  }
  .recruitStaff h2 {
    font-size: 3rem;
  }
  .recruitStaff h2 .memo {
    display: block;
    font-size: 2rem;
  }
  .recruitStaff p {
    margin-top: 34px;
  }
  .recruitStaff img {
    margin-top: 34px;
  }
  .recruitStaff .day-schedule-wrap {
    width: 100%;
    overflow-x: auto;
  }
  .recruitStaff .day-schedule {
    width: 100%;
  }
  .recruitStaff .day-schedule tr th,
  .recruitStaff .day-schedule tr td {
    padding: 20px;
  }
  .recruiteCareerplanFigure {
    padding-bottom: 114px;
  }
  .recruiteCareerplanFigure__inner {
    padding: 80px;
  }
  .recruiteCareerplanFigure dl {
    position: relative;
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: repeat(2, 1fr);
    gap: 0 12%;
    padding: 0;
  }
  .recruiteCareerplanFigure dl::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 88%;
    background-color: #c6c6c6;
  }
  .recruiteCareerplanFigure dl dt {
    font-size: 2.7rem;
  }
  .recruiteCareerplanFigure__image {
    margin-top: 56px;
  }
  .recruiteCareerplanFigure__image div {
    padding: 55px 158px;
  }
  .recruiteCareerplanSupport {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 4%;
    padding: 120px 32px 80px;
  }
  .recruiteCareerplanSupport__image {
    grid-column: 2/3;
    grid-row: 1/4;
  }
  .recruiteCareerplanCase {
    padding: 120px 0;
  }
  .recruiteCareerplanCase section {
    margin-top: 80px;
    padding: 80px;
  }
  .recruiteCareerplanCase section:first-of-type {
    margin-top: 80px;
    padding: 80px;
  }
  .recruiteCareerplanCase h3 {
    flex-direction: row;
    gap: 16px;
    padding-bottom: 50px;
  }
  .recruiteCareerplanCase dl {
    margin-top: 50px;
  }
  .serviceHome {
    padding: 80px 0 140px;
    margin: 10px 0 112px;
  }
  .serviceHomeSection:not(:last-child) {
    margin-bottom: 112px;
  }
  .serviceHomeSection__title {
    padding: 0;
    margin-bottom: 57px;
    font-size: 3.2rem;
  }
  .serviceHomeSection__title::before {
    width: 6px;
    height: 40px;
    margin-right: 24px;
  }
  .serviceHomeCard__inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 72px 32px 80px;
  }
  .serviceHomeCardBlock__title {
    font-size: 2.6rem;
    padding-bottom: 25px;
    margin-bottom: 48px;
  }
  .serviceHomeCardBlock__inner {
    display: flex;
    align-items: center;
  }
  .serviceHomeCardBlock__img {
    width: 37.9%;
    margin: 0 6.3% 0 0;
  }
  .serviceHomeCardBlock__img p {
    font-size: 1.4rem;
  }
  .serviceHomeCardBlock__txt {
    width: 55.8%;
  }
  .serviceHomeCardBlock__logo.-logo1_3 img {
    width: 386px;
    height: 46px;
  }
  .serviceHomeCardBlock__catch {
    margin: 32px 0 25px;
  }
  .serviceHomeCardBlock__catch strong {
    font-size: 1.8rem;
    line-height: 30px;
  }
  .sustainability-greeting {
    flex-direction: row-reverse;
    gap: 0 64px;
  }
  .sustainability-greeting__img {
    max-width: 234px;
    width: 24.4%;
  }
  .sustainability-greeting__txt {
    max-width: 662px;
    width: 69%;
  }
  .sustainability-greeting__txt h2 {
    margin-bottom: 48px;
  }
  .sustainability-greeting__txt h2 strong {
    font-size: 3.1rem;
    line-height: 46.5px;
  }
  .sustainability-esg-block {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0 24px;
  }
  .sustainability-esg-block + .sustainability-esg-block {
    margin-top: 32px;
  }
  .sustainability-esg-block img {
    max-width: 180px;
  }
  .sustainability-esg-block ul {
    width: auto;
  }
  .sustainability-esg-block ul li {
    font-size: 1.6rem;
    padding-left: 1.6rem;
    line-height: 28px;
  }
  .sustainability-esg-block ul li + li {
    margin-top: 0;
  }
  .sustainability-esg-works {
    width: 100%;
    padding: 48px 56px 56px;
    margin-left: 0;
    margin-top: 72px;
    margin-bottom: 0;
  }
  .sustainability-esg-works__title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }
  .sustainability-esg-works__list {
    gap: 28px 28px;
  }
  .sustainability-esg-works__list li {
    width: calc(50% - 14px);
    padding: 40px 35px;
  }
  .sustainability-esg-works__list li figure img {
    max-width: 74px;
  }
  .sustainability-esg-works__list li dl {
    padding-left: 35px;
    margin-left: 46px;
  }
  .sustainability-esg-works__list li dl dd strong {
    font-size: 4.6rem;
  }
  .sustainability-esg-works__list li dl dd strong.small {
    font-size: 4rem;
  }
  .sustainability-esg-works__caution {
    margin-top: 8px;
  }
}
@media screen and (min-width: 1184px){
  .headingLv1__image {
    width: calc(100vw - (100vw - var(--base-width)) / 2);
  }
  .recruitStaffHeadingBlock__text {
    padding-left: calc((100vw - var(--base-width)) / 2);
  }
}
@media screen and (min-width: 768px) and (min-width: 920px){
  header {
    background-color: transparent;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
  .isHome nav li:first-child {
    display: block;
  }
}
@media screen and (min-width: 768px) and (min-width: 1000px){
  .footerNav > div {
    display: flex;
    justify-content: space-between;
  }
  .footerNav .nav {
    margin-bottom: 0;
  }
  .footerNav .nav + div {
    display: grid;
    align-content: flex-start;
    grid-template-areas: "twitter lang" "logo logo";
    row-gap: 67px;
    margin-top: -11px;
  }
  .footerNav .nav + div p {
    grid-area: logo;
  }
  .footerNav .nav + div p img {
    width: 173px;
  }
  .footerNav .nav + div ul {
    grid-area: lang;
  }
  .homeAbout__lead {
    font-size: 5.6rem;
  }
  .homeServiceCard--1 > div:last-of-type {
    top: 100px;
    transform: translateX(-50%);
  }
  .homeServiceCards {
    gap: 64px;
  }
}
@media screen and (min-width: 768px) and (min-width: 840px){
  .isHome nav li:nth-child(2) {
    display: block;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px){
  .homeServiceCard--1 > div:last-of-type {
    padding-right: 0;
    width: var(--base-width);
  }
  .homeService > p {
    left: 50%;
    transform: translateX(-50%);
  }
}


/* -------------- staff discussion */
#staff-discussion {
	padding-bottom: 140px;
	background: linear-gradient(to top, var(--color-bg) 0%, var(--color-bg) 318px, transparent 318px, transparent 100%);
}
#staff-discussion section {
	width: 100%;
	background-color: #FAF5E6;
	box-sizing: border-box;
	margin-top: 20px;
	padding: 30px 32px 68px
}
#staff-discussion section h2 {
	font-size: 22px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
}
#staff-discussion section .staffmember {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: 0 auto 40px;
	padding: 20px 15px;
	background-color: #4C524F80;
	border-radius: 20px;
	box-sizing: border-box;
	max-width: 370px;
}
#staff-discussion section .staffmember li {
	width: 80px;
}
#staff-discussion section .staffmember li img {
	width: 100%;
	margin-bottom: 11px;
}
#staff-discussion section .staffmember li p {
	color: #fff;
	font-size: 12px;
	text-align: center;
	line-height: 1.33;
}
#staff-discussion section .talk-box {
	font-size: 15px;
	line-height: 1.46;
}
#staff-discussion section .talk-box .person {
	margin: 30px 0;
}
#staff-discussion section .talk-box .person img {
	display: block;
	margin: 0 auto;
}
#staff-discussion section .talk-box .two1.person img {
	width: 61.67%;
}
#staff-discussion section .talk-box .two2.person img {
	width: 69.4%;
}
#staff-discussion section .talk-box .three.person img {
	width: 90.03%;
}
#staff-discussion section .talk-box .person p {
	background-color: #fff;
	width: 100%;
	border-radius: 20px;
	text-align: center;
	padding: 10px 0;
	position: relative;
	margin-bottom: 20px;
}
#staff-discussion section .talk-box .two.person p:before,
#staff-discussion section .talk-box .three.person p:before {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 69px;
	width: 15px;
	height: 16px;
	transform: matrix(-0.28, 0.96, -0.96, -1.28, 0, 0);
	background: #FFFFFF 0% 0% no-repeat padding-box;
}
#staff-discussion section .talk-box .three.person p:before {
	left: 40px;
}
#staff-discussion section .talk-box .two.person p:after,
#staff-discussion section .talk-box .three.person p:after {
	content: "";
	position: absolute;
	bottom: -1px;
	right: 69px;
	width: 15px;
	height: 16px;
	transform: matrix(0.28, 0.96, -0.96, 1.28, 0, 0);
	background: #FFFFFF 0% 0% no-repeat padding-box;
}
#staff-discussion section .talk-box .three.person p:after {
	right: 40px;
}
#staff-discussion section .talk-box .three.person p span {
	content: "";
	position: absolute;
	bottom: -9px;
	right: 150px;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 9px solid transparent;
	border-left: 9px solid transparent;
	border-top: 16px solid #fff;
	border-bottom: 0;
}
#staff-discussion section .talk-box .person p b {
	font-size: 22px;
}
#staff-discussion section .talk-box .left,
#staff-discussion section .talk-box .right {
	position: relative;
	margin-bottom: 10px;
	overflow: hidden;
	min-height: 50px;
	padding-top: 30px;
}
#staff-discussion section .talk-box .left p b,
#staff-discussion section .talk-box .right p b {
	font-size: 22px;
}
#staff-discussion section .talk-box .left > img {
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
}
#staff-discussion section .talk-box .right > img {
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
}
#staff-discussion section .talk-box .left div p,
#staff-discussion section .talk-box .right div p {
	background-color: #fff;
	border-radius: 20px;
	padding: 10px 16px;
	width: 100%;
	box-sizing: border-box;
	margin-bottom: 10px;
	position: relative;
}
#staff-discussion section .talk-box .left.interview div p {
	background-color: #D3E8DC;
}
#staff-discussion section .talk-box .left div p:after {
	content: "";
	position: absolute;
	top: 0;
	left: -4px;
	background: url("/assets/img/recruit/discussion/white_sbleft.png") center center no-repeat;
	width: 14px;
	height: 12px;
}
#staff-discussion section .talk-box .left.interview div p:after {
	content: "";
	position: absolute;
	top: 0;
	left: -4px;
	background: url("/assets/img/recruit/discussion/green_sbleft.png") center center no-repeat;
	width: 14px;
	height: 12px;
}
#staff-discussion section .talk-box .right div p:after {
	content: "";
	position: absolute;
	top: 0;
	right: -4px;
	background: url("/assets/img/recruit/discussion/white_sbright.png") center center no-repeat;
	width: 14px;
	height: 12px;
}
#staff-discussion section .talk-box .left div {
	margin-left: 63px;
}
#staff-discussion section .talk-box .right div {
	margin-right: 63px;
}
#staff-discussion section .talk-box .right div .clap {
	text-align: center;
}
#staff-discussion section .talk-box .right div .clap img {
	vertical-align: -4px;
	width: 52px;
}








#staff-discussion section .photo-box {
	width: 100%;
}
#staff-discussion section .photo-box dt {
	text-align: center;
	font-size: 20px;
	line-height: 1.3;
	margin-bottom: 20px;
}
#staff-discussion section .photo-box dd {
	background-color: #fff;
	padding: 13px;
}
#staff-discussion section .photo-box dd img {
	width: 100%;
	display: block;
	margin-bottom: 10px;
}
#staff-discussion section .photo-box dd ul {
	display: flex;
	justify-content: center;
}
#staff-discussion section .photo-box dd ul li {
	margin: 0 8px;
}
#staff-discussion section .photo-box dd ul li p {
	font-size: 14px;
	text-align: center;
}





@media screen and (min-width: 768px){
	#staff-discussion section {
		max-width: 880px;
		margin: 80px auto 0;
		padding: 45px 35px 82px;
	}
	#staff-discussion section h2 {
		font-size: 32px;
		margin-bottom: 40px;
	}
	#staff-discussion section .staffmember {
		width: 700px;
		margin: 0 auto 118px;
		padding: 27px 67px 24px;
		max-width: initial;
	}
	#staff-discussion section .staffmember li {
		width: auto;
	}
	#staff-discussion section .staffmember li img {
		margin-bottom: 18px;
	}
	#staff-discussion section .staffmember li p {
		font-size: 16px;
		line-heigth: 1.68;
	}
	#staff-discussion section .talk-box {
		font-size: 16px;
		line-height: 1.68;
	}
	#staff-discussion section .talk-box .person {
		margin: 40px 0;
	}
	#staff-discussion section .talk-box .two.person img,
	#staff-discussion section .talk-box .three.person img {
		width: initial;
	}
	#staff-discussion section .talk-box .person p {
		width: 400px;
		margin: 0 auto 20px;
	}
	#staff-discussion section .talk-box .three.person p span {
		right: 190px;
	}
	#staff-discussion section .talk-box .person p b {
		font-size: 30px;
	}
	#staff-discussion section .talk-box .two1.person img,
	#staff-discussion section .talk-box .two2.person img {
		width: auto;
	}
	#staff-discussion section .talk-box .left,
	#staff-discussion section .talk-box .right {
		min-height: 80px;
		padding-top: 30px;
	}
	#staff-discussion section .talk-box .left p b,
	#staff-discussion section .talk-box .right p b {
		font-size: 26px;
	}
	#staff-discussion section .talk-box .left > img {
		width: initial;
	}
	#staff-discussion section .talk-box .right > img {
		width: initial;
	}
	#staff-discussion section .talk-box .left div {
		margin-left: 102px;
	}
	#staff-discussion section .talk-box .right div {
		margin-right: 102px;
		float: right;
	}
	#staff-discussion section .talk-box .left div p,
	#staff-discussion section .talk-box .right div p {
		width: 400px;
	}
	#staff-discussion section .talk-box .right div .clap {
		font-size: 30p;
	}





	#staff-discussion section .talk-box .right div .clap img {
		vertical-align: -9px;
		width: auto;
	}
	#staff-discussion section .talk-box .right div .final {
		padding: 30px 10px;
	}
	#staff-discussion section .photo-box {
		width: 540px;
		margin: 0 auto;
	}
	#staff-discussion section .photo-box dt {
		line-height: 1.37;
	}
	#staff-discussion section .photo-box dd {
		padding: 20px;
	}
	#staff-discussion section .photo-box dd img {
		margin-bottom: 17px;
	}
	#staff-discussion section .photo-box dd ul li {
		margin: 0 19px;
	}
	#staff-discussion section .photo-box dd ul li p {
		font-size: 16px;
	}
}



/* -------------- club activities */
#club-activities {
	padding-bottom: 140px;
	background: linear-gradient(to top, var(--color-bg) 0%, var(--color-bg) 318px, transparent 318px, transparent 100%);
}
#club-activities .content {
	width: 100%;
	background-color: #DEDCDA;
	box-sizing: border-box;
	margin-top: 20px;
	padding: 40px 28px 48px
}
#club-activities .content .intro {
	border: 3px solid #333;
	margin: 0 auto 30px;
	padding: 7px;
}
#club-activities .content .intro .wrap {
	border: 1px solid #333;
	padding: 20px 12px;
	text-align: center;
	font-family: serif;
}
#club-activities .content .intro .wrap > p {
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 20px;
}
#club-activities .content .intro .wrap img {
	width: 139px;
	display: block;
	margin: 0 auto 10px;
}
#club-activities .content .intro .wrap .name {
	display: flex;
	justify-content: center;
	font-size: 16px;
}
#club-activities .content .intro .wrap .name p {
	margin: 0 23px;
}
#club-activities .content .talk-box .left,
#club-activities .content .talk-box .right {
	display: flex;
	justify-content: left;
	min-height: 50px;
	padding-top: 10px;
	margin-bottom: 20px;
	align-items: start;
	position: relative;
}
#club-activities .content .talk-box .left > img,
#club-activities .content .talk-box .right > img {
	width: 50px;
	position: absolute;
	top: 0;
}
#club-activities .content .talk-box .left > .i3 {
	width: 58px;
}
#club-activities .content .talk-box .left > .i4 {
	width: 60px;
}
#club-activities .content .talk-box .right > .m10 {
	width: 58px;
}
#club-activities .content .talk-box .left > div {
	margin-left: 67px;
	position: relative;
	width: calc(100% - 67px);
}
#club-activities .content .talk-box .left > div.obstruct {
	padding-bottom: 40px;
	min-height: 120px;
}
#club-activities .content .talk-box .left > div.obstruct.m4 {
	min-height: 160px;
}
#club-activities .content .talk-box .left > div.obstruct.m5 {
	min-height: 186px;
}
#club-activities .content .talk-box .left > div.obstruct.m8,
#club-activities .content .talk-box .left > div.obstruct.m11 {
	min-height: 209px;
}
#club-activities .content .talk-box .left > div > p,
#club-activities .content .talk-box .right > div > p {
	border-radius: 20px;
	padding: 8px 18px;
	font-size: 16px;
	max-width: 400px;
	line-height: 1.37;
	margin-bottom: 10px;
	position: relative;
}
#club-activities .content .talk-box .left > div > p {
	background-color: #D3E8DC;
}
#club-activities .content .talk-box .left > div > p:after {
	content: "";
	position: absolute;
	top: 0;
	left: -4px;
	background: url("/assets/img/recruit/club_activities/green_sbleft.png") center center no-repeat;
	width: 14px;
	height: 12px;
}
#club-activities .content .talk-box .left > div .extend {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	display: flex;
	align-items: end;
	justify-content: right;
}
#club-activities .content .talk-box .left > div .extend p {
	background:  url("/assets/img/recruit/club_activities/balloon.png") center center no-repeat;
	background-size: cover;
	width: 120px;
	height: 67px;
	font-size: 28px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
}
#club-activities .content .talk-box .left > div .extend .m2 {
	width: 61px;
}
#club-activities .content .talk-box .left > div .extend .m4 {
	width: 59px;
}
#club-activities .content .talk-box .left > div .extend .m5 {
	width: 64px;
}
#club-activities .content .talk-box .left > div .extend .m8 {
	width: 50px;
}
#club-activities .content .talk-box .left > div .extend .m11 {
	width: 70px;
}

#club-activities .content .talk-box .right {
	justify-content: right;
	flex-direction: row-reverse;
}
#club-activities .content .talk-box .right > div {
	margin-right: 67px;
	position: relative;
}
#club-activities .content .talk-box .right > div > p {
	background-color: #FFF;
}
#club-activities .content .talk-box .right > div > p img {
	vertical-align: bottom;
	width: 30px;
}
#club-activities .content .talk-box .right > div > p:after {
	content: "";
	position: absolute;
	top: 0;
	right: -4px;
	background: url("/assets/img/recruit/club_activities/white_sbright.png") center center no-repeat;
	width: 14px;
	height: 12px;
}
#club-activities .content .talk-box .interval {
	text-align: center;
	margin: 30px auto;
}
#club-activities .content .talk-box .interval img {
	display: block;
	margin: 10px auto 0;
	width: 200px;
}
#club-activities .content .talk-box .interval .mi4 {
	width: 71px;
}
#club-activities .content .talk-box .interval .photo1 {
	width: 264px
}
#club-activities .content .talk-box .interval .photo2 {
	width: 100%;
}
#club-activities .content .talk-box .interval .photo4 {
	width: 100%;
}
#club-activities .content .talk-box .interval img:first-child {
	margin-top: 0;
}
#club-activities .content .talk-box .interval > p {
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 10px;
	font-family: serif;
}
#club-activities .content .talk-box .interval > p small {
	font-size: 12px;
}
#club-activities .content .talk-box .interval > p img {
	width: 88px;
}

@media screen and (min-width: 768px){
	#club-activities .content {
		max-width: 880px;
		margin: 80px auto 0;
		padding: 60px 40px 70px;
	}
	#club-activities .content .intro {
		margin: 0 auto 50px;
		width: 600px;
		padding: 5px;
	}
	#club-activities .content .intro .wrap {
		padding: 25px 0 15px;
	}
	#club-activities .content .intro .wrap > p {
		font-size: 18px;
		line-height: 1.66;
		margin-bottom: 10px;
	}
	#club-activities .content .intro .wrap img {
		width: auto;
	}
	#club-activities .content .intro .wrap .name {
		font-size: 20px;
	}
	#club-activities .content .intro .wrap .name p {
		margin: 0 30px;
	}
	#club-activities .content .talk-box .left,
	#club-activities .content .talk-box .right {
		min-height: 80px;
		padding-top: 30px;
		margin-bottom: 10px;
	}
	#club-activities .content .talk-box .left > img,
	#club-activities .content .talk-box .right > img,
	#club-activities .content .talk-box .left > .i3,
	#club-activities .content .talk-box .left > .i4,
	#club-activities .content .talk-box .right > .m10 {
		width: auto;
	}
	#club-activities .content .talk-box .left > div {
		margin-left: 103px;
		width: calc(100% - 103px);
	}
	#club-activities .content .talk-box .left > div.obstruct {
		padding-bottom: 30px;
		min-height: 170px;
	}
	#club-activities .content .talk-box .left > div.obstruct.m2,
	#club-activities .content .talk-box .left > div.obstruct.m4,
	#club-activities .content .talk-box .left > div.obstruct.m5,
	#club-activities .content .talk-box .left > div.obstruct.m8,
	#club-activities .content .talk-box .left > div.obstruct.m11 {
		min-height: 170px;
	}
	#club-activities .content .talk-box .left > div > p,
	#club-activities .content .talk-box .right > div > p {
		padding: 10px 16px;
		line-height: 1.68;
	}
	#club-activities .content .talk-box .left > div .extend p {
		width: 296px;
		height: 165px;
		font-size: 48px;
		margin-bottom: 20px;
	}
	#club-activities .content .talk-box .left > div .extend .m2,
	#club-activities .content .talk-box .left > div .extend .m4,
	#club-activities .content .talk-box .left > div .extend .m5,
	#club-activities .content .talk-box .left > div .extend .m8,
	#club-activities .content .talk-box .left > div .extend .m11 {
		width: auto;
	}
	#club-activities .content .talk-box .right > div {
		margin-right: 103px;
	}
	#club-activities .content .talk-box .right > div > p img {
		width: auto;
	}
	#club-activities .content .talk-box .interval img {
		width: auto;
		margin: 30px auto 0;
	}
	#club-activities .content .talk-box .interval .mi4,
	#club-activities .content .talk-box .interval .photo1,
	#club-activities .content .talk-box .interval .photo2,
	#club-activities .content .talk-box .interval .photo4 {
		width: auto;
	}
	#club-activities .content .talk-box .interval > p {
		font-size: 20px;
		line-height: 1.6;
		margin-bottom: 30px;
	}
	#club-activities .content .talk-box .interval > p small {
		font-size: 14px;
	}
}
