@charset "UTF-8";
/* rem size  */
@keyframes loop_slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* デフォルトマージン削除*/
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

body, h1, h2, h3, h4 {
  margin-block-start: 0;
}

body, p, ul, td, th {
  margin: 0;
  padding: 0;
}

/* リスト・ロールのリストスタイル削除 */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* 見出し、インタラクティブ要素の行の高さ */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/*
  Balance text wrapping on headings
  実際に使ってみていい感じにラップされなかったのでコメントアウト
*/
/* 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%;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: 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;
}

address {
  font-style: normal;
}

dd {
  margin-left: 0;
}

:root {
  --base-color: #181818;
  --deep_blue: #041c51;
  --blue02: #0a2359;
  --blue03: #031336;
  --gray_main: #f0efee;
  --orange: #fc5900;
}

body {
  color: var(--base-color);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

body.overflow {
  overflow: hidden;
}

a {
  text-decoration: none;
}

a {
  transition: all 0.3s;
}

a:hover {
  opacity: 0.7;
}

ul, ol {
  list-style: none;
}

img {
  height: auto;
}

iframe, video {
  max-width: 100%;
}

table th {
  text-align: center;
  padding: 8px 10px;
}
table td {
  padding: 8px 10px;
}

/* プレースホルダー */
/*@mixin placeholderColor($color) {
  &:placeholder-shown {
    color: $color;
  }
  &::-webkit-input-placeholder {
    color:$color;
  }
  &:-moz-placeholder {
    color:$color;
    opacity: 1;
  }
  &::-moz-placeholder {
    color:$color;
    opacity: 1;
  }
  &:-ms-input-placeholder {
    color:$color;
  }
  &:placeholder {
    color: $color;
  }
}
input, select, textarea {
  @include placeholderColor(#ccc);
}*/
/* クロームのオートフィル背景色 */
/*
input:-webkit-autofill {
  -webkit-transition: background-color 9999s;
  transition: background-color 9999s;
}
*/
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

/*
共通見出し
共通バナーリスト
ページKV
パンくず
共通テーブル
投稿
*/
.c_inner {
  max-width: 1200px;
  width: 92%;
  margin: 0 auto;
}

.c_wrap_firstcont {
  margin-top: 6.25rem;
}

.c_wrap_withbg {
  background: var(--gray_main);
}

.c_wrap_padding {
  padding: 7.5rem 0;
}
@media screen and (max-width: 767px) {
  .c_wrap_padding {
    padding: 6.25rem 0;
  }
}

.text_emph {
  color: var(--orange);
}

.c_heading {
  color: var(--deep_blue);
  text-align: center;
}
.c_heading.white {
  color: #fff;
}
.c_heading.c_mb {
  margin-bottom: 4.375rem;
}
@media screen and (max-width: 767px) {
  .c_heading.c_mb {
    margin-bottom: 3.125rem;
  }
}
.c_heading .text_en {
  font-family: "Impact", "Anton", sans-serif;
  font-size: 5.3125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.2;
  display: block;
}
@media screen and (max-width: 767px) {
  .c_heading .text_en {
    font-size: 3.4375rem;
  }
}
.c_heading .text_ja {
  font-size: 1rem;
}

.c_heading_02 {
  color: var(--base-color);
  font-size: 2.5rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .c_heading_02 {
    font-size: 1.75rem;
  }
}
.c_heading_02::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background: currentColor;
  margin-top: 20px;
}
.c_heading_02 .color_change {
  color: #0a2359;
}
.c_heading_02.c_mb {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c_heading_02.c_mb {
    margin-bottom: 1.875rem;
  }
}

.c_post_link {
  color: currentColor;
  display: flex;
}
.c_post_link .date {
  color: var(--orange);
  font-family: "Impact", "Anton", sans-serif;
  font-weight: 400;
  margin-right: 1.6em;
}
.c_post_link .cont_ttl {
  font-weight: 700;
}

.c_bnr_list_wrap {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .c_bnr_list_wrap {
    margin-top: 5rem;
  }
}

.c_bnr_list {
  display: flex;
  position: relative;
  height: 44.16vw;
  max-height: 530px;
}
@media screen and (max-width: 767px) {
  .c_bnr_list {
    flex-direction: column;
    height: auto;
    max-height: inherit;
  }
}
.c_bnr_list a {
  display: block;
  height: 100%;
}
.c_bnr_list a:hover {
  opacity: 1;
}

