@charset "utf-8";

/*Noto+Sans+JP : 標準テキスト 、Poppins : 見出しなど*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:wght@500&display=swap");

:root {
  --easing: cubic-bezier(0.3, 1, 0.2, 1);
  --transition: 0.3s var(--easing);
  --color-red: rgba(164, 0, 24, 1);
  --color-pink: rgba(255, 216, 216, 1);
  --color-gold: rgba(164, 142, 112, 1);
  --color-lightgray: rgb(244, 245, 247, 1);
  --color-gray: rgba(175, 175, 176, 1);
  --box-shadow: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.1), -0.8rem -0.8rem 1.2rem #fff;
  --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, 0.15), -1rem -1rem 1.5rem #fff;
  --box-shadow-dark: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.2), -0.8rem -0.8rem 1.2rem rgba(#fff, 0.2);
}

/* ------------------------------------------------------------------------- */
/* base
/* ------------------------------------------------------------------------- */

html {
  font-size: 62.5%; /* sets the base font to 10px for easier math */
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.75;
  font-size: 1.6rem;
  -webkit-text-size-adjust: 100%; /*iPhone版Safari文字サイズをリセット */
  min-width: 320px;
  color: #383838;
}

/* header
/* ------------------------------------------------------------------------- */
.l-header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 90px;
  padding: 0 0 0 16px;
  top: 0;
  left: 0;
  right: 0;
  clear: both;
  z-index: 999;
  background-color: #fff;
}

.l-header_logo {
  align-self: center;
  display: inline-block;
  width: 100%;
  max-width: 240px;
  margin: 0;
  aspect-ratio: 6 / 1;
  font-size: 0;
  line-height: 0;
  vertical-align: middle;
}

.jenesis_logo > *,
.tecmira_logo > * {
  display: block;
  width: 100%;
  height: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.jenesis_logo {
  display: block;
}

.jenesis_logo > * {
  padding-top: 16.666666666%;
  background-position: center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.tecmira_logo {
  width: 134px;
  padding: 16px;
}

.tecmira_logo > * {
  padding-top: 86.5671641791%;
  background-position: center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.l-header__btn__guideLine,
.l-header__btn__entry {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  margin-right: 16px;
  padding: 16px;
  border: none;
  overflow: hidden;
  text-decoration: none;
  text-align: center;
  color: #fff;
  letter-spacing: 0.1em;
  width: 200px;
  cursor: pointer;
}

.l-header__btn__guideLine {
  background-color: var(--color-red);
}
.l-header__btn__entry {
  background-color: var(--color-red);
}

.l-header__btn__guideLine > span,
.l-header__btn__entry > span {
  content: "";
  line-height: 1.5;
  z-index: 999;
}

.l-header__btn__guideLine::before,
.l-header__btn__entry::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100px;
  height: 100px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  z-index: 0;
  transform: scale(0);
  transition: var(--transition);
}

/*【SIZE】PC ------ */
@media screen and (min-width: 1271px) {
  .l-header__btn__guideLine:hover,
  .l-header__btn__entry:hover {
    opacity: 1;
  }

  .l-header__btn__guideLine:hover::before,
  .l-header__btn__entry:hover::before {
    opacity: 1;
    transform: scale(2);
  }

  .l-header__btn__guideLine:hover::before,
  .l-header__btn__entry:hover::before {
    opacity: 1;
    transform: scale(2);
  }
}

/*【SIZE】SP ------ */
@media screen and (max-width: 1270px) {
  .l-header {
    justify-content: space-between;
    height: 64px;
    padding-left: 16px;
  }

  .l-header_logo {
    max-width: 200px;
  }
}

@media screen and (max-width: 768px) {
  .l-header_logo {
    max-width: 160px;
  }
}

/* l-header__modal
/* ------------------------------------------------------------------------- */
.l-header__modal__title {
  margin-bottom: 1em;
  border-bottom: solid 1px;
  font-weight: bold;
  font-size: 2.4rem;
}

.l-header__modal_content_inner {
  margin-bottom: 24px;
}

.l-header__modal__entry__link {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 24px;
}

.l-header__modal__entry__link__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
}

/* global_menu
/* ------------------------------------------------------------------------- */

.l-header_menu_wrap {
  display: flex;
  justify-content: flex-end;
}

.l-header_menu {
  display: flex;
}

/* hamburger_menu */
.g-nav_burger {
  display: none;
}

.g-nav_burger {
  border: none;
  outline: none;
  padding: 0;
  appearance: none;
  width: 64px;
  height: 100%;
  position: relative;
  margin: 0;
  background: #383838;
  cursor: pointer;
}

.g-nav_burger_btn__icon {
  height: 64px;
  padding: 14px 14px 20px 14px;
}

.g-nav_burger_btn__icon span:nth-of-type(1),
.g-nav_burger_btn__icon span:nth-of-type(2),
.g-nav_burger_btn__icon span:nth-of-type(3) {
  display: block;
  position: absolute;
  top: 16px;
  left: 50%;
  width: 32px;
  height: 2px;
  transform: translateX(-50%);
  background: #fff;
  transition: all 0.4s;
}

.g-nav_burger_btn__icon span:nth-of-type(2) {
  top: 24px;
}
.g-nav_burger_btn__icon span:nth-of-type(3) {
  top: 32px;
}

.g-nav_burger__text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  text-align: center;
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 1rem;
}

.g-nav_burger.is-active span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(225deg);
}

.g-nav_burger.is-active span:nth-of-type(2) {
  display: none;
}

.g-nav_burger.is-active span:nth-of-type(3) {
  top: -4px;
  transform: translateX(-50%) rotate(-225deg);
}

.g-nav_burger.is-active span:nth-of-type(1),
.g-nav_burger.is-active span:nth-of-type(3) {
  top: 24px;
  width: 32px;
}

.g-nav_burger.is-active span:nth-of-type(1) {
  transform: translateX(-50%) rotate(225deg);
}

.g-nav_burger.is-active span:nth-of-type(2) {
  transform: translateX(-50%) rotate(-225deg);
}

/* メニュー詳細 */
.g-nav {
  width: 100%;
  display: flex;
  justify-content: center;
}

.g-nav__menu__list {
  width: 100%;
  display: flex;
  list-style-type: none;
  margin: 0 auto;
  padding: 0;
}

.g-nav__menu__list > li {
  position: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  text-indent: inherit;
}

.g-nav__megaMenu__navigation {
  visibility: hidden;
  position: absolute;
  width: 100%;
  transition: all 0.4s;
  -webkit-clip-path: inset(0 -50vw 100%);
  clip-path: inset(0 -50vw 100%);
}

.g-nav__megaMenu.is-open .g-nav__megaMenu__navigation {
  -webkit-clip-path: inset(0 -50vw);
  clip-path: inset(0 -50vw);
  visibility: visible;
}

.g-nav__menu__list > li::before {
  display: none;
}

.g-nav__menu__link,
.g-nav__megaMenu__open {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style-type: none;
  text-decoration: none;
  padding: 0 20px;
  color: #383838;
  line-height: 1.25;
  font-size: 1.1rem;
  opacity: 1;
  z-index: 1;
  cursor: pointer;
  background-color: transparent;
}

.g-nav__menu__en {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
}

.g-nav__menu__child {
  color: initial;
  background: var(--color-lightgray);
}

.g-nav__menu__child__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 60px 120px;
}

.g-nav__menu__child__main__category {
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 2.1rem;
}

.g-nav__menu__child__main__category__link {
  position: relative;
  text-decoration: none;
  padding-right: 24px;
  color: #383838;
}

.g-nav__menu__child__main__category__link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 16px;
  height: 16px;
  margin: auto 0;
  border-radius: 8px;
  background-color: var(--color-red);
  display: block;
}

.g-nav__menu__child__main__category__link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 6px;
  bottom: 0;
  width: 6px;
  height: 6px;
  margin: auto 0;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.g-nav__menu__child__list {
  display: flex;
  flex-wrap: wrap;
  margin: 16px auto 0;
  gap: 21px 30px;
}

.g-nav__menu__child__list__item {
  position: relative;
}

.g-nav__menu__child__list__item__link {
  position: relative;
  display: flex;
  height: 100%;
  padding: 16px 48px 16px 0;
  border-bottom: 1px solid var(--color-gray);
  text-decoration: none;
  color: #383838;
}

.g-nav__menu__child__list__item__link::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 22px;
  bottom: 0px;
  width: 6px;
  height: 6px;
  margin: auto 0px;
  border-top: 1px solid var(--color-gray);
  border-right: 1px solid var(--color-gray);
  transform: rotate(45deg);
}

.g-nav__cta {
  display: flex;
  align-items: center;
}

.g-nav__cta__item {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.g-nav__cta__item.this-recruit {
  width: 200px;
  height: 56px;
  background-color: var(--color-gold);
  font-size: 1.6rem;
}

.g-nav__cta__item.this-contact {
  width: 100px;
  height: 90px;
  margin-left: 16px;
  background-color: var(--color-red);
  font-size: 1.1rem;
}

.g-nav__cta__item.this-contact > span {
  padding-top: 32px;
  background: url("../image/icon_mail__wh.svg") top center / 32px no-repeat;
}

/*【SIZE】 PC(1270px以上) かつ
	ホバー可能なデバイスで、ホバーとフォーカスでメニューが展開------ */
@media screen and (min-width: 1271px) and (hover: hover) {
  .l-header__spNavi__contact {
    display: none;
  }

  .g-nav__megaMenu__navigation {
    visibility: hidden;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    transition: all 0.4s;
    -webkit-clip-path: inset(0 -50vw 100%);
    clip-path: inset(0 -50vw 100%);
  }

  .g-nav__megaMenu:hover .g-nav__megaMenu__navigation,
  .g-nav__megaMenu:focus-within .g-nav__megaMenu__navigation {
    -webkit-clip-path: inset(0 -50vw);
    clip-path: inset(0 -50vw);
    visibility: visible;
  }

  .g-nav__menu__link,
  .g-nav__megaMenu__open {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style-type: none;
    text-decoration: none;
    padding: 0 20px;
    color: #383838;
    line-height: 1.25;
    font-size: 1.1rem;
    opacity: 1;
    z-index: 1;
    cursor: pointer;
  }

  .g-nav__megaMenu__open__sp {
    display: none;
  }

  .g-nav__menu__link:before,
  .g-nav__megaMenu__open:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 24px;
    height: 24px;
    border-radius: 12px;
    background-color: var(--color-pink);
    transform: scale(0);
    transition: var(--transition);
    z-index: -1;
  }

  .g-nav__menu__link:hover,
  .g-nav__megaMenu:hover .g-nav__megaMenu__open,
  .g-nav__megaMenu:focus-within .g-nav__megaMenu__open,
  .p-top .g-nav__menu__list li.g-nav__menu__top > .g-nav__menu__link,
  .p-news .g-nav__menu__list li.g-nav__menu__news > .g-nav__menu__link,
  .p-service .g-nav__menu__list li.g-nav__menu__service > .g-nav__megaMenu__open__pc,
  .p-works .g-nav__menu__list li.g-nav__menu__works > .g-nav__megaMenu__open__pc,
  .p-ourpolicy .g-nav__menu__list li.g-nav__menu__ourpolicy > .g-nav__menu__link,
  .p-corporate .g-nav__menu__list li.g-nav__menu__corporate > .g-nav__megaMenu__open__pc {
    color: var(--color-red);
    opacity: 1;
  }

  .g-nav__menu__link:hover::before,
  .g-nav__megaMenu:hover .g-nav__megaMenu__open::before,
  .g-nav__megaMenu:focus-within .g-nav__megaMenu__open::before,
  .p-top .g-nav__menu__list li.g-nav__menu__top > .g-nav__menu__link::before,
  .p-news .g-nav__menu__list li.g-nav__menu__news > .g-nav__menu__link::before,
  .p-service .g-nav__menu__list li.g-nav__menu__service > .g-nav__megaMenu__open__pc::before,
  .p-works .g-nav__menu__list li.g-nav__menu__works > .g-nav__megaMenu__open__pc::before,
  .p-ourpolicy .g-nav__menu__list li.g-nav__menu__ourpolicy > .g-nav__menu__link::before,
  .p-corporate .g-nav__menu__list li.g-nav__menu__corporate > .g-nav__megaMenu__open__pc::before {
    opacity: 1;
    transform: scale(1.75);
  }

  .g-nav__megaMenu:hover .g-nav__megaMenu__navigation,
  .g-nav__megaMenu:focus-within .g-nav__megaMenu__navigation {
    -webkit-clip-path: inset(0 -50vw);
    clip-path: inset(0 -50vw);
    visibility: visible;
  }

  .g-nav__menu__child__main {
    width: calc(100% - 300px);
  }

  .g-nav__menu__child__list__item {
    width: calc(33.3333333333% - 20px);
  }

  .g-nav__menu__child__list__item__link:hover {
    opacity: 1;
  }

  .g-nav__menu__child__list__item__link::before {
    background: var(--color-red);
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -1px;
    margin: auto;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform 0.3s;
  }

  .g-nav__menu__child__list__item__link:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}

/*【SIZE】SP ------ */
@media screen and (max-width: 1270px) {
  .l-header__spNavi {
    display: flex;
  }

  .l-header__spNavi__contact {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    width: 64px;
    height: 64px;
    background-color: var(--color-red);
    font-size: 0.9rem;
  }

  .l-header__spNavi__contact > span {
    padding-top: 32px;
    background: url("../image/icon_mail__wh.svg") top 6px center / 28px no-repeat;
  }

  .g-nav_burger {
    display: block;
    right: 0;
  }

  .l-header_menu_wrap {
    align-items: stretch;
  }

  .l-header_menu {
    visibility: hidden;
    position: absolute;
    top: 64px;
    width: 100%;
    max-height: 0;
    background-color: var(--color-lightgray);
    transition: max-height 0.5s;
    overflow: hidden;
    opacity: 0;
  }

  .l-header_menu.is-active {
    visibility: visible;
    opacity: 1;
    height: calc(100vh - 64px);
    max-height: calc(100vh - 64px);
    overflow: scroll;
  }

  .g-nav {
    flex-direction: column;
    justify-content: flex-start;
  }

  .g-nav__menu__list {
    flex-direction: column;
  }

  .g-nav__menu__list > li {
    position: relative;
    justify-content: flex-start;
    flex-direction: column;
    border-top: solid 1px #fff;
  }

  .g-nav__menu__list > li:first-child {
    border-top: none;
  }

  .g-nav__menu__list > li:last-child {
    border-bottom: solid 1px #fff;
  }

  .g-nav__megaMenu__navigation {
    position: relative;
    height: 0;
  }

  .g-nav__megaMenu__open::before,
  .g-nav__megaMenu__open::after {
    content: "";
    position: absolute;
    top: 0;
    right: 16px;
    bottom: 0;
    width: 12px;
    height: 2px;
    background: var(--color-red);
  }

  .g-nav__megaMenu__open::before {
    margin: auto 0;
    background: var(--color-red);
  }

  .g-nav__megaMenu__open::after {
    width: 12px;
    height: 2px;
    margin: auto 0;
    transform: rotate(90deg);
    background: var(--color-red);
    transition: all 0.3s;
  }

  .g-nav__megaMenu.is-open .g-nav__megaMenu__open::after {
    transform: rotate(0);
  }

  .g-nav__megaMenu.is-open .g-nav__megaMenu__navigation {
    height: auto;
  }

  .g-nav__menu__link,
  .g-nav__megaMenu__open {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 24px 48px 24px 16px;
    text-align: left;
  }

  .g-nav__menu__link::after {
    content: "";
    position: absolute;
    top: 0px;
    right: 22px;
    bottom: 0px;
    width: 6px;
    height: 6px;
    margin: auto 0px;
    border-top: 1px solid var(--color-gray);
    border-right: 1px solid var(--color-gray);
    transform: rotate(45deg);
  }

  .g-nav__megaMenu__open__pc {
    display: none;
  }

  .g-nav__megaMenu__open__sp {
    display: block;
  }

  .g-nav__menu__en {
    margin-right: 1em;
  }

  .g-nav__menu__child {
    background-color: #fff;
  }

  .g-nav__menu__child__inner {
    padding: 0;
  }

  .g-nav__menu__child__img {
    display: none;
  }

  .g-nav__menu__child__main {
    display: block;
    width: 100%;
    flex-direction: column;
  }

  .g-nav__menu__child__main__category__link::before {
    right: 16px;
  }

  .g-nav__menu__child__main__category__link::after {
    right: 22px;
  }

  .g-nav__menu__child__main__category__link {
    padding: 16px 48px 16px 16px;
  }

  .g-nav__menu__child__list__item__link {
    padding: 16px 48px 16px calc(16px + 1em);
  }

  .g-nav__menu__child__main__category__link,
  .g-nav__menu__child__list__item__link {
    display: block;
    border-bottom: solid 1px var(--color-lightgray);
    font-size: 1.6rem;
  }

  .g-nav__menu__child__list {
    margin: 0 auto;
    flex-direction: column;
    gap: 0;
  }

  .g-nav__menu__child__list__item__link::before {
    background: var(--color-red);
    content: "";
    width: 0.5em;
    height: 1px;
    position: absolute;
    top: 0;
    left: 16px;
    bottom: 0;
    margin: auto 0;
  }

  .g-nav__menu__child__list__item:last-child .g-nav__menu__child__list__item__link {
    border-bottom: none;
  }

  .g-nav__cta {
    flex-direction: column;
  }

  .g-nav__cta__item.this-recruit,
  .g-nav__cta__item.this-contact {
    width: 80%;
    height: 56px;
    margin: 24px auto 0;
  }

  .g-nav__cta__item.this-contact > span {
    padding: 0 32px;
    background: url("../image/icon_mail__wh.svg") center left / 24px no-repeat;
    font-size: 1.6rem;
  }
}

