@charset "UTF-8";
/* --------------------------
  A (more) Modern CSS Reset 
  --------------------------*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  margin: initial;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list],
ul,
ol {
  list-style: none;
  -webkit-padding-start: initial;
          padding-inline-start: initial;
  margin: initial;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  margin: initial;
  overflow-wrap: anywhere;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/* リンク */
a {
  text-decoration: none;
  color: #000;
}

p {
  margin: initial;
}

/* -----------------
  variable
-----------------*/
/* -----------------
  function
-----------------*/
/* -----------------
  mixin
-----------------*/
/* -----------------
  font
-----------------*/
html {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  color: #363636;
}

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

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

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

/* ----------------------------
MARGIN
---------------------------- */
.m-auto {
  margin: auto;
}

/* ----------------------------
下層キービジュアル
---------------------------- */
.kv {
  position: relative;
  height: 21.25rem;
}
@media (max-width: 1200px) {
  .kv {
    height: 25rem;
  }
}
@media (max-width: 768px) {
  .kv {
    height: 23.75rem;
  }
}
@media (max-width: 450px) {
  .kv {
    height: 17.5rem;
  }
}
.kv .kv__title-wrap {
  width: 88%;
  height: 100%;
  background: linear-gradient(180deg, #fff 0%, #fff 50%, #fcf7e7 50%, #fcf7e7 100%);
}
.kv__title {
  display: grid;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 14%;
  transform: translateY(-50%);
}
@media (max-width: 1200px) {
  .kv__title {
    display: block;
    top: unset;
    bottom: 8%;
    transform: initial;
  }
}
@media (max-width: 450px) {
  .kv__title {
    left: 4%;
    bottom: 10%;
  }
}
@media (max-width: 1200px) {
  .kv__title span {
    display: block;
  }
}
.kv__title span:first-of-type {
  font-weight: 400;
  font-size: min(2.8vw, 3.125rem);
  line-height: 1.44;
}
@media (max-width: 1200px) {
  .kv__title span:first-of-type {
    font-size: 3.125rem;
  }
}
@media (max-width: 768px) {
  .kv__title span:first-of-type {
    font-size: 1.875rem;
  }
}
.kv__title span:nth-of-type(2) {
  font-size: 1.25rem;
  color: #e20114;
  font-weight: 400;
}
.kv__image {
  position: absolute;
  top: 0;
  right: 0;
}

/* ----------------------------
パンくずリスト
---------------------------- */
.breadcrumb {
  max-width: 75rem;
  margin: 0 auto;
  padding-top: 1.25rem;
}
@media (max-width: 1200px) {
  .breadcrumb {
    padding: 1.25rem 1.25rem 0;
  }
}
.breadcrumb__list {
  display: flex;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}
@media (max-width: 768px) {
  .breadcrumb__list {
    font-size: 0.75rem;
  }
}
.breadcrumb__list-item:not(:last-of-type) {
  position: relative;
}
.breadcrumb__list-item:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 0.25rem;
  height: 0.625rem;
  background-image: url(./../../assets/images/icon_arrow-black.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 55%;
  right: -0.75rem;
  transform: translateY(-50%);
}
.breadcrumb__home {
  padding-bottom: 0.3125rem;
  border-bottom: 1px solid #707070;
}

/* ----------------------------
タイトル
---------------------------- */
.h2_title01 {
  text-align: center;
  padding-top: 3.125rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #dbdbdb;
}
.h2_title01 span {
  position: relative;
  font-size: 1.5rem;
  font-weight: 400;
  padding-top: 0.625rem;
}
.h2_title01 span::before {
  content: "";
  display: block;
  width: 0.125rem;
  height: 2rem;
  background-color: #e20114;
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
}

.h2_title02 {
  text-align: center;
}
.h2_title02__en {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #e20114;
  margin: 0 0 0.3125rem;
}
.h2_title02__jp {
  font-size: 1.375rem;
  font-weight: 500;
  margin: 0;
}

.h2_title03 {
  padding-bottom: 1.5625rem;
  border-bottom: 1px solid #DBDBDB;
}
.h2_title03 span {
  font-size: 1.25rem;
}

.h3_title01 {
  text-align: center;
  padding-bottom: 1.125rem;
}
.h3_title01 span {
  position: relative;
  font-size: 1.375rem;
  font-weight: 400;
}
.h3_title01 span::after {
  content: "";
  display: block;
  width: 3.125rem;
  height: 0.125rem;
  background-color: #e20114;
  position: absolute;
  bottom: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
}

.h3_title02 {
  text-wrap: initial;
}
.h3_title02 span {
  color: #e20114;
  font-size: 1.25rem;
  line-height: 1.5;
}

/* ----------------------------
ボタン
---------------------------- */
.link-button01 {
  min-width: 15rem;
  height: 3.125rem;
  border: 1px solid #e20114;
  border-radius: 624.9375rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #e20114;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0 2.5rem;
  gap: 0.5rem;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
}
@media (max-width: 768px) {
  .link-button01 {
    padding: 0 0.9375rem;
  }
}
.link-button01::before {
  display: block;
  content: url(./../../assets/images/icon_arrow-right.svg);
  width: 1.25rem;
  height: 1.25rem;
}
.link-button01::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #e20114;
  border-radius: 624.9375rem;
  transition: all 0.4s ease-out;
}
.link-button01:hover {
  color: #fff;
}
.link-button01:hover::before {
  display: block;
  content: url(./../../assets/images/icon_arrow-right02.svg);
  width: 1.25rem;
  height: 1.25rem;
}
.link-button01:hover::after {
  width: 100%;
  border: 1px solid #e20114;
  border-radius: 624.9375rem;
  z-index: -1;
}

.link-button02 {
  width: 15rem;
  height: 3.125rem;
  border: 1px solid #e20114;
  background-color: #e20114;
  color: #fff;
  border-radius: 624.9375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 500;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  position: relative;
  overflow: hidden;
}
.link-button02::before {
  content: "";
  display: block;
  background-image: url(./../../assets/images/icon_arrow-right-white.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 0.5625rem;
  height: 1.0625rem;
}
.link-button02::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #fff;
  border-radius: 624.9375rem;
  transition: all 0.4s ease-out;
}
.link-button02:hover {
  color: #e20114;
  z-index: 0;
}
.link-button02:hover::before {
  background-image: url(./../../assets/images/icon_arrow-red.svg);
}
.link-button02:hover::after {
  width: 100%;
  border-radius: 624.9375rem;
  z-index: -1;
}

