@charset "UTF-8";
/*--------------------------------------*
 * foundation
 *--------------------------------------*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/* PCを含む全ての画面でのデフォルトスタイル */
.content-container {
    margin-top: 90px; /* PC表示時の余白 */
    /* 他のスタイルもここに含まれます */
}

/* 画面の最大幅が特定のブレークポイント（例: 768px）以下の場合に適用されるスタイル */
@media screen and (max-width: 768px) {
    .content-container {
        margin-top: 0; /* モバイル表示時の余白をなくす */
    }
}

body {
  color: #35333B;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "Lato", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  min-width: 350px;
  width: 100%;
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

a,
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

a:active {
  transform: scale(0.95);
}

p {
  margin: 0;
}

h1 {
  visibility: hidden;
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

figure {
  margin: 0;
}

select {
  width: 240px;
  height: 48px;
  padding-left: 12px;
  padding-right: 48px;
  border: 1px solid #5B5963;
  border-radius: 4px;
  background-color: #fff;
  color: #35333B;
  cursor: pointer;
  box-sizing: border-box;
}
select:focus {
  outline: none;
  border-color: #35333B;
  box-shadow: 0 0 0 2px rgba(100, 100, 100, 0.2);
}

/* 矢印アイコンを疑似要素で追加 */
select::after {
  content: "";
  background: url(../img/down.svg) no-repeat center;
  width: 48px;
  height: 48px;
  position: absolute;
  right: 0;
}

input[type=text],
input[type=tel],
input[type=email] {
  height: 48px;
  padding-left: 12px;
  padding-right: 48px;
  border: 1px solid #5B5963;
  border-radius: 4px;
  background-color: #fff;
  color: #35333B;
  cursor: pointer;
  box-sizing: border-box;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus {
  outline: none;
  border-color: #35333B;
  box-shadow: 0 0 0 2px rgba(100, 100, 100, 0.2);
}

textarea {
  height: 240px;
  padding: 8px 48px 8px 12px;
  border: 1px solid #5B5963;
  border-radius: 4px;
  background-color: #fff;
  color: #35333B;
  cursor: pointer;
  box-sizing: border-box;
}
textarea:focus {
  outline: none;
  border-color: #35333B;
  box-shadow: 0 0 0 2px rgba(100, 100, 100, 0.2);
}

.js-fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js-fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}

/*--------------------------------------*
 * layout
 *--------------------------------------*/
.l-header {
  width: 100%;
  padding: 0 16px;
  display: flex;
  position: fixed;
  justify-content: space-between;
  width: 100%;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0 0 0 1.2rem;
  align-items: center;
}
@media (min-width: 1100px) {
  .l-header {
    padding: 0 24px;
  }
}
.l-header__logo {
  height: 56px;
  width: auto;
}
@media (min-width: 1100px) {
  .l-header__logo {
    height: 120px;
  }
}
.l-header__nav {
  position: fixed;
  top: 0;
  right: -200%;
  width: 100%;
  z-index: 1000;
  height: 100%;
  background: #35333B;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 40px 16px;
  transition: right 0.2s ease;
  overflow-y: auto;
}
@media (min-width: 1100px) {
  .l-header__nav {
    position: static;
    width: unset;
    height: unset;
    background: unset;
    color: #35333B;
    flex-direction: row;
    gap: clamp(12px, 2.5vw, 40px);
    padding: unset;
    overflow-y: unset;
  }
}
.l-header__nav.open {
  right: 0;
}
.l-header__nav .c-btn {
  background-color: #fff;
  color: #35333B;
  margin: 24px auto 0;
  width: 80%;
}
@media (min-width: 1100px) {
  .l-header__nav .c-btn {
    background-color: #35333B;
    color: #fff;
    margin: unset;
    width: 240px;
  }
}
.l-header__menu {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1100px) {
  .l-header__menu {
    flex-direction: row;
    gap: clamp(12px, 2.5vw, 40px);
  }
}
.l-header__menu__item {
  font-size: 1.6rem;
  font-weight: 600;
  position: relative;
  border-bottom: 1px solid #fff;
  padding: 16px 0;
}
@media (min-width: 1100px) {
  .l-header__menu__item {
    font-size: 2rem;
    display: flex;
    padding: 0 16px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border: none;
  }
}
@media (min-width: 1100px) {
  .l-header__submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 200px;
    background: #35333B;
    border-radius: 8px;
    padding: 24px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
    font-size: 1.6rem;
  }
}
@media (min-width: 1100px) {
  .l-header .has-sub:hover > .l-header__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}
.l-header__submenu a {
  display: block;
  padding: 8px 16px;
  white-space: nowrap;
}
.l-header__submenu a:hover {
  background: #fff;
  color: #35333B;
}
.l-header-sp {
  display: block;
}
@media (min-width: 1100px) {
  .l-header-sp {
    display: none;
  }
}
.l-header-pc {
  display: none;
}
@media (min-width: 1100px) {
  .l-header-pc {
    display: flex;
  }
}

.l-header__openBtn {
  width: 56px;
  height: 56px;
  position: relative;
  top: 0;
  right: 8px;
  z-index: 1500;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.l-header__openBtn span {
  width: 40px;
  height: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #35333B;
  top: 32px;
  transition: right 0.4s ease;
}
.l-header__openBtn span:first-of-type {
  top: 20px;
}
.l-header__openBtn.active {
  top: 10px;
}
.l-header__openBtn.active span {
  background-color: #fff;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  left: 8px;
  top: 25px;
}
.l-header__openBtn.active span:first-of-type {
  top: 24px;
  left: 8px;
  transform: rotate(-45deg);
}
@media (min-width: 1100px) {
  .l-header__openBtn {
    display: none;
  }
}

.l-footer {
  width: 100%;
  padding: 0 24px 24px;
}
.l-footer__content {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}
@media (min-width: 1100px) {
  .l-footer__content {
    justify-content: space-between;
  }
}
.l-footer__logo {
  height: 80px;
  width: auto;
}
@media (min-width: 1100px) {
  .l-footer__logo {
    height: 120px;
  }
}
.l-footer__menu {
  display: none;
  max-width: calc(100% - 320px);
  justify-content: space-between;
  gap: clamp(16px, 2.5vw, 40px);
}
@media (min-width: 1100px) {
  .l-footer__menu {
    display: flex;
  }
}
.l-footer__menu__item__txt {
  display: block;
  margin-bottom: 24px;
  font-weight: 600;
}
.l-footer__submenu__item {
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 1.4rem;
}
.l-footer small {
  text-align: center;
  width: 100%;
  display: block;
}

.l-lowermv {
  width: calc(100% - 32px);
  margin: 0 auto;
  margin: 0 auto 24px;
  height: 240px;
  border-bottom: 8px solid;
  border-image: linear-gradient(45deg, #FCDFA4 0%, #F09CB4 8%, #735DA5 40%, #004F96 100%) 1;
  display: flex;
  align-items: center;
}
@media (min-width: 1100px) {
  .l-lowermv {
    width: calc(100% - 48px);
    max-width: 1280px;
    margin: 0 auto;
    margin: 0 auto 40px;
  }
}
.l-lowermv h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 1;
}
.l-lowermv__eng {
  font-family: "Lato", sans-serif;
  font-weight: 800;
  font-size: 4rem;
  text-transform: uppercase;
  line-height: 1;
}
@media (min-width: 1100px) {
  .l-lowermv__eng {
    font-size: 9.6rem;
  }
}
.l-lowermv__jp {
  font-size: 2.4rem;
  font-weight: 600;
}
@media (min-width: 1100px) {
  .l-lowermv__jp {
    font-size: 4rem;
  }
}

.l-breadcrumb {
  display: flex;
  font-size: 1.4rem;
  width: calc(100% - 32px);
  margin: 0 auto;
  margin: 0 auto 24px;
}
@media (min-width: 1100px) {
  .l-breadcrumb {
    width: calc(100% - 48px);
    max-width: 1280px;
    margin: 0 auto;
    margin: 0 auto 40px;
  }
}

.l-breadcrumb a,
.l-breadcrumb a + span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
}

.l-breadcrumb a + a::before,
.l-breadcrumb a + span::before {
  content: "";
  display: inline-block;
  width: 48px;
  height: 48px;
  margin: 0 8px;
  background: url(../img/right.svg) no-repeat center/contain;
}

.l-breadcrumb span {
  font-weight: 600;
}

.l-content {
  width: calc(100% - 32px);
  margin: 0 auto;
  margin: 0 auto 120px;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 1100px) {
  .l-content {
    width: calc(100% - 48px);
    max-width: 1280px;
    margin: 0 auto;
    margin: 0 auto 120px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.l-largeBtm {
  margin-bottom: 120px;
}
@media (min-width: 1100px) {
  .l-largeBtm {
    margin-bottom: 120px;
  }
}

.l-midBtm {
  margin-bottom: 80px;
}
@media (min-width: 1100px) {
  .l-midBtm {
    margin-bottom: 80px;
  }
}

.l-smallBtm {
  margin-bottom: 40px;
}
@media (min-width: 1100px) {
  .l-smallBtm {
    margin-bottom: 40px;
  }
}

.l-txtBtm {
  margin-bottom: 24px;
}
@media (min-width: 1100px) {
  .l-txtBtm {
    margin-bottom: 24px;
  }
}

.l-ircontents {
  width: calc(100% - 32px);
  margin: 0 auto;
  margin: 0 auto 120px;
}
@media (min-width: 1100px) {
  .l-ircontents {
    width: calc(100% - 48px);
    max-width: 1280px;
    margin: 0 auto;
    margin: 0 auto 120px;
  }
}
.l-ircontents__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 1100px) {
  .l-ircontents__content {
    grid-template-columns: repeat(4, 1fr);
  }
}
.l-ircontents__content li {
  width: 100%;
}
@media (min-width: 1100px) {
  .l-ircontents__content li:nth-last-child(-n+2) {
    grid-column: span 2;
  }
}
.l-ircontents__content .c-btn {
  width: 100%;
}

.l-column {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1100px) {
  .l-column {
    display: grid;
    grid-template-columns: 320px 1fr;
  }
}
@media (min-width: 1100px) {
  .l-column-small {
    grid-template-columns: 160px 1fr;
  }
}

.l-category {
  width: calc(100% - 32px);
  margin: 0 auto;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
@media (min-width: 1100px) {
  .l-category {
    width: calc(100% - 48px);
    max-width: 1280px;
    margin: 0 auto;
    margin: 0 auto 40px;
  }
}
.l-category .c-btn-cat {
  width: 100%;
}

.l-yearSelectArea {
  width: calc(100% - 32px);
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 1100px) {
  .l-yearSelectArea {
    width: calc(100% - 48px);
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
  }
}

.l-pager {
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-pager li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-family: "Lato", sans-serif;
}

.l-companyLink {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .l-companyLink {
    flex-direction: row;
  }
}
.l-companyLink__item {
  padding: 40px 12px;
  border-radius: 8px;
  aspect-ratio: 3/4;
  color: #fff;
  flex: 1;
}
@media (min-width: 768px) {
  .l-companyLink__item {
    padding: 40px;
    aspect-ratio: 4/3;
  }
}
.l-companyLink__item:active, .l-companyLink__item:hover {
  transform: scale(0.95);
  transition: all 0.3s ease-out;
}
.l-companyLink__item-philosophy {
  background-color: #35333B;
  background: #35333B url(../img/symbol.svg) calc(100% - 16px) calc(100% - 16px) no-repeat;
}
.l-companyLink__item-ceo {
  background: url(../img/ceoBg.png) no-repeat;
  background-size: cover;
  background-position: center;
}
.l-companyLink__item-group {
  background: url(../img/group.png) no-repeat;
  background-size: cover;
  background-position: center;
}
.l-companyLink__ttl {
  font-size: 2.4rem;
  font-weight: 600;
  display: block;
}

/*--------------------------------------*
* object
*--------------------------------------*/
/*------------------- 
  * component
  -------------------*/
.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
  font-weight: 600;
  background: #35333B;
  padding: 0 24px;
  width: 240px;
  min-width: 120px;
  height: 56px;
  border-radius: 4px;
}
@media (min-width: 1100px) {
  .c-btn {
    font-size: 2rem;
    width: 320px;
    min-width: 180px;
  }
}
.c-btn:active, .c-btn:hover {
  background: linear-gradient(45deg, #FCDFA4 0%, #F09CB4 8%, #735DA5 40%, #004F96 100%);
  padding-right: 0;
  transition: all 0.3s ease-out;
}
.c-btn:active::after, .c-btn:hover::after {
  content: "";
  background-image: url(../img/arrow_forward.svg);
  width: 24px;
  height: 24px;
}

.c-btn-recruit {
  width: 360px;
}
.c-btn-recruit:active, .c-btn-recruit:hover {
  background: #35333B;
}

.c-btn-cat {
  border: 1px solid #35333B;
  background: unset;
  color: #35333B;
}
.c-btn-cat:active, .c-btn-cat:hover {
  background: #35333B;
  color: #fff;
  padding-right: 24px;
  transition: all 0.3s ease-out;
}
.c-btn-cat:active::after, .c-btn-cat:hover::after {
  display: none;
}
.c-btn-cat[data-current=true] {
  background: #35333B;
  color: #fff;
  pointer-events: none;
}

.c-btn-large {
  width: 320px;
}
@media (min-width: 1100px) {
  .c-btn-large {
    width: 360px;
  }
}

.c-h2eng {
  font-family: "Lato", sans-serif;
  font-weight: 800;
  font-size: 4.8rem;
  text-transform: uppercase;
}
@media (min-width: 1100px) {
  .c-h2eng {
    font-size: 6.4rem;
  }
}

.c-h2jp {
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  padding-bottom: 12px;
  position: relative;
}
.c-h2jp::after {
  content: "";
  width: 36px;
  height: 4px;
  background-color: #35333B;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (min-width: 1100px) {
  .c-h2jp {
    font-size: 3.2rem;
  }
}

.c-h3 {
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 24px;
}
@media (min-width: 1100px) {
  .c-h3 {
    font-size: 2.4rem;
  }
}

.c-datalist__item {
  min-height: 80px;
  padding: 24px 0;
  border-bottom: 1px solid #CAC7D2;
  font-size: 1.4rem;
}
@media (min-width: 1100px) {
  .c-datalist__item {
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: center;
  }
}
.c-datalist__item dt {
  font-weight: 600;
  padding-bottom: 16px;
}
@media (min-width: 1100px) {
  .c-datalist__item dt {
    padding-left: 16px;
    padding-bottom: 0;
  }
}
.c-datalist__item dd {
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
}
@media (min-width: 1100px) {
  .c-datalist__item dd {
    padding: 0 24px;
  }
}
.c-datalist__item__links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
}

.c-datalist-small .c-datalist__item {
  min-height: 40px;
  border: none;
  padding: 0;
  grid-template-columns: 120px 1fr;
}
.c-datalist-small .c-datalist__item dt {
  padding: 0;
}

.br-pc {
  display: none;
}
@media (min-width: 1100px) {
  .br-pc {
    display: block;
  }
}

.c-linkBtn {
  font-size: 1.4rem;
  font-weight: 600;
  padding: 0 8px 0 24px;
  background-color: #CAC7D2;
  border-radius: 1000px;
  width: fit-content;
  height: 48px;
  display: flex;
  align-items: center;
}
.c-linkBtn::after {
  content: "";
  width: 48px;
  height: 48px;
  background: url(../img/pdf.svg) no-repeat center;
}

.c-newsList {
  margin-bottom: 24px;
}

.c-newsItem {
  min-height: 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
  padding-bottom: 4px;
  border-bottom: 1px solid #35333B;
}
@media (min-width: 768px) {
  .c-newsItem {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    margin-bottom: 0;
    padding: 0;
    border: unset;
  }
}
.c-newsItem__headline {
  display: flex;
  gap: 24px;
  font-size: 1.4rem;
  flex-shrink: 0;
  align-items: center;
}
.c-newsItem__cat {
  height: 24px;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid #35333B;
  font-size: 1.4rem;
}
.c-newsItem__body {
  display: flex;
  align-items: center;
  gap: 0;
}
@media (min-width: 1100px) {
  .c-newsItem__body {
    width: fit-content;
  }
}
.c-newsItem .c-newsItem__ttl {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

a[target=_blank] .c-newsItem__body::after {
  content: "";
  background: url(../img/blank.svg) no-repeat center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

a[href$=".pdf"] .c-newsItem__body::after {
  content: "";
  background: url(../img/pdf.svg) no-repeat center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.c-yearSelect {
  position: relative;
  width: 240px;
}
.c-yearSelect::after {
  content: "";
  background: url(../img/down.svg) no-repeat center;
  width: 48px;
  height: 48px;
  position: absolute;
  right: 0;
}

.c-table {
  display: grid;
  grid-template-columns: 72px repeat(5, 1fr);
  width: 100%;
  margin: 0 auto;
  border: 1px solid #ddd;
  font-size: 13px;
}
@media (min-width: 768px) {
  .c-table {
    width: 50%;
    max-width: 440px;
  }
}
.c-table__cell {
  padding: 8px 6px;
  text-align: center;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
  white-space: nowrap;
}
.c-table__cell:nth-child(6n) {
  border-right: none;
}
.c-table__cell-head {
  background: #f5f5f5;
  font-weight: 600;
}
.c-table__cell-row-head {
  background: #fafafa;
  font-weight: 600;
}

.c-copy {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 80px;
}
@media (min-width: 1100px) {
  .c-copy {
    margin-bottom: 80px;
    font-size: 4rem;
  }
}
.c-copy span {
  display: inline-block;
}

.c-form__label {
  font-weight: 600;
}
.c-form__label .is-required {
  font-size: 1.4rem;
  display: inline-flex;
  background-color: #D5031F;
  color: #fff;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  padding: 0 8px;
  margin-left: 16px;
}
.c-form__input {
  width: 100%;
}
.c-form__input-small {
  max-width: 200px;
}
.c-form__input-mid {
  max-width: 360px;
}
.c-form__radio {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
}
.c-form__textarea {
  width: 100%;
}
.c-form__row {
  gap: 16px;
}
@media (min-width: 1100px) {
  .c-form__row {
    align-items: center;
    gap: unset;
  }
}
.c-form__submit {
  margin: 0 auto;
  width: fit-content;
}

.c-radio {
  height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  /* フォーカス可視化（アクセシビリティ） */
}
.c-radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.c-radio .c-radio__ui {
  width: 16px;
  height: 16px;
  border: 2px solid #333;
  border-radius: 50%;
  box-sizing: border-box;
  position: relative;
  flex-shrink: 0;
}
.c-radio .c-radio__ui::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #333;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.c-radio input[type=radio]:checked + .c-radio__ui::after {
  opacity: 1;
}
.c-radio .c-radio__label {
  font-size: 14px;
  line-height: 1.4;
}
.c-radio:hover .c-radio__ui {
  border-color: #000;
}
.c-radio input[type=radio]:focus-visible + .c-radio__ui {
  outline: 2px solid #4d90fe;
  outline-offset: 2px;
}

/*-------------------
  * project
  -------------------*/
.p-index {
  padding-top: 120px;
}
.p-index__mv {
  position: relative;
}
.p-index__ttl {
  display: flex;
  list-style: none;
  padding-inline: 0;
  margin-inline: 0;
  margin-top: -100px;
  gap: 0;
  overflow: hidden;
}
.p-index__ttl li {
  text-transform: uppercase;
  font-size: 9.6rem;
  font-weight: bold;
  white-space: nowrap;
  padding: 0 16em 0 0;
  margin: 0;
  animation: marquee-left 16s linear infinite;
}
@media (min-width: 1100px) {
  .p-index__ttl li {
    font-size: 12.8rem;
  }
}
@keyframes marquee-left {
  100% {
    transform: translateX(-100%);
  }
}
.p-index__topic {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (min-width: 1100px) {
  .p-index__topic {
    flex-direction: row;
  }
}
.p-index__topic__item {
  flex: 1;
}
.p-index__topic .c-btn {
  margin: 0 auto;
}
.p-index__business__cat {
  width: 100%;
}
.p-index__recruit {
  padding: 24px 0;
  background: linear-gradient(45deg, #FCDFA4 0%, #F09CB4 8%, #735DA5 40%, #004F96 100%);
}
.p-index__recruit__inner {
  width: calc(100% - 32px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: #fff;
}
@media (min-width: 768px) {
  .p-index__recruit__inner {
    flex-direction: row;
    width: calc(100% - 48px);
    max-width: 1280px;
    margin: 0 auto;
  }
}
.p-index__recruit__body {
  flex: 1;
}
.p-index__recruit__body p {
  margin-bottom: 40px;
}
.p-index__recruit__img {
  flex: 1;
  aspect-ratio: 16/9;
}

.p-benefit-stockInfo {
  padding: 40px 0;
}

.p-company-body {
  max-width: 960px;
  margin: 0 auto;
}

.p-financials__content {
  display: flex;
  gap: 16px;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .p-financials__content {
    flex-direction: row;
  }
}
.p-financials__img {
  width: 100%;
}
@media (min-width: 768px) {
  .p-financials__img {
    width: 50%;
    max-width: 460px;
  }
}

.p-group__content {
  display: flex;
  gap: 16px;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .p-group__content {
    flex-direction: row;
    align-items: flex-start;
  }
}
.p-group__content__txt {
  flex: 1;
}
.p-group__content__txt p {
  margin-bottom: 24px;
}
.p-group__content iframe {
  aspect-ratio: 16/9;
  width: 100%;
}
@media (min-width: 768px) {
  .p-group__content iframe {
    width: 50%;
    max-width: 480px;
  }
}
.p-group__brandList {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .p-group__brandList {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
.p-group__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.p-group__brand img {
  width: 160px;
  height: auto;
  aspect-ratio: 16/9;
}
.p-group__brand__name {
  font-weight: 600;
  flex: 1;
}
.p-group__brand__name span {
  display: inline-block;
}

.p-policies ul {
  list-style: disc;
  padding-left: 1.5em;
}
.p-policies ul P {
  margin-bottom: 8px;
}
.p-policies ol {
  list-style: decimal;
  padding-left: 1.5em;
}
.p-policies ol P {
  margin-bottom: 8px;
}
.p-policies li {
  margin-bottom: 8px;
}

.p-policies__ol-count {
  counter-reset: parent;
}
.p-policies__ol-count > li {
  counter-increment: parent;
  list-style: none;
  position: relative;
  padding-left: 2.5em;
}
.p-policies__ol-count > li::before {
  content: counter(parent) ".";
  position: absolute;
  left: 0;
}

/* 1-1 用の ol だけ */
.p-policies__smallNum {
  counter-reset: child;
  padding-left: 0 !important;
  margin-top: 0.5em;
}
.p-policies__smallNum > li {
  counter-increment: child;
  list-style: none;
  position: relative;
  padding-left: 3em;
}
.p-policies__smallNum > li::before {
  content: counter(parent) "-" counter(child);
  position: absolute;
  left: 0;
}

.p-investor__news .c-btn {
  margin: 0 auto;
}

.p-environment p {
  padding-top: 24px;
}

@media (min-width: 1100px) {
  .p-history__yearArea {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
@media (min-width: 1100px) {
  .p-history__yearArea::after {
    content: "";
    width: 26px;
    height: 100%;
    border-right: 2px solid #35333B;
  }
}
.p-history__yearArea .c-h3 {
  margin: 0;
}

.p-philosophy__copy {
  width: calc(100% - 32px);
  margin: 0 auto;
  margin-bottom: 80px;
}
@media (min-width: 1100px) {
  .p-philosophy__copy {
    width: calc(100% - 48px);
    max-width: 1280px;
    margin: 0 auto;
    margin-bottom: 80px;
  }
}
.p-philosophy__lead {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.p-philosophy__img {
  width: calc(100% - 32px);
  margin: 0 auto;
  height: 240px;
  background: linear-gradient(45deg, #FCDFA4 0%, #F09CB4 8%, #735DA5 40%, #004F96 100%);
  border-radius: 8px;
  display: flex;
  justify-content: flex-end;
  padding-right: 16px;
  margin-bottom: 40px;
}
.p-philosophy__img img {
  width: 40%;
  max-width: 240px;
}
@media (min-width: 1100px) {
  .p-philosophy__img {
    width: calc(100% - 48px);
    max-width: 1280px;
    margin: 0 auto;
    margin-bottom: 40px;
  }
}
.p-philosophy__value__content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.p-philosophy__value__content li {
  margin-bottom: 24px;
}
.p-philosophy__value__content li h3 {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  width: fit-content;
  border-bottom: 4px solid #35333B;
}
.p-philosophy__value__content li h3 span {
  font-size: 2rem;
  font-weight: 600;
}
.p-philosophy__value__content li p {
  padding-left: 24px;
}
@media (min-width: 1100px) {
  .p-philosophy__value__content li p {
    padding-left: 56px;
  }
}
.p-philosophy__num {
  font-family: "Lato", sans-serif;
  font-weight: 800;
  font-size: 2rem;
}
@media (min-width: 1100px) {
  .p-philosophy__num {
    font-size: 3.2rem;
  }
}
.p-philosophy__ceo__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
@media (min-width: 1100px) {
  .p-philosophy__ceo__content {
    flex-direction: row;
  }
  .p-philosophy__ceo__content__txt {
    flex: 1;
  }
}
.p-philosophy__ceo__content img {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16/9;
  flex-shrink: 0;
}

.p-form-body {
  max-width: 960px;
  margin: 0 auto;
}
.p-form-body__btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding-top: 40px;
}

/* CF7ラジオのブラウザデフォルトを復活 */
.wpcf7 input[type=radio] {
  all: unset;
  /* destyle の影響をリセット */
  appearance: auto;
  display: inline-block;
  margin: 8px 0.5em 6px 0;
  width: 16px;
  height: 16px;
}

/*-------------------
  * utility
  -------------------*/