/* ページトップ
/* ------------------------------------------------------------------------- */

.l-fixed_link {
  position: fixed;
  right: 16px;
  bottom: 40px;
  width: 50px;
  z-index: 99;
}

.l-fixed_linkbox__item.this-pagetop > a {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background-color: var(--color-red);
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  transition: none;
}

.l-fixed_linkbox__item.this-pagetop > a::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 16px;
  height: 16px;
  clip-path: polygon(50% 20%, 0% 100%, 100% 100%);
  background-color: #fff;
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  .l-fixed_link {
    bottom: 16px;
  }
}

/* footer
/* ------------------------------------------------------------------------- */
.l-footer {
  width: 100%;
  clear: both;
  background-color: #fff;
}

.l-footer_contact {
  padding: 80px 16px;
  background-color: #383838;
  color: #fff;
}

.l-footer_contact_inner {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.l-footer_contact_inner__right {
  display: flex;
  align-items: center;
}

.l-footer_contact_inner__right__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  padding: 0 1em;
  background-color: #fff;
  color: var(--color-red);
  text-align: center;
  text-decoration: none;
  font-size: 2.1rem;
}

.l-footer_contact_inner__right__button > span {
  padding-left: 1.5em;
  background: url("../image/icon_mail.svg") center left/ 1em no-repeat;
}

.l-footer_contents {
  padding: 40px 16px 16px 16px;
  background-color: #fff;
}

.l-footer_contents_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
}

.l-footer_contents_inner__left {
  width: 400px;
}

.l-footer_contents_inner__right {
  width: calc(100% - 400px);
}

.l-footer_contents_inner__left__companyGroup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.l-footer_contents .jenesis_logo {
  width: 100%;
  max-width: 200px;
}

.jenesis_logo > a {
  background: url("../image/logo_jenesis.svg") center / 100% auto no-repeat;
}

.l-footer_contents .tecmira_logo {
  width: 100%;
  max-width: 134px;
}

.tecmira_logo > a {
  background: url("../images/corporate/TECMIRA_logo.svg") center / 100% auto no-repeat;
}

.l-footer_menu {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 16px 0;
  padding-left: 0;
  list-style-type: none;
}

.l-footer_menu_box {
  display: flex;
  flex-direction: column;
  margin-bottom: 1em;
}

.l-footer_menu_box:not(:last-child) {
  margin-right: 32px;
}

.l-footer_menu_box__parent {
  color: var(--color-red);
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
}

.l-footer_menu_box__parent:not(:first-child) {
  margin-top: 1.3rem;
}

.l-footer_menu_box__child {
  display: flex;
  flex-direction: column;
}

.l-footer_menu_box__child__link {
  position: relative;
  padding-left: 1em;
  text-decoration: none;
  color: #383838;
  font-size: 1.3rem;
}

.l-footer_menu_box__child__link::before {
  content: "-";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
}

.l-footer_menu > li {
  margin: 0;
  text-indent: inherit;
}

.l-footer_menu > li::before {
  display: none;
}

.l-footer_sns {
  display: flex;
}

.l-footer_sns {
  display: flex;
  margin-top: 24px;
}

.l-footer_sns__link {
  width: 32px;
  height: 32px;
}

.l-footer_sns__link:not(:last-child) {
  margin-right: 16px;
}

.l-footer_menu__bottom {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  padding-top: 16px;
  border-top: solid 1px var(--color-gray);
}

.l-footer_menu__bottom__link {
  color: #383838;
  text-decoration: none;
  font-size: 1.3rem;
}

.copyright {
  line-height: 1.25;
  font-size: 1.3rem;
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
  .l-footer {
    margin-top: 240px;
  }

  .l-footer_contact_inner__left,
  .l-footer_contact_inner__right {
    width: 50%;
  }

  .l-footer_contact_inner__left {
    padding-right: 16px;
  }

  .l-footer_contact_inner__right {
    padding-left: 16px;
  }

  .l-footer_contact_inner__right__button:hover {
    background-color: var(--color-red);
    color: #fff;
    opacity: 1;
    transition: var(--transition);
  }

  .l-footer_contact_inner__right__button:hover > span {
    background: url("../image/icon_mail__wh.svg") center left/ 1em no-repeat;
  }

  .l-footer_menu > li:not(:last-child) {
    margin-right: 24px;
  }

  .l-footer_menu__bottom {
    margin-top: 40px;
  }
}

/*【SIZE】SP ---------------------------- */
@media screen and (max-width: 768px) {
  .l-footer {
    margin-top: 96px;
  }
  .l-footer_contact {
    padding: 96px 0;
  }

  .l-footer_contact_inner {
    flex-direction: column;
    padding: 0 16px;
  }

  .l-footer_contents {
    padding: 40px 16px 16px;
  }

  .l-footer_contents .jenesis_logo > a {
    margin-bottom: 16px;
  }

  .l-footer_menu {
    display: block;
    width: 100%;
  }

  .l-footer_contents_inner__left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .l-footer_contents_inner__left__companyGroup {
    justify-content: center;
  }

  .l-footer_contents_inner__right {
    display: none;
  }

  .l-footer_contact_inner__right__button {
    height: 80px;
  }

  .l-footer_menu__bottom {
    display: block;
    width: 100%;
    margin-top: 24px;
  }

  .copyright {
    margin-top: 16px;
  }
}

/* コンテンツエリア
/* ------------------------------------------------------------------------- */
.l-main {
  position: relative;
  display: block;
  margin: 0 auto;
  text-align: left;
  clear: both;
}

.l-contents_section {
  padding-top: 120px;
}

.l-pageHeader + .l-contents_section {
  padding-top: 56px;
}

.l-contents_section_inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 40px;
  margin: 0 auto;
}

.l-contents_section_inner > section {
  padding-top: 120px;
}

.l-contents_section_inner > section > section {
  padding-top: 96px;
}

.l-contents_section_inner > h3 + section,
.l-contents_section_inner > section h3 + section,
.l-contents_section_inner > section h4 + section {
  padding-top: 0;
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  .l-contents_section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .l-contents > .l-contents_section:first-of-type {
    padding: 48px 0;
  }

  .l-contents_section_inner {
    padding: 0 16px;
  }

  .l-contents_section_inner > section {
    padding-top: 72px;
    padding-bottom: 24px;
  }

  .l-contents_section_inner > section > section {
    padding-top: 64px;
  }

  .l-contents_section_inner > .u-text__big + section {
    padding-top: 56px;
  }
}

/* ------------------------------------------------------------------------- */
/* 共通
/* ------------------------------------------------------------------------- */

/*スクロールでふわっと表示
/* ------------------------------------------------------------------------- */
.scroll-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}
.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* ------------------------------------------------------------------------- */
/* 見出し
/* ------------------------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1em;
  line-height: 1.5;
}

h1 {
  font-size: 4.8rem;
}

h2 {
  font-size: 4rem;
}

h3 {
  margin-bottom: 2em;
  text-align: center;
  font-size: 3.2rem;
}

h4 {
  margin-bottom: 1.25em;
  padding-bottom: 0.25em;
  border-bottom: dotted 1px var(--color-red);
  /*color: var(--color-red); */
  font-size: 2.4rem;
}

h5 {
  font-size: 2.1rem;
}
h6 {
  font-size: 1.8rem;
}

.c-headLine___first {
  position: relative;
  padding: 32px 0;
}

.c-headLine___first::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: "";
  display: block;
  width: 100%;
  max-width: 745px;
  height: 100%;
  margin: auto;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  h2 {
    font-size: 3.2rem;
  }
  h3 {
    font-size: 2.4rem;
  }
  h4 {
    font-size: 2.1rem;
  }
  h5 {
    font-size: 1.8rem;
  }
  h6 {
    font-size: 1.6rem;
  }
}

/* リンク
/* --------------------------------------------------------------- */
a {
  color: var(--color-red);
  transition: opacity 0.3s;
  text-decoration: underline;
  word-wrap: break-word;
}

a:hover {
  opacity: 0.6;
}

a > img {
  display: inline-block;
}

.c-newTabLink[target="_blank"],
.c-newTabLink__wh[target="_blank"],
.c-externalLink[target="_blank"][href^="http://"]:not([href^="http://www.jenesis.jp/"]),
.c-externalLink[target="_blank"][href^="https://"]:not([href^="https://www.jenesis.jp/"])
{
  padding-right: 1.5em;
  margin-right: 0.5em;
}

.c-newTabLink[target="_blank"] {
  background: url("../image/icon_externalLink.svg") right center / 1em no-repeat;
}

.c-newTabLink__wh[target="_blank"] {
  background: url("../image/icon_externalLink__wh.svg") right center / 1em no-repeat;
}

.c-externalLink[target="_blank"][href^="http://"]:not([href^="http://www.jenesis.jp/"]),
.c-externalLink[target="_blank"][href^="https://"]:not([href^="https://www.jenesis.jp/"])
{
  background: url("../image/icon_externalLink.svg") right center / 1em no-repeat;
}
/* ベーシックなボタン --------------------------------- */
.c-button {
  position: relative;
  display: inline-block;
  width: auto;
  min-width: 240px;
  padding: 8px 48px 8px 24px;
  overflow: hidden;
  border-radius: 25px;
  border: solid 1px var(--color-red);
  background-color: #fff;
  text-decoration: none;
  text-align: left;
  vertical-align: middle;
  color: var(--color-red);
  letter-spacing: 0.1em;
  transition: var(--transition);
}

.c-button span {
  position: relative;
  display: inline-block;
  transition: var(--transition);
  z-index: 1;
}

.c-button::after {
  position: absolute;
  top: 0;
  right: 24px;
  bottom: 0;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: auto 0;
  border-radius: 4px;
  transition: var(--transition);
  background-color: var(--color-red);
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
  .c-button:hover {
    opacity: 1;
    transition: var(--transition);
    color: #fff;
  }

  .c-button:hover::after {
    transform: scale(56); /*クラスが付与されたらscaleを拡大*/
  }
}

/* 大きなボタン --------------------------------- */
.c-button__big {
  position: relative;
  display: inline-block;
  width: auto;
  width: 100%;
  max-width: 480px;
  min-width: 240px;
  margin-bottom: 1em;
  padding: 24px;
  overflow: hidden;
  border-radius: 43px;
  border: solid 1px var(--color-red);
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  color: var(--color-red);
  letter-spacing: 0.1em;
  transition: var(--transition);
  font-size: 2.1rem;
  opacity: 1;
}

.c-button__big span {
  position: relative;
  display: inline-block;
  transition: var(--transition);
  z-index: 1;
}

.c-button__big::after {
  position: absolute;
  top: 0;
  right: 35px;
  bottom: 0;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: auto 0;
  border-radius: 4px;
  transition: all 0.3s;
  background-color: var(--color-red);
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
  .c-button__big:hover {
    opacity: 1;
    transition: var(--transition);
    color: #fff;
  }

  .c-button__big:hover::after {
    transform: scale(120); /*クラスが付与されたらscaleを拡大*/
  }
}

/* アンカーリンクボタン */
.o-anchorList {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  z-index: 1;
}

.o-anchorList__item {
  margin-bottom: 8px;
}

.o-anchorList__item__link {
  position: relative;
  display: block;
  width: 100%;
  padding: 12px 48px;
  border: solid 1px var(--color-red);
  color: var(--color-red);
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
}

.o-anchorList__item__link::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 23px;
  bottom: 0;
  width: 8px;
  height: 8px;
  border-top: solid 2px var(--color-red);
  border-right: solid 2px var(--color-red);
  transform: rotate(135deg);
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
  .c-recruitBtn__guideLine:hover,
  .c-recruitBtn__entry:hover {
    opacity: 1;
  }

  .c-recruitBtn__guideLine:hover > span::before {
    opacity: 1;
    transform: translate(8px, 0);
  }

  .c-recruitBtn__entry:hover > span::before {
    opacity: 1;
    transform: rotate(120deg);
  }

  .c-recruitBtn__guideLine:hover::before,
  .c-recruitBtn__entry:hover::before {
    opacity: 1;
    transform: scale(7);
  }

  /* アンカーリンクボタン */
  .o-anchorList__item {
    width: calc((100% - 32px) / 2);
    margin-right: 16px;
  }

  .o-anchorList__item:nth-child(2n) {
    margin-right: 0;
  }

  .o-anchorList__item__link:hover {
    background-color: var(--color-red);
    border: solid 1px var(--color-red);
    color: #fff;
    opacity: 1;
  }

  .o-anchorList__item__link:hover::after {
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
  }
}

/*【SIZE】Tablet ---*/
@media screen and (max-width: 960px) {
  /* アンカーリンクボタン */
  .o-anchorList__item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  .o-anchorList__item__link {
    padding: 12px 48px 12px 12px;
    text-align: left;
  }
}

/* アンカーリンクのずれ調整
/* --------------------------------------------------------------- */
.anchor {
  display: block;
  width: 100%;
  margin-top: -96px;
  padding-top: 96px;
  font-size: 0;
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
}

/*【SIZE】PC ------ */
@media screen and (max-width: 768px) {
}

/* バナー風ボタン --------------------------------- */
.o-linkBanner__wrapper {
  margin: 0 auto;
  padding-top: 10rem;
}

.o-linkBanner__link {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0.5rem;
  background-position: center;
  background-size: cover;
  text-decoration: none;
}

.o-linkBanner__link:not(:first-child) {
  margin-top: 24px;
}

.o-linkBanner__link:before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  background-position: center;
  background-size: cover;
  transition: transform 0.5s ease;
}

.o-linkBanner__link::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  background-position: center;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 0;
}

.o-linkBanner__heading {
  position: relative;
  z-index: 1;
}

.o-linkBanner__title {
  font-weight: bold;
}

.o-linkBanner__title__Jp {
  position: relative;
  z-index: 1;
  line-height: 1.5;
  color: var(--color-red);
}

.o-linkBanner__title__En {
  display: block;
  position: relative;
  z-index: 1;
  color: #fff;
  line-height: 1;
}