.btn-top-wrap {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
@media (max-width: 450px) {
  .btn-top-wrap {
    display: none;
  }
}
.btn-top-wrap .btn-top {
  display: grid;
  justify-content: center;
  align-items: center;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background-color: #e20114;
  transition: 0.5s;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.btn-top-wrap .btn-top__contents {
  display: grid;
  row-gap: 0.3125rem;
  justify-content: center;
  color: #fff;
  font-weight: bold;
}
.btn-top-wrap .btn-top__contents img {
  margin: 0 auto;
}
.btn-top-wrap.show {
  opacity: 1;
  visibility: visible;
}

/* ----------------------------
アンカーリンク
---------------------------- */
.anchor-link__list {
  display: flex;
  justify-content: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media (max-width: 768px) {
  .anchor-link__list {
    flex-wrap: wrap;
    gap: 1.875rem;
  }
}
.anchor-link__list-item {
  color: #e20114;
  font-size: 1.125rem;
  font-weight: 500;
}
.anchor-link__list-item a {
  padding-left: 1.75rem;
  position: relative;
}
.anchor-link__list-item a::after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background-image: url(./../../assets/images/icon_arrow-bottom.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
}

/* ----------------------------
リンク
---------------------------- */
.link--right-arrow-black span {
  padding-left: 1.5625rem;
  font-size: 1rem;
  position: relative;
  display: flex;
}
.link--right-arrow-black span::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url(./../../assets/images/icon_arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
}
.link--right-arrow-black-lg span {
  padding-left: 1.5625rem;
  font-size: 1.25rem;
  position: relative;
  font-weight: bold;
  display: flex;
}
.link--right-arrow-black-lg span::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url(./../../assets/images/icon_arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 59%;
  left: 0%;
  transform: translateY(-50%);
}
.link--right-arrow-red span {
  padding-left: 1.5625rem;
  color: #e20114;
  font-size: 1.25rem;
  position: relative;
  display: flex;
}
.link--right-arrow-red span::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url(./../../assets/images/icon_arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
}
.link--target-blank-red span {
  padding-right: 1.5625rem;
  font-size: 1rem;
  font-weight: bold;
  position: relative;
}
.link--target-blank-red span::after {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url(./../../assets/images/icon_target-blank-red.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
}

.nav-link {
  display: grid;
  row-gap: 1.875rem;
}

/* ----------------------------
dl
---------------------------- */
.definition-list01 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.definition-list01 dt {
  padding: 1.375rem 0;
  width: 26%;
  padding-left: 7.375rem;
}
@media (max-width: 768px) {
  .definition-list01 dt {
    width: 30%;
    padding: 0.625rem;
  }
}
.definition-list01 dt:nth-of-type(odd) {
  background-color: #fff4f4;
}
.definition-list01 dd {
  margin-left: initial;
  padding: 1.375rem 0.625rem 1.375rem 0;
  width: 74%;
}
@media (max-width: 768px) {
  .definition-list01 dd {
    width: 70%;
    padding: 0.625rem;
  }
}
.definition-list01 dd:nth-of-type(odd) {
  background-color: #fff4f4;
}

.definition-list02 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.definition-list02 dt {
  padding: 1.375rem 0;
  width: 20%;
  text-align: right;
  padding-right: 4.125rem;
}
@media (max-width: 768px) {
  .definition-list02 dt {
    width: 100%;
    padding: 1.25rem 1.25rem 0.625rem;
    text-align: left;
  }
}
.definition-list02 dt:nth-of-type(odd) {
  background-color: #fff4f4;
}
.definition-list02 dd {
  margin-left: initial;
  padding: 1.375rem 5.625rem 1.25rem 0;
  width: 80%;
}
@media (max-width: 768px) {
  .definition-list02 dd {
    width: 100%;
    padding: 0.625rem 1.25rem 1.25rem;
  }
}
.definition-list02 dd:nth-of-type(odd) {
  background-color: #fff4f4;
}

/* ----------------------------
リスト
---------------------------- */
.service-list-nav {
  position: relative;
  z-index: 20;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .service-list-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 20.9375rem;
    gap: 0.625rem;
  }
}

.service-list-nav-item {
  width: 7.5rem;
  height: 7.5rem;
  background-color: #fff;
  display: block;
  border-radius: 0.3125rem;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  text-align: center;
  padding: 0.4375rem;
  gap: 0.3125rem;
  background-repeat: no-repeat;
  background-position: center bottom 75%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  cursor: pointer;
}
.service-list-nav-item:hover {
  background-color: #FFF4F4;
}
@media (max-width: 768px) {
  .service-list-nav-item {
    width: 6.5625rem;
    height: 6.5625rem;
  }
}
.service-list-nav-item__text {
  font-size: 0.875rem;
  line-height: 1.125rem;
}
@media (max-width: 768px) {
  .service-list-nav-item__text {
    font-size: 0.75rem;
  }
}
.service-list-nav-item__text--bold {
  font-size: 0.9375rem;
  color: #e20114;
  font-weight: bold;
}
@media (max-width: 768px) {
  .service-list-nav-item__text--bold {
    font-size: 0.875rem;
  }
}
.service-list-nav-item__image {
  margin: auto;
}

.service-list-item {
  border: 1px solid #c6b8b8;
  border-radius: 0.625rem;
  position: relative;
}
.service-list-item:has(> a):hover {
  border-color: #FFF4F4;
  background-color: #FFF4F4;
  border-radius: 0.625rem;
}
.service-list-item__image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -55%);
}
.service-list-item__text {
  display: block;
  font-size: 1.125rem;
  color: #e20114;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.375rem;
  padding-top: 2.625rem;
  padding-bottom: 1.375rem;
}
@media (max-width: 768px) {
  .service-list-item__text {
    font-size: 0.9375rem;
    padding-top: 1.875rem;
  }
}
.service-list-item__text:not(.nolink)::before {
  display: block;
  content: url(./../../assets/images/icon_arrow-right.svg);
  width: 1.25rem;
  height: 1.25rem;
}
@media (max-width: 768px) {
  .service-list-item__text:not(.nolink)::before {
    position: absolute;
    bottom: 0;
    transform: translateY(50%);
  }
}

.list-num {
  list-style: decimal;
  padding-left: 1.125rem;
}

/* ----------------------------
カード
---------------------------- */
.card-pc-col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
}
@media (max-width: 768px) {
  .card-pc-col2 {
    grid-template-columns: initial;
    gap: 3.75rem;
  }
}
.card-pc-col2 figure {
  margin-bottom: 1.25rem;
}
.card-pc-col2 h3 {
  font-size: 1.25rem;
  margin-bottom: 0.9375rem;
  font-weight: 500;
  white-space: break-spaces;
  line-height: 1.5;
}
.card-pc-col2 p {
  font-size: 1.125rem;
  line-height: 1.6666666667;
  margin-bottom: 1.5625rem;
}
@media (max-width: 768px) {
  .card-pc-col2 p {
    font-size: 1rem;
  }
}
.card-pc-col2 ul {
  padding-left: 1.5rem;
}
.card-pc-col2 ul li {
  position: relative;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.6666666667;
}
.card-pc-col2 ul li::before {
  content: "";
  display: inline-block;
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 50%;
  background-color: #e20114;
  position: absolute;
  top: 0.9375rem;
  left: -0.9375rem;
}

/* ----------------------------
テーブル
---------------------------- */
.wp-block-heading {
  text-align: center;
  padding-top: 3.125rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #dbdbdb;
  max-width: 1000px;
  margin: 50px auto 30px;
  position: relative;
}