.c_bnr_item {
  display: inline-block;
  width: 33.3333%;
  height: 100%;
  transition: width 0.4s;
  position: relative;
  background: var(--base-color);
}
@media screen and (max-width: 767px) {
  .c_bnr_item {
    width: 100%;
    height: 200px;
  }
}
.c_bnr_item .first_display {
  position: relative;
  height: 100%;
}
.c_bnr_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: inherit;
  vertical-align: bottom;
}
.c_bnr_item .column_left_img {
  object-position: left;
}
.c_bnr_item .column_center_img {
  object-position: center;
}
.c_bnr_item .column_right_img {
  object-position: right;
}
.c_bnr_item .first_img {
  width: 100%;
  opacity: 1;
  transition: width 0.3s, opacity 0s;
}
.c_bnr_item .hover_img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.c_bnr_item::after {
  content: "";
  display: block;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(10, 35, 89, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  mix-blend-mode: multiply;
}

.c_bnr_text {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  text-align: center;
  z-index: 2;
  width: 100%;
}
.c_bnr_text .text_en {
  font-family: "Impact", "Anton", sans-serif;
  font-size: clamp(3.125rem, 4.37vw, 4.375rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}
.c_bnr_text .text_ja {
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  .c_bnr_list.change .c_bnr_item:not(.change) {
    width: 0;
    transition: width 0.4s;
  }
  .c_bnr_list.change .c_bnr_item:not(.change) .c_bnr_text {
    display: none;
  }
  .c_bnr_item.change {
    display: block;
    width: 100%;
    transition: width 0.4s;
    z-index: 5;
  }
  .c_bnr_item.change::after {
    content: none;
  }
  .c_bnr_item.change .first_img {
    opacity: 0;
    transition: width 0.3s, opacity 0s;
  }
  .c_bnr_item.change .hover_img {
    opacity: 1;
    transition: opacity 0s;
  }
}
.c_page_kv {
  position: relative;
}

.c_page_kv_img {
  max-width: inherit;
  width: 100%;
  min-height: 350px;
  object-fit: cover;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .c_page_kv_img {
    height: 48vw;
    min-height: inherit;
  }
}

.c_page_kv_title_wrap {
  display: flex;
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 0;
}

.c_page_kv_title {
  color: #fff;
  font-size: 2.5rem;
  letter-spacing: 0.02em;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, system-ui, sans-serif;
  font-weight: 700;
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c_page_kv_title {
    font-size: 1.875rem;
  }
}
.c_page_kv_title::before {
  content: "";
  display: inline-block;
  height: 4px;
  width: 50px;
  background: #fff;
  margin-right: 20px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .c_page_kv_title::before {
    width: 40px;
  }
}

.breadcrumb {
  background: #031336;
  color: #fff;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  padding: 4px 0;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    font-size: 0.75rem;
  }
}
.breadcrumb li {
  display: inline-block;
}
.breadcrumb li:not(:first-of-type)::before {
  content: "　＞　";
}

.c_table {
  display: grid;
  grid-template-columns: 8em auto;
}
@media screen and (max-width: 767px) {
  .c_table {
    grid-template-columns: 6em auto;
  }
}
.c_table dt, .c_table dd {
  border-bottom: 1px solid #f1f1f1;
  padding: 1.875rem 0;
}
.c_table dt:first-of-type, .c_table dd:first-of-type {
  border-top: 1px solid #f1f1f1;
}
.c_table dt {
  text-align-last: justify;
  padding-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .c_table dt {
    padding-left: 0;
  }
}
.c_table dd {
  padding-left: 16%;
}

.c_posts_wrap {
  width: 92%;
  max-width: 1000px;
  margin: 0 auto;
}
.c_posts_wrap .nav-links {
  border: 1px solid var(--gray_main);
  display: flex;
  margin-top: 5rem;
  padding: 20px;
}
.c_posts_wrap .nav-links .nav-previous, .c_posts_wrap .nav-links .nav-next {
  width: -moz-fit-content;
  width: fit-content;
}
.c_posts_wrap .nav-links .nav-next {
  margin-left: auto;
}
.c_posts_wrap .c_post_link {
  border-bottom: 1px solid var(--gray_main);
  padding: 1.25rem;
}

.cat_pagination {
  color: #000;
  font-size: 1.125rem;
  margin-top: 3.75rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cat_pagination {
    font-size: 1rem;
    margin-top: 2.5rem;
  }
}
.cat_pagination .page-numbers {
  color: inherit;
  line-height: 1;
  display: inline-block;
  margin: 0 6px;
  padding: 6px 10px 8px;
}
.cat_pagination .page-numbers.current {
  background: var(--deep_blue);
  color: #fff;
}

.c_post_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 0;
}
.c_post_flex::after {
  content: "";
  display: block;
  width: 30%;
}
@media screen and (max-width: 767px) {
  .c_post_flex::after {
    width: 48%;
  }
}
.c_post_flex .cat_list_item {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .c_post_flex .cat_list_item {
    width: 48%;
  }
}
.c_post_flex .c_product_item {
  color: var(--base-color);
}

.c_product_item {
  color: #fff;
  padding-right: 5%;
}
.c_product_item .cont_img {
  height: 24vw;
  max-height: 320px;
}
.c_product_item .cont_img img {
  object-fit: cover;
  vertical-align: bottom;
  height: 100%;
  width: 100%;
}
.c_product_item .cont_ttl {
  font-size: 1.375rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin: 1.875rem 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .c_product_item .cont_ttl {
    font-size: 1.125rem;
    margin: 1.25rem 0 0.625rem;
  }
}

.single_post_title {
  color: var(--deep_blue);
  font-size: 1.875rem;
  margin-bottom: 3.75rem;
}

.post_style h2 {
  margin: 1.6em 0;
}
.post_style h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background: currentColor;
  margin-top: 20px;
}
.post_style h3 {
  margin: 2.5rem 0 1.6em;
}
.post_style h4 {
  margin: 2.5rem 0 1.6em;
}
.post_style p {
  margin-bottom: 1.6em;
}
.post_style a {
  color: #0044dc;
}
.post_style ul, .post_style ol {
  margin: 1.6em 0;
  padding-left: 1.6em;
}
.post_style li {
  list-style-type: disc;
}
.post_style table th, .post_style table td {
  border: 1px solid var(--gray_main);
}
.post_style figure {
  margin-block-end: 1.6em;
}
.post_style img {
  height: auto;
}