.o-linkBanner__lead {
  position: relative;
  z-index: 1;
  margin-top: 0.5em;
}

.o-linkBanner__about {
  position: relative;
  z-index: 1;
  font-weight: bold;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 1em;
}

.o-linkBanner__about,
.o-linkBanner__lead {
  color: #fff;
}

.o-linkBanner__link:hover:before {
  transform: scale(1.05);
}

.o-linkBanner__about .text {
  position: relative;
  padding-right: 1.5em;
}

.o-linkBanner__about .text::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 16px;
  height: 16px;
  margin: auto 0;
  border-radius: 8px;
  background-color: var(--color-red);
  display: block;
}

.o-linkBanner__about .text::after {
  content: "";
  position: absolute;
  top: 0;
  right: 6px;
  bottom: 0;
  width: 6px;
  height: 6px;
  margin: auto 0;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* バナーリンク：製造実績 */
.o-linkBanner__link__works::before {
  background-image: url(../image/l-pageHeader__visual__works.jpg);
}

/* バナーリンク：採用情報 */
.o-linkBanner__link__recruit::before {
  background-image: url("../image/l-pageHeader__visual__recruit.jpg");
}

/* バナーリンク：お問い合わせ */
.o-linkBanner__link__contact::before {
  background-image: url("../image/l-pageHeader__visual__contact.jpg");
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
  .o-linkBanner__link {
    padding: 4rem;
  }

  .o-linkBanner__title__Jp {
    font-size: 1.4rem;
  }

  .o-linkBanner__title__En {
    font-size: 5.6rem;
  }
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  .o-linkBanner__link {
    padding: 24px;
  }

  .o-linkBanner__title__Jp {
    font-size: 1.2rem;
  }

  .o-linkBanner__title__En {
    font-size: 4.8rem;
  }
}

/*テーブル
/* --------------------------------------------------------------- */
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
  font-family: inherit;
}

.o-table caption {
  text-align: left;
  color: var(--color-red);
  padding-bottom: 0.5em;
  font-weight: bold;
}

.o-table th,
.o-table td {
  text-align: left;
  vertical-align: middle;
  padding: 24px;
}

.o-table th {
  width: 20%;
  min-width: 150px;
  border: 1px solid var(--color-red);
  border-bottom: 1px solid #fff;
  background-color: var(--color-red);
  color: #fff;
}
.o-table td {
  border: 1px solid var(--color-gray);
}

.o-table tr:last-of-type th:last-of-type {
  border-bottom: 1px solid var(--color-red);
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
}

/*【SIZE】PC ------ */
@media screen and (max-width: 768px) {
  .o-table__1clm__sp th,
  .o-table__1clm__sp td {
    display: block;
    width: 100%;
    padding: 8px 16px;
  }

  .o-table__1clm__sp td {
    margin-top: -1px;
    padding: 16px;
  }
}

/* テーブル内でインデントを揃える要素 ---- */
.p-tableInTable tr,
.p-tableInTable th,
.p-tableInTable tr:last-of-type th:last-of-type,
.p-tableInTable tr:last-of-type th:last-of-type,
.p-tableInTable td {
  background-color: transparent;
  border: none;
  font-weight: normal;
  padding: 0;
  color: #383838;
}
.p-tableInTable th {
  width: 150px;
  min-width: auto;
  vertical-align: top;
}
.p-tableInTable td {
  padding: 0 0 0 24px;
}
@media screen and (max-width: 768px) {
  .p-tableInTable {
    width: 100%;
  }
  .p-tableInTable tr,
  .p-tableInTable th {
    display: block;
    width: 100%;
  }
  .p-tableInTable td {
    padding: 0 0 12px 0;
  }
  .p-tableInTable tr:last-of-type td:last-of-type {
    padding: 0;
  }
}

/*リスト
/* --------------------------------------------------------------- */
/* -- UL：箇条書き --*/
ul > li {
  position: relative;
  list-style: none;
  padding-left: 1.5em;
}

ul > li:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.65em;
  left: 0.5em;
  height: 0.5em;
  width: 0.5em;
  background-color: var(--color-red);
  line-height: 1;
}

ul > li > ul {
}

ul > li > ul > li {
  padding-left: 1em;
}

ul > li > ul > li:before {
  content: "-";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  width: auto;
  height: auto;
  background-color: transparent;
  line-height: 1.75;
}

/* -- OL：番号付きリスト -- */
ol > li {
  list-style: decimal;
  margin-left: 1.5em;
  margin-bottom: 0.3em;
}

/* -- OL：大文字のアルファベットリスト -- */
.u-ol__upperLatin > li {
  list-style-type: upper-latin;
}

/* -- DL：説明リスト -- */

dt {
  color: var(--color-red);
  font-weight: bold;
  font-size: 1.8rem;
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
}

/*【SIZE】PC ------ */
@media screen and (max-width: 768px) {
}

/* 強調
/* --------------------------------------------------------------- */
.o-largeText {
  margin: 64px auto;
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
}

.o-focus,
.o-attention {
  display: block;
  max-width: 960px;
  margin: 0 auto 40px;
}

.o-focus {
  padding: 24px;
  background-color: #e9e9e9;
  background-image: url("../image/bg_dot.png");
}

.o-attention {
  background: #ffdcdd;
}

.o-focus_inner,
.o-attention_inner {
  display: block;
  background-color: #fff;
  margin: 0;
  padding: 16px;
}

.o-attention {
  background-image: url(../image/bg_stripe_rd.png);
}

.o-focus_title,
.attention_tit {
  display: block;
  text-align: left;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  color: var(--color-red);
  border-bottom: solid 1px;
  font-weight: bold;
  font-size: 1.8rem;
}

.o-focus_title {
  border-bottom-color: var(--color-red);
}

.attention_tit {
  color: #ff0000;
  border-bottom-color: #ff7878;
}

.signature {
  margin-top: 1.5em;
  font-size: 1.6rem;
  text-align: right;
  font-weight: 400;
}
.signature span {
  font-size: 2.4rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

blockquote {
  padding: 20px;
  margin: 40px 10px;
  box-sizing: border-box;
  font-style: italic;
  background: var(--color-lightgray);
  color: #555;
}

blockquote > .txt_mincho {
  margin: 0;
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
}

/*【SIZE】PC ------ */
@media screen and (max-width: 768px) {
  .o-largeText {
    margin: 32px auto;
    text-align: left;
    font-size: 1.8rem;
  }

  .o-focus {
    padding: 16px;
  }
}

/* テキスト
/* --------------------------------------------------------------- */
.u-text__center,
.u-text__center__sp {
  text-align: center;
}

.u-text__left {
  text-align: left;
}

.u-text__right {
  text-align: right;
}

.u-text__kome {
  padding-left: 1em;
  text-indent: -1em;
  letter-spacing: normal;
  font-size: 90%;
}

.u-text__focus {
  padding: 0 0.25em;
  font-weight: bold;
  background-color: var(--color-lightgray);
}

.u-text__big {
  text-align: center;
  font-size: 150%;
  font-weight: bold;
  margin: 2em 0;
}

.u-text__small {
  font-size: 81.25%;
}

.u-color__red {
  color: var(--color-red);
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
  .u-spOnly {
    display: none;
  }
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  .u-text__center__sp {
    text-align: left;
  }

  .u-pcOnly {
    display: none;
  }

  .u-text__big {
    text-align: left;
    font-size: 131.25%;
  }
}

/* 幅
/* --------------------------------------------------------------- */
.u-width--100 {
  width: 100% !important;
  max-width: inherit !important;
}

/* マージン：トップ
/* --------------------------------------------------------------- */

.u-margin_top__0 {
  margin-top: 0;
}

.u-margin_top__16 {
  margin-top: 16px;
}

.u-margin_top__24 {
  margin-top: 24px;
}

.u-margin_top__32 {
  margin-top: 32px;
}

.u-margin_top__40 {
  margin-top: 40px;
}

.u-margin_top__64 {
  margin-top: 64px;
}

.u-margin_top__72 {
  margin-top: 72px;
}

.u-margin_top__120 {
  margin-top: 120px;
}

/* 配置
/* --------------------------------------------------------------- */

.center {
  display: block;
  margin: 20px auto;
  clear: both;
}

.right img,
.left img {
  display: block;
}

.clearfix::after {
  content: " ";
  display: block;
  clear: both;
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
}

/*【SIZE】PC ------ */
@media screen and (max-width: 768px) {
}

/* カラムレイアウト
/* --------------------------------------------------------------- */
.o-flex__2clm,
.o-flex__3clm,
.o-flex__4clm {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}

.o-flex__2clm__item {
  width: calc((100% - 32px) / 2);
  margin: 0 32px 16px 0;
}

.o-flex__3clm__item {
  width: calc((100% - 48px) / 3);
  margin: 0 24px 16px 0;
}

.o-flex__4clm__item {
  display: flex;
  justify-content: center;
  width: calc((100% - 48px) / 4);
  margin: 0 16px 16px 0;
}

.o-flex__2clm__item:nth-child(2n),
.o-flex__3clm__item:nth-child(3n),
.o-flex__4clm__item:nth-child(4n) {
  margin-right: 0;
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  .o-flex__4clm__item {
    width: calc((100% - 16px) / 2);
    margin: 0 16px 16px 0;
  }

  .o-flex__4clm__item:nth-child(4n) {
    margin-right: 16;
  }

  .o-flex__4clm__item:nth-child(2n) {
    margin-right: 0;
  }
}

/* フォーム関連（入力：input・select・textarea）
/* --------------------------------------------------------------- */
.wpcf7-response-output {
  display: none;
}

.wpcf7-list-item {
  display: inline-block;
}

.wpcf7-list-item > label {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 8px;
  padding-left: 40px;
  cursor: pointer;
}

/* -- 一律設定 --*/
input {
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="date"],
input[type="month"],
textarea {
  font-family: var(--font-default);
  line-height: 2em;
  padding: 8px;
  border: solid var(--color-gray) 1px;
  background-color: #fff;
  color: inherit;
  border-radius: 3px;
  font-size: 1.8rem;
}

input[type="text"],
input[type="email"] {
  width: 100%;
}

input[type="tel"] {
  max-width: 480px;
}

/*readonly 設定*/
input[type="text"]:read-only,
input[type="tel"]:read-only,
input[type="email"]:read-only,
input[type="number"]:read-only,
input[type="search"]:read-only,
input[type="date"]:read-only,
input[type="month"]:read-only,
textarea:read-only,
select:disabled {
  background-color: #f9f9f9;
}

/*disabled 設定*/
input[type="text"]:disabled,
input[type="tel"]:disabled,
input[type="email"]:disabled,
input[type="number"]:disabled,
input[type="search"]:disabled,
input[type="date"]:disabled,
input[type="month"]:disabled,
textarea:disabled,
select:disabled {
  background-color: #f9f9f9;
}

/* -- input::placeholder：プレースホルダー --*/
input::placeholder {
  color: #adadad;
}

/* -- textarea：テキストエリア --*/
textarea {
  line-height: 2rem;
  width: 100%;
}

/* -- select：セレクトボックス --*/
select {
  -webkit-appearance: none;
  appearance: none;
  height: 2.1em;
  line-height: 2.1em;
  padding: 8px;
  padding-right: 32px;
  border: solid var(--color-gray) 1px;
  background-color: #fff;
  background: url("../image/icon_arrow_select.svg") right 10px center / 12px no-repeat;
  color: inherit;
  border-radius: 3px;
  font-size: 1.8rem;
  max-width: calc(100% - (8px + 1em));
  box-sizing: content-box;
  cursor: pointer;
}

/* -- input[type="checkbox"]：チェックボックス--*/

input[type="checkbox"] {
  position: relative;
  appearance: none;
  display: inline-flex;
  align-items: flex-start;
  width: 27px;
  height: 27px;
  border: 2px solid var(--color-gray);
  border-radius: 5px;
  cursor: pointer;
}

input[type="checkbox"]:checked {
  background: var(--color-red);
  border: solid 2px var(--color-red);
}

input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 6px;
  transform: rotate(45deg);
  width: 10px;
  height: 20px;
  border: solid 2px transparent;
  border-bottom: 4px solid #fff;
  border-right: 4px solid #fff;
  border-radius: 2px;
  background: transparent;
  box-shadow: none;
}

.wpcf7-form .wpcf7-list-item label input[type="checkbox"] {
  position: absolute;
  left: 0;
}

/* -- input[type="radio"]：ラジオボタン --*/
.wpcf7-form .wpcf7-radio .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
}

.wpcf7-form .wpcf7-radio .wpcf7-list-item label input[type="radio"] {
  position: absolute;
  left: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 27px;
  height: 27px;
  border: 2px solid var(--color-gray);
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}

.wpcf7-form .wpcf7-radio .wpcf7-list-item label input[type="radio"]:checked {
  border-color: var(--color-red);
}

.wpcf7-form .wpcf7-radio .wpcf7-list-item label input[type="radio"]:checked::before {
  content: "";
  width: 19px;
  height: 19px;
  border: none;
  background-color: var(--color-red);
  border-radius: 1em;
}

/* -- input[type="number"]：数値入力--*/
input[type="number"] {
  text-align: right;
  padding-right: 0;
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="number"],
  input[type="search"],
  input[type="date"],
  input[type="month"],
  textarea {
    width: 100%;
  }

  /* -- input[type="radio"]：ラジオボタン --*/
  .wpcf7-list-item > label {
    display: block;
  }
}

/*----------------------------*/
/*フォーム関連（ボタン：submit・button）
/*----------------------------*/
/*共通設定*/
input[type="submit"],
input[type="button"],
button {
  /* iOSでのデフォルトスタイルをリセット */
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  border: solid 1px #252525;

  /* 装飾 */
  padding: 10px 20px;
  background-color: #fff;
  border: none;
  font-weight: normal;
  min-height: 30px;
  cursor: pointer;
  font-size: 1.6rem;
  cursor: pointer;
  transition: opacity 0.3s;
  opacity: 1;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
button::-webkit-search-decoration {
  display: none;
}
input[type="submit"]:focus,
input[type="button"]:focus,
button:focus {
  outline-offset: -2px;
}

input[type="submit"]:hover,
input[type="button"]:hover,
button:hover {
  opacity: 0.6;
}

/*----------------------------*/
/*フォーム関連（レイアウト関連：fieldset・legend）
/*----------------------------*/

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

fieldset + fieldset {
  margin-top: 10px;
}

/*----------------------------*/
/* （c-）フォームUI関連
/*----------------------------*/
/* -- 必須アイコン .c-hissu --*/
.c-hissu::before {
  display: inline-block;
  content: "必須";
  width: 40px;
  margin-left: 1em;
  padding: 3px 6px 4px 6px;
  border: solid 1px var(--color-red);
  background-color: #fff;
  color: var(--color-red);
  text-align: center;
  line-height: 1;
  font-size: 1.2rem;
  font-weight: bold;
}

/* -- 任意アイコン .c-any --*/
.c-any::before {
  display: inline-block;
  content: "任意";
  width: 40px;
  margin-left: 1em;
  padding: 3px 6px 4px 6px;
  border: solid #383838 1px;
  background-color: #fff;
  color: #383838;
  text-align: center;
  line-height: 1;
  font-size: 1.2rem;
  font-weight: bold;
}

/* -- フォームのボタンUI c-formbtn --*/
.c-formbtn,
input[type="submit"].c-formbtn,
input[type="button"].c-formbtn,
.wpcf7-submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 10px;
  transition: background 0.3s;
  font-weight: bold;
  border-radius: 3px;
  border: 1px #adadad solid;
  background-color: #fff;
  color: #383838;
  cursor: pointer;
}

.c-formbtn:hover,
input[type="submit"].c-formbtn:hover,
input[type="button"].c-formbtn:hover {
  background-color: #eeeeee;
  opacity: 1;
}