.wp-block-heading span::before {
  content: "";
  display: block;
  width: 0.125rem;
  height: 2rem;
  background-color: #e20114;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.wp-block-table {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto 50px;
}

.wp-block-table table {
  width: 100%;
  table-layout: fixed;
}

.wp-block-table table tr:first-child td {
  background-color: #eee;
}

/* -----------------
  header（TOPページ）
-----------------*/
.header {
  width: 100%;
  padding: 0.5rem 0 1.125rem;
  position: fixed;
  top: 0;
  left: 50%;
  background-color: #fff;
  transform: translateX(-50%);
  z-index: 100;
}
@media (max-width: 768px) {
  .header {
    padding: initial;
    width: 100%;
    height: 5rem;
    background-color: #fff;
    z-index: 80;
  }
}
.header__top {
  max-width: 75rem;
  margin: 0 auto 1.25rem;
}
@media (max-width: 768px) {
  .header__top {
    order: 2;
  }
}
.header__top ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}
@media (max-width: 768px) {
  .header__top ul {
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
  }
}
.header__top ul li {
  font-size: 0.75rem;
  font-weight: 500;
}
.header__top ul .link-blank a {
  position: relative;
  padding-right: 1.0625rem;
}
.header__top ul .link-blank a::after {
  content: "";
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  background-image: url(../../assets/images/icon_target-blank.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
}
.header__logo {
  text-align: center;
  margin-bottom: 2.5rem;
}
.header__logo a {
  display: inline-block;
  width: 22.3125rem;
  text-align: center;
}
.header__navi {
  display: flex;
  justify-content: center;
  -moz-column-gap: 3.125rem;
       column-gap: 3.125rem;
}
@media (max-width: 768px) {
  .header__navi {
    order: 1;
    display: grid;
    gap: 1.25rem;
  }
}
.header__navi-item {
  display: grid;
  justify-content: center;
  row-gap: 0.1875rem;
  text-align: center;
}
.header .navi-item_jp {
  color: #363636;
  font-size: 0.875rem;
  font-weight: 500;
}
.header .navi-item_en {
  color: #e20114;
  font-size: 0.75rem;
  font-weight: 500;
}
.header .hamburger {
  display: none;
}
@media (max-width: 768px) {
  .header .hamburger {
    display: flex !important;
    width: 5rem;
    height: 5rem;
    padding: 1.875rem;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
  }
}
@media (max-width: 768px) {
  .header .hamburger span {
    width: 1.375rem;
    height: 0.125rem;
    background-color: #e20114;
    position: absolute;
    transition: all 0.5s ease;
  }
}
@media (max-width: 768px) {
  .header .hamburger span.ba1 {
    top: 1.875rem;
  }
}
@media (max-width: 768px) {
  .header .hamburger span.ba3 {
    bottom: 1.875rem;
  }
}
@media (max-width: 768px) {
  .header__contents {
    padding: 3.75rem 2.5rem 0;
    width: 100%;
    position: absolute;
    top: 0;
    right: -100%;
    transform: translate(100%);
    height: 100vh;
    z-index: 99;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    row-gap: 2.5rem;
    transition: all 0.5s;
  }
}
@media (max-width: 768px) {
  .header__contents.open {
    top: 0;
    right: 100%;
  }
}
@media (max-width: 768px) {
  .header__contents.open ~ .hamburger .ba1 {
    top: 2.5rem;
    transform: rotate(135deg);
  }
}
@media (max-width: 768px) {
  .header__contents.open ~ .hamburger .ba2 {
    display: none;
  }
}
@media (max-width: 768px) {
  .header__contents.open ~ .hamburger .ba3 {
    top: 2.5rem;
    transform: rotate(-135deg);
  }
}
@media (max-width: 768px) {
  .header__sp-logo {
    width: 15.5625rem;
    position: absolute;
    top: 50%;
    left: 1.0625rem;
    transform: translateY(-50%);
  }
}
@media (max-width: 768px) {
  .header__sp-logo a {
    width: 100%;
  }
}

/* -----------------
  header（下層ページ用）
-----------------*/
.page-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #fff;
  position: fixed;
  z-index: 90;
  padding-bottom: 1.25rem;
}
@media (max-width: 1200px) {
  .page-header {
    padding-bottom: initial;
  }
}
.page-header__contents {
  width: 75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1200px) {
  .page-header__contents {
    width: 100%;
    height: 5rem;
  }
}
.page-header__logo {
  max-width: 16.5rem;
  padding-left: 1.0625rem;
}
.page-header__link {
  padding-bottom: 1rem;
}
.page-header__navi {
  display: flex;
  flex-direction: column-reverse;
  gap: 0.625rem;
}
@media (max-width: 1200px) {
  .page-header__navi {
    padding: 3.75rem 2.5rem 0;
    width: 100%;
    position: absolute;
    top: 0;
    right: -100%;
    transform: translate(100%);
    height: 100vh;
    z-index: 99;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    row-gap: 2.5rem;
    transition: all 0.5s;
  }
}
.page-header__navi nav {
  display: flex;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}
