@charset "UTF-8";
/* -------------------------------------------*/
/* -------------------------------------------*/
:root {
  --white: #ffffff;
  --text-color: #000000;
  --main: #185AA5;
  --sub: #C11414;
  --cta: #FCCA00;
  --pink: #FFDBDB;
  --bg: rgb(245, 245, 245);
}

/* -------------------------------------------*/
/* -------------------------------------------*/
:root {
  --inner_width: 120rem;
  --pi: 5rem;
  --transition: 0.5s;
}

/* -------------------------------------------*/
:root {
  --text-base: "Zen Kaku Gothic New","Noto Sans JP",
              "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",
              "游ゴシック",YuGothic,
              "メイリオ",Meiryo,
              sans-serif;
  --antique: "Zen Kaku Gothic Antique", sans-serif;
  --eng: "Zen Maru Gothic", sans-serif;
  --mincho: "Zen Antique Soft",serif;
}

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

span {
  font-weight: inherit;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

html {
  -ms-overflow-style: scrollbar;
  font-size: 62.5%;
  overflow: auto;
}

body {
  color: var(--text-color);
  font-family: var(--text-base);
  font-size: 16px;
  font-weight: 500;
  height: 100%;
  height: 100%;
  letter-spacing: 0;
  line-height: 1;
  overflow-x: clip;
  position: relative;
}

body:not(.home) {
  background-color: var(--bg);
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

section {
  position: relative;
  width: 100%;
}

hgroup {
  position: relative;
}

a,
button {
  color: inherit;
  display: block;
  height: 100%;
  text-decoration: none;
  transition: var(--transition);
}
a::before, a::after,
button::before,
button::after {
  transition: var(--transition);
}

picture {
  display: block;
}

img {
  height: 100%;
  vertical-align: middle;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

em {
  font-style: normal;
}

svg:not(:root) {
  overflow: hidden;
}

input,
button,
select,
optgroup,
textarea {
  background-color: transparent;
  border: none;
  border: none;
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  position: relative;
  vertical-align: middle;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  border: 0;
  margin: 0;
  min-width: 0;
  padding: 0;
}

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

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

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

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

address {
  font-style: normal;
}
/* スクロールバーのトラックの背景色 */
::-webkit-scrollbar-track {
  background-color: transparent;
}

/* スクロールバーのスクロール部分 */
::-webkit-scrollbar-thumb {
  background-color: #19274e;
  border-radius: 5px;
}

/* スクロールバーの上部ボタン */
::-webkit-scrollbar-button:start {
  display: none;
}

/* スクロールバーの下部ボタン */
::-webkit-scrollbar-button:end {
  display: none;
}

/* -------------------------------------------*/
/* layout
-------------------------------------------------------*/
/**
 * input
 *
 */
input[type=text],
input[type=date],
input[type=password],
input[type=email],
input[type=time],
input[type=tel],
input[type=number] {
  border: none;
  border: none;
  border: none;
  border-radius: 5px;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 17px 18px;
  position: relative;
  width: 100%;
}

input[type=number] {
  -moz-appearance: textfield;
}

/**
 * textarea
 *
 */
textarea {
  border: none;
  border: none;
  border-radius: 5px;
  height: 200px;
  letter-spacing: 0.1em;
  padding: 10px;
  position: relative;
  width: 100%;
}

input[type=text]:disabled {
  background: transparent;
  cursor: not-allowed;
}
input[type=text]:disabled::-moz-placeholder {
  opacity: 1;
}
input[type=text]:disabled::placeholder {
  opacity: 1;
}

/**
 * radio
 *
 */
input[type=radio] {
  display: none;
  vertical-align: middle;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0;
}

input[type=radio] + .mwform-radio-field-text {
  cursor: pointer;
  display: inline-block;
  margin: 0 20px 10px 0;
  padding: 10px 10px 10px 40px;
  position: relative;
  transition: var(--transition);
  vertical-align: middle;
}

input[type=radio] + .mwform-radio-field-text::before {
  border: 1px solid #7f7f7f;
  border-radius: 50%;
  box-sizing: border-box;
  content: "";
  height: 20px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s ease;
  width: 20px;
  z-index: 2;
}

input[type=radio] + .mwform-radio-field-text::after {
  border-radius: 50%;
  box-sizing: border-box;
  content: "";
  display: block;
  height: 12px;
  left: 4px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  z-index: 5;
}

input[type=radio]:checked + .mwform-radio-field-text::after {
  opacity: 1;
}

/**
 * checkbox
 *
 */
input[type=checkbox] {
  opacity: 0;
  vertical-align: middle;
}

input[type=checkbox] + label {
  cursor: pointer;
  display: inline-block;
  line-height: 1;
  padding: 0 0 0 35px;
  position: relative;
  transition: var(--transition);
}

input[type=checkbox] + label::before {
  border: 2px #818181 solid;
  box-sizing: border-box;
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  z-index: 2;
}

input[type=checkbox] + label::after {
  content: "";
  display: block;
  height: 5px;
  left: 3px;
  opacity: 0;
  position: absolute;
  top: 5px;
  transform: rotate(-45deg);
  transition: var(--transition);
  width: 10px;
  z-index: 3;
}

input[type=checkbox]:checked + label::after {
  opacity: 1;
}

/**
 * tel(column)
 *
 */
.mwform-tel-field {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mwform-tel-field > input {
  flex: 1;
  width: 100% !important;
}

/**
 * select
 *
 */
.select-parts {
  border: 1px solid var(--text-color);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.select-parts::after {
  background: url(../img/contact/select_arrow.png) no-repeat top center/contain;
  content: "";
  height: 10px;
  margin-top: 2px;
  pointer-events: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  z-index: 5;
}
.select-parts select {
  background: #fbefe3;
  border: none;
  border: none;
  box-shadow: none;
  color: #7f7f7f;
  cursor: pointer;
  font-size: 2rem;
  height: 45px;
  letter-spacing: 0.1em;
  padding: 0 20px 0 15px;
  position: relative;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-align: center;
}

/**
 * file
 *
 */
input[type=file] + label {
  margin: 0 10px 0 0;
  padding: 15px 0;
  width: 160px;
}
input[type=file] + label:after {
  left: 170px;
}

/* -------------------------------------------*/
.p-top-fv {
  background-color: var(--bg);
  height: 100svh;
  max-height: 800px;
  min-height: 667px;
  overflow-x: clip;
  padding-inline: var(--pi);
  padding-top: min(20.9567198178vh, 184px);
  position: relative;
  z-index: 1;
}

.p-top-fv__inner {
  align-items: flex-start;
  display: grid;
  gap: 3%;
  grid-template-columns: 1fr 52.2%;
  margin-inline: auto;
  max-width: 1600px;
  position: relative;
}

.p-top-fv__leftBlock {
  margin-top: 7.3rem;
}

.p-top-fv__ttl {
  font-family: var(--antique);
  font-size: 8.2rem;
  font-weight: 900;
  line-height: 1.4358974359;
}
.p-top-fv__ttl span {
  aspect-ratio: 398/80;
  display: block;
  width: 63.7820512821%;
}
.p-top-fv__ttl span img {
  vertical-align: text-top;
}

.p-top-fv__btnBox {
  display: flex;
  gap: 2.2rem;
  margin-top: 2.7rem;
}

.p-top-fv__btn a {
  align-content: center;
  background-color: var(--white);
  border: 2px solid var(--cta);
  border-radius: 60px;
  font-size: 1.8rem;
  font-weight: 500;
  height: 6.4rem;
  line-height: 1;
  overflow: hidden;
  position: relative;
}
.p-top-fv__btn a span {
  position: relative;
  z-index: 1;
}

.p-top-fv__btn-image {
  aspect-ratio: 1;
  display: block;
  left: 3.5rem;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 1.7rem;
  z-index: 3;
}
.p-top-fv__btn-image svg {
  border: 1px solid var(--cta);
  transition: var(--transition);
}

.p-top-fv__btn--left a {
  padding-left: 7rem;
  width: 20.9rem;
}

.p-top-fv__btn--right a {
  padding-left: 6.3rem;
  width: 29rem;
}

.p-top-fv__btnImg {
  aspect-ratio: 85.6/15.6;
  display: inline-block;
  translate: 0 -3px;
  width: 8.56rem;
}
.p-top-fv__btnImg img {
  -o-object-fit: contain;
  object-fit: contain;
}

.p-top-fv__btnText {
  display: inline-block;
  margin-left: -0.5rem;
}

.p-top-fv__rightBlock {
  min-width: 0;
}

.swiperL {
  overflow: visible !important;
  padding-inline: 6.6411238825% !important;
}

.swiper-wrapper {
  transform: translate3d(0, 0, 0) !important;
}

.swiperL .swiper-slide {
  aspect-ratio: 831/467;
  border-radius: 16px;
  box-shadow: 0px 3px 26px 0px rgba(0, 0, 0, 0.09);
  transition-property: opacity;
}
.swiperL .swiper-slide img {
  border-radius: 20px;
}

.swiper-pagination {
  --swiper-pagination-bottom: -2.7rem;
  translate: 0 100%;
}

.swiper-pagination-bullet {
  --swiper-pagination-bullet-width: 1.6rem;
  --swiper-pagination-bullet-height: 1.6rem;
  --swiper-pagination-bullet-horizontal-gap: 1rem;
  --swiper-theme-color: var(--main);
}

.swiper-button-prev {
  --swiper-navigation-sides-offset: 0;
}
.swiper-button-prev::after {
  aspect-ratio: 16/80;
  background-image: url(../../images/common/slide-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "" !important;
  display: block;
  left: 0;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 1.6rem;
}

.swiper-button-next {
  --swiper-navigation-sides-offset: 0;
}
.swiper-button-next::after {
  aspect-ratio: 16/80;
  background-image: url(../../images/common/slide-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "" !important;
  display: block;
  position: absolute;
  right: 0;
  rotate: 180deg;
  top: 50%;
  translate: 0 -50%;
  width: 1.6rem;
}
.p-top-intro {
  background-color: var(--bg);
  padding-bottom: 11.5rem;
  padding-top: 8rem;
}

.p-top-intro__topBlock {
  align-items: center;
  display: grid;
  gap: 4.5161290323%;
  grid-template-columns: 43.0322580645% 1fr;
  padding-right: var(--pi);
}

.p-top-intro__topImage {
  aspect-ratio: 667/407;
  border-radius: 0 24px 24px 0;
  overflow: hidden;
}

.p-top-intro__topTtl {
  font-family: var(--antique);
  font-size: clamp(30px, 2.6875vw, 43px);
  font-weight: 700;
  line-height: 1.4418604651;
}

.p-top-intro__topText {
  font-size: clamp(15px, 1.5vw, 24px);
  font-weight: 700;
  line-height: 1.6458333333;
  margin-top: 6.4rem;
  margin-top: clamp(18px, 4vw, 64px);
}

.p-top-intro__topBtn {
  margin-top: 3.5rem;
}

.p-top-intro__bottomBlock {
  align-items: center;
  display: grid;
  gap: 2.8rem;
  grid-template-columns: 1fr 24.7rem 1fr;
  margin-top: 5.6rem;
}

.p-top-intro__bottomLeftBox {
  background-color: var(--main);
  border-radius: 0 249px 249px 0;
  margin-top: 1.5rem;
  padding-block: 5rem;
}

.p-top-intro__bottomLeft-inner {
  align-content: center;
  aspect-ratio: 1;
  color: var(--white);
  margin-left: auto;
  margin-right: 5.7rem;
  overflow: hidden;
  position: relative;
  width: 39.7rem;
  z-index: 2;
}
.p-top-intro__bottomLeft-inner::after {
  background-color: #000000;
  bottom: 0;
  clip-path: circle(50% at 50% 50%);
  content: "";
  display: block;
  left: 0;
  opacity: 0.38;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.p-top-intro__bottomLeft-ttl {
  aspect-ratio: 326/44;
  margin-inline: auto;
  width: 82.1158690176%;
}

.p-top-intro__bottomLeft-text {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.45;
  margin-top: 2.4rem;
  text-align: center;
}

.p-top-intro__bottomLeft-btn a {
  margin-inline: auto;
  padding-left: 5rem;
  width: 100%;
}
.p-top-intro__bottomLeft-btn a span::before {
  left: -5rem;
  width: 4rem;
}

.p-top-intro__bottomCenter-head {
  align-content: center;
  border: 1px solid;
  color: var(--main);
  font-size: 2.3rem;
  font-weight: 700;
  height: 6.3rem;
  text-align: center;
  width: 23.9rem;
}

.p-top-intro__bottomCenter-copy {
  align-content: center;
  font-size: 7.3rem;
  font-weight: 700;
  margin-top: 4.3rem;
  width: 100%;
  writing-mode: vertical-rl;
}

.p-top-intro__bottomRightBox {
  background-color: var(--main);
  border-radius: 249px 0 0 249px;
  margin-top: 1.5rem;
  padding-block: 5rem;
  position: relative;
}

.p-top-intro__bottomRight-inner {
  align-content: center;
  aspect-ratio: 1;
  color: var(--white);
  margin-left: 5.7rem;
  margin-right: auto;
  position: relative;
  width: 39.7rem;
  z-index: 2;
}
.p-top-intro__bottomRight-inner::after {
  background-color: #000000;
  bottom: 0;
  clip-path: circle(50% at 50% 50%);
  content: "";
  display: block;
  left: 0;
  opacity: 0.38;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.p-top-intro__bottom-image {
  aspect-ratio: 1;
  border-radius: 50%;
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -2;
}
.p-top-intro__bottom-image img {
  transition: var(--transition);
}

.p-top-intro__bottomRight-ttl {
  aspect-ratio: 215/43.5;
  margin-inline: auto;
  position: relative;
  width: 21.5rem;
}
.p-top-intro__bottomRight-ttl img {
  -o-object-fit: contain;
  object-fit: contain;
}

.p-top-intro__bottomRight-hukidasi {
  color: var(--main);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1428571429;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  translate: 200% -88%;
}
.p-top-intro__bottomRight-hukidasi span {
  font-size: 1.5rem;
  font-weight: 900;
}
.p-top-intro__bottomRight-hukidasi::before {
  aspect-ratio: 1;
  background-color: var(--white);
  border-radius: 50%;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  translate: -50% -45%;
  width: 11.4rem;
  z-index: -1;
}
.p-top-intro__bottomRight-hukidasi::after {
  aspect-ratio: 20/41;
  background-color: var(--white);
  bottom: 0;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  content: "";
  display: block;
  left: 0;
  position: absolute;
  rotate: -115deg;
  translate: -170% 40%;
  width: 2rem;
}

.p-top-intro__bottomRight-text {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.45;
  margin-top: 2.5rem;
  text-align: center;
}

.p-top-intro__bottom-btnBox {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-inline: auto;
  margin-top: 4.5rem;
  width: -moz-fit-content;
  width: fit-content;
}

.p-top-intro__bottomRight-btn a {
  padding-left: 5rem;
}
.p-top-intro__bottomRight-btn a span::before {
  left: -5rem;
  width: 4rem;
}

.p-top-duty {
  padding-block: 10rem 19.6rem;
  padding-inline: var(--pi);
}

.p-top-duty__inner {
  margin-inline: auto;
  max-width: var(--inner_width);
}

.p-top-duty__ttlText {
  font-size: 3.6rem;
  font-weight: 700;
}

.p-top-duty__ttl {
  color: var(--main);
  font-size: 5.3rem;
  font-weight: 700;
  line-height: 1.4339622642;
}

.p-top-duty__text {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.4782608696;
  margin-top: 1.5rem;
}

.p-top-duty__banner {
  border-radius: 8px;
  box-sizing: content-box;
  margin-top: 4.3rem;
  outline: 8px solid var(--main);
  padding-block: 4.8rem 7.8rem;
  padding-inline: 8.3333333333% 10.1666666667%;
}

.p-top-duty__banner-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.p-top-duty__bannerTtl-S {
  color: var(--main);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  margin-top: 17px;
  vertical-align: top;
  writing-mode: vertical-rl;
}

.p-top-duty__bannerTtl-L {
  font-family: var(--antique);
  font-size: 6rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-right: 3.5rem;
  margin-top: 1rem;
  writing-mode: vertical-rl;
}

.p-top-duty__banner-linkBox {
  align-items: flex-end;
  display: flex;
  gap: 14.3312101911%;
  translate: -2.8rem;
  width: 66.3599182004%;
}

.p-top-duty__banner-imgBox {
  max-width: 30rem;
}

.p-top-duty__banner-image01 {
  aspect-ratio: 1;
  width: 107.5%;
}

.p-top-duty__banner-image02 {
  aspect-ratio: 258/273;
  width: 86%;
}

.p-top-duty__banner-image {
  margin-inline: auto;
}

.p-top-duty__textUnder {
  font-weight: 500;
  line-height: 1.87;
  margin-top: 2rem;
}
.p-top-duty__textUnder a {
  display: inline;
  font-weight: 500;
  text-decoration: underline;
}

.caption {
  margin-top: 2.2rem;
  text-align: center;
}

.p-top-duty__banner-text {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4666666667;
  white-space: nowrap;
}

.p-top-duty__banner-btn a {
  margin-inline: auto;
  margin-top: 2.1rem;
}

.p-top-cat {
  background-color: var(--bg);
  padding-inline: var(--pi);
  padding-top: 4.5rem;
}

.p-top-cat__inner {
  margin-inline: auto;
  max-width: var(--inner_width);
}

.p-top-cat__ttl {
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 1.4347826087;
}

.p-top-cat__ttlText {
  color: var(--main);
  font-family: var(--eng);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4285714286;
}

.p-top-cat__card-container {
  --repeat: 4;
  display: grid;
  gap: 1.6rem 1.7rem;
  grid-template-columns: repeat(var(--repeat), 1fr);
  margin-top: 3.5rem;
}

.p-top-cat__card a {
  background-color: var(--white);
  border-radius: 16px;
  padding: 3.75rem 1.8rem;
}

.p-top-cat__card-imgBox {
  align-items: center;
  display: flex;
  gap: 2.6rem;
}

.p-top-cat__card-image {
  aspect-ratio: 1;
  width: 8rem;
}

.p-top-cat__card-caption {
  flex: 1;
}

.p-top-cat__card-caption p {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4444444444;
}

.p-top-cat__btn a {
  align-content: center;
  background-color: var(--white);
  border: 2px solid var(--cta);
  border-radius: 60px;
  height: 11.9rem;
  margin-inline: auto;
  margin-top: 4rem;
  overflow: hidden;
  position: relative;
  text-align: center;
  width: 36.7rem;
}
.p-top-cat__btn a span {
  font-weight: 500;
  padding-left: 3rem;
  position: relative;
  z-index: 2;
}

.p-top-cat__btn-image {
  aspect-ratio: 1;
  left: 7.6rem;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 1.7rem;
  z-index: 2;
}
.p-top-cat__btn-image svg {
  border: 1px solid var(--cta);
  transition: var(--transition);
}

.p-top-recruit {
  background-color: var(--bg);
  padding-inline: var(--pi);
  padding-top: 10.1rem;
}

.p-top-recruit__inner a {
  background-image: url(../../images/top/recruit-banner.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  color: var(--white);
  height: 37.7rem;
  padding-left: 9.9399599733%;
  position: relative;
  z-index: 1;
}
.p-top-recruit__inner a::before {
  background-color: #000000;
  border-radius: 24px;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  opacity: 0.24;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.p-top-recruit__textBox {
  position: relative;
  z-index: 2;
}

.p-top-recruit__ttlBox {
  padding-top: 5.2rem;
}

.p-top-recruit__ttl {
  font-family: var(--antique);
  font-size: 10.3rem;
  font-weight: 500;
}

.p-top-recruit__ttl-year {
  font-family: var(--text-base);
  font-size: 3.7rem;
  font-weight: 500;
}

.p-top-recruit__text {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.575;
  margin-top: 2.6rem;
}

.p-top-recruit__btn {
  aspect-ratio: 1;
  background-image: url(../../images/common/arrow-bgYellow.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 4.5rem;
  width: 2.7rem;
}

.p-top-news {
  background-color: var(--bg);
  padding-bottom: 8.9rem;
  padding-inline: var(--pi);
  padding-top: 4.9rem;
}

.p-top-news__inner {
  margin-inline: auto;
  max-width: var(--inner_width);
}

.p-top-news__linkBlock {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 4.9rem;
}

.p-top-news__cat-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  max-width: 70%;
}

.p-top-news__cat {
  align-content: center;
  background-color: var(--white);
  border: 2px solid var(--main);
  border-radius: 60px;
  font-weight: 500;
  height: 4.2rem;
  padding-inline: 2.6rem;
}
.p-top-news__cat::before {
  aspect-ratio: 1;
  background-image: url(../../images/common/arrow-blue.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  right: 2.6rem;
  top: 50%;
  translate: 0 -50%;
  width: 1.5rem;
}

.p-top-news__cat.clicked {
  background-color: var(--main);
  color: var(--white);
}
.p-top-news__cat.clicked::before {
  rotate: 180deg;
}

.p-top-news__list-container {
  display: none;
  flex-direction: column;
  gap: 3.35rem;
  margin-top: 6.2rem;
  opacity: 0;
}

.p-top-news__list-container.fade {
  animation: fade 0.8s forwards;
}

.p-top-news__list a {
  align-items: center;
  border-bottom: 1px solid #CECECE;
  display: flex;
  gap: 3.5%;
  padding-bottom: 2.65rem;
}

.p-top-news__list-time {
  font-size: 2.5rem;
  font-weight: 700;
  padding-right: 0.4rem;
}

.p-top-news__list-cat {
  background-color: var(--white);
  font-weight: 500;
  line-height: 1.5;
  padding-block: 0.9rem;
  padding-inline: 2.8rem;
}

.p-top-news__list-ttl {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
}

.p-top-column {
  background-color: var(--bg);
  padding-block: 9rem 8.8rem;
  padding-inline: var(--pi);
}

.p-top-column__inner {
  margin-inline: auto;
  max-width: var(--inner_width);
}

.p-top-column__topBlock {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.p-top-column__list-container {
  display: grid;
  margin-top: 3.2rem;
  --repeat: 3;
  gap: 4.1666666667%;
  grid-template-columns: repeat(var(--repeat), 1fr);
}

.p-top-column__list-imgBox {
  border-radius: 16px;
  overflow: hidden;
}

.p-top-column__list-image {
  aspect-ratio: 367/244;
}
.p-top-column__list-image img {
  transition: var(--transition);
}

.p-top-column__list-caption {
  background-color: var(--white);
  padding: 2rem 2.8rem 3.5rem;
}

.p-top-column__list-ttl {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4666666667;
}

.p-top-column__list-text {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6666666667;
  margin-top: 1.8rem;
}

.p-top-banner {
  background-color: var(--bg);
  padding-inline: var(--pi);
  padding-top: 6.7rem;
}

.p-top-banner__inner {
  display: grid;
  margin-inline: auto;
  max-width: var(--inner_width);
  --column: 2;
  gap: 1.8333333333%;
  grid-template-columns: repeat(var(--column), 1fr);
}

.p-top-banner__recruit a {
  border: 8px solid var(--main);
  border-radius: 16px;
  padding-block: 2.3rem 23.0899830221%;
  position: relative;
}

.p-top-banner__recruit-ttl {
  color: var(--main);
  font-family: var(--eng);
  font-size: 5.3rem;
  font-weight: 500;
  line-height: 1.320754717;
  text-align: center;
}

.p-top-banner__recruit-text {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.575;
  text-align: center;
}

.p-top-banner__recruit-image {
  aspect-ratio: 504/129;
  bottom: 0;
  left: 50%;
  position: absolute;
  translate: -50%;
  width: 85.5687606112%;
}

.p-top-banner__festival a {
  align-items: center;
  border-radius: 16px;
  color: var(--white);
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 29.4559099437%;
  overflow: hidden;
  padding-inline: 2.8rem;
  position: relative;
  z-index: 1;
}
.p-top-banner__festival a::before {
  background-image: url(../../images/top/festival-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: var(--transition);
  z-index: -2;
}
.p-top-banner__festival a::after {
  background-color: #000000;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  opacity: 0.2;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.p-top-banner__festival-text {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.6;
}

.p-top-banner__festival-link {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4444444444;
  margin-top: 3.5rem;
}
.p-top-banner__festival-link span {
  aspect-ratio: 1;
  display: inline-block;
  transition: var(--transition);
  translate: 0 -2px;
  width: 1.7rem;
}

.p-top-banner__festival-image {
  aspect-ratio: 314/364;
}

@media (min-width: 1920px){
  .p-top-intro__topBlock {
    grid-template-columns: 55% 1fr;
  }
  .p-top-intro__topImage {
    aspect-ratio: 667/307;
  }
}

@media (max-width: 1599px){
  .p-top-fv__ttl {
    font-size: max(4.875vw, 40px);
  }
}

@media (max-width: 1440px){
  .p-top-fv__btn--right a {
    width: 26.1rem;
  }
  .p-top-fv__btnImg {
    width: 7rem;
  }
}

@media (max-width: 1300px){
  .p-top-intro__bottomBlock {
    grid-template-columns: 1fr 19% 1fr;
  }
  .p-top-intro__bottomLeft-inner {
    margin-right: 2.8rem;
    width: 79.6389167503%;
  }
  .p-top-intro__bottomLeft-ttl {
    width: clamp(174px, 25.0769230769vw, 326px);
  }
  .p-top-intro__bottomLeft-text {
    font-size: max(1.5384615385vw, 15px);
  }
  .p-top-intro__bottomLeft-btn a {
    padding-left: 2.6rem;
  }
  .p-top-intro__bottomLeft-btn a span::before {
    left: -3rem;
    width: 1.7rem;
  }
  .p-top-intro__bottomCenter-head {
    font-size: clamp(10px, 1.7692307692vw, 23px);
    height: max(4.8461538462vw, 22px);
    width: 96.7611336032%;
  }
  .p-top-intro__bottomCenter-copy {
    font-size: clamp(30px, 5.6153846154vw, 73px);
  }
  .p-top-intro__bottomRight-inner {
    margin-left: 2.8rem;
    width: 79.6389167503%;
  }
  .p-top-intro__bottomRight-ttl {
    width: clamp(114px, 15.3846153846vw, 200px);
  }
  .p-top-intro__bottomRight-hukidasi {
    font-size: 2.3rem;
    translate: 90% -120%;
  }
  .p-top-intro__bottomRight-hukidasi span {
    font-size: 1.3rem;
  }
  .p-top-intro__bottomRight-text {
    font-size: max(1.5384615385vw, 15px);
  }
  .p-top-intro__bottom-btnBox {
    gap: 1.3rem;
    margin-top: max(2.8125vw, 10px);
  }
  .p-top-intro__bottomRight-btn a {
    padding-left: 2.6rem;
  }
  .p-top-intro__bottomRight-btn a span::before {
    left: -3rem;
    width: 1.7rem;
  }
}

@media (max-width: 1280px){
  .p-top-fv__btnBox {
    flex-direction: column;
    gap: 1.8rem;
    margin-top: 2rem;
  }
  .swiper-pagination {
    --swiper-pagination-bottom: -1.7rem;
  }
  .swiper-pagination-bullet {
    --swiper-pagination-bullet-width: 1.2rem;
    --swiper-pagination-bullet-height: 1.2rem;
    --swiper-pagination-bullet-horizontal-gap: 0.6rem;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    width: 1.2rem;
  }
}

@media (max-width: 1200px){
  .p-top-fv {
    height: 100%;
    max-height: unset;
    min-height: unset;
    padding-top: 10rem;
  }
  .p-top-fv__leftBlock {
    margin-top: 3.2rem;
  }
  .p-top-duty__ttlText {
    font-size: max(3vw, 23px);
  }
  .p-top-duty__ttl {
    font-size: max(4.4166666667vw, 33px);
  }
  .p-top-duty__text {
    font-size: max(1.9166666667vw, 16px);
    font-weight: 500;
  }
  .p-top-duty__banner {
    padding-inline: 5.8181818182% 6.5454545455%;
  }
  .p-top-duty__bannerTtl-S {
    font-size: max(2.0833333333vw, 15px);
  }
  .p-top-duty__bannerTtl-L {
    font-size: max(5vw, 37px);
    margin-right: max(2.9166666667vw, 8px);
  }
  .p-top-duty__banner-text {
    font-size: max(2.5vw, 15px);
  }
  .p-top-cat__ttl {
    font-size: max(3.8333333333vw, 35px);
  }
  .p-top-cat__ttlText {
    font-size: max(2.3333333333vw, 16px);
  }
  .p-top-cat__card-container {
    --repeat: 3;
  }
  .p-top-recruit__ttl {
    font-size: max(8.5833333333vw, 63px);
  }
  .p-top-recruit__ttl-year {
    font-size: max(3.0833333333vw, 22px);
  }
  .p-top-news__list a {
    display: grid;
    gap: 2rem;
    grid-template-areas: "g-1 g-2" "g-3 g-3";
    grid-template-columns: 9rem 1fr;
    padding-bottom: 1.45rem;
  }
  .p-top-news__list-time {
    font-size: 2.3rem;
    grid-area: g-1;
  }
  .p-top-news__list-cat {
    font-size: 1.3rem;
    grid-area: g-2;
    line-height: 1.4615384615;
    padding-block: 0.8rem;
    padding-inline: 2.4rem;
    width: -moz-fit-content;
    width: fit-content;
  }
  .p-top-news__list-ttl {
    font-size: max(1.5vw, 15px);
    font-weight: 400;
    grid-area: g-3;
  }
  .p-top-news__list-time {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .p-top-news__list-cat {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .p-top-news__list-ttl {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .p-top-column__list-caption {
    padding: 2.4rem;
  }
  .p-top-column__list-ttl {
    font-size: max(2.5vw, 20px);
    line-height: 1.45;
  }
  .p-top-column__list-text {
    font-size: max(1.5vw, 14px);
    margin-top: max(1.5vw, 5px);
  }
}

@media (max-width: 1080px){
  .p-top-cat__btn-image {
    left: 5.8rem;
  }
}

@media screen and (max-width: 1080px){
  html {
    font-size: 57.5%;
  }
  input[type=text],
  input[type=date],
  input[type=password],
  input[type=email],
  input[type=time],
  input[type=tel],
  input[type=number] {
    padding: 10px;
  }
  textarea {
    height: 170px;
  }
  input[type=radio] + .mwform-radio-field-text {
    margin: 0;
    padding: 10px 5px 12px 23px;
  }
  input[type=radio] + .mwform-radio-field-text::before {
    height: 15px;
    width: 15px;
  }
  input[type=radio] + .mwform-radio-field-text::after {
    content: "";
    height: 9px;
    left: 3px;
    width: 9px;
  }
  input[type=checkbox] + label {
    padding-left: 30px;
  }
}

@media (max-width: 1024px){
  .p-top-banner__recruit-text {
    font-size: 1.6rem;
  }
  .p-top-banner__festival-text {
    font-size: max(2.1484375vw, 16px);
  }
  .p-top-banner__festival-link {
    margin-top: 2rem;
  }
  .p-top-banner__festival-link {
    font-size: 1.5rem;
  }
}

@media (max-width: 960px){
  .p-top-fv__inner {
    grid-template-columns: 1fr 52%;
  }
}

@media (max-width: 820px){
  .p-top-fv__inner {
    gap: 4rem;
    grid-template-columns: 1fr;
  }
  .p-top-fv__leftBlock {
    margin-top: 0;
  }
  .p-top-fv__ttl {
    font-size: max(8.5365853659vw, 40px);
  }
  .p-top-fv__ttl span {
    width: max(55.2486187845vw, 200px);
  }
  .p-top-fv__btnBox {
    flex-direction: row;
  }
  .p-top-intro {
    padding-bottom: 4.8rem;
    padding-top: 7.4rem;
  }
  .p-top-intro__topBlock {
    gap: 0;
    grid-template-columns: 1fr;
  }
  .p-top-intro__topImage {
    width: 94.6666666667%;
  }
  .p-top-intro__topTextBox {
    display: contents;
  }
  .p-top-intro__topTtl {
    color: var(--white);
    font-size: max(7.3170731707vw, 30px);
    left: 7.8873239437%;
    line-height: 1.4333333333;
    position: absolute;
    top: 21.3333333333vw;
  }
  .p-top-intro__topText {
    font-weight: 400;
    line-height: 1.8095238095;
    padding-inline: var(--pi);
  }
  .p-top-intro__topBtn {
    margin-top: 1.6rem;
    padding-inline: var(--pi);
  }
  .p-top-cat__card-container {
    margin-top: 2rem;
    --repeat: 2;
  }
  .p-top-cat__card-caption p {
    font-weight: 500;
  }
  .p-top-cat__btn a {
    height: 6.4rem;
    margin-top: 2.1rem;
    width: 33.5rem;
  }
}

@media (max-width: 768px){
  .p-top-fv__btn-image {
    left: 2.7rem;
  }
  .p-top-fv__btn--left a {
    padding-left: 4.7rem;
    width: 17.3rem;
  }
  .p-top-fv__btn--right a {
    padding-left: 5.23rem;
    width: 25.9rem;
  }
  .p-top-intro__bottomBlock {
    gap: 0;
    grid-template-columns: 1fr;
    margin-top: 6.6rem;
  }
  .p-top-intro__bottomLeftBox {
    margin-top: 4.8rem;
    order: 4;
    padding-block: 2.7rem;
    width: 87.2%;
  }
  .p-top-intro__spLeftBox {
    order: 5;
  }
  .p-top-intro__bottomLeft-inner {
    width: 64.8318042813%;
  }
  .p-top-intro__bottomLeft-ttl {
    width: max(36.4583333333vw, 174px);
  }
  .p-top-intro__bottomLeft-text {
    font-weight: 400;
    line-height: 1.8095238095;
    margin-top: 1.4rem;
    padding-inline: var(--pi);
    text-align: left;
  }
  .p-top-intro__bottomLeft-btn a {
    width: 33.5rem;
  }
  .p-top-intro__bottomLeft-btn a span::before {
    left: -3.6rem;
  }
  .p-top-intro__bottomCenterBox {
    order: 1;
    padding-left: var(--pi);
  }
  .p-top-intro__bottomCenter-head {
    width: 23.9436619718%;
  }
  .p-top-intro__bottomCenter-copy {
    line-height: 1.4333333333;
    margin-top: 0.6rem;
    writing-mode: horizontal-tb;
  }
  .p-top-intro__bottomRightBox {
    margin-left: auto;
    margin-top: 3.4rem;
    order: 2;
    padding-block: 2.7rem;
    width: 87.2%;
  }
  .p-top-intro__bottomRight-inner {
    width: 64.8318042813%;
  }
  .p-top-intro__bottomRight-ttl {
    width: max(28.6458333333vw, 114px);
  }
  .p-top-intro__bottomRight-hukidasi {
    translate: 172% -110%;
  }
  .p-top-intro__bottomRight-text {
    font-weight: 400;
    line-height: 1.8095238095;
    margin-top: 1.4rem;
    padding-inline: var(--pi);
    text-align: left;
  }
  .p-top-intro__bottomRight-btn a span::before {
    left: -3.6rem;
  }
  .p-top-intro__spRightBox {
    order: 3;
  }
  .p-top-duty {
    padding-block: 4.8rem;
  }
  .p-top-duty__text {
    line-height: 1.75;
    margin-top: 2rem;
  }
  .p-top-duty__banner {
    border-radius: 2px;
    margin-top: 1.96rem;
    outline: 4px solid var(--main);
    padding-block: 3.6rem 2.8rem;
    padding-inline: 8.6567164179%;
  }
  .p-top-duty__banner-linkBox {
    flex-direction: column;
    gap: 2.7rem;
    translate: 0;
    width: 50.3597122302%;
  }
  .p-top-duty__banner-image {
    width: 71.4285714286%;
  }
  .p-top-duty__textUnder {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.44;
    margin-top: 1.2rem;
  }
  .p-top-duty__textUnder a {
    font-weight: 400;
  }
  .caption {
    margin-top: 0.8rem;
  }
  .p-top-duty__banner-text {
    font-weight: 400;
  }
  .p-top-cat {
    padding-top: 3.4rem;
  }
  .p-top-cat__card a {
    padding: 1rem 2.2rem 1.1rem;
  }
  .p-top-cat__card-image {
    width: 5.4rem;
  }
  .p-top-cat__btn-image {
    left: 6.8rem;
  }
  .p-top-recruit {
    padding-top: 4.4rem;
  }
  .p-top-recruit__inner a {
    background-image: url(../../images/top/recruit-banner@sp.webp);
    height: 20rem;
    padding-left: 14.6268656716%;
  }
  .p-top-recruit__ttlBox {
    padding-top: 6.3rem;
  }
  .p-top-recruit__text {
    font-size: 1.6rem;
    line-height: 1.6875;
    margin-top: 0.94rem;
  }
  .p-top-news {
    padding-top: 6.6rem;
  }
  .p-top-news__cat-container {
    max-width: 100%;
  }
  .p-top-news__btn a {
    margin-inline: auto;
    margin-top: 2rem;
  }
  .p-top-news__list-container {
    gap: 2rem;
  }
  .p-top-news__list a {
    gap: 0.9rem 1.5rem;
  }
  .p-top-column {
    padding-block: 5rem 6.6rem;
  }
  .p-top-column__list-container {
    --repeat: 1;
    gap: 3.4rem;
    margin-top: 4.4rem;
  }
  .p-top-column__btn a {
    margin-inline: auto;
    margin-top: 2rem;
  }
  .p-top-banner {
    padding-top: 4.4rem;
  }
  .p-top-banner__inner {
    --column: 1;
    gap: 4rem;
  }
  .p-top-banner__recruit a {
    border-width: 4px;
  }
  .p-top-banner__recruit-ttl {
    font-size: 4rem;
  }
  .p-top-banner__festival a {
    padding-block: 2.3rem;
    padding-inline: 2rem;
  }
  .p-top-banner__festival-image {
    max-height: 160px;
  }
}

@media not all and (max-width: 768px){
  a[href^="tel:"] {
    pointer-events: none;
  }
}

@media screen and (max-width: 768px){
  :root {
    --pi: 2rem;
  }
  html {
    font-size: 62.5%;
  }
}

@media (max-width: 500px){
  .p-top-fv__btnBox {
    flex-direction: column;
    margin-top: 1rem;
  }
  .p-top-fv__btn a {
    height: 4.8rem;
  }
  .p-top-duty__banner-ttl {
    display: flex;
  }
}

@media (max-width: 480px){
  .p-top-cat__card-container {
    --repeat: 1;
  }
  .p-top-news__linkBlock {
    margin-top: 2.2rem;
  }
  .p-top-news__cat-container {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .p-top-news__cat {
    height: 5.4rem;
    position: relative;
  }
  .p-top-news__cat::before {
    content: "";
  }
  .p-top-news__cat.clicked {
    background-color: var(--white);
    color: var(--text-color);
  }
  .p-top-news__list-container {
    display: flex;
    opacity: 1;
    --height: 0;
    height: var(--height);
    --mt: 0;
    margin-top: var(--mt);
    overflow: hidden;
    transition: var(--transition);
  }
  .p-top-news__list-container--pc {
    display: none;
  }
}

@media (hover: hover) and (pointer: fine){
  a:hover,
  button:hover {
    opacity: 0.7;
  }
  .p-top-fv__btn a:hover {
    background-color: var(--cta);
    opacity: 1;
  }
  .p-top-fv__btn a:hover .p-top-fv__btn-image svg {
    border: 1px solid var(--text-color);
  }
  .p-top-cat__btn a:hover {
    background-color: var(--cta);
    opacity: 1;
  }
  .p-top-cat__btn a:hover .p-top-cat__btn-image svg {
    border: 1px solid var(--text-color);
  }
  .p-top-news__list a:hover {
    color: var(--main);
    opacity: 1;
  }
}

@media all and (-ms-high-contrast: none){
  html,
  body {
    display: none;
  }
}
/*# sourceMappingURL=../maps/project/top.css.map */