.c-formbtn:active,
input[type="submit"].c-formbtn:active,
input[type="button"].c-formbtn:active {
  transform: translateY(5px);
}

.c-formbtn:disabled,
input[type="submit"].c-formbtn:disabled,
input[type="button"].c-formbtn:disabled {
  background-color: var(--color-gray);
  color: #949494;
  cursor: auto;
  transform: translateY(5px);
}

/*送信ボタン：.this-send*/
.c-formbtn.this-send,
input[type="submit"].c-formbtn.this-send,
input[type="button"].c-formbtn.this-send {
  background-color: var(--color-red);
  color: #fff;
  border: none;
}

.c-formbtn.this-send:hover,
input[type="submit"].c-formbtn.this-send:hover,
input[type="button"].c-formbtn.this-send:hover {
  background-color: #bd000f;
}

.c-formbtn.this-send:active,
input[type="submit"].c-formbtn.this-send:active,
input[type="button"].c-formbtn.this-send:active {
}

/* お問い合わせボックス
--------------------------------------------------------- */
.contact_box {
  width: 100%;
  max-width: 800px;
  margin: 80px auto;
  position: relative;
  border: 3px solid #ffea92;
  padding: 30px 20px 0 20px;
  border-radius: 5px;
}

.contact_box .contact_box_tit {
  position: absolute;
  width: 50%;
  top: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: inline-block;
  padding: 3px 0;
  text-align: center;
  line-height: 1.5;
  font-size: 2rem;
  background: #ffea92;
}

.contact_box_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0px 8px;
}

.contact_box_table th {
  text-align: center;
  font-weight: normal;
  background: #ffea92;
  width: 120px;
  vertical-align: middle;
}

.contact_box_table td {
  padding: 5px 20px;
  font-size: 1.8rem;
  line-height: 1.5;
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
}

/* フォーム用レイアウト
--------------------------------------------------------- */
/* ---------------
   フォーム　入力画面
   --------------- */
.l-formIntroduction {
  max-width: 960px;
  margin: 0 auto;
}

.l-formIntroduction_text {
  line-height: 2em;
}

/* ---------------
   フォーム　完了画面
   --------------- */
.l-formThanks {
  max-width: 960px;
  margin: 0 auto;
}

.l-formThanks_text {
  margin-bottom: 64px;
  line-height: 2em;
}

/* ---------------
   フォームステップ ： formStep
   --------------- */

.l-formStep {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 960px;
  margin: 80px auto;
}

.l-formStep__item {
  position: relative;
  display: flex;
  background-color: var(--color-lightgray);
  border-radius: 6px;
  color: var(--color-gray);
  opacity: 0.6;
  width: 100%;
}

.is-current.l-formStep__item {
  opacity: 1;
}

.l-formStep__step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 72px;
  text-align: center;
  font-weight: bold;
  background: var(--color-red);
  color: #fff;
  line-height: 1;
  font-size: 1.8rem;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.l-formStep__step__number {
  font-size: 3.2rem;
  font-size: clamp(1.4rem, 1.6vw, 3.2rem);
}

.l-formStep__label {
  display: block;
  padding: 15px 8px 15px 15px;
  font-size: 2.2rem;
  font-size: clamp(1.4rem, 1.145vw, 2.2rem);
  font-weight: bold;
  color: inherit;
  text-align: center;
}
.is-current.l-formStep__item .l-formStep__label {
  color: var(--color-red);
}

.l-formStep__arrow {
  padding: 0px 15px;
}

.l-formStep__arrow:after {
  display: inline-block;
  content: "";
  border-top: solid 5px var(--color-red);
  border-right: solid 5px var(--color-red);
  height: 0.7em;
  width: 0.7em;
  transform: rotate(45deg);
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  .l-formStep {
    flex-direction: column;
    margin: 40px auto;
  }

  .l-formStep__arrow::after {
    transform: rotate(135deg);
  }
}

/* ---------------
	 フォーム本体 > 章 ： 構造単位の1つ
	 --------------- */
.l-formChapter {
  display: block;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

/* ---------------
   フォーム本体 > 節 ： 構造単位の1つ
   --------------- */
.l-formBody_section,
.l-formSection {
  display: block;
  width: 100%;
  margin-top: 24px;
}

/*フォーム本体 > 節 > 見出し*/
.l-formBody_section__midashi,
.l-formSection__midashi {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  background-color: var(--color-red);
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  padding: 5px 0.5em;
}

/* ---------------
   フォーム本体 > 項 ： 構造単位の1つ
   --------------- */
.l-formGroup__midashi {
  display: block;
  font-weight: bold;
  margin-top: 24px;
  position: relative;
  padding-left: 12px;
  font-size: 1.6rem;
}

.l-formGroup__midashi::before {
  content: "　";
  width: 3px;
  height: 15px;
  display: inline-block;
  background-color: var(--color-red);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2px;
  border-radius: 2px;
}

/* ---------------
   フォーム本体 > アイテム ： 構造単位の1つ
   --------------- */
.l-formItem {
  width: 100%;
  margin-top: 24px;
}

.l-formItem + .l-formItem {
  margin-top: 2em;
}

.l-formItem__entry {
  width: 100%;
  letter-spacing: -0.5em;
}

.l-formItem__entry > * {
  letter-spacing: normal;
}

/*構造単位内の最小分割：横並び*/
.l-formItem__entry.this-split fieldset > p {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

@media screen and (max-width: 768px) {
  .l-formItem__entry.this-split fieldset > p {
    flex-direction: column;
  }
}

/*エラーメッセージの出力*/
.l-formItem__msg {
  font-size: 1.2rem;
  padding: 2px;
}

.l-formItem__msg.this-error:empty {
  display: none;
}

.wpcf7-not-valid-tip,
.l-formItem__msg.this-error {
  color: var(--color-red);
  margin-bottom: 6px;
}

.l-formItem__label {
  display: block;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.l-formItem__label__zip {
  display: flex;
  align-items: center;
}

.l-formItem__label__zip > span:first-of-type {
  margin-right: 0.5em;
}

.l-formItem__label__zip input[type="text"] {
  width: 10em;
}

/*ダミーアイテム form_sumupIcon*/
.l-formItem_dummy {
  display: inline-block;
  line-height: 2.2em;
  padding: 8px 3px;
  border: solid var(--color-gray) 1px;
  background-color: #fff;
  color: inherit;
  border-radius: 3px;
  font-size: 1.8rem;
  background-color: #f9f9f9;
  min-width: 10em;
}

/*アイコンまとめてレイアウト：form_sumupIcon*/
.l-form_sumupIcon {
  position: relative;
  padding-left: 40px;
}

.l-form_sumupIcon:before {
  position: absolute;
  top: 18px;
  left: 0px;
}

.l-form_sumupIcon > * {
  margin-top: 8px;
}

/* ---------------
   フォーム本体 > 同意確認セクション ： 構造単位の1つ
   --------------- */

.l-formAgree {
  width: 100%;
  max-width: 960px;
  margin: 36px auto;
  background-color: var(--color-lightgray);
  padding: 24px;
}

.l-formAgree__set .wpcf7-list-item > label {
  line-height: 1.75;
}

.l-formAgree__ui {
  margin: auto 0;
}

input[type="checkbox"] + label.l-formAgree__label {
  font-weight: bold;
}

.l-formAgree__guide {
  margin-top: 1em;
}

.l-formAgree__guide a {
  color: var(--color-red);
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  .l-formAgree {
    padding: 24px 16px;
  }
}

/* ---------------
   フォーム > 各種状態design
   --------------- */
/*状態スタイル*/
.l-formBody input.is-efo__init,
.l-formBody select.is-efo__init,
.l-formBody textarea.is-efo__init,
.l-formBody input[type="radio"].is-efo__init,
.l-formBody input[type="checkbox"].is-efo__init,
.l-formBody .is-efo__init input,
.l-formBody .is-efo__init select,
.l-formBody .is-efo__init textarea,
.l-formBody .is-efo__init input[type="radio"] + label::before,
.l-formBody .is-efo__init input[type="checkbox"] + label::before {
  background-color: #fffce0 !important;
}

.l-formBody input.is-efo__clear,
.l-formBody select.is-efo__clear,
.l-formBody textarea.is-efo__clear,
.l-formBody input[type="radio"].is-efo__clear,
.l-formBody input[type="checkbox"].is-efo__clear,
.l-formBody .is-efo__clear input,
.l-formBody .is-efo__clear select,
.l-formBody .is-efo__clear textarea,
.l-formBody .is-efo__clear input[type="radio"] + label::before,
.l-formBody .is-efo__clear input[type="checkbox"] + label::before {
  background-color: #f2ffe0 !important;
}

/*オートコンプリートハック：OK*/
.l-formBody input.is-efo__clear:-webkit-autofill {
  box-shadow: 0 0 0 1000px #f2ffe0 inset;
}

.l-formBody input.is-efo__error,
.l-formBody select.is-efo__error,
.l-formBody textarea.is-efo__error,
.l-formBody input[type="radio"].is-efo__error,
.l-formBody input[type="checkbox"].is-efo__error,
.l-formBody .is-efo__error input,
.l-formBody .is-efo__error select,
.l-formBody .is-efo__error textarea,
.l-formBody .is-efo__error input[type="radio"] + label::before,
.l-formBody .is-efo__error input[type="checkbox"] + label::before {
  background-color: #ffe3e3 !important;
}
/*オートコンプリートハック：NG*/
.l-formBody input.is-efo__error:-webkit-autofill {
  box-shadow: 0 0 0 1000px #ffe3e3 inset;
}

/* ---------------
   フォーム本体 > 送信ボタンセクション ： 構造単位の1つ
   --------------- */

.l-formBtns {
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 960px;
  margin: 80px auto 40px;
  position: relative;
}

/*送信ボタン*/
.l-formBtns__btn.this-send {
  position: relative;
  display: inline-flex;
  justify-content: center;
  width: 100%;
  height: 80px;
  padding: 20px;
  font-size: 1.8rem;
}

/*戻る*/
.l-formBtns__btn.this-back {
  position: relative;
  display: inline-flex;
  width: 100%;
  min-width: 240px;
  height: 80px;
  padding: 20px;
  text-align: left;
  font-size: 1.8rem;
}

.l-formBtns .c-textLinkIcon.this-exit {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.l-formBtns .c-textLinkIcon.this-exit .c-textLinkIcon__icon {
  background-image: var(--icon-batsu__black);
  background-size: 80%;
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  /*送信ボタン エリア*/
  .l-formBtns__wrapper.this-send {
    width: 70%;
  }

  /*戻るボタン エリア*/
  .l-formBtns__wrapper.this-back {
    width: 25%;
  }

  /*送信ボタン*/
  .l-formBtns__btn.this-send {
    min-width: inherit;
  }

  /*戻る*/
  .l-formBtns__btn.this-back {
    min-width: inherit;
  }
}

/* 2階層目トップ：リンクリスト（.o-indexLinks）
--------------------------------------------------------- */
.o-indexLinks {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0;
  margin: 80px auto 0;
}

.o-indexLinks__link {
  display: block;
  text-decoration: none;
}

.o-indexLinks__link:hover {
  opacity: 1;
}

.o-indexLinks__thum {
  text-align: center;
  border: solid 1px var(--color-lightgray);
  transition: 0.3s;
  overflow: hidden;
}

.o-indexLinks__thum img {
  transition: transform 0.3s;
}

.o-indexLinks__link:hover .o-indexLinks__thum img {
  transform: scale(1.1, 1.1);
}

.o-indexLinks__label {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 24px 1em 0;
  border-bottom: solid 1px var(--color-red);
  color: var(--color-red);
  font-weight: bold;
  font-size: 1.7rem;
}

.o-indexLinks__label__en {
  font-size: 1.5rem;
}

.o-indexLinks__desc {
  width: 100%;
  display: block;
  padding: 1em 0;
  color: #383838;
}

.o-indexLinks__label::before {
  content: "";
  position: absolute;
  top: 0;
  right: 4px;
  bottom: 0;
  width: 16px;
  height: 16px;
  margin: auto 0;
  border-radius: 8px;
  background-color: var(--color-red);
  display: block;
}

.o-indexLinks__label::after {
  content: "";
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  width: 6px;
  height: 6px;
  margin: auto 0;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
  .o-indexLinks {
    justify-content: space-between;
  }

  .o-indexLinks__item {
    width: calc((100% - 16px) / 3);
    max-width: 352px;
    margin: 40px 8px 0 0;
  }

  .o-indexLinks__item:nth-child(3n) {
    margin-right: 0;
  }

  .o-indexLinks__item:nth-child(-n + 3) {
    margin-top: 0;
  }
  /*service、corporateのフッター共通リンク*/
  .o-indexLinks__footer {
    margin-top: 240px;
  }
}

/*【SIZE】Tablet 縦------ */
@media screen and (min-width: 480px) and (max-width: 768px) {
  .o-indexLinks__item {
    width: calc((100% - 8px) / 2);
    margin: 40px 8px 0 0;
  }

  .o-indexLinks__item:nth-child(2n) {
    margin-right: 0;
  }
}

/*【SIZE】SP ------ */
@media screen and (max-width: 480px) {
  .o-indexLinks__item {
    width: 100%;
  }

  .o-indexLinks__item:not(:first-of-type) {
    margin-top: 24px;
  }

  .o-indexLinks__label {
    font-size: 1.6rem;
  }

  /*service、corporateのフッター共通リンク*/
  .o-indexLinks__footer {
    margin-top: 96px;
  }
}

/* お知らせ
/* --------------------------------------------------------------- */
/*タブ全体*/
.o-newsBox_categoryTab {
  display: flex;
  align-items: center;
  padding: 8px 0;
}

/*個別のタブ*/
.o-newsBox_categoryTab__tag {
  margin-right: 8px;
  padding: 8px;
  background-color: var(--color-gray);
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 1.3rem;
  transition: var(--transition);
}

.o-newsBox_categoryTab__tag:last-child {
  margin-right: 0;
}

/*タブがアクティブな時*/
.o-newsBox_categoryTab__tag:hover,
.o-newsBox_categoryTab__tag.is-active {
  background-color: var(--color-red);
  color: #fff;
}

.o-newsBox_categoryTab__tag.is-active {
  pointer-events: none;
}

/*コンテンツ*/
.o-newsBox__list {
  position: relative;
  border-top: none;
}

/*コンテンツの表示/非表示の切り替え*/
.o-newsBox__item {
  width: 100%;
  display: none; /*標準では非表示*/
}

.o-newsBox__item.is-show {
  display: block; /*クラス is-show が付与されたら表示する*/
}

.o-newsBox__link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 16px 48px 16px 16px;
  border-bottom: solid 1px var(--color-lightgray);
  background-color: #fff;
  text-decoration: none;
  color: #383838;
}

.o-newsBox__link::before {
  background: var(--color-red);
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

.o-newsBox__link::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 22px;
  bottom: 0px;
  width: 6px;
  height: 6px;
  margin: auto 0px;
  border-top: 1px solid var(--color-gray);
  border-right: 1px solid var(--color-gray);
  transform: rotate(45deg);
}

.o-newsBox__link_date {
  padding-right: 16px;
}

.o-newsBox__link__label {
  position: relative;
}

.o-newsBox__link__label > span {
  position: relative;
}

.o-newsBox__link.is-new .o-newsBox__link__label > span::after {
  content: "NEW";
  margin-left: 0.5em;
  padding: 0 0.5em;
  background-color: var(--color-red);
  color: #fff;
  font-size: 1rem;
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
  .o-newsBox__link:hover {
    opacity: 1;
  }
  .o-newsBox__link:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }

  /*個別のタブ*/
  .o-newsBox_categoryTab__tag {
    min-width: 200px;
    cursor: pointer;
  }
}

/*【SIZE】Tablet ---*/
@media screen and (max-width: 960px) {
  .o-newsBox__list {
    margin-bottom: 40px;
  }

  .o-newsBox__link {
    flex-wrap: wrap;
  }

  .o-newsBox__link__label {
    width: 100%;
  }
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  .o-newsBox__list {
    margin-bottom: 24px;
  }

  .o-newsBox_categoryTab__tag {
    width: calc((100% / 2) - 4px);
  }

  .o-newsBox_categoryTab__tag:last-child {
    margin-right: 0;
  }

  .o-newsBox__link {
    flex-wrap: wrap;
  }
  .o-newsBox__link__label {
    width: 100%;
  }
}

/* ------------------------------------------------------------------------- */
/* トップページ
/* ------------------------------------------------------------------------- */
/* 共通（TOP）
/* --------------------------------------------------------------- */

.p-top__article > .l-contents_section {
  padding-bottom: 120px;
}

.p-top .l-footer {
  margin-top: 0;
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  .p-top__article > .l-contents_section {
    padding: 96px 0;
    padding-bottom: 96px;
  }
}

/* メインビジュアル（TOP）
/* --------------------------------------------------------------- */
.l-mainVisual {
  position: relative; /*h1の中央寄せ配置の起点とするためのrelative*/
  width: 100%;
}

.l-mainVisual_slide {
  width: 100%;
  aspect-ratio: 1 / 0.417;
  height: auto;
}

.l-mainVisual_slide__item > img {
  width: 100%;
}

.l-mainVisual_slide__pagination {
  text-align: left;
}

.l-mainVisual_slide__pagination.swiper-horizontal > .swiper-pagination-bullets,
.l-mainVisual_slide__pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 16px;
}

.l-mainVisual_slide__pagination > .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 0;
  opacity: inherit;
}
.l-mainVisual_slide__pagination > .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-red);
}