.page-header__navi nav a {
  display: grid;
  text-align: center;
  row-gap: 0.1875rem;
  text-align: center;
}
@media (max-width: 1200px) {
  .page-header__navi.open {
    top: 0;
    right: 100%;
  }
}
.page-header__navi.open .page-header__logo {
  position: fixed;
  top: 0;
  left: 0;
}
.page-header__navi.open nav {
  display: grid;
  gap: 1.25rem;
}
@media (max-width: 1200px) {
  .page-header__navi.open ~ .sp-hamburger .ba1 {
    top: 2.5rem;
    transform: rotate(135deg);
  }
}
@media (max-width: 1200px) {
  .page-header__navi.open ~ .sp-hamburger .ba2 {
    display: none;
  }
}
@media (max-width: 1200px) {
  .page-header__navi.open ~ .sp-hamburger .ba3 {
    top: 2.5rem;
    transform: rotate(-135deg);
  }
}
.page-header .page-link__jp {
  font-size: 0.875rem;
  color: #363636;
  font-weight: 500;
}
.page-header .page-link__en {
  font-size: 0.75rem;
  color: #e20114;
  font-weight: 500;
}
.page-header__link {
  padding-top: 0.5rem;
}
@media (max-width: 1200px) {
  .page-header__link {
    padding-top: initial;
  }
}
.page-header__link ul {
  display: flex !important;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .page-header__link ul {
    justify-content: center;
  }
}
.page-header__link li {
  font-size: 0.75rem;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .page-header__link li {
    font-size: 0.75rem;
    font-weight: 500;
  }
}
.page-header__link .link-blank a {
  position: relative;
  padding-right: 1.0625rem;
}
.page-header__link .link-blank a::after {
  content: "";
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  background-image: url(../../assets/images/icon_target-blank.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
}
.page-header .sp-hamburger {
  display: none;
}
@media (max-width: 1200px) {
  .page-header .sp-hamburger {
    display: flex !important;
    width: 5rem;
    height: 5rem;
    padding: 1.875rem;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
  }
}
@media (max-width: 1200px) {
  .page-header .sp-hamburger span {
    width: 1.375rem;
    height: 0.125rem;
    background-color: #e20114;
    position: absolute;
    transition: all 0.5s ease;
  }
}
@media (max-width: 1200px) {
  .page-header .sp-hamburger span.ba1 {
    top: 1.875rem;
  }
}
@media (max-width: 1200px) {
  .page-header .sp-hamburger span.ba3 {
    bottom: 1.875rem;
  }
}
.page-header .sp-hamburger:hover {
  cursor: pointer;
}

.footer-link {
  background-color: #fcf9e5;
  padding: 3.5625rem 0 3.125rem;
  margin-top: 7.5rem;
}
@media (max-width: 768px) {
  .footer-link {
    padding: 2.3125rem 1.25rem;
  }
}
.footer-link__title {
  text-align: center;
  font-size: 1.375rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
}
.footer-link__btn-wrap {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  gap: 0.625rem;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer-link__btn-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 1.25rem;
  }
}
.footer-link__btn {
  display: block;
  max-width: 17.5rem;
  width: 100%;
  height: 7.5rem;
  background-color: #fff;
  border-radius: 0.3125rem;
  box-shadow: 2px 1px 6px rgba(37, 87, 37, 0.16);
  position: relative;
}
.footer-link__btn:hover {
  background-color: #FFF4F4;
}
@media (max-width: 768px) {
  .footer-link__btn {
    max-width: initial;
  }
}
.footer-link__content {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .footer-link__content {
    top: 30%;
  }
}
.footer-link__lead-text {
  font-size: 0.8125rem;
  color: #363636;
}
.footer-link__main-text {
  color: #e20114;
  font-size: 1.25rem;
  position: relative;
  padding-right: 1.875rem;
}
.footer-link__main-text:after {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url(./../../assets/images/icon_arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.footer-link__btn:first-of-type {
  background-image: url(./../../assets/images/footer_link-btn03.png);
  background-repeat: no-repeat;
}
@media (max-width: 640px) {
  .footer-link__btn:first-of-type {
    background-size: 50%;
    background-position: bottom left;
  }
}
.footer-link__btn:nth-of-type(2) {
  background-image: url(./../../assets/images/footer_link-btn02.png);
  background-repeat: no-repeat;
}
@media (max-width: 640px) {
  .footer-link__btn:nth-of-type(2) {
    background-size: 50%;
    background-position: bottom left;
  }
}
.footer-link__btn:nth-of-type(3) {
  background-image: url(./../../assets/images/footer_link-btn01.png);
  background-repeat: no-repeat;
}
@media (max-width: 640px) {
  .footer-link__btn:nth-of-type(3) {
    background-size: 45%;
    background-position: bottom left;
  }
}
.footer-link__btn:nth-of-type(4) {
  background-image: url(./../../assets/images/footer_link-btn04.png);
  background-repeat: no-repeat;
}
@media (max-width: 640px) {
  .footer-link__btn:nth-of-type(4) {
    background-size: 30%;
    background-position: bottom left;
  }
}

.footer {
  padding: 2.5rem 0 0.625rem;
}
@media (max-width: 768px) {
  .footer {
    padding: 2.3125rem 1.25rem;
  }
}
.footer__title {
  display: grid;
  justify-content: center;
  text-align: center;
  margin-bottom: 3.4375rem;
}
.footer__title span:first-of-type {
  font-size: 1.25rem;
  font-weight: 500;
}
.footer__title span:nth-of-type(2) {
  font-size: 1.5rem;
  font-weight: 500;
}
.footer__text {
  margin-bottom: 2.375rem;
}
.footer__text p {
  text-align: center;
  font-size: 1.375rem;
}
@media (max-width: 768px) {
  .footer__text p {
    font-size: 0.875rem;
  }
}
.footer__office-hours {
  display: flex;
  justify-content: center;
  margin-bottom: 0.25rem;
}
.footer__office-hours dt {
  font-size: 1.5rem;
  padding-right: 1rem;
  border-right: 2px solid #363636;
}
@media (max-width: 768px) {
  .footer__office-hours dt {
    font-size: 0.875rem;
  }
}
.footer__office-hours dd {
  font-size: 1.5rem;
  padding-left: 1rem;
}
@media (max-width: 768px) {
  .footer__office-hours dd {
    font-size: 0.875rem;
  }
}
.footer__tel-number {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.9375rem;
       column-gap: 0.9375rem;
  margin-bottom: 1.0625rem;
}
@media (max-width: 768px) {
  .footer__tel-number {
    display: grid;
  }
}
.footer__tel {
  display: flex;
  align-items: center;
}
.footer__tel dt {
  font-size: 1.375rem;
  padding-right: 0.375rem;
  font-weight: 500;
}
.footer__tel dd {
  color: #e20114;
  font-size: 2.125rem;
  font-weight: 500;
}
.footer__tel dd a {
  pointer-events: none;
}
@media (max-width: 768px) {
  .footer__tel dd a {
    pointer-events: initial;
  }
}
.footer__fax {
  display: flex;
  gap: 0.625rem;
}
@media (max-width: 768px) {
  .footer__fax {
    justify-content: center;
  }
}
.footer__fax dt {
  font-size: 1.25rem;
  font-weight: 500;
}
.footer__fax dd {
  font-size: 1.25rem;
  font-weight: 500;
}
.footer__btn {
  display: flex;
  justify-content: center;
}
.footer__sns-link {
  margin: 2.8125rem 0 1.4375rem;
}
.footer__sns-link nav {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.875rem;
       column-gap: 0.875rem;
}
.footer__copyright {
  display: flex;
  justify-content: center;
}
.footer__copyright span {
  font-size: 0.875rem;
}

.home__kv-wrapper {
  padding-bottom: 6.875rem;
  background: linear-gradient(180deg, #fff 0%, #fff 68%, #E20114 68%, #E20114 100%);
}
@media (max-width: 768px) {
  .home__kv-wrapper {
    padding-bottom: 3.75rem;
  }
}
.home__kv-image {
  max-width: 75rem;
  margin: auto;
  overflow: hidden;
}
@media (max-width: 768px) {
  .home__kv-image {
    margin: 0 1.25rem;
  }
}
.home__kv-image img {
  width: 100%;
}
.home__service-nav {
  margin-top: -9.5625rem;
  margin-bottom: 2.0625rem;
}
@media (max-width: 768px) {
  .home__service-nav {
    margin: -2.8125rem auto 0;
  }
}

.home-about {
  max-width: 87.5rem;
  margin: auto;
  padding-top: 8.4375rem;
}
@media (max-width: 768px) {
  .home-about {
    margin: 0 1.25rem;
    padding-top: 4.6875rem;
  }
}
.home-about__wrapper {
  display: grid;
  grid-template-rows: 8.75rem auto;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .home-about__wrapper {
    display: block;
  }
}
@media (max-width: 768px) {
  .home-about__description {
    margin-top: 1.4375rem;
  }
}
.home-about__description--top {
  margin-bottom: 2.1875rem;
}
@media (max-width: 768px) {
  .home-about__description--top {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 1.125rem;
  }
}
.home-about__description--bottom {
  margin-bottom: 3.75rem;
  font-weight: 500;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .home-about__description--bottom {
    margin-bottom: 1.5625rem;
  }
}
@media (max-width: 768px) {
  .home-about__image {
    margin: 1.875rem 1.5625rem 0;
  }
}
.home-about .item1 {
  grid-column: 2/3;
  grid-row: 1/2;
  margin: 1.875rem 0 3.125rem;
}
@media (max-width: 768px) {
  .home-about .item1 {
    margin: 0;
  }
}
.home-about .item2 {
  grid-column: 1/2;
  grid-row: 1/3;
}
.home-about .item3 {
  grid-column: 2/3;
  grid-row: 2/3;
}

.home-service {
  padding-top: 7.5rem;
  max-width: 87.5rem;
  margin: auto;
}
@media (max-width: 768px) {
  .home-service {
    margin: 0 1.25rem;
    padding-top: 4.6875rem;
  }
}
.home-service__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 4.125rem 1.75rem;
  margin-top: 7.1875rem;
}
@media (max-width: 768px) {
  .home-service__list {
    margin-top: 3.75rem;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 3.4375rem 0.625rem;
  }
}
.home-service__link {
  margin: 3.125rem auto 0;
  text-align: center;
}

.home-topics {
  padding-top: 6.875rem;
}
@media (max-width: 768px) {
  .home-topics {
    padding-top: 4.6875rem;
  }
}
.home-topics__list {
  max-width: 87.5rem;
  display: flex;
  gap: 2%;
  margin: 2.8125rem auto 0;
  justify-content: center;
}
.home-topics__list-item {
  width: 23.5%;
}
@media (max-width: 768px) {
  .home-topics__list-item {
    margin: 0 0.625rem;
  }
}
.home-topics__list-thumnail {
  overflow: hidden;
  aspect-ratio: 13/8;
}
.home-topics__list-thumnail img {
  width: 100%;
}
.home-topics__list-date {
  margin-top: 0.9375rem;
}
.home-topics__list-title {
  margin-top: 0.625rem;
}
.home-topics__link {
  margin: 2.8125rem auto 0;
  text-align: center;
}
@media (max-width: 768px) {
  .home-topics__link {
    margin-top: 1.5625rem;
  }
}

.home-recruit {
  padding-top: 6.25rem;
}
@media (max-width: 768px) {
  .home-recruit {
    margin: 0 1.25rem;
    padding-top: 4.6875rem;
  }
}
.home-recruit__description {
  margin-top: 2.5rem;
}
.home-recruit__video {
  margin: 2.5rem auto 0;
  max-width: 53.75rem;
  aspect-ratio: 16/9;
}
@media (max-width: 768px) {
  .home-recruit__video {
    margin-top: 1.5625rem;
  }
}
.home-recruit__video iframe {
  width: 100%;
  height: 100%;
}
.home-recruit__link {
  margin: 3.75rem auto 0;
  text-align: center;
}
@media (max-width: 768px) {
  .home-recruit__link {
    margin-top: 1.5625rem;
  }
}

.home-instagram-feed {
  max-width: 87.5rem;
  margin: 7.5rem auto 0 !important;
}

.about {
  margin: 4.75rem 0 0;
}
@media (max-width: 1200px) {
  .about {
    padding: 0 1.25rem;
  }
}
@media (max-width: 768px) {
  .about {
    margin: 3.75rem 0 0;
  }
}
.about__tab-area {
  display: flex;
  justify-content: center;
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
}
@media (max-width: 768px) {
  .about__tab-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }
}
.about__tab-area .about__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e20114;
  width: 12.5rem;
  height: 2.5rem;
  border: 1px solid #e20114;
  font-size: 1.125rem;
  background-color: #fff;
  border-radius: 50em;
}
.about__tab-area .about__tab:hover {
  background-color: #FFF4F4;
}
@media (max-width: 768px) {
  .about__tab-area .about__tab {
    width: 100%;
    height: 3.125rem;
    line-height: 1.2;
  }
}
.about__tab-area .about__tab:hover {
  cursor: pointer;
}
.about__tab-area .about__tab.active {
  background: #e20114;
  color: #fff;
}
.about__panel {
  display: none;
  margin-top: 3.75rem;
}
.about__panel.active {
  display: block;
}
.about__panel-contents {
  max-width: 62.5rem;
  margin: 0 auto;
}
.about__anchor-link-wrap {
  margin: 4.8125rem 0 6.25rem;
}
@media (max-width: 768px) {
  .about__anchor-link-wrap {
    margin: 3.125rem 0 5rem;
  }
}
.about .img_company-policy {
  max-width: 40rem;
  margin: 1.3125rem auto 0;
}
.about__inner-contents01_02 {
  margin-top: 5.25rem;
}
.about .img_philosophy {
  max-width: 25.9375rem;
  margin: 3.75rem auto 0;
}
.about__inner-contents01_03 {
  margin-top: 6.0625rem;
}
.about__dl-wrap {
  margin-top: 3.75rem;
}
.about__inner-contents01_04 {
  margin-top: 6.6875rem;
}
.about__info-list {
  margin-top: 3.75rem;
}
.about__inner-contents01_05 {
  margin-top: 5.875rem;
}
.about .info-list {
  display: flex;
  justify-content: center;
  -moz-column-gap: 3.125rem;
       column-gap: 3.125rem;
}
@media (max-width: 450px) {
  .about .info-list {
    display: grid;
    gap: 2.5rem;
  }
}
.about .info-list .info-list-item .map {
  margin-bottom: 1rem;
}
.about .info-list .info-list-item .map iframe {
  width: 100%;
  height: 12.5rem;
}
.about .info-list .info-list-item .company-name {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}
.about .info-list .info-list-item .details {
  display: grid;
  line-height: 1.6666666667;
}
.about__main-text {
  margin-top: 4.375rem;
}
@media (max-width: 768px) {
  .about__main-text {
    margin-top: 3.125rem;
  }
}
.about__main-text p {
  text-align: center;
  font-size: 1.375rem;
  color: #e20114;
  line-height: 1.5454545455;
  letter-spacing: 0.08em;
}
@media (max-width: 450px) {
  .about__main-text p {
    font-size: 1.125rem;
  }
}
.about__main-image {
  margin-top: 3.4375rem;
}
@media (max-width: 768px) {
  .about__main-image {
    margin-top: 1.875rem;
  }
}
.about__card-pc-col2 {
  margin-top: 6.25rem;
}
@media (max-width: 768px) {
  .about__card-pc-col2 {
    margin: 3.125rem 0 5rem;
  }
}
.about__activities-contents {
  margin-top: 4.375rem;
}