.c_btn_base {
  color: currentColor;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  column-gap: 8px;
  align-items: center;
  position: relative;
  font-weight: 700;
  transition: 0.3s all;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.c_btn_base::before {
  content: "";
}
.c_btn_base::after {
  justify-self: end;
  content: "";
}
.c_btn_base:hover {
  opacity: 1;
  transition: 0.3s all;
}
.c_btn_base .c_arrow_img {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 3;
}

.c_btn01 {
  width: 230px;
}
@media screen and (max-width: 767px) {
  .c_btn01 {
    width: 180px;
  }
}

.c_btn01-text {
  border-bottom: 2px solid currentColor;
  width: 180px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .c_btn01-text {
    width: 150px;
  }
}

.c_btn01-arrow {
  background: #fff;
  border-radius: 5em;
  position: relative;
  left: -60%;
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 767px) {
  .c_btn01-arrow {
    width: 60px;
    height: 60px;
  }
}
.c_btn01-arrow::after {
  content: "";
  border-radius: 5em;
  display: block;
  width: inherit;
  height: inherit;
  scale: 0.5;
  background: transparent;
  opacity: 0;
  transition: 0.3s all;
}
.c_btn01-arrow.gray {
  background: #f2f1f1;
}

.c_btn01:hover .c_btn01-arrow::after {
  background: var(--orange);
  opacity: 1;
  transition: 0.3s all;
}

.c_btn02-arrow {
  border: 1px solid #fff;
  border-radius: 5em;
  display: inline-block;
  width: 60px;
  height: 60px;
  position: relative;
  transition: 0.2s all;
}

.c_btn02:hover .c_btn02-arrow {
  background-color: var(--orange);
  border-color: var(--orange);
}

.c_btn03 {
  border: 2px solid var(--deep_blue);
  color: var(--deep_blue);
  padding: 10px;
}
.c_btn03 .c_btn03-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.c_btn03 .hover_img {
  display: none;
}
.c_btn03:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.c_btn03:hover .first_img {
  display: none;
}
.c_btn03:hover .hover_img {
  display: block;
}

.c_btn04 {
  border: 1px solid var(--deep_blue);
  color: var(--deep_blue);
  padding: 10px 16px;
}
@media screen and (max-width: 767px) {
  .c_btn04 {
    padding: 10px;
  }
}
.c_btn04::after {
  background: url(../img/arrow-circle.png) no-repeat center/contain;
  width: 2.2em;
  height: 2.2em;
  display: block;
}
.c_btn04:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.c_btn04:hover::after {
  background: url(../img/arrow-circle-02.png) no-repeat center/contain;
}

.c_btn05 {
  border-radius: 5em;
  background: var(--orange);
  color: #fff;
  max-width: 500px;
  width: 80%;
  height: 80px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c_btn05 {
    height: 60px;
  }
}
.c_btn05:hover {
  background: var(--blue03);
}

.header {
  background: #fff;
  z-index: 10;
  width: 100%;
  transition: transform 0.3s;
  position: relative;
}

.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header_inner {
    padding: 10px 20px 10px 10px;
  }
}

.header_logo {
  display: block;
  margin-left: 4%;
  width: 9%;
  max-width: 106px;
  min-width: 64px;
}
.header_logo img {
  width: 100%;
  vertical-align: bottom;
}

@media screen and (min-width: 768px) {
  .header_right_wrap {
    width: calc(100% - 120px);
  }
}

.header_nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px 0;
}

.header_contact_list {
  display: flex;
}
@media screen and (max-width: 767px) {
  .header_contact_list {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 auto;
    gap: 40px;
  }
}

.header_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  height: 70px;
  width: 260px;
}
.header_btn.btn_contact {
  background: var(--deep_blue);
  color: #fff;
  gap: 10px;
}

.header_btn_tel {
  color: var(--base-color);
  line-height: 1.4;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 2.75rem;
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .header_btn_tel {
    padding-right: 0;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.header_btn_tel .tel_num {
  color: var(--deep_blue);
  display: flex;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.1875rem;
  letter-spacing: 0.05em;
  align-items: center;
  gap: 6px;
}
.header_btn_tel .tel_num .icon_tel {
  translate: 0 -2px;
}
.header_btn_tel .tel_num .num_text {
  line-height: 1;
  white-space: nowrap;
}
.header_btn_tel .open {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.header_menu_wrap {
  display: flex;
  font-size: 0.875rem;
  gap: 3em;
  margin-right: 8%;
}
@media screen and (max-width: 980px) {
  .header_menu_wrap {
    gap: 2em;
    margin-right: 2%;
  }
}
@media screen and (max-width: 840px) {
  .header_menu_wrap {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .header_menu_wrap {
    font-size: 1rem;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 auto;
    width: 92%;
  }
  .header_menu_wrap li {
    width: 100%;
  }
}
.header_menu_wrap .parent_link {
  color: var(--base-color);
  font-weight: 700;
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 4px solid transparent;
}
@media screen and (max-width: 767px) {
  .header_menu_wrap .parent_link {
    border-bottom: 1px solid;
    display: block;
  }
}
.header_menu_wrap .parent_link:hover {
  color: var(--orange);
  border-color: currentColor;
}

.header_child_wrap {
  background: rgba(24, 24, 24, 0.3);
  color: #fff;
  width: 100%;
  padding: 2.5rem 10px;
  position: absolute;
  left: 0;
  top: 100%;
  text-align: center;
  display: none;
}
@media screen and (max-width: 767px) {
  .header_child_wrap {
    display: flex;
    position: static;
    width: 100%;
  }
}
.header_child_wrap .child_item {
  max-width: 160px;
}
@media screen and (max-width: 767px) {
  .header_child_wrap .child_item {
    font-size: 0.6875rem;
    line-height: 1.6;
  }
}

@media screen and (min-width: 768px) {
  .header_menu_has_child:hover .header_child_wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 5%;
    z-index: 10;
  }
}
.header_btn_buger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 1.875rem;
}
@media screen and (min-width: 768px) {
  .header_btn_buger {
    display: none;
  }
}

.header_buger_line {
  display: block;
  width: 1.875rem;
  height: 2px;
  background: var(--base-color);
  transition: 0.3s ease-out;
}
.header_buger_line:not(:first-of-type) {
  margin-top: 0.375rem;
}

.header.fixed {
  position: fixed;
  transition: transform 0.3s;
}

@media screen and (max-width: 767px) {
  .header_nav {
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    padding-top: 2.5rem;
    padding-bottom: 5rem;
    gap: 40px 0;
  }
  .header.js-open {
    background-color: #fff;
    min-height: 100vh;
    overflow-y: scroll;
  }
  .header.js-open .header_buger_line:first-of-type {
    transform: rotate(30deg);
    transform-origin: left;
    position: relative;
    top: 1px;
  }
  .header.js-open .header_buger_line:nth-of-type(2) {
    width: 0;
    transition: 0s;
  }
  .header.js-open .header_buger_line:last-of-type {
    transform: rotate(-30deg);
    transform-origin: left;
    position: relative;
    top: -1px;
  }
  .header.js-open .header_nav {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.footer {
  background: #031336;
  color: #fff;
  margin-top: 12.5rem;
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 7.5rem;
  }
}

.footer_text_img_wrap {
  position: relative;
  top: -62px;
  z-index: 2;
  display: flex;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .footer_text_img_wrap {
    top: -28px;
  }
}

.footer_text_slide {
  display: flex;
  animation: loop 20s linear infinite;
}
.footer_text_slide img {
  width: 820px;
  max-width: inherit;
  margin-right: 60px;
}
@media screen and (max-width: 767px) {
  .footer_text_slide img {
    width: 360px;
    margin-right: 30px;
  }
}

@keyframes loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.footer_menu_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px 30px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .footer_menu_wrap {
    margin-top: 1.875rem;
  }
}
.footer_menu_wrap .parent_link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  display: inline-block;
  font-weight: 700;
  padding-bottom: 14px;
  width: 100%;
}

.footer_menu_item {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .footer_menu_item {
    width: 44%;
  }
}
.footer_menu_item .child_list {
  font-size: 0.875rem;
  margin-top: 10px;
  padding-left: 1.6em;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (max-width: 767px) {
  .footer_menu_item .child_list {
    font-size: 0.75rem;
    padding-left: 0.6em;
  }
}

.footer_under_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .footer_under_wrap {
    flex-wrap: wrap;
  }
}
.footer_under_wrap .addr_tel {
  font-size: 0.875rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 14px;
}
.footer_under_wrap .address {
  margin-right: 3em;
}

.footer_logo {
  display: flex;
  align-items: center;
}
.footer_logo .footer_logo_img {
  width: 68px;
}
.footer_logo .logo_side_text {
  font-weight: 700;
  font-size: 1.625rem;
  margin-left: 16px;
}
.footer_logo .logo_side_text .sm {
  font-size: 1.25rem;
}

.footer_contact {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 78px;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .footer_contact {
    height: 68px;
    padding: 20px;
    margin-top: 20px;
  }
}

.copyright_wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  font-weight: 300;
  margin-top: 6.875rem;
  text-align: center;
  padding: 1.875rem 10px;
}