.l-mainVisual_slide__swiper-button-next,
.l-mainVisual_slide__swiper-button-prev {
  color: var(--color-red);
}

/*【SIZE】PC ------ */
@media screen and (min-width: 1271px) {
  .l-mainVisual {
    margin-top: 90px;
  }

  .l-mainVisual_slide__pagination {
    padding-left: 88px;
  }
}

/*【SIZE】SP ------ */
@media screen and (max-width: 1270px) {
  .l-mainVisual {
    padding-top: 64px;
  }

  .l-mainVisual_slide__pagination {
    padding-left: 16px;
  }
}

/* スクロールダウンアニメーション
/* --------------------------------------------------------------- */
.mv__scroll {
  position: absolute;
  bottom: 105px;
  left: -80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  z-index: 1;
  transform: rotate(90deg);
}

.mv__scroll__text {
  display: block;
  padding-right: 0.5em;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}

.mv__scroll > div {
  height: 5px;
  margin-bottom: 4px;
  background-color: #fff;
}

.mv__scroll__line {
  position: relative;
  display: block;
  width: 100px;
  height: 1px;
  background-color: #383838;
}

/* 丸の描写 */
.mv__scroll__line:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: -5px;
  left: -1px;
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-red);
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    right: -5px;
  }
  100% {
    left: 90px;
  }
}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

/*【SIZE】SP ------ */
@media screen and (max-width: 1270px) {
  .mv__scroll {
    display: none;
  }
}

/* 概要（TOP）
/* --------------------------------------------------------------- */
.p-top_title__lead {
  margin-bottom: 1em;
  font-weight: 500;
  font-size: 2.1rem;
}

/*【SIZE】Tablet ------ */
@media screen and (max-width: 960px) {
  .p-top_title__lead {
    word-break: normal;
    font-size: 1.8rem;
  }
}

/* お知らせ（TOP）
/* --------------------------------------------------------------- */
.p-top_news {
  position: relative;
  background-color: var(--color-lightgray);
}

.p-top_news_inner {
  position: relative;
  width: 100%;
}

.p-top_news_wrap {
  width: 100%;
}

.p-top_news_inner_box {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 256px;
  grid-template-rows: auto auto;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-areas:
    "areaA areaC"
    "areaB areaB";
}

.p-top_title.this-news {
  grid-area: areaA;
}

.p-top_news_wrap {
  margin-bottom: 0;
  grid-area: areaB;
}

.p-top_news__button {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 24px;
  grid-area: areaC;
}

.p-top_news__button .c-button {
  margin-bottom: 0;
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
  .o-newsBox__link:hover {
    opacity: 1;
  }
  .o-newsBox__link:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  .p-top_news_inner_box {
    display: block;
  }

  .p-top_news__button {
    justify-content: center;
    padding-top: 0;
  }

  .p-top_news__button .c-button {
    display: block;
  }

  .p-top_newsBox__wrap {
    display: block;
    margin-bottom: 24px;
  }
}

/* デクステックについて（TOP）
--------------------------------------------------------- */
.p-top_service {
  position: relative;
  padding-top: 120px;
}

.p-top_service::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  content: "";
  width: 100%;
  height: 30%;
  background: var(--color-red);
  z-index: -1;
}

.p-top_service_inner_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-top_service_title__lead {
  width: 100%;
}

.p-top_service_card {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.p-top_service_card__item {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  border: solid 2px var(--color-red);
}

.p-top_service_card__item__link {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 16px 16px 40px 16px;
  text-decoration: none;
  background-color: #fff;
}

.p-top_service_card__item__link::before {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background-color: var(--color-red);
  display: block;
}

.p-top_service_card__item__link::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 21px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.p-top_service_card__item__icon {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 16px;
}

.p-top_service_card__item__title {
  padding: 8px 0;
  color: var(--color-red);
  border-top: dotted 1px var(--color-gray);
  text-align: center;
  font-weight: bold;
  font-size: 2.1rem;
}

.p-top_service_card__item__description {
  color: #383838;
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
  .p-top_title.this-service {
    margin-right: 2.1rem;
  }

  .p-top_service_card__item {
    width: calc((100% - 32px) / 3);
  }
}

/*【SIZE】Tablet ------ */
@media screen and (min-width: 959px) {
  .p-top_service_button {
    margin-left: 48px;
  }
}

@media screen and (max-width: 960px) {
  .p-top_service_inner_box {
    display: block;
  }

  .p-top_service_button {
    width: 100%;
    text-align: center;
  }
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  .p-top_service {
    padding-top: 64px;
  }

  .p-top_service::after {
    height: 15%;
  }

  .p-top_service_inner {
    flex-direction: column;
    align-items: center;
  }

  .p-top_service_description {
    margin-right: 0;
  }

  .p-top_service__title {
    justify-content: center;
  }

  .p-top_service_card {
    display: block;
  }

  .p-top_service_card__item:not(:first-of-type) {
    margin-top: 24px;
  }
}

/* 製造実績（TOP）
--------------------------------------------------------- */
.p-top_works {
  position: relative;
  padding-top: 120px;
  background-color: var(--color-lightgray);
}

.p-top_works_inner_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*【SIZE】Tablet ------ */
@media screen and (max-width: 960px) {
  .p-top_works_inner_box {
    display: block;
  }

  .p-top_works_button {
    width: 100%;
    text-align: center;
  }
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
}

/* 制作実績しスライドショー */
.p-top_works_slide {
  overflow: hidden;
}

.p-top_works_slide_inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 40px;
}

.p-top_works_slide .swiper {
  overflow: visible;
}

.p-top_works_slide .slide {
  display: block;
  overflow: hidden;
  transition: var(--transition), opacity 1s;
  box-shadow: var(--box-shadow);
}

.p-top_works_slide .swiper-slide:not(.swiper-slide-visible) .slide {
  pointer-events: none;
  opacity: 0.3;
}

.p-top_works_slide .slide-media {
  display: block;
  position: relative;
  overflow: hidden;
  padding-top: 70%;
}

.p-top_works_slide .slide-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  height: calc(100% + 16px);
  transform: translateY(-16px);
}

.p-top_works_slide .swiper-button-prev,
.p-top_works_slide .swiper-button-next {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
  display: grid;
  place-content: center;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: var(--transition);
}

.p-top_works_slide .swiper-button-prev {
  right: inherit;
  left: -24px;
}

.p-top_works_slide .swiper-button-next {
  left: inherit;
  right: -24px;
}

.p-top_works_slide .swiper-button-prev::before,
.p-top_works_slide .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  background-color: rgba(164, 0, 24, 0.5);
  box-shadow: var(--box-shadow-dark);
}

.p-top_works_slide .swiper-button-prev::after,
.p-top_works_slide .swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid #fff;
  border-width: 2px 2px 0 0;
}

.p-top_works_slide .swiper-button-prev::after {
  transform: rotate(-135deg);
}

.p-top_works_slide .swiper-button-next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}

/* 経営理念（TOP）
--------------------------------------------------------- */
.p-top_policy {
  display: flex;
  justify-content: flex-start;
  position: relative;
  margin-top: 120px;
  padding-top: 120px;
}

.p-top_policy_inner {
  padding: 0;
}

.p-top_policy_inner::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  width: 81.25%;
  max-width: 1560px;
  height: 520px;
  background: url("../image/p-top_ourpolicy__contents_bg.jpg") center / cover no-repeat;
  z-index: -1;
}

.p-top_policy_box {
  position: relative;
  display: flex;
  justify-content: flex-end;
  border-top-right-radius: 40px;
  background: #fff;
}

.p-top_policy_box_contents {
  width: calc(100% - 32px);
  max-width: 620px;
  border-top-right-radius: 40px;
  padding: 80px 40px;
  background-color: #fff;
}

.p-top_policy_box_contents .p-top_title__lead {
  word-break: normal;
}

/*【SIZE】Tablet ------ */
@media screen and (max-width: 960px) {
  .p-top_policy_button {
    width: 100%;
    text-align: center;
  }
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  .p-top__article > .l-contents_section.p-top_policy {
    margin-top: 0;
    padding-bottom: 32px;
  }

  .p-top_policy_inner::after {
    width: 100%;
    height: auto;
    min-height: 180px;
    aspect-ratio: 3 / 1;
  }

  .p-top_policy_box_contents {
    width: calc(100% - 16px);
    padding: 64px 16px;
  }
}

/* 企業情報（TOP）
--------------------------------------------------------- */

.p-top__article > .l-contents_section.p-top_corporate {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.p-top_corporate__contents {
  position: relative;
}

.p-top_corporate__contents::before,
.p-top_corporate__contents::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: calc(100% - 80px);
  max-width: 1560px;
  height: 100%;
}

.p-top_corporate__contents::before {
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.p-top_corporate__contents::after {
  background: url("../image/p-top_corporate__contents_bg.jpg") center / cover no-repeat;
  z-index: -2;
}

.p-top_corporate::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 50%;
  background: var(--color-lightgray);
  z-index: -3;
}

.p-top_corporate__contents__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  color: #fff;
}

.p-top_corporate__contents__inner__box {
  padding: 80px 0 120px 0;
}

.p-top_title.this-corporate > span {
  color: #fff;
}

.p-top_title.this-corporate::before {
  background-color: var(--color-red);
}

.p-top_corporate__menu {
  align-self: flex-end;
  width: 50%;
  margin-top: -400px;
}

.p-top_corporate__menu__inner {
  border-top-left-radius: 40px;
  background-color: var(--color-lightgray);
  padding: 80px;
}

.p-top_corporate_box_contents__linkList {
  display: flex;
  flex-direction: column;
}

.p-top_corporate_box_contents__link {
  position: relative;
  padding: 24px 16px;
  padding-right: 48px;
  border-bottom: solid 1px var(--color-gray);
  color: #383838;
  text-decoration: none;
  font-size: 1.8rem;
}

.p-top_corporate_box_contents__link:first-child {
  border-top: solid 1px var(--color-gray);
}

.p-top_corporate_box_contents__link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  width: 16px;
  height: 16px;
  margin: auto 0;
  border-radius: 8px;
  background-color: var(--color-red);
  display: block;
}

.p-top_corporate_box_contents__link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 22px;
  bottom: 0;
  width: 6px;
  height: 6px;
  margin: auto 0;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
  .p-top_corporate_box_contents__linkList {
    max-width: 420px;
  }

  .p-top_corporate__contents__inner__box {
    width: 48%;
    max-width: 530px;
  }
}

/*【SIZE】Tablet ------ */
@media screen and (max-width: 960px) {
  .p-top_corporate__menu {
    width: 45%;
  }

  .p-top_corporate__contents__inner__box {
    width: 45%;
  }

  .p-top_corporate__menu__inner {
    padding: 80px 16px 96px 48px;
  }

  .p-top_corporate_button {
    width: 100%;
    text-align: center;
  }
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  .p-top_corporate::after {
    height: 100%;
  }

  .p-top_corporate__contents__inner {
    padding: 0 16px;
  }

  .p-top_corporate__contents::before,
  .p-top_corporate__contents::after {
    width: 100%;
    height: 480px;
  }

  .p-top_corporate__contents__inner__box {
    width: 100%;
    max-width: inherit;
    padding: 80px 0 120px 0;
  }

  .p-top_corporate__menu {
    align-self: flex-end;
    width: calc(100% - 16px);
    margin-top: -60px;
  }

  .p-top_corporate__menu__inner {
    padding: 48px 16px 96px 48px;
  }
}

/* 採用情報（TOP）
--------------------------------------------------------- */
.p-top_recruit {
  padding-top: 120px;
}

.p-top_recruit_inner {
  position: relative;
  max-width: 1392px;
  padding: 0 16px;
}

.p-top_recruit_contents {
  position: relative;
}

.p-top_recruit_inner_left {
  position: relative;
  background-color: var(--color-gold);
  color: #fff;
}

.p-top_recruit_inner_right {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: calc(100% - 80px);
  max-width: 760px;
}

.p-top_title.this-recruit > span {
  color: #fff;
}

.p-top_title.this-recruit:before {
  background-color: var(--color-red);
}

.p-top_recruit .c-button {
  margin-bottom: 16px;
  margin-right: 16px;
  border-color: #fff;
  background-color: transparent;
  color: #fff;
}

.p-top_recruit .c-button::after {
  background-color: #fff;
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
  .p-top_recruit_contents {
    padding-bottom: 64px;
  }

  .p-top_recruit .c-button:hover {
    color: var(--color-gold);
  }

  .p-top_recruit_inner_left {
    width: calc(100% - 80px);
    max-width: 760px;
    padding: 80px 100px 80px 120px;
  }
}

/*【SIZE】Tablet ------ */
@media screen and (max-width: 960px) {
  .p-top_recruit_button {
    width: 100%;
    text-align: center;
  }

  .p-top_recruit_contents {
    display: flex;
    flex-direction: column;
  }
  .p-top_recruit_inner_left,
  .p-top_recruit_inner_right {
    position: relative;
    width: calc(100%);
  }

  .p-top_recruit_inner_left {
    align-self: flex-start;
  }

  .p-top_recruit_inner_right {
    align-self: flex-end;
  }
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  .p-top__article > .l-contents_section.p-top_recruit {
    padding-top: 0;
  }

  .p-top_recruit_inner {
    padding: 0;
  }

  .p-top_recruit_inner_left {
    padding: 64px max(1vw, 16px);
  }
}

/* ------------------------------------------------------------------------- */
/* 2階層目 共通
/* ------------------------------------------------------------------------- */
/* 2階層目 記事ヘッダー
--------------------------------------------------------- */
.l-pageHeader {
  position: relative;
  display: block;
  width: 100%;
}

.l-pageHeader__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 260px;
  padding: 40px 16px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.l-pageHeader__visual::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}

.l-pageHeader__visual_inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  /* margin: 0 auto; */
  margin-top: 40px;
  margin-left: 16vw;
  padding: 0 40px;
  z-index: 1;
}

.p-top_title,
.l-pageHeader__title {
  position: relative;
  display: inline-block;
  padding: 20px 0;
  color: var(--color-red);
  font-size: 1.4rem;
}

.l-pageHeader__title {
  margin-bottom: 0;
}

.p-top_title > span,
.l-pageHeader__title > span {
  display: block;
  position: relative;
  z-index: 2;
}