.topics {
  max-width: 87.5rem;
  margin: 2.5rem auto 0;
}
@media (max-width: 768px) {
  .topics {
    margin: 1.25rem 1.25rem 0;
  }
}

.topics2 {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.topics-left {
  width: 80%;
}
.topics-right {
  width: 10%;
}
.topics2 .topics-list {
  margin-top: 0;
}
.monthly-list {
  margin-top: 15px;
}

.topics-tab-area {
  display: flex;
  justify-content: center;
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
}
@media (max-width: 768px) {
  .topics-tab-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }
}
.topics-tab-area__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e20114;
  width: 12.5rem;
  height: 2.5rem;
  border: 1px solid #e20114;
  font-size: 1.125rem;
  background-color: #fff;
  border-radius: 50em;
}
.topics-tab-area__tab:hover {
  background-color: #FFF4F4;
}
@media (max-width: 768px) {
  .topics-tab-area__tab {
    width: 100%;
    height: 3.125rem;
    line-height: 1.2;
  }
}
.topics-tab-area__tab:hover {
  cursor: pointer;
}
.topics-tab-area__tab.active {
  background: #e20114;
  color: #fff;
}
.topics-tab-area__tab a {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.topics-list {
  margin: 7.8125rem auto 5.625rem;
  max-width: 62.5rem;
}
.tag-title {
  margin: 0 auto 5.625rem;
  max-width: 62.5rem;
}
@media (max-width: 768px) {
  .topics-list {
    margin: 3.75rem auto 2.5rem;
  }
  .tag-title {
    margin: 3.75rem auto 2.5rem;
  }
}
.topics-list__item {
  display: flex;
  padding-bottom: 1.71875rem;
  margin-bottom: 3.4375rem;
  border-bottom: 1px solid #DBDBDB;
  align-items: center;
}
@media (max-width: 768px) {
  .topics-list__item {
    flex-wrap: wrap;
    row-gap: 0.5rem;
    margin-bottom: 1.875rem;
  }
}
.topics-list__item--empty {
  margin: 3.75rem auto 0;
  max-width: 62.5rem;
}
.topics-list__classification {
  width: 8.5rem;
  padding: 0 1.5625rem;
  border-right: 1px solid #DBDBDB;
  text-align: center;
}
.topics-list__date {
  width: 7.5rem;
  border-right: 1px solid #DBDBDB;
}
.topics-list__title {
  flex: 1;
  padding: 0 1.5625rem;
  font-size: 0.9375rem;
  text-decoration: underline;
  overflow-wrap: anywhere;
}
@media (max-width: 768px) {
  .topics-list__title {
    flex: none;
    padding: 0;
    width: 100%;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5625rem;
  font-size: 1.5625rem;
}
@media (max-width: 768px) {
  .pagination {
    font-size: 1.25rem;
    gap: 0.9375rem;
  }
}
.pagination * {
  color: #e20114;
}
.pagination .current {
  color: #fff;
  width: 2.5rem;
  height: 2.5rem;
  text-align: center;
  border-radius: 50%;
  background: #e20114;
}
@media (max-width: 768px) {
  .pagination .current {
    width: 2rem;
    height: 2rem;
  }
}
.pagination .prev {
  content: url(./../../assets/images/icon_previous-page.svg);
}
.pagination .next {
  content: url(./../../assets/images/icon_next-page.svg);
}

.pager-lists {
  display: flex;
  gap: 3.75rem;
  justify-content: center;
  align-items: center;
  color: #e20114;
}
@media (max-width: 768px) {
  .pager-lists {
    gap: 1.875rem;
  }
}
.pager-lists .back-topics-lists {
  font-size: 1.375rem;
}
@media (max-width: 768px) {
  .pager-lists .back-topics-lists {
    font-size: 1.25rem;
  }
}
.pager-lists .previous-article a {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .pager-lists .previous-article a {
    font-size: 1.125rem;
  }
}
.pager-lists .previous-article a::before {
  display: block;
  content: url(./../../assets/images/icon_previous-page.svg);
  width: 1.5rem;
  height: 1.375rem;
}
.pager-lists .next-article a {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .pager-lists .next-article a {
    font-size: 1.125rem;
  }
}
.pager-lists .next-article a::after {
  display: block;
  content: url(./../../assets/images/icon_next-page.svg);
  width: 1.5rem;
  height: 1.375rem;
}

.post-single {
  max-width: 75rem;
  margin: 2.5rem auto 0;
}
@media (max-width: 768px) {
  .post-single {
    margin: 2.5rem 1.25rem 0;
  }
}
.post-single__title {
  padding-bottom: 2.0625rem;
  border-bottom: 1px solid #DBDBDB;
  font-weight: bold;
  font-size: 1.125rem;
  text-wrap: wrap;
}
.post-single__info {
  display: flex;
  margin-bottom: 1.875rem;
}
@media (max-width: 768px) {
  .post-single__info {
    margin-bottom: 1.25rem;
  }
}
.post-single__date {
  width: 7.5rem;
  border-right: 1px solid #DBDBDB;
}
.post-single__category {
  width: 8.5rem;
  padding: 0 1.5625rem;
}
.post-single__content {
  padding: 2.5rem 0 3.75rem;
}
.post-single__content p {
  line-height: 2.3;
  width: 70%;
  margin: auto;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .post-single__content p {
    width: 95%;
    line-height: 2;
  }
}

.contact {
  max-width: 87.5rem;
  margin: auto;
}
@media (max-width: 768px) {
  .contact {
    margin: 0 1.25rem;
  }
}
.contact__explanation {
  margin: 3.4375rem 0 3.125rem;
  text-align: center;
  font-size: 1.375rem;
  display: none;
}
@media (max-width: 768px) {
  .contact__explanation {
    font-size: 1rem;
  }
}
.contact__conts {
  max-width: 43.75rem;
  margin: auto;
}
.contact__sentence {
  margin-bottom: 1.875rem;
}
@media (max-width: 768px) {
  .contact__sentence {
    font-size: 0.875rem;
  }
}
.contact__sentence--link {
  text-decoration: underline;
}
.contact__list {
  margin-bottom: 1.25rem;
}
.contact__list dt {
  font-size: 1.25rem;
  margin-bottom: 0.3125rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .contact__list dt {
    font-size: 1rem;
  }
}
.contact__list dd {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .contact__list dd {
    font-size: 1rem;
  }
}
.contact__list dd .box01 {
  padding: 0.5rem 1.25rem;
  background-color: #FFF4F4;
  border: none;
  border-radius: 0.1875rem;
  width: 100%;
}
.contact__list--required {
  font-weight: bold;
  color: #e20114;
  margin-left: 0.3125rem;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .contact__list--required {
    font-size: 0.875rem;
  }
}
.contact__agree {
  font-size: 1.125rem;
  text-align: center;
}
@media (max-width: 768px) {
  .contact__agree {
    font-size: 1rem;
  }
}
.contact__submit {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 0.625rem;
  margin-top: 2.5rem;
}
.contact__thanks {
  margin: 3.4375rem 0 3.125rem;
  text-align: center;
  font-size: 1.375rem;
}
@media (max-width: 768px) {
  .contact__thanks {
    font-size: 1.125rem;
  }
}
.contact__backhome {
  text-align: center;
}
.contact .form-btn {
  width: 16.25rem;
  font-size: 1.375rem;
  padding: 1.375rem;
  border: none;
  border-radius: 0.625rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .contact .form-btn {
    font-size: 1.125rem;
    width: 12.5rem;
    padding: 0.9375rem;
  }
}
.contact .form-btn.form-btn_submit {
  background: #e20114;
  color: #fff;
}
.contact .form-btn.form-btn_reset, .contact .form-btn.form-btn_return {
  background: #363636;
  color: #fff;
}

.mw_wp_form_input .contact__explanation.input {
  display: block;
}

.mw_wp_form_confirm .contact__explanation.confirm {
  display: block;
}
.mw_wp_form_confirm .contact__agree {
  display: none;
}
.mw_wp_form_confirm .contact__sentence {
  display: none;
}
.mw_wp_form_confirm .form-btn_reset {
  display: none;
}

.service {
  max-width: 68.75rem;
  margin: 5rem auto 0;
}
@media (max-width: 768px) {
  .service {
    margin: 1.25rem 1.25rem 0;
  }
}
.service__tab-area {
  margin: 0 auto 3.125rem;
}
.service__panel-area {
  padding-top: 3.125rem;
}
.service__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7.5rem 1.25rem;
  margin: 7.1875rem auto 0;
  max-width: 62.5rem;
}
@media (max-width: 768px) {
  .service__grid {
    display: flex;
    flex-wrap: wrap;
    margin-top: 3.75rem;
    justify-content: space-around;
    gap: 4.6875rem 0.625rem;
  }
}
.service__grid-text {
  text-align: center;
  padding: 0.625rem 0;
  margin: 0 1.875rem;
  border-top: 1px solid #c6b8b8;
  border-bottom: 1px solid #c6b8b8;
}
.service__grid-text02 {
  width: 90%;
  margin: 1.5625rem auto;
}
.service__grid-icon {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin: 0 1.875rem;
  gap: 0.3125rem;
}
.service__grid-icon figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  margin: 1.25rem 0 0.9375rem;
}
.service__grid-icon figure img {
  height: 25px;
}
.service__grid-icon figure figcaption {
  font-size: 0.8125rem;
}
.service__grid-icon--off {
  opacity: 0.3;
}
.service__h2-header.flag-restaurant, .service__h2-header.flag-store, .service__h2-header.flag-company, .service__h2-header.flag-production, .service__h2-header.flag-personal {
  display: none;
}