.form_lead_text {
  font-size: 0.875rem;
}

.p-contact .c_form_wrap {
  margin-top: 3.75rem;
}

.c_form_wrap .form_box {
  margin-bottom: 2.5rem;
}
.c_form_wrap input[type=text], .c_form_wrap input[type=email], .c_form_wrap input[type=file], .c_form_wrap textarea, .c_form_wrap select {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  border: 1px solid var(--gray_main);
  border-radius: 1px;
  padding: 35px 30px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c_form_wrap input[type=text], .c_form_wrap input[type=email], .c_form_wrap input[type=file], .c_form_wrap textarea, .c_form_wrap select {
    font-size: 1rem;
    padding: 18px 20px;
  }
}
.c_form_wrap select {
  -webkit-appearance: none;
          appearance: none;
}
.c_form_wrap .form_label {
  font-size: 1.25rem;
  display: block;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .c_form_wrap .form_label {
    font-size: 1rem;
  }
}
.c_form_wrap .required, .c_form_wrap .optional {
  border-radius: 3px;
  color: #fff;
  font-size: 0.875rem;
  margin-right: 10px;
  padding: 1px 6px 2px;
  position: relative;
  top: -1px;
}
@media screen and (max-width: 767px) {
  .c_form_wrap .required, .c_form_wrap .optional {
    font-size: 0.75rem;
  }
}
.c_form_wrap .required {
  background: #ab2729;
}
.c_form_wrap .optional {
  background: #757575;
}

.p-form__radio-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 7%;
  margin-top: 2.5rem;
  margin-left: 10%;
}
@media screen and (max-width: 767px) {
  .p-form__radio-wrap {
    margin-left: 0;
    gap: 20px;
    margin-left: 2%;
  }
}
.p-form__radio-wrap input[type=radio] {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}
.p-form__radio-wrap .mwform-radio-field {
  display: flex;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-form__radio-wrap .mwform-radio-field {
    font-size: 1rem;
  }
}
.p-form__radio-wrap .mwform-radio-field-text {
  padding-left: 3em;
  position: relative;
}
.p-form__radio-wrap .mwform-radio-field-text::before, .p-form__radio-wrap .mwform-radio-field-text::after {
  content: "";
  display: block;
  width: 2em;
  height: 2em;
  border: 1px solid;
  border-radius: 5em;
  position: absolute;
  left: 0;
  top: -3px;
}
.p-form__radio-wrap .mwform-radio-field-text::after {
  border-color: transparent;
  scale: 0.5;
}
.p-form__radio-wrap input[type=radio]:checked + .mwform-radio-field-text::after {
  background: var(--deep_blue);
  border-color: var(--deep_blue);
}
.p-form__radio-wrap .horizontal-item + .horizontal-item {
  margin-left: 0;
  margin-right: 10px;
}

.form_select_wrap {
  position: relative;
}
.form_select_wrap::after {
  content: "▼";
  display: block;
  font-size: 1.125rem;
  position: absolute;
  right: 50px;
  top: 30px;
}
@media screen and (max-width: 767px) {
  .form_select_wrap::after {
    font-size: 1rem;
    right: 20px;
    top: 14px;
  }
}

.form_addr_list .item {
  display: grid;
  grid-template-columns: 6em 1fr;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .form_addr_list .item {
    margin-left: 30px;
  }
}
.form_addr_list .item:not(:first-of-type) {
  margin-top: 20px;
}

.form_privacy_box {
  color: var(--base_color);
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .form_privacy_box {
    margin-top: 2.5rem;
  }
}

.form_privacy_ttl {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .form_privacy_ttl {
    font-size: 1.125rem;
  }
}

.form_privacy_inner {
  border: 1px solid var(--gray_main);
  font-size: 0.875rem;
  height: 200px;
  overflow-y: scroll;
  padding: 20px 30px;
}
@media screen and (max-width: 767px) {
  .form_privacy_inner {
    font-size: 0.75rem;
    padding: 16px 20px;
  }
}
.form_privacy_inner .mt {
  margin-top: 30px;
}