.p-top_title__en,
.l-pageHeader__title__en {
  line-height: 1;
  color: #383838;
  font-family: "Poppins", sans-serif;
  font-size: 5.6rem;
}

.p-top_title::before,
.l-pageHeader__title::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40px;
  margin: auto 0;
  width: 110px;
  height: 110px;
  border-radius: 55px;
  background-color: var(--color-pink);
}

.p-top_title.this-contact,
.l-footer_contact .p-top_title__en {
  color: #fff;
}

.p-top_title.this-contact::before {
  background-color: #545454;
}

/*【SIZE】PC ------ */
@media screen and (min-width: 1271px) {
  .l-pageHeader {
    margin-top: 90px;
  }
}

@media screen and (max-width: 1270px) {
  .l-pageHeader {
    margin-top: 64px;
  }
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  .l-pageHeader__visual {
    height: 140px;
  }

  .l-pageHeader__visual_inner {
    padding: 0;
  }

  .p-top_title,
  .l-pageHeader__title {
    font-size: 1.2rem;
  }

  .p-top_title__en,
  .l-pageHeader__title__en {
    font-size: 4.8rem;
  }

  .p-top_title::before,
  .l-pageHeader__title::before {
    left: -16px;
    width: 90px;
    height: 90px;
  }
}

/* breadline
--------------------------------------------------------- */
.l-pageHeader_breadLine {
  width: calc(100% - 32px);
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 0;
}

.l-pageHeader_breadLine__item {
  display: inline;
  font-size: 1.3rem;
}

.l-pageHeader_breadLine__item:not(.l-pageHeader_breadLine__item:nth-last-of-type(1)):after {
  content: "―";
  margin: 0 10px;
}

.l-pageHeader_breadLine__item:nth-last-of-type(1) .l-pageHeader_breadLine__item__link {
  pointer-events: none;
  text-decoration: none;
  color: #383838;
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  .l-pageHeader_breadLine {
    display: none;
  }
}

/* 言語切替ボタン
--------------------------------------------------------- */
.l-pageHeader_languageButton_wrap {
  display: flex;
  justify-content: flex-end;
  width: calc(100% - 32px);
  max-width: 1120px;
  margin: 0 auto;
  padding: 1em 0;
}

.l-pageHeader_languageButton_box {
  display: flex;
  border: solid 1px #383838;
}

.l-pageHeader_languageButton {
  display: block;
  min-width: 80px;
  padding: 4px 16px;
  text-align: center;
  text-decoration: none;
  color: #383838;
}

.l-pageHeader_languageButton:first-child {
  border-right: solid 1px #383838;
}

.l-pageHeader_languageButton.is-current {
  background-color: #383838;
  color: #fff;
}

.p-news .l-pageHeader_languageButton_wrap,
.p-service_support .l-pageHeader_languageButton_wrap,
.p-works .l-pageHeader_languageButton_wrap,
.p-contact .l-pageHeader_languageButton_wrap,
.p-recruit .l-pageHeader_languageButton_wrap,
.p-privacy .l-pageHeader_languageButton_wrap {
  visibility: hidden;
}

/* ページャー
--------------------------------------------------------- */
.o-pager {
  clear: both;
  margin: 40px auto 00;
  text-align: center;
}

.o-pager__list {
  list-style: none;
  display: inline-block;
  margin-left: 0 !important;
  margin: 3px !important;
  padding: 0;
  text-indent: inherit;
}

.o-pager__list::before {
  display: none;
}

.o-pager__list__link,
.o-pager__list__link__prev,
.o-pager__list__link__next {
  display: block;
  padding: 3px 15px;
  border: 1px solid var(--color-red);
  color: var(--color-red);
  text-decoration: none;
}

.o-pager__list__link__prev:before {
  content: "≪";
  margin-right: 10px;
}

.o-pager__list__link__next:after {
  content: "≫";
  margin-left: 10px;
}

.o-pager__link--current {
  background-color: var(--color-red);
  color: #fff;
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
}

/*【SIZE】PC ------ */
@media screen and (max-width: 768px) {
}

/* お知らせ（一覧）
/* --------------------------------------------------------------- */
.p-news .l-pageHeader__visual {
  background: url("../image/l-pageHeader__visual__news.jpg") center right / cover no-repeat;
}

.p-news_archive {
  display: flex;
  justify-content: flex-end;
}

.p-news .o-newsBox_wrap {
  margin-top: 24px;
}

.p-news_archive__year {
  min-width: 200px;
}

/* お知らせ（詳細）
/* --------------------------------------------------------------- */
.p-news-detail_header_info {
  margin-bottom: 1em;
}

.p-news-detail_header_info__date {
  margin-right: 0.5em;
}

.p-news-detail_header_info__category {
  display: inline-block;
  padding: 4px 0.5em;
  background-color: var(--color-red);
  color: #fff;
  line-height: 1;
  text-align: center;
  font-size: 1.3rem;
}

.p-news-detail__contents__Headline {
  padding-bottom: 0.5em;
  border-bottom: solid 1px var(--color-lightgray);
  text-align: left;
}

/* 事業紹介（SERVICE）
/* --------------------------------------------------------------- */
.p-service .l-pageHeader__visual {
  background: url("../image/l-pageHeader__visual__service.jpg") center / cover no-repeat;
}

/* IoTソリューション ------------------------- */

.p-service_iot_division__lead {
  position: relative;
  padding: 2em 1em;
  color: #383838;
  font-weight: bold;
}

.p-service_iot_division__lead:before,
.p-service_iot_division__lead:after {
  position: absolute;
  top: 0;
  content: "";
  width: 1em;
  height: 100%;
  display: inline-block;
}
.p-service_iot_division__lead:before {
  border-left: solid 1px #383838;
  border-top: solid 1px #383838;
  border-bottom: solid 1px#383838;
  left: 0;
}
.p-service_iot_division__lead:after {
  content: "";
  border-top: solid 1px #383838;
  border-right: solid 1px #383838;
  border-bottom: solid 1px #383838;
  right: 0;
}

.p-service_iot_division__box {
  display: flex;
  margin-top: 40px;
}

.p-service_iot_division__box__title {
  align-self: flex-start;
  color: #383838;
  font-size: 3.2rem;
}

.p-service_iot_division__box__contents__text {
  margin-top: 1em;
}

/* JENESISの強み */
.p-service_iot_strengths_box__item__title {
  padding: 0.5em 0;
  text-align: center;
  color: var(--color-red);
  font-weight: bold;
  font-size: 2.1rem;
  word-break: keep-all;
}

/* 開発フロー */
.p-service_iot__flow {
  display: flex;
  margin: 40px 0 0;
}

.p-service_iot__flow__step {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--color-lightgray);
}

.p-service_iot__flow__step::after {
  position: absolute;
  content: "";
  top: calc(50% + 12px);
  right: -25px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 34px;
  border-color: transparent transparent transparent var(--color-red);
  z-index: 2;
}

.p-service_iot__flow__step:nth-of-type(5) {
  margin-right: 0;
}

.p-service_iot__flow__step__num {
  padding: 8px 24px;
  background-color: var(--color-red);
  color: #fff;
  text-align: center;
  font-weight: bold;
}

.p-service_iot__flow__step__content {
  width: 100%;
  padding: 16px;
  text-align: center;
}

.p-service_iot__flow__step__content img {
  width: 70%;
  margin-bottom: 16px;
}
.p-service_iot__flow__step__title {
  color: var(--color-Blue);
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.5;
}

.p-service_iot__flow__step_05::after {
  top: inherit;
  bottom: -25px;
  right: calc(50% - 17px);
  border-width: 34px 20px 0 20px;
  border-color: var(--color-red) transparent transparent transparent;
}

.p-service_iot__flow__bottom {
  flex-direction: row-reverse;
  margin-top: 12px;
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
  /* IoTソリューション ------------------------- */
  .p-service_iot_division__lead {
    text-align: center;
    font-size: 150%;
  }

  .p-service_iot_division__box__title {
    width: 376px;
    min-height: 3em;
    margin-right: 1em;
    margin-bottom: 0;
    padding-right: 0.5em;
    border-bottom: none;
    border-right: solid 5px var(--color-red);
  }

  .p-service_iot_division__box__contents {
    width: calc(100% - 320px);
  }

  /* 開発フロー */
  .p-service_iot__flow__step {
    width: calc((100% - 96px) / 5);
    margin: 0 24px 16px 0;
  }

  .p-service_iot__flow__step__num {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
  }

  .p-service_iot__flow__bottom .p-service_iot__flow__step:first-child::after {
    display: none;
  }

  .p-service_iot__flow__bottom .p-service_iot__flow__step::after {
    transform: rotate(180deg);
    right: -32px;
  }

  .p-service_iot__flow__step_06:nth-of-type(5)::after {
    content: none;
  }

  .p-service_iot__flow__bottom > .p-service_iot__flow__step {
    margin-right: 0;
    margin-left: 24px;
  }

  .p-service_iot__flow__bottom > .p-service_iot__flow__step:last-child {
    margin-left: 0;
  }
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  /* IoTソリューション ------------------------- */
  .p-service_iot_division__lead {
    text-align: left;
    font-size: 131.25%;
  }

  .p-service_iot_division__box {
    display: block;
  }

  .p-service_iot_division__box__title {
    display: block;
    border-bottom: solid 3px var(--color-red);
    font-size: 2.4rem;
  }

  /* JENESISの強み */
  .p-service_iot_strengths_box {
    display: block;
  }

  .p-service_iot_strengths_box__item {
    width: 100%;
    margin: 24px auto 0;
  }

  .p-service_iot_strengths_box__item:first-of-type {
    margin-top: 0;
  }

  .p-service_iot_strengths_box__item__title {
    font-size: 1.8rem;
  }

  /* 開発フロー */
  .p-service_iot__flow {
    flex-direction: column;
  }

  .p-service_iot__flow__step {
    width: 100%;
    margin-bottom: 34px;
  }

  .p-service_iot__flow__step::after {
    top: 100%;
    right: calc(50% - 17px);
    border-width: 34px 20px 0 20px;
    border-color: var(--color-red) transparent transparent transparent;
  }

  .p-service_iot__flow__step__num {
    padding: 8px 24px;
  }

  .p-service_iot__flow__step__num > span {
    display: inline;
    font-size: 2.4rem;
    margin-left: 4px;
  }

  .p-service_iot__flow__step__content {
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
  }

  .p-service_iot__flow__step__content img {
    max-width: 100px;
    margin: 0 16px 0 0;
  }

  .p-service_iot__flow__bottom {
    margin-top: 0;
  }

  .p-service_iot__flow__step_06::after {
    position: absolute;
    content: "";
    top: 100%;
    right: calc(50% - 17px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 34px 20px 0 20px;
    border-color: var(--color-red) transparent transparent transparent;
    z-index: 2;
  }

  .p-service_iot__flow__step_10::after {
    content: none;
  }
}

/* 開発フェーズ */
.p-service_iot_developmentProcess_flow {
  margin-top: 80px;
}

.p-service_iot_developmentProcess_flow__item {
  display: flex;
  flex-direction: column;
}

.p-service_iot_developmentProcess_flow__item__phase {
  position: relative;

  color: var(--color-red);
}
.p-service_iot_developmentProcess_flow__item__phase > span {
  padding-right: 1em;
  background-color: #fff;
  z-index: 1;
}

.p-service_iot_developmentProcess_flow__item__phase::after {
  position: absolute;
  top: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin: auto;
  background-color: var(--color-red);
  z-index: -1;
}

.p-service_iot_developmentProcess_flow__item__detaile {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 48px;
}

.p-service_iot_developmentProcess_flow__item:not(:last-of-type) .p-service_iot_developmentProcess_flow__item__detaile::after {
  position: absolute;
  right: -24px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  content: "";
  display: block;
  width: 24px;
  height: 100%;
  z-index: 3;
}

.p-service_iot_developmentProcess_flow__item:nth-child(1) .p-service_iot_developmentProcess_flow__item__detaile,
.p-service_iot_developmentProcess_flow__item:nth-child(1) .p-service_iot_developmentProcess_flow__item__detaile::after {
  background-color: #ffecec;
}

.p-service_iot_developmentProcess_flow__item:nth-child(2) .p-service_iot_developmentProcess_flow__item__detaile,
.p-service_iot_developmentProcess_flow__item:nth-child(2) .p-service_iot_developmentProcess_flow__item__detaile::after {
  background-color: var(--color-pink);
}

.p-service_iot_developmentProcess_flow__item:nth-child(3) .p-service_iot_developmentProcess_flow__item__detaile,
.p-service_iot_developmentProcess_flow__item:nth-child(3) .p-service_iot_developmentProcess_flow__item__detaile::after {
  background-color: #ffb7b7;
}

.p-service_iot_developmentProcess_flow__item__step {
  position: absolute;
  top: -45px;
  left: 0;
  display: inline-block;
  margin-top: 8px;
  padding: 0 0.5em;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--color-red);
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 1.6rem;
  z-index: 9;
}

.p-service_iot_developmentProcess_flow__item__step > span {
  font-size: 4.8rem;
}

.p-service_iot_developmentProcess_flow__item__text {
  margin-top: 1em;
  flex-grow: 1;
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
  .p-service_iot_developmentProcess_flow {
    display: flex;
  }

  .p-service_iot_developmentProcess_flow__item {
    width: calc(100% / 3);
  }

  .p-service_iot_developmentProcess_flow__item__phase::after {
    width: 95%;
  }

  .p-service_iot_developmentProcess_flow__item__detaile {
    padding: 48px 24px 48px 48px;
  }

  .p-service_iot_developmentProcess_flow__item:not(:last-of-type) .p-service_iot_developmentProcess_flow__item__detaile::after {
    clip-path: polygon(24px 50%, 0% 0%, 0% 100%);
  }

  .p-service_iot_developmentProcess_flow__item__list {
    min-height: 140px;
  }
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  .p-service_iot_developmentProcess_flow__item {
    margin-top: 24px;
    padding-bottom: 24px;
  }

  .p-service_iot_developmentProcess_flow__item__detaile {
    padding: 48px 24px;
  }

  .p-service_iot_developmentProcess_flow__item:not(:last-of-type) .p-service_iot_developmentProcess_flow__item__detaile::after {
    top: inherit;
    left: 0;
    right: 0;
    bottom: -24px;
    width: 100%;
    height: 24px;
    margin: 0 auto;
    clip-path: polygon(50% 24px, 0 0, 100% 0);
  }
}

/* プロダクト事業 ------------------------- */
.p-service_aiwa h3 {
  display: none;
}

.p-service_aiwa__footerLinkWrap {
  padding-top: 0;
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
}

/* 修理／サポート ------------------------- */
.p-service__support__flexBox {
  display: flex;
  text-align: center;
}
.p-service__support__flexBox__item {
  margin: 0 24px 16px 0;
  padding: 16px 8px;
  border-radius: 10px;
  border: solid 1px var(--color-red);
}

.p-service__support__flexBox__item img {
  width: 70%;
  margin-bottom: 16px;
}
.p-service__support__flexBox__item p {
  text-align: center;
  color: var(--color-Blue);
  font-weight: bold;
  font-size: 1.8rem;
  font-size: clamp(1.3rem, 2.34vw, 1.8rem);
  line-height: 1.5;
}

.p-service__support__flexBox__item p > span {
  font-weight: normal;
  font-size: 1.5rem;
}

.p-service__support__flow {
  display: flex;
  margin: 40px 0 0;
}
/* 修理の流れ */
.p-service__support__flow_step {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0 24px 16px 0;
  background-color: var(--color-lightgray);
}
.p-service__support__flow_step::after {
  position: absolute;
  content: "";
  top: calc(50% + 12px);
  right: -25px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 34px;
  border-color: transparent transparent transparent var(--color-red);
  z-index: 2;
}