.service-page-top {
  max-width: 62.5rem;
  margin: auto;
  margin-top: 3.4375rem;
}
.service-page-top__image {
  margin-bottom: 1.25rem;
}

.service-content {
  max-width: 62.5rem;
  margin: auto;
  padding-top: 6.25rem;
}
@media (max-width: 768px) {
  .service-content {
    padding-top: 3.75rem;
  }
}
.service-content__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7.5rem 3.75rem;
  margin: 5.75rem auto 0;
  max-width: 43.75rem;
}
@media (max-width: 768px) {
  .service-content__grid {
    display: flex;
    flex-wrap: wrap;
    margin-top: 3.75rem;
    justify-content: space-around;
    gap: 4.6875rem 0.625rem;
  }
}
.service-content__grid02 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7.5rem 1.25rem;
  margin: 5.75rem auto 0;
  max-width: 62.5rem;
}
@media (max-width: 768px) {
  .service-content__grid02 {
    display: flex;
    flex-wrap: wrap;
    margin-top: 3.75rem;
    justify-content: space-around;
    gap: 4.6875rem 0.625rem;
  }
}
.service-content__grid03 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7.5rem 2.5rem;
  margin: 5.75rem auto 0;
  max-width: 62.5rem;
}
@media (max-width: 768px) {
  .service-content__grid03 {
    display: flex;
    flex-wrap: wrap;
    margin-top: 3.75rem;
    justify-content: space-around;
    gap: 4.6875rem 0.625rem;
  }
}