.p-form-btn_wrap {
  text-align: center;
  margin-top: 3.75rem;
}
.p-form-btn_wrap input[type=submit] {
  background: none;
  border: none;
  color: #fff;
  padding: 0;
  width: 100%;
  height: 100%;
}
.p-form-btn_wrap .form_back_btn {
  margin-top: 10px;
  background-color: #848484;
}

.form_confirm .required, .form_confirm .optional, .form_confirm .confirm_none {
  display: none;
}

.p-confirm_text {
  text-align: center;
}

.p-thanks_text {
  text-align: center;
}

.top_fv {
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_fv {
    height: 76vw;
  }
}
.top_fv video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}

.top_fv_title {
  font-size: clamp(1.5rem, 5vw, 3.4375rem);
  font-weight: 700;
  position: absolute;
  left: 5%;
  bottom: 3.75rem;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.6;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .top_fv_title {
    bottom: 2.5rem;
  }
}
.top_fv_title .title_text {
  font-style: italic;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
}
.top_fv_title .title_text::after {
  content: "";
  display: inline-block;
  width: 104%;
  height: 1.1em;
  position: absolute;
  left: -4%;
  bottom: -4px;
  background-color: var(--deep_blue);
  z-index: -1;
  -webkit-clip-path: polygon(4% 0px, 100% 0, 96% 100%, 0 100%);
          clip-path: polygon(4% 0px, 100% 0, 96% 100%, 0 100%);
}
.top_fv_title .title_text:last-of-type {
  margin-left: 2em;
}

.top_sec_news {
  background: #fff;
}

.top_news_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 1.25rem 0 1.125rem;
}
@media screen and (max-width: 767px) {
  .top_news_wrap {
    gap: 20px;
  }
}
.top_news_wrap .c_heading {
  font-size: 0.875rem;
  text-align: left;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .top_news_wrap .c_heading {
    flex: 100%;
  }
}
.top_news_wrap .c_heading .text_en {
  font-size: 2.5rem;
}
.top_news_wrap .c_btn01 {
  margin-left: auto;
}

.top_news_content {
  margin-left: 6%;
  position: relative;
  top: 5px;
}
@media screen and (max-width: 767px) {
  .top_news_content {
    margin-left: 0;
  }
}
.top_news_content + .c_btn_01 {
  position: relative;
  top: 5px;
}
@media screen and (max-width: 767px) {
  .top_news_content + .c_btn_01 {
    margin-top: 1.875rem;
  }
}

.top_sec_lead {
  padding: 5rem 0 6.25rem;
}

.top_lead_title {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top_lead_title {
    font-size: 1.125rem;
  }
}

.top_lead_list {
  display: flex;
  justify-content: center;
  gap: 5%;
  font-weight: 700;
  margin-top: 2.5rem;
  text-align: center;
}
.top_lead_list .text {
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .top_lead_list {
    flex-wrap: wrap;
    width: 80%;
    margin: 1.5625rem auto 0;
    gap: 10px 20px;
  }
  .top_lead_list li {
    width: 42%;
  }
}

.top_sec_about {
  position: relative;
}

.top_about_img_wrap {
  width: 96%;
  max-height: 1000px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top_about_img_wrap {
    width: 100%;
  }
}
.top_about_img_wrap img {
  width: 100%;
  height: 100%;
  min-height: 740px;
  object-fit: cover;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .top_about_img_wrap img {
    min-height: 600px;
  }
}

.top_about_text_wrap {
  padding: 8.75rem 0 4.375rem;
  position: absolute;
  top: 0;
  width: 92%;
  left: 50%;
  translate: -50% 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 1200px;
}
@media screen and (max-width: 767px) {
  .top_about_text_wrap {
    padding: 10px 0;
    height: auto;
    top: 50%;
    translate: -50% -50%;
  }
}
.top_about_text_wrap .c_heading {
  text-align: left;
}
.top_about_text_wrap .c_heading .text_en {
  font-size: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .top_about_text_wrap .c_heading .text_en {
    font-size: 2.5rem;
  }
}
.top_about_text_wrap .c_btn01 {
  color: #fff;
  align-self: flex-end;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .top_about_text_wrap .c_btn01 {
    margin-top: 1.875rem;
  }
}

.top_about_desc {
  color: #fff;
  margin-top: 3.125rem;
  max-width: 488px;
}

.top_sec_service {
  background: var(--gray_main) url(../img/top/top_service_bg.png) no-repeat top left;
  background-size: 36%;
  padding: 7.5rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .top_sec_service {
    background-size: 56%;
    padding: 6.25rem 0 6.25rem;
  }
}

.top_service_list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top_service_list {
    align-items: center;
    flex-direction: column;
  }
}
.top_service_list li {
  background-color: var(--deep_blue);
  color: #fff;
  width: 31%;
}
@media screen and (max-width: 767px) {
  .top_service_list li {
    width: 100%;
    max-width: 420px;
  }
}
.top_service_list li > img {
  width: 100%;
  vertical-align: middle;
}
.top_service_list .text_box {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2.25rem;
  height: 62%;
}
@media screen and (max-width: 767px) {
  .top_service_list .text_box {
    padding: 1.875rem;
  }
}
.top_service_list .service_ttl {
  font-size: 1.5625rem;
  line-height: 1.4;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top_service_list .service_ttl {
    font-size: 1.25rem;
  }
}
.top_service_list .service_text {
  margin-bottom: 1.625rem;
}
.top_service_list .c_btn02 {
  align-self: end;
  margin-top: auto;
}

.top_service_other_link {
  font-size: 1.25rem;
  display: flex;
  justify-content: space-between;
  margin-top: 4.375rem;
}
.top_service_other_link .c_btn03 {
  width: 47%;
  height: 90px;
}
@media screen and (max-width: 767px) {
  .top_service_other_link .c_btn03 {
    width: 100%;
    height: 70px;
  }
}