.p-service__support__flow_step:nth-of-type(5) {
  margin-right: 0;
}

.p-service__support__flow_step:nth-of-type(5)::after {
  content: none;
}
.p-service__support__flow_step__num {
  padding: 8px 24px;
  background-color: var(--color-red);
  color: #fff;
  text-align: center;
  font-weight: bold;
}

.p-service__support__flow_step__content {
  width: 100%;
  text-align: center;
}
.p-service__support__flow_step__content img {
  width: 100%;
  height: auto;
}
.p-service__support__flow_step__title {
  color: var(--color-Blue);
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.5;
  padding: 16px;
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
  .p-service__support__flexBox__item {
    width: calc(100% - 36px / 5);
  }

  .p-service__support__flexBox__item:nth-of-type(5n) {
    margin-right: 0;
  }

  .p-service__support__flow_step__num {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
  }

  /* 修理の流れ */
  .p-service__support__flow_step {
    width: calc(100% - 64px / 5);
  }

  .p-service__support__flow_step:nth-of-type(5) {
    margin-right: 0;
  }
}
/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  .p-service__support__flexBox {
    flex-wrap: wrap;
    text-align: left;
  }
  .p-service__support__flexBox__item {
    width: calc((100% - 16px) / 2);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 16px 16px 0;
  }

  .p-service__support__flexBox__item:nth-child(2n) {
    margin-right: 0;
  }

  .p-service__support__flexBox__item img {
    width: 100%;
    max-width: 100px;
  }

  /* 修理の流れ */
  .p-service__support__flow {
    flex-direction: column;
  }

  .p-service__support__flow_step {
    width: 100%;
    margin: 0 auto 34px;
  }

  .p-service__support__flow_step::after {
    position: absolute;
    content: "";
    top: 100%;
    right: calc(50% - 17px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 34px 20px 0 20px;
    border-color: var(--color-red) transparent transparent transparent;
    z-index: 2;
  }

  .p-service__support__flow_step__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: left;
  }

  .p-service__support__flow_step__content img {
    width: 100%;
  }
}

/* 製造実績（WORKS）
/* --------------------------------------------------------------- */
.p-works .l-pageHeader__visual {
  background: url("../image/l-pageHeader__visual__works.jpg") center / cover no-repeat;
}

/* 製造実績一覧 ------------------------- */
.p-works_product_gird {
  display: grid;
}

.p-works_product_wrap {
  display: flex;
  flex-wrap: wrap;
}

.p-works_product__corporate {
  display: flex;
  align-items: center;
  min-height: 3.25em;
  font-size: 1.4rem;
}

.p-works_product_wrap > div:last-child {
  margin-right: 0;
}

.p-works_product__box__wrap {
  display: flex;
  flex-wrap: wrap;
}

.p-works_product__4clm {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 24px;
}

.p-works_product__4clm .p-works_product__box {
  width: calc(25% - 12px);
  margin-bottom: 16px;
}

.p-works_product__4clm .p-works_product__box:nth-child(4n) {
  margin-right: 0;
}

.p-works_product__2clm {
  display: flex;
  flex-direction: column;
  width: calc(50% - 12px);
  margin-right: 16px;
  margin-bottom: 40px;
}

.p-works_product__2clm .p-works_product__box {
  width: calc(50% - 8px);
}

.p-works_product__1clm {
  display: flex;
  flex-direction: column;
  width: calc(25% - 12px);
  margin-right: 16px;
  margin-bottom: 40px;
}

.p-works_product__box {
  position: relative;
  display: block;
  min-height: 283px;
  padding: max(0.8333333333333334vw, 12px);
  padding-bottom: 32px;
  border: solid 1px var(--color-lightgray);
  transition: var(--transition);
  text-decoration: none;
  color: #383838;
  margin-right: 16px;
}

.p-works_product__box:last-child {
  margin-right: 0;
}

a.p-works_product__box[target="_blank"]::before {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 16px;
  height: 16px;
  background: url("../image/icon_externalLink.svg") right center / 1em no-repeat;
  display: block;
}

.p-works_product__box__img {
  background-color: var(--color-lightgray);
}

.p-works_product__box__img > img {
  aspect-ratio: 4 / 3;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.p-works_product__box__name {
  display: block;
  margin-top: 0.5em;
  font-size: 1.5rem;
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
  a.p-works_product__box:hover {
    opacity: 1;
    box-shadow: 0 14px 10px #f4f5f7, 40px 30px 40px #f4f5f7;
  }
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  .p-works_product__4clm,
  .p-works_product__2clm,
  .p-works_product__1clm {
    margin-bottom: 0;
  }

  .p-works_product__4clm .p-works_product__box__wrap,
  .p-works_product__2clm,
  .p-works_product__1clm {
    width: 100%;
    margin-bottom: 0;
  }

  .p-works_product__4clm .p-works_product__box,
  .p-works_product__2clm .p-works_product__box,
  .p-works_product__1clm {
    width: calc(50% - 8px);
    margin-right: 0;
    margin-bottom: 0;
  }

  .p-works_product__4clm .p-works_product__box:nth-child(2n) {
    margin-right: 0;
  }

  .p-works_product_wrap,
  .p-works_product__box__wrap {
    justify-content: space-between;
  }

  .p-works_product__4clm .p-works_product__box,
  .p-works_product__2clm .p-works_product__box,
  .p-works_product__1clm .p-works_product__box {
    margin-bottom: 24px;
  }

  .p-works_product__box:last-of-type {
    margin-right: 0;
  }
}

/* 事例インタビュー ------------------------- */
.p-works_interviewList {
  display: flex;
  justify-content: center;
}
.p-works_interviewList__item {
  border: 1px solid var(--color-red);
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
}

/* 事例インタビュー詳細 --------------------- */
.p-works_topContents {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: #383838;
  border-bottom: 1px solid var(--color-red);
}

.p-works_topContents__headline {
  font-weight: 500;
  font-size: 4.4rem;
  font-size: clamp(1.8rem, 2.5vw, 4.4rem);
  line-height: 1.5;
  padding-bottom: 0.5em;
  margin-bottom: 18px;
  border-bottom: dotted 1px var(--color-red);
  color: var(--color-red);
}
.p-works_topContents__cooperation {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
  font-size: 2.2rem;
}

.p-works_topContents__cooperation__headline {
  width: fit-content;
  padding: 0 1em;
  margin-right: 10px;
  color: var(--color-red);
  border: 1px solid var(--color-red);
  border-radius: 50px;
  font-size: 1.6rem;
}

.p-works_topContents__logo {
  width: 200px;
  height: auto;
  margin-top: 18px;
}
.p-works_topContents__man {
  position: relative;
  width: 450px;
  height: auto;
}

.p-works_comparison {
  display: flex;
  margin-top: 40px;
}

.p-works_comparison__headline {
  margin-bottom: 18px;
  font-weight: 500;
  font-size: 2.4rem;
  text-align: center;
  border-bottom: 1px solid #383838;
}
.p-works_comparison__after .p-works_comparison__headline {
  border-bottom: 1px solid var(--color-red);
}
.p-works_comparison__before,
.p-works_comparison__after {
  width: calc((100% - 32px) / 2);
  margin: 0 32px 16px 0;
  padding: 24px;
}

.p-works_comparison__before {
  position: relative;
  background-color: var(--color-lightgray);
}
.p-works_comparison__after {
  color: var(--color-red);
  background-color: var(--color-pink);
  margin-right: 0;
}
.p-works_comparison__arrow {
  position: relative;
  margin: 0 12px;
}
.p-works_comparison__arrow::before,
.p-works_comparison__arrow::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 2px;
  background-color: var(--color-red);
  top: calc(50% - 24px);
  right: -32px;
}
.p-works_comparison__arrow::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-works_comparison__arrow::after {
  margin-top: 34px;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.p-works_comparison__li {
  padding: 10px 30px 10px 40px;
  margin-bottom: 8px;
  background-color: #fff;
}

.p-works_comparison__li:last-child {
  margin-bottom: 0;
}

.p-works_comparison__after .p-works_comparison__li::before,
.p-works_comparison__before .p-works_comparison__li::before {
  top: 21px;
  left: 20px;
}
.p-works_comparison__before .p-works_comparison__li::before {
  background-color: #383838;
}
.p-works_3clm {
  justify-content: center;
}
/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
  .p-works_topContents__flexBox {
    padding: 64px 0;
  }
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  .p-works_topContents {
    align-items: center;
    flex-direction: column;
  }

  .p-works_topContents__flexBox {
    padding: 40px 0;
  }

  .p-works_topContents__headline {
    font-size: 3.2rem;
  }

  .p-works_topContents__cooperation {
    font-size: 1.8rem;
  }
  .p-works_topContents__picture {
    width: 100%;
    margin-top: 20px;
  }
  .p-works_comparison {
    flex-direction: column;
    margin-top: 40px;
  }

  .p-works_comparison__before,
  .p-works_comparison__after {
    width: 100%;
    margin: 0 32px 16px 0;
    padding: 24px;
  }

  .p-works_comparison__before,
  .p-works_comparison__after {
    margin: 0 auto;
  }

  .p-works_comparison__before {
    margin-bottom: 80px;
  }

  .p-works_comparison__arrow::before,
  .p-works_comparison__arrow::after {
    top: -40px;
    right: 50%;
  }

  .p-works_comparison__arrow::before {
    transform: translate(15%, 0%) rotate(45deg);
  }

  .p-works_comparison__arrow::after {
    margin-top: 0;
    transform: translate(85%, 0%) rotate(-45deg);
  }

  .p-works_3clm {
    flex-direction: column;
  }

  .p-works_3clm .o-flex__3clm__item {
    width: 100%;
  }
}

/* 経営理念（OUR POLICY）
/* --------------------------------------------------------------- */
.sp {
    display: none;
}

.p-ourpolicy .l-pageHeader__visual {
  flex-direction: column;
  justify-content: flex-start;
  background: url("../image/l-pageHeader__visual___ourpolicy.jpg") center / cover no-repeat;
}

.p-ourpolicy .l-pageHeader__visual::after {
  display: none;
}

.p-ourpolicy .l-pageHeader_breadLine {
  z-index: 1;
}

.p-ourpolicy .l-pageHeader_breadLine a,
.p-ourpolicy .l-pageHeader_breadLine__item:not(.l-pageHeader_breadLine__item:nth-last-of-type(1))::after,
.p-ourpolicy .l-pageHeader_breadLine__item:nth-last-of-type(1) .l-pageHeader_breadLine__item__link {
  /* color: #fff; */
}