.service-delivery-area {
  max-width: 62.5rem;
  margin: auto;
  padding-top: 8.75rem;
}
@media (max-width: 768px) {
  .service-delivery-area {
    padding-top: 3.75rem;
  }
}
.service-delivery-area__text {
  margin-top: 1.875rem;
  text-align: center;
}
.service-delivery-area__image {
  margin-top: 3.75rem;
}
.service-delivery-area__image img {
  margin: auto;
}
.service-delivery-area__link {
  text-align: center;
  margin-top: 1.875rem;
}

.service-products {
  padding-top: 5rem;
  margin: auto;
}
.service-products__grid01 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 3.125rem;
  gap: 3.125rem;
}
@media (max-width: 768px) {
  .service-products__grid01 {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.125rem 1.875rem;
  }
}
@media (max-width: 450px) {
  .service-products__grid01 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.service-products__grid01 li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  gap: 0.9375rem;
}
.service-products__grid01 li img {
  margin: auto;
}
.service-products__grid02 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 3.125rem;
  gap: 1.25rem 3.125rem;
}
@media (max-width: 768px) {
  .service-products__grid02 {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.125rem 1.875rem;
  }
}
@media (max-width: 450px) {
  .service-products__grid02 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.service-products__grid02 li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9375rem;
}
.service-products__grid02 li figure {
  height: 6.25rem;
}
.service-products__grid02 li dt {
  font-weight: bold;
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 0.625rem;
}
.service-products__grid02 li dt span {
  font-weight: normal;
  font-size: 0.8125rem;
}
.service-products__grid02 li dd {
  font-size: 0.8125rem;
}
.service-products__link {
  text-align: center;
  margin-top: 4.375rem;
}

.service-detail {
  max-width: 62.5rem;
  padding-top: 6.25rem;
  margin: auto;
}
@media (max-width: 768px) {
  .service-detail {
    padding-top: 3.75rem;
  }
}
.service-detail__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3.125rem;
  gap: 1.875rem 1.25rem;
}
@media (max-width: 768px) {
  .service-detail__grid {
    display: block;
  }
}
.service-detail__grid li {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .service-detail__grid li {
    font-size: 1rem;
  }
  .service-detail__grid li:not(:last-of-type) {
    margin-bottom: 2.5rem;
  }
}
.service-detail__grid li dt {
  font-weight: 500;
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
  .service-detail__grid li dt {
    margin-bottom: 0.625rem;
  }
}
.service-detail__grid li img {
  margin: auto;
}