@media screen and (max-width: 767px) {
  .top_service_other_link {
    font-size: 1rem;
    flex-direction: column;
    gap: 20px;
  }
  .top_service_other_link .c_btn03 {
    width: 100%;
    height: 60px;
  }
}
.top_sec_product {
  background: url(../img/top/top_product_bg.jpg) center/cover;
  padding: 7.5rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .top_sec_product {
    padding: 6.25rem 0 5rem;
  }
}
.top_sec_product .desc_cont {
  color: #fff;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top_sec_product .desc_cont {
    flex-direction: column;
    gap: 40px;
  }
}
.top_sec_product .desc_cont .c_btn01 {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .top_sec_product .desc_cont .c_btn01 {
    top: -14px;
  }
}
.top_sec_product .desc_text {
  width: calc(100% - 250px);
}
@media screen and (max-width: 767px) {
  .top_sec_product .desc_text {
    width: 100%;
  }
  .top_sec_product .desc_text + .c_btn_01 {
    margin-left: auto;
  }
}

.top_product_list {
  margin-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .top_product_list {
    margin: 2.8125rem calc(50% - 50vw) 0 0;
  }
}
.top_product_list .splide__arrows {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 5.625rem auto 0;
}
@media screen and (max-width: 767px) {
  .top_product_list .splide__arrows {
    margin: 3.75rem auto 0;
  }
}
.top_product_list .splide__arrows button {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  width: 260px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  transition: 0.1s all;
}
.top_product_list .splide__arrows button:disabled {
  background: transparent;
  transition: 0.1s all;
}
.top_product_list .splide__arrows .arrow_prev {
  rotate: 180deg;
}

.top_factory_img {
  height: 450px;
  overflow: scroll;
  scroll-behavior: smooth;
}
@media screen and (max-width: 767px) {
  .top_factory_img {
    height: 67vw;
  }
}
.top_factory_img img {
  width: 100%;
  vertical-align: bottom;
}

.p-vision_lead {
  background-color: #fff;
  padding: 6.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-vision_lead {
    padding: 5rem 0;
  }
}
.p-vision_lead .c_heading {
  margin-bottom: 3.375rem;
}
.p-vision_lead .c_heading .text_en {
  font-size: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .p-vision_lead .c_heading .text_en {
    font-size: 2.8125rem;
  }
}

.p-vision_lead_text {
  font-size: 1.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-vision_lead_text {
    font-size: 1rem;
  }
}
.p-vision_lead_text .text01 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-vision_lead_text .text01 {
    font-size: 1.0625rem;
  }
}
.p-vision_lead_text .text02 {
  font-family: "MS 明朝", serif;
  font-size: 1.25rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-vision_lead_text .text02 {
    font-size: 1rem;
  }
}

.p-about_strength {
  padding: 6.25rem 0 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-about_strength {
    padding: 5rem 0 6.25rem;
  }
}

.p-about_strength_lead {
  margin-top: 2.5rem;
  max-width: 1100px;
}

.p-about_strength_point li {
  background: linear-gradient(0deg, #fff 0%, #fff 78%, transparent 78%, transparent 100%);
  display: flex;
  justify-content: space-between;
  margin-top: 4.375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about_strength_point li {
    background: linear-gradient(0deg, #fff 0%, #fff 90%, transparent 90%, transparent 100%);
    flex-direction: column;
  }
}
.p-about_strength_point li:first-of-type {
  margin-top: 5rem;
}
.p-about_strength_point li::after {
  content: "";
  display: block;
  background: #f0efee;
  width: calc((100% - 1200px) / 2);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-about_strength_point li:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .p-about_strength_point li:nth-of-type(even)::after {
    right: inherit;
    left: 0;
  }
}
.p-about_strength_point .point_text {
  color: #0a2359;
  font-family: "Impact", "Anton", sans-serif;
  font-size: 2.8125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-about_strength_point .point_text {
    font-size: 2.1875rem;
  }
}
.p-about_strength_point .point_text .num {
  font-size: 7.5rem;
  letter-spacing: 0.05em;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .p-about_strength_point .point_text .num {
    font-size: 5rem;
  }
}
.p-about_strength_point .point_ttl {
  color: #0a2359;
  font-size: 2rem;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-about_strength_point .point_ttl {
    font-size: 1.625rem;
    margin-top: 3.125rem;
  }
}
.p-about_strength_point .point_desc {
  margin-top: 2.5rem;
}
.p-about_strength_point .point_img_wrap {
  position: relative;
  z-index: 2;
  margin-bottom: 3.5%;
}

.p-about_point_text_wrap {
  margin-top: 2%;
  padding-bottom: 3%;
}
.p-about_point_text_wrap.right_side .point_text {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-about_point_text_wrap {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 8%;
  }
}

@media screen and (min-width: 1310px) {
  .p-about_point_text_wrap {
    width: calc(50% - (100% - 1200px) / 2);
  }
  .p-about_point_text_wrap.left_side {
    margin-left: calc((100% - 1200px) / 2);
    padding-right: 10%;
  }
  .p-about_point_text_wrap.right_side {
    margin-right: calc((100% - 1200px) / 2);
    padding-left: 10%;
  }
  .p-about_point_text_wrap .point_img_wrap {
    width: calc((100% - 1200px) / 2 + 50%);
  }
}
@media screen and (min-width: 768px) and (max-width: 1309px) {
  .p-about_point_text_wrap {
    width: 46%;
    margin: 0 2%;
    padding-bottom: 5%;
  }
  .point_img_wrap {
    width: 50%;
  }
  .p-about_strength_point .point_ttl {
    margin-top: 2.5rem;
  }
}
.p-tech_wrap {
  margin-top: 5.625rem;
}
.p-tech_wrap .nav_wrap {
  position: sticky;
  left: 0;
  top: 130px;
  width: 24%;
  margin: 0 auto;
  float: left;
}
.p-tech_wrap #navbar {
  border: 1px solid #dedcdb;
  margin: 0 10% 0 18%;
  max-width: 240px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-tech_wrap #navbar {
    display: none;
  }
}
.p-tech_wrap #navbar a {
  color: currentColor;
  display: block;
}
.p-tech_wrap #navbar .active {
  color: var(--orange);
  font-weight: 700;
}
.p-tech_wrap #navbar .nav-item {
  border-bottom: 1px solid var(--gray_main);
  padding: 5% 15%;
}