.p-ourpolicy .l-pageHeader__visual_inner {
  max-width: inherit;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.p-ourpolicy .l-pageHeader__title {
  /* align-self: center; */
  color: #fff;
}

.p-ourpolicy .l-pageHeader__title > span {
  /* text-align: center; */
}

.p-ourpolicy .l-pageHeader__title .l-pageHeader__title__en {
  font-size: 3.6rem;
  color: #262b63;
}

.p-ourpolicy .l-pageHeader__title::before {
  display: none;
  left: 0;
  right: 0;
  margin: auto;
  width: 80px;
  height: 80px;
  background-color: var(--color-red);
}

.p-ourpolicy_pageHeader__message {
  margin-top: 24px;
}

.p-ourpolicy_pageHeader__message__title {
  display: inline-block;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  font-weight: bold;
  /* margin-bottom: 0.5em;
  letter-spacing: 0.1em;
  font-size: clamp(2.4rem, 9.4vw, 7.2rem);
  line-height: 1.25;
  text-shadow: 0px 0px 10px rgba(0, 243, 255, 0.8); */
}

.p-ourpolicy_pageHeader__message__title p {
    display: inline-block;
    background-color: #262B63;
    line-height: 6rem;
    margin-bottom: 40px;
    padding: 2px 4px 6px 8px;
}

.p-ourpolicy_pageHeader__message__title p > span {
    letter-spacing: -10px;
}

.p-ourpolicy_pageHeader__message__title > span {
  background-clip: text;
}

.p-ourpolicy_pageHeader__message__text {
  letter-spacing: 0.1em;
  font-size: 1.8rem;
  color: #fff;
}

.p-ourpolicy__contents__message__title {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 4.8rem;
    margin-bottom: 56px;
}

.p-ourpolicy__contents__message__title > span {
    display: inline-block;
}

.p-ourpolicy__contents__message {
    margin: 0 auto;
    padding-top: 0 !important;
    width: calc(100% - 32px);
    margin-bottom: 80px;
    text-align: center;
}

.p-ourpolicy__contents__message span {
    font-weight: 800;
}

.p-ourpolicy__contents {
  display: flex;
  margin: 0 auto;
}

.p-ourpolicy__contents__box,
.p-ourpolicy__contents__img {
  width: 50%;
}

.p-ourpolicy__contents__box {
  position: relative;
  padding: 5vw;
  background-color: var(--color-red);
  color: #fff;
}

.p-ourpolicy__contents__box__num {
  position: absolute;
  top: -17px;
  left: 0;
  line-height: 1;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  font-size: clamp(7rem, 5vw, 9.6rem);
  color: #BF4D5D;
  z-index: 0;
}

.p-ourpolicy__contents__box__num > span {
    font-size: clamp(12.6rem, 5vw, 13.6rem);
}

.p-ourpolicy__contents__box__title {
  /* position: relative; */
  margin-bottom: 0.75em;
  z-index: 1;
}

/* .p-ourpolicy__contents__box__title_Jp,
.p-ourpolicy__contents__box__title_En {
  display: block;
  line-height: 1.25;
  text-align: left;
} */

.p-ourpolicy__contents__box__title_Jp {
  font-size: 1.4rem;
}

.p-ourpolicy__contents__box__title_En {
  font-family: "Poppins", sans-serif;
  font-size: 5.2rem;
}

.p-ourpolicy__contents__box__lead,
.p-ourpolicy__contents__box__text {
  position: relative;
  z-index: 1;
}

.value_lead {
    margin-bottom: 4px !important;
}

.value_text {
    margin-bottom: 1em;
}

.p-ourpolicy__contents__box__lead {
    margin-top: 1.2em;
    margin-bottom: 1em;
    font-weight: bold;
    font-size: clamp(2.5rem, 5.6vw, 3.2rem);
}

.p-ourpolicy__contents__img {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #EBFAFE;
}

/*【SIZE】PC ------ */
@media screen and (min-width: 970px) {
  .p-ourpolicy .l-pageHeader__visual {
    height: 720px;
    padding: 0 16px 64px 16px;
  }

  .p-ourpolicy_pageHeader__message__text {
    font-size: 1.8rem;
  }

  .p-ourpolicy__contents {
    width: calc(100% - 32px);
    margin-bottom: 80px;
  }

  /* .p-ourpolicy__contents:nth-of-type(even) {
    flex-direction: row-reverse;
  } */
}

/*【SIZE】SP ------ */
@media screen and (max-width: 969px) {
  .p-ourpolicy .l-pageHeader__visual {
    height: auto;
    padding: 48px 16px;
  }

  .l-pageHeader__visual_inner{
    margin: 0;
  }

  .p-ourpolicy_pageHeader__message__text {
    height: auto;
    line-height: 2;
    font-size: 1.8rem;
    text-align: left;
  }

  .p-ourpolicy__contents {
    flex-direction: column;
    width: 100%;
    max-width: 550px;
    margin-bottom: 40px;
  }

  .p-ourpolicy__contents__box {
    width: 100%;
  }

  .p-ourpolicy__contents__box__title_En {
    font-family: "Poppins", sans-serif;
    font-size: 4.8rem;
  }

  .p-ourpolicy__contents__img {
    width: 100%;
    border: solid 1px var(--color-red);
  }

  .p-ourpolicy__contents__box {
    padding: 32px 16px;
  }

  .p-ourpolicy__contents__img {
    text-align: center;
  }

  .p-ourpolicy__contents + .u-text__big {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 480px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .p-ourpolicy .l-pageHeader__visual {
        padding: 16px 16px 184px 16px;
        background-position: -460px;
    }
    .p-ourpolicy .l-pageHeader__visual.cn {
        padding: 16px 16px 184px 16px;
        background-position: -380px;
    }

    .p-top_title, .l-pageHeader__title {
        padding: 8px 0;
    }
    .p-ourpolicy_pageHeader__message {
        margin-top: 0;
    }

    .p-ourpolicy_pageHeader__message__title p {
        margin-bottom: 12px;
        line-height: 3rem;
    }
    .p-ourpolicy__contents__message {
        text-align: initial;
    }
    .p-ourpolicy__contents__message__title {
        font-size: 2rem;
        line-height: 4rem;
    }
}

/* 企業情報（CORPORATE）
/* --------------------------------------------------------------- */
.p-corporate .l-pageHeader__visual {
  background: url("../image/l-pageHeader__visual__corporate.jpg") center / cover no-repeat;
}

/* 会社概要 ------------------------- */
.p-corporate_company_map {
  width: 100%;
  aspect-ratio: 112 / 45;
  margin-top: 16px;
  border: none;
}

/* 代表挨拶 ------------------------- */
.p-corporate_message_ceo {
  font-size: 2.4rem;
  font-family: "Noto Serif JP", serif;
}

/* 経営陣 ------------------------------- */
.p-corporate_members_ceo_wrap {
  display: flex;
}

.p-corporate_members_ceo_profile_post {
  font-weight: bold;
  font-size: 1.8rem;
}

.p-corporate_members_ceo_profile_name {
  font-weight: bold;
  font-size: 2.4rem;
}

.p-corporate_members_ceo_profile_title {
  margin-top: 2em;
  margin-bottom: 1em;
  color: var(--color-red);
  font-size: 1.6rem;
  border-bottom: solid 1px var(--color-red);
}

.p-corporate_members_ceo_book {
  margin-top: 2em;
}

.p-corporate_members_ceo_book__item {
  display: flex;
}

.p-corporate_members_ceo_book__item__img {
  max-width: 100px;
}

.p-corporate_members_ceo_book__item__text {
  font-weight: bold;
}

.p-corporate_members_manager {
  margin-top: 120px;
}

.p-corporate_members_manager__item {
  width: calc((100% - 20%) / 3);
  max-width: 512px;
  margin: 0 10% 24px 0;
  font-size: 1.4rem;
  font-weight: bold;
}

.p-corporate_members_manager__img {
  text-align: center;
}

.p-corporate_members_manager__name {
  display: block;
  padding: 0.5em 0;
  font-size: 1.8rem;
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
  .p-corporate_members_ceo_img {
    max-width: 320px;
    margin-right: 40px;
  }

  .p-corporate_members_ceo_book__item__text {
    margin-left: 1em;
  }
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  .p-corporate_members_ceo_wrap {
    flex-direction: column;
  }

  .p-corporate_members_ceo_img {
    max-width: 512px;
    margin: 0 auto;
  }

  .p-corporate_members_ceo_profile {
    margin-top: 16px;
  }

  .p-corporate_members_ceo_book__item,
  .p-corporate_members_ceo_book__item:nth-child(3n) {
    width: calc((100% - 16px) / 2);
    margin: 0 16px 16px 0;
  }

  .p-corporate_members_ceo_book__item:nth-child(2n) {
    margin-right: 0;
  }

  .p-corporate_members_ceo_book__item {
    flex-direction: column;
  }

  .p-corporate_members_ceo_book__item__img {
    margin: 0 auto;
  }

  .p-corporate_members_manager {
    flex-direction: column;
  }

  .o-flex__3clm__item.p-corporate_members_manager__item {
    width: 100%;
    margin: 0 auto 24px;
  }
}

/* 沿革 ------------------------------------- */
.p-corporate__history__date {
  width: 100px;
}
.p-corporate__history__dl > *,
.p-corporate__history__dl__in > * {
  display: table-cell;
}
.p-corporate__history__dl {
  margin: 0 auto;
  padding: 1em 0;
  border-bottom: 1px solid var(--color-gray);
}

.p-corporate__history__dl__in {
  margin: 0;
  margin-top: 1em;
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
  .p-corporate__history__dl__in:first-child {
    margin-top: 0;
  }
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  .p-corporate__history__dl > * {
    display: block;
  }
  .p-corporate__history__date {
    width: 70px;
  }
  .p-corporate__history__year {
    font-size: 2rem;
  }
}

/* グループ企業 ------------------------- */
.p-corporate_group_gird {
  display: grid;
}

.p-corporate_group_gird__box {
  position: relative;
  padding: 2.083333333333333vw;
  border-right: solid 1px var(--color-lightgray);
  border-bottom: solid 1px var(--color-lightgray);
  transition: var(--transition);
  text-decoration: none;
  color: #383838;
}

a.p-corporate_group_gird__box[target="_blank"]::before {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 16px;
  height: 16px;
  background: url("../image/icon_externalLink.svg") right center / 1em no-repeat;
  display: block;
}

.p-corporate_group_gird__box__img {
  display: block;
  padding: 40px;
  background-color: var(--color-lightgray);
}

.p-corporate_group_gird__box__img > img {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.p-corporate_group_gird__box__company {
  display: block;
  margin-top: 0.5em;
  font-weight: bold;
  font-size: 1.8rem;
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
  .p-corporate_group_gird {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .p-corporate_group_gird__box:nth-child(-n + 3) {
    border-top: solid 1px var(--color-lightgray);
  }

  .p-corporate_group_gird__box:nth-child(3n + 1) {
    border-left: solid 1px var(--color-lightgray);
  }

  a.p-corporate_group_gird__box:hover {
    opacity: 1;
    box-shadow: 0 14px 10px #f4f5f7, 40px 30px 40px #f4f5f7;
  }
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  .p-corporate_group_gird {
    grid-template-columns: 1fr;
  }

  .p-corporate_group_gird__box {
    padding: 16px;
    border-left: solid 1px var(--color-lightgray);
  }

  .p-corporate_group_gird__box:first-of-type {
    border-top: solid 1px var(--color-lightgray);
  }
}

/* 認証情報 ------------------------- */

.p-corporate_certification__box {
  display: flex;
  margin-top: 64px;
  align-items: flex-start;
}

.p-corporate_certification__box:first-of-type {
  margin-top: 0;
}

.p-corporate_certification__box__img {
  width: 100%;
  border: solid 1px var(--color-gray);
}

.p-corporate_certification__box__data {
  width: 100%;
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
  .p-corporate_certification__box__img {
    max-width: 240px;
    margin-right: 16px;
  }

  .p-corporate_certification__box__data__table th,
  .p-corporate_certification__box__data__table td {
    padding: 8px 24px;
  }
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  .p-corporate_certification__box {
    flex-direction: column;
    align-items: center;
  }

  .p-corporate_certification__box__img {
    max-width: 400px;
  }

  .p-corporate_certification__box__data {
    margin-top: 16px;
  }
}

/* 採用情報（RECRUIT）
/* --------------------------------------------------------------- */
.p-recruit .l-pageHeader__visual {
  background: url("../image/l-pageHeader__visual__recruit.jpg") center / cover no-repeat;
}

.p-recruit_index .l-contents_section > .l-contents_section_inner {
  width: 100% !important;
  max-width: inherit !important;
  padding: 0;
}

/* あなたの挑戦が、未来を変える。 */
.p-recruit_message {
  position: relative;
  padding-bottom: 120px;
}

.p-recruit_message::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 400px;
  background-color: #a48e70;
  z-index: 0;
}

.p-recruit_message_box {
  position: relative;
  width: calc(100% - 32px);
  max-width: 960px;
  margin: 0 auto;
  border: solid 1px var(--color-lightgray);
  background-color: #fff;
  z-index: 1;
}

.p-recruit_message_box__title {
  padding-bottom: 0;
  border-bottom: none;
  font-family: "Noto Serif JP", serif;
  font-size: 5.2rem;
  color: #383838;
}

.p-recruit_message_box__text {
  line-height: 3;
}

/* JENESISの強み */
.p-recruit_strengths {
  padding: 120px 0;
}

.p-recruit_strengths__title {
  padding: 0;
  text-align: center;
  border: none;
  font-size: 3.2rem;
}

.p-recruit_strengths__box {
  display: flex;
  justify-content: space-between;
}

.p-recruit_strengths__box__text {
  line-height: 3;
  font-size: 2rem;
}

.p-recruit_strengths__box__item__img {
  margin-top: 16px;
}

/* 求める人物像 */
.p-recruit_person {
  padding: 120px 0;
  background: var(--color-red) url("../image/pt_triangle.png");
  color: #fff;
}
.p-recruit_person__title {
  text-align: center;
  color: #fff;
  border: none;
  font-size: 3.2rem;
}

.p-recruit_person__point {
  position: relative;
}

.p-recruit_person__point__detaile {
  display: flex;
}

.p-recruit_person__point__title__En {
  position: absolute;
  bottom: 0;
  right: 0;
  line-height: 1;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  font-size: 18rem;
  font-size: clamp(100px, 0.94vw, 180px);
  font-size: clamp(18px, 2.3vw, 30px);
  font-size: 9.4vw;
  color: #b4021d;
}

.p-recruit_person__point__title__Jp {
  align-self: flex-start;
  position: relative;
  margin-right: 0.5em;
  letter-spacing: 0.5em;
  text-align: center;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  font-size: 6.4rem;
}

.p-recruit_person__point__text {
  display: inline;
  width: 100%;
  align-self: flex-start;
  z-index: 1;
  color: #fff;
  letter-spacing: 0.2em;
  line-height: 2.2;
  font-weight: bold;
  font-size: 2.1rem;
}

.p-recruit_person__point__text > span {
  margin-bottom: 0.5em;
  padding: 2px 0.5em;
  background-color: #fff;
  color: var(--color-red);
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
  .p-recruit_strengths__box:not(:first-child) {
    margin-top: 80px;
  }

  /* 求める人物像 */
  .p-recruit_person__point {
    margin-top: 80px;
  }

  .p-recruit_person__point:nth-child(odd) .p-recruit_person__point__detaile {
    flex-direction: row-reverse;
  }

  .p-recruit_person__point:nth-child(odd) .p-recruit_person__point__title__Jp {
    margin-right: 0;
    margin-left: 0.5em;
  }

  .p-recruit_person__point:nth-child(odd) .p-recruit_person__point__text {
    text-align: right;
  }

  .p-recruit_person__point__title__Jp {
    display: flex;
  }

  .p-recruit_person__point__title__Jp > span {
    white-space: pre;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    display: inline-block;
  }
}

/* 選考フロー */
.p-recruit_flow {
  margin-top: 32px;
}

.p-recruit_flow_step {
  display: flex;
  margin: 0 auto 4px;
  background-color: var(--color-lightgray);
}

.p-recruit_flow_step__num {
  padding: 16px 24px;
  background-color: var(--color-red);
  color: #fff;
  letter-spacing: 0.1em;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1;
}

.p-recruit_flow_step__num > span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
}

.p-recruit_flow_step__content {
  width: calc(100% - 72px);
  padding: 16px;
}

.p-recruit_flow_step__title {
  color: var(--color-Blue);
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.5;
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
  .p-recruit_message_box {
    padding: 120px 40px;
  }

  .p-recruit_message_box__title {
    text-align: center;
  }

  .p-recruit_message_box__text {
    text-align: center;
    font-size: 2rem;
  }

  /* JENESISの強み */
  .p-recruit_strengths__box > div {
    width: 50%;
  }

  .p-recruit_strengths__box:nth-child(even) {
    flex-direction: row-reverse;
  }

  .p-recruit_strengths__box:nth-child(even) .p-recruit_strengths__box__text {
    padding-right: 0;
    padding-left: 4em;
  }

  .p-recruit_strengths__box__text {
    padding-right: 4em;
  }
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  /* あなたの挑戦が、未来を変える。 */
  .p-recruit_message {
    padding-bottom: 96px;
  }

  .p-recruit_message_box {
    padding: 40px 16px;
  }

  .p-recruit_message_box__title {
    font-size: 3.2rem;
  }

  /* JENESISの強み */
  .p-recruit_strengths {
    padding: 96px 0;
  }

  .p-recruit_strengths__box {
    flex-direction: column;
  }

  .p-recruit_strengths__box:not(:first-of-type) {
    margin-top: 40px;
  }

  .p-recruit_strengths__box__text {
    line-height: 2;
    font-size: 1.6rem;
  }

  /* 求める人物像 */
  .p-recruit_person {
    padding: 96px 0;
  }

  .p-recruit_person__point {
    margin-top: 40px;
  }

  .p-recruit_person__point__detaile {
    flex-direction: column;
    padding-bottom: 14vw;
  }

  .p-recruit_person__point__title__Jp {
    align-self: center;
    margin: 0 auto;
    line-height: 1.5;
    word-break: break-all;
  }

  .p-recruit_person__point__title__En {
    margin: auto;
    text-align: center;
    font-size: clamp(3.8rem, 12vw, 8rem);
  }

  .p-recruit_person__point__title__Jpt {
    line-height: 2;
    font-size: 1.6rem;
  }
}

/* 募集職種 --------------------------------- */
.p-recruit_job .p-recruit_job__item:not(:first-of-type) {
  margin-top: 120px;
}

.p-recruit__listTitle {
  color: var(--color-red);
  font-size: 1.8rem;
  font-weight: 500;
}

/*【SIZE】PC ------ */
@media screen and (min-width: 769px) {
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  .p-recruit_job .p-recruit_job__item:not(:first-of-type) {
    margin-top: 72px;
  }
}

/* お問い合わせフォーム（CONTACT）
/* --------------------------------------------------------------- */
.p-contact .l-pageHeader__visual {
  background: url("../image/l-pageHeader__visual__contact.jpg") center / cover no-repeat;
}

.p-form_contact_inner {
  max-width: 960px;
}

/* お問い合わせ先 */
.o-contactBox {
  margin: 80px auto 0;
  padding: 40px;
  border: solid 2px var(--color-red);
  border-radius: 0.5rem;
  background-color: #fff;
  text-align: center;
}

.o-contactBox_title {
  margin-bottom: 0.75em;
  color: var(--color-red);
  line-height: 1.5;
  font-weight: bold;
  font-size: 2.4rem;
}

.o-contactBox_content_contactAddress {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.p-recruit_entry__privacyPolicy {
  width: 100%;
  margin: 0 auto;
  padding: 16px;
  height: 300px;
  border: solid var(--color-gray) 1px;
  border-radius: 4px;
  overflow-x: hidden;
}

/*【SIZE】SP ------ */
@media screen and (max-width: 768px) {
  .o-contactBox_title {
    font-size: 2.1rem;
  }
}

#request01 {
  display: flex;
}

/* 個人情報保護方針
/* --------------------------------------------------------------- */
.p-privacy .l-pageHeader__visual {
  background: url("../image/l-pageHeader__visual__privacy.jpg") center / cover no-repeat;
}

/* 20250115 compliance */
/* コンプライアンスへの取り組み
/* --------------------------------------------------------------- */
.compliance.p-privacy .l-pageHeader__visual {
  background: url("../image/l-pageHeader__visual__compliance.jpg") center / cover no-repeat;
}
.compliance ol > li {
  list-style-type: none;
}
.l-contents_section_inner > section.top_padd {
  padding-top: 0;
}
.mb_16 {
  margin-bottom: 16px;
}

/* 404エラーページ
/* --------------------------------------------------------------- */
.p-404error .l-pageHeader__visual {
  background: url("../image/l-pageHeader__visual__404error.jpg") center / cover no-repeat;
}

/* ------------------------------------------------------------------------- */
/* プリント用設定
/* ------------------------------------------------------------------------- */

@media only print {
  #header {
    position: fixed; /*【印刷】固定メニューを表示させない */
    position: static;
  }

  #side_bn,
  .pagetop {
    display: none;
  }
}