.service-contact {
  max-width: 62.5rem;
  padding-top: 7.5rem;
  margin: auto;
}
@media (max-width: 768px) {
  .service-contact {
    padding-top: 3.75rem;
  }
}
.service-contact__map {
  margin-bottom: 2.75rem;
  width: 100%;
  height: 21.875rem;
}
@media (max-width: 768px) {
  .service-contact__map {
    height: 18.75rem;
  }
}
.service-contact__info {
  display: -moz-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  max-width: 41.25rem;
  margin: auto;
  gap: 0.3125rem;
}
@media (max-width: 768px) {
  .service-contact__info {
    gap: 0;
  }
}
.service-contact__info dt {
  padding: 1.25rem;
  width: 10rem;
  border-bottom: 1px solid #e20114;
  font-weight: bold;
}
@media (max-width: 768px) {
  .service-contact__info dt {
    width: 100%;
    padding: 0.625rem 0 0;
    border: none;
  }
}
.service-contact__info dd {
  padding: 1.25rem;
  width: calc(100% - 10.3125rem);
  border-bottom: 1px solid #c6b8b8;
}
@media (max-width: 768px) {
  .service-contact__info dd {
    width: 100%;
    padding: 0.625rem 1.25rem 0.9375rem;
    border-color: #e20114;
    margin-bottom: 0.625rem;
  }
}
.service-contact__link {
  text-align: center;
  margin-top: 3.125rem;
}

.service-recruit {
  max-width: 62.5rem;
  margin: auto;
  padding-top: 6.25rem;
}
@media (max-width: 768px) {
  .service-recruit {
    padding-top: 3.75rem;
  }
}
.service-recruit__text {
  text-align: center;
  margin-top: 1.875rem;
}
.service-recruit__link {
  text-align: center;
  margin-top: 2.5rem;
}

@media (max-width: 1200px) {
  .privacy {
    padding: 0 1.25rem;
  }
}
@media (max-width: 768px) {
  .privacy {
    margin: 3.75rem 0 0;
  }
}
.privacy__main-text {
  margin-top: 3.125rem;
}
.privacy__main-text p {
  font-size: 1.375rem;
  text-align: center;
  line-height: 1.5454545455;
  letter-spacing: 0.08em;
}
@media (max-width: 450px) {
  .privacy__main-text p {
    font-size: 1.125rem;
  }
}
.privacy__main-title {
  max-width: 68.75rem;
  margin: 0 auto;
}
.privacy__contents-wrap {
  margin-top: 3.75rem;
}
.privacy__contents {
  display: grid;
  row-gap: 2.5rem;
  max-width: 62.5rem;
  margin: 4.0625rem auto 0;
}
.privacy__contact-list {
  display: grid;
  row-gap: 1.25rem;
}
.privacy__contact-list li {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
}
@media (max-width: 450px) {
  .privacy__contact-list li {
    display: grid;
  }
}
.privacy .contact-tel {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.3125rem;
       column-gap: 0.3125rem;
}
.privacy__list01 {
  display: grid;
  row-gap: 1.25rem;
}
.privacy__list01 li {
  padding-left: 1.5625rem;
  position: relative;
  line-height: 1.625;
}
.privacy__list01 li::before {
  content: "";
  display: inline-block;
  width: 0.4375rem;
  height: 0.4375rem;
  background-color: #e20114;
  border-radius: 50%;
  position: absolute;
  top: 0.625rem;
  left: 0.4375rem;
}

.sitemap {
  max-width: 62.5rem;
  margin: 5.625rem auto 0;
  display: grid;
  row-gap: 4.375rem;
}
@media (max-width: 1200px) {
  .sitemap {
    padding: 0 1.25rem;
  }
}
@media (max-width: 768px) {
  .sitemap {
    margin: 3.75rem 0 0;
  }
}
.sitemap__nav-link-wrap {
  padding-top: 2.1875rem;
  margin-left: 20rem;
}
@media (max-width: 1200px) {
  .sitemap__nav-link-wrap {
    margin-left: initial;
  }
}
.sitemap__main-link {
  padding-bottom: 1.5625rem;
  border-bottom: 1px solid #DBDBDB;
}
.sitemap__main-link span {
  font-size: 1.25rem;
}

.recruit {
  margin: 4.75rem 0 0;
}
@media (max-width: 1200px) {
  .recruit {
    padding: 0 1.25rem;
  }
}
@media (max-width: 768px) {
  .recruit {
    margin: 3.75rem 0 0;
  }
}
.recruit__tab-area {
  display: flex;
  justify-content: center;
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
}
@media (max-width: 768px) {
  .recruit__tab-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }
}
.recruit__tab-area .recruit__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e20114;
  width: 12.5rem;
  height: 2.5rem;
  border: 1px solid #e20114;
  font-size: 1.125rem;
  background-color: #fff;
  border-radius: 50em;
}
.recruit__tab-area .recruit__tab:hover {
  background-color: #FFF4F4;
}
@media (max-width: 768px) {
  .recruit__tab-area .recruit__tab {
    width: 100%;
    height: 3.125rem;
    line-height: 1.2;
  }
}
.recruit__tab-area .recruit__tab:hover {
  cursor: pointer;
}
.recruit__tab-area .recruit__tab.active {
  background: #e20114;
  color: #fff;
}
.recruit__panel {
  display: none;
  margin-top: 3.75rem;
}
.recruit__panel.active {
  display: block;
}
.recruit__panel-contents {
  max-width: 62.5rem;
  margin: 0 auto;
}
.recruit__anchor-link-wrap {
  margin: 4.8125rem 0 6.25rem;
}
@media (max-width: 768px) {
  .recruit__anchor-link-wrap {
    margin: 3.125rem 0 5rem;
  }
}
.recruit .img_company-policy {
  max-width: 40rem;
  margin: 1.3125rem auto 0;
}
.recruit__inner-contents01 {
  margin-top: 5.25rem;
}
.recruit .img_philosophy {
  max-width: 25.9375rem;
  margin: 3.75rem auto 0;
}
.recruit__inner-contents02 {
  margin-top: 6.0625rem;
}
.recruit__dl-wrap {
  margin-top: 3.75rem;
}
.recruit__inner-contents03 {
  margin-top: 6.6875rem;
}
.recruit__info-list {
  margin-top: 3.75rem;
}
.recruit__inner-contents04 {
  margin-top: 5.875rem;
}
.recruit__inner-contents05 {
  margin-top: 6.6875rem;
}
.recruit__entry-link {
  text-align: center;
  margin-top: 2.8125rem;
}

@media (max-width: 1200px) {
  .error__contents-wrap {
    padding: 0 1.25rem;
  }
}
@media (max-width: 768px) {
  .error__contents-wrap {
    margin: 3.75rem 0 0;
  }
}
.error__contents {
  display: grid;
  row-gap: 1.25rem;
  text-align: center;
  max-width: 62.5rem;
  margin: 6.25rem auto;
}
@media (max-width: 768px) {
  .error__contents {
    row-gap: 0;
  }
}
.error__title-en {
  font-size: 1.25rem;
  font-weight: 500;
  color: #e20114;
  margin: 0 0 1.5625rem;
}
.error__title-jp {
  font-size: 3.125rem;
  line-height: 1.4;
  font-weight: 500;
  margin: 0 0 3.75rem;
}
@media (max-width: 768px) {
  .error__title-jp {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
  }
}
.error__message {
  line-height: 2;
  margin-bottom: 1.875rem;
}
.error__image {
  margin: 0 auto 2.5rem;
}
/*# sourceMappingURL=style.css.map */