.p-tech_main_content {
  max-width: 916px;
  width: 60%;
  margin: 0 auto 0 24%;
}
@media screen and (max-width: 767px) {
  .p-tech_main_content {
    width: 92%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .p-tech_list_item:first-of-type {
    padding-top: 8.125rem;
    margin-top: -8.125rem;
  }
}
.p-tech_list_item:not(:first-of-type) {
  padding-top: 8.125rem;
}
@media screen and (min-width: 768px) {
  .p-tech_list_item:not(:first-of-type) {
    margin-top: -2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-tech_list_item:not(:first-of-type) {
    padding-top: 3.75rem;
  }
}

.p-tech_list {
  padding-top: 3.75rem;
}

.p-tech_list_title {
  color: #0a2359;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 16px 0 24px;
}
@media screen and (max-width: 767px) {
  .p-tech_list_title {
    font-size: 1.375rem;
  }
}
.p-tech_list_title span {
  display: inline-block;
}
.p-tech_list_title .num {
  font-family: "Impact", "Anton", sans-serif;
  font-size: 3.4375rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  position: relative;
  top: 4px;
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  .p-tech_list_title .num {
    font-size: 3.125rem;
  }
}
.p-tech_list_title .num .dot {
  font-size: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-tech_list_title .num .dot {
    font-size: 2.5rem;
  }
}

.p-tec_setsubi_wrap {
  padding-top: 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-tec_setsubi_wrap {
    padding-top: 6.25rem;
  }
}

.p-tech_table_wrap {
  max-width: 100%;
  overflow-x: scroll;
}

.p-tech_table {
  border-collapse: collapse;
  width: 100%;
  min-width: 690px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-tech_table {
    min-width: 540px;
  }
}
.p-tech_table th {
  background: #f0efee;
  border: 2px solid #fff;
  font-size: 0.875rem;
  padding: 5px;
}
.p-tech_table td {
  border-bottom: 1px solid #dedcdb;
  line-height: 1.6;
  padding: 26px 20px;
}
@media screen and (max-width: 767px) {
  .p-tech_table td {
    font-size: 0.75rem;
    padding: 14px;
  }
}
.p-tech_table td:nth-of-type(even) {
  background: #fbfbfb;
}
.p-tech_table td:last-of-type {
  text-align: center;
}
.p-tech_table .center_2item {
  width: 27%;
}
.p-tech_table .unit_num {
  width: 15%;
}

.p-service_desc {
  display: grid;
  grid-template-columns: 1fr 4.7fr;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-service_desc {
    grid-template-columns: 1fr 3fr;
    padding-bottom: 6.25rem;
  }
}
.p-service_desc dt, .p-service_desc dd {
  border-bottom: 1px solid var(--gray_main);
  display: grid;
  grid-template-rows: subgrid;
  align-items: center;
  padding: 2.125rem 0;
}
@media screen and (max-width: 767px) {
  .p-service_desc dt, .p-service_desc dd {
    align-items: start;
  }
}
.p-service_desc dt {
  color: var(--blue02);
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-service_desc dt {
    font-size: 1rem;
    letter-spacing: 0;
  }
}
.p-service_desc dd {
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  .p-service_desc dd {
    font-size: 0.75rem;
  }
}

.p-service_slide_loop {
  overflow: hidden;
  display: flex;
}
.p-service_slide_loop .slide_imgs {
  display: flex;
  animation-name: loop_slide;
  animation-duration: 20s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
}
.p-service_slide_loop .slide_imgs img {
  width: 200px;
  max-width: inherit;
}
@media screen and (max-width: 767px) {
  .p-service_slide_loop .slide_imgs img {
    width: 120px;
  }
}

.p-comapany_greeting {
  padding: 9.125rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .p-comapany_greeting {
    padding: 5rem 0 3.75rem;
  }
}
.p-comapany_greeting .greeting_cont {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-comapany_greeting .greeting_cont {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .p-comapany_greeting .greeting_text {
    width: 50%;
  }
  .p-comapany_greeting .greeting_img {
    width: 42%;
  }
}
.p-comapany_greeting .greeting_sign {
  margin-top: 1.25rem;
  text-align: right;
}

.p-company_summary {
  margin: 7.5rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-company_summary {
    margin: 6.25rem 0 5rem;
  }
}

.p-company_summary_table {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-company_summary_table {
    margin-top: 3.75rem;
  }
}
.p-company_summary_table dt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align-last: justify;
}

.p-company_access {
  padding: 6.875rem 0;
}
.p-company_access .address {
  border-bottom: 2px solid;
  margin-top: 3.125rem;
  padding-bottom: 12px;
}
.p-company_access .map_wrap {
  height: 45vw;
  max-height: 460px;
  min-height: 300px;
  margin-top: 4.375rem;
}
.p-company_access .map_wrap iframe {
  width: 100%;
  height: 100%;
}

.p-history_cont {
  display: flex;
  flex-wrap: wrap;
  margin-top: 6.25rem;
}

.p-history_item {
  border-top: 4px solid var(--gray_main);
  flex: 0 1 25%;
  padding: 1.875rem 3% 4.375rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-history_item {
    padding: 1.875rem 1.25rem 2.5rem 0;
    flex: 0 1 50%;
  }
}
.p-history_item::before {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  top: -7px;
  left: 0;
  background-color: #031336;
  border-radius: 2em;
}
.p-history_item .history_date {
  color: #031336;
  font-family: "Impact", "Anton", sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.p-history_item .history_detail {
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-history_item .history_detail {
    font-size: 0.75rem;
  }
}

.p-history_slide_loop {
  overflow: hidden;
  display: flex;
  margin-top: 3.75rem;
}
.p-history_slide_loop .slide_imgs {
  display: flex;
  animation-name: loop_slide;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
}
.p-history_slide_loop .slide_imgs img {
  width: 360px;
  max-width: inherit;
  margin: 0 6px;
}
@media screen and (max-width: 767px) {
  .p-history_slide_loop .slide_imgs img {
    width: 120px;
  }
}

.nav_anchor_link {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 92%;
  max-width: 900px;
  margin: 7.5rem auto 0;
}
.nav_anchor_link li {
  flex: 1 1 30%;
}
@media screen and (max-width: 767px) {
  .nav_anchor_link li {
    flex: 1 1 auto;
  }
}
.nav_anchor_link li .c_btn04 {
  width: 100%;
  height: 80px;
}
@media screen and (max-width: 767px) {
  .nav_anchor_link li .c_btn04 {
    height: 60px;
  }
}

.p-recruit_message {
  padding: 10.625rem 0 8.125rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-recruit_message {
    padding: 8.125rem 0 6.25rem;
  }
}
.p-recruit_message .cont_wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-recruit_message .cont_wrap {
    flex-direction: column;
  }
}
.p-recruit_message .text_wrap {
  max-width: 650px;
}
@media screen and (min-width: 768px) {
  .p-recruit_message .text_wrap {
    width: 52%;
  }
}
.p-recruit_message .c_heading_02 {
  position: relative;
  top: -0.7em;
}
.p-recruit_message .msg_detail {
  margin-top: 2.5rem;
  margin-bottom: 16px;
}
.p-recruit_message .img_wrap {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-recruit_message .img_wrap {
    width: 50%;
    top: -60px;
  }
}

.p-recruit_message_inner {
  background: #fff;
  max-width: 1450px;
  width: 92%;
  margin: 0 auto;
  padding-left: 8%;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-recruit_message_inner {
    padding-right: 6%;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit_message_inner .l-right_align {
    margin: 0 calc(53% - 50vw) 0 0;
  }
}

.p-recruit_voice {
  margin: 7.5rem 0 8.125rem;
}
@media screen and (max-width: 767px) {
  .p-recruit_voice {
    margin: 6.25rem 0 6.875rem;
  }
}

.p-recruit_voice_wrap {
  margin-top: 5rem;
  overflow: hidden;
}

.p-recruit_voice_inner {
  width: 86%;
  max-width: 1200px;
  margin: 0 auto;
}
.p-recruit_voice_inner .splide__track {
  overflow: visible;
}

.slide_basic .splide__pagination {
  margin-top: 2.5rem;
}
.slide_basic .splide__pagination li {
  margin: 0 7px;
}
.slide_basic .splide__pagination .splide__pagination__page {
  background: #fff;
  border: 1px solid var(--blue03);
  border-radius: 1em;
  width: 16px;
  height: 16px;
  padding: 0;
}
.slide_basic .splide__pagination .splide__pagination__page.is-active {
  background: var(--blue03);
}

.p-recruit_voice_item {
  background-color: var(--gray_main);
  padding: 32px 0;
  margin-right: 4%;
}
.p-recruit_voice_item .upper_cont {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 92%;
  margin: 0 auto 20px;
}
@media screen and (max-width: 767px) {
  .p-recruit_voice_item .upper_cont {
    align-items: flex-start;
    flex-direction: column;
  }
}
.p-recruit_voice_item .voice_num {
  color: var(--blue03);
  font-family: "Impact", "Anton", sans-serif;
  font-weight: 400;
  font-size: 2.375rem;
  letter-spacing: 0;
  line-height: 1;
}
.p-recruit_voice_item .voice_num .num {
  font-size: 3rem;
  letter-spacing: 0;
  margin-left: 8px;
}
.p-recruit_voice_item .voice_person {
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-recruit_voice_item .voice_person {
    align-self: flex-end;
  }
}
.p-recruit_voice_item .voice_ttl {
  background: var(--blue03);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  padding: 10px 4%;
  width: 96%;
}
@media screen and (max-width: 767px) {
  .p-recruit_voice_item .voice_ttl {
    font-size: 1.125rem;
  }
}
.p-recruit_voice_item .detail {
  display: flex;
  justify-content: space-between;
  gap: 3%;
  width: 92%;
  margin: 3.125rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-recruit_voice_item .detail {
    flex-direction: column;
  }
}
.p-recruit_voice_item .detail_img {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .p-recruit_voice_item .detail_img {
    width: 30%;
  }
}
.p-recruit_voice_item .detail_text {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-recruit_voice_item .detail_text {
    width: 67%;
  }
}

.p-recruit_jobdesc .sub_ttl {
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-recruit_jobdesc .sub_ttl {
    font-size: 1.125rem;
  }
}
.p-recruit_jobdesc .jobdesc_note {
  font-size: 0.875rem;
  margin-top: 1.25rem;
  line-height: 2.5;
}
.p-recruit_jobdesc .jobdesc_note .mt {
  margin-top: 2.375rem;
}

.p-recruit_table {
  grid-template-columns: 9em auto;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit_table {
    grid-template-columns: 7em auto;
    margin-top: 3.75rem;
  }
}
.p-recruit_table dt, .p-recruit_table dd {
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .p-recruit_table dt, .p-recruit_table dd {
    font-size: 0.8125rem;
  }
}
.p-recruit_table dt:first-of-type, .p-recruit_table dd:first-of-type {
  border-top: 1px solid #000;
}
.p-recruit_table dt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align-last: justify;
}

#benefits {
  margin-top: 6.25rem;
}

.p-recruit_to_entry {
  margin-top: 5rem;
}

.p-recruit_entry {
  margin-top: 6.25rem;
}
.p-recruit_entry .c_form_wrap {
  margin-top: 5rem;
}/*# sourceMappingURL=main.css.map */