@charset "UTF-8";
/* ---------------------------------------------------------

	RESET（based on Normalize.css v8.0.1）

--------------------------------------------------------- */
/* Document
---------------------------------------------------------- */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections
---------------------------------------------------------- */
body {
  margin: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
---------------------------------------------------------- */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics
---------------------------------------------------------- */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
---------------------------------------------------------- */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
select {
  text-transform: none;
}

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

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

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

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

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

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

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

/* Interactive
---------------------------------------------------------- */
details {
  display: block;
}

summary {
  display: list-item;
}

/* Misc
---------------------------------------------------------- */
/* 全ブラウザ用：全要素のボックスモデルを変更 */
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* 全ブラウザ用：マージンのリセット */
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
li,
figure {
  margin: 0;
}

/* 全ブラウザ用：パディングのリセット */
ol,
ul {
  padding: 0;
}

/* 全ブラウザ用：リストスタイル調整 */
dl,
menu,
ol,
ul {
  list-style-type: none;
  margin: 0;
}

/* 全ブラウザ用：画像の表示調整 */
img {
  height: auto;
  max-width: 100%;
  vertical-align: top;
}

/* 全ブラウザ用：テーブルのスペース調整 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ---------------------------------------------------------

	BASE

--------------------------------------------------------- */
html {
  color: var(--color-text-default);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  height: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--color-bg-default);
  font-size: 1.4rem;
  height: 100%;
}

a {
  color: var(--color-button-main);
}

:root {
  --color-bg-default: #fff;
  --color-button-main: #008ed3;
  --color-primary-light: #009ce8;
  --color-primary-dark: #0057af;
  --color-primary-darkest: #00578a;
  --color-text-default: #707070;
  --color-text-dark: #333;
  --height-fixed-header: 4rem;
  --width-side-header: 17.5rem;
}

/*===============================================
	BASE ： 768px未満
===============================================*/
@media screen and (max-width: 767px) {
  .only_pc {
    display: none;
  }
}
/*===============================================
	BASE ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .only_sp {
    display: none;
  }
  body {
    font-size: 1.6rem;
  }
}
/*===============================================
	BASE ： マウスホバー
===============================================*/
@media (hover: hover) and (pointer: fine) {
  a {
    transition: opacity 0.6s;
  }
  a:hover {
    opacity: 0.8;
  }
}
/* ---------------------------------------------------------

	LAYOUT

--------------------------------------------------------- */
.layout_wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.layout_container {
  margin-inline: auto;
  max-width: 104rem;
  padding-inline: 2rem;
  position: relative;
}

.layout_container_narrow {
  margin-inline: auto;
  max-width: 84rem;
  padding-inline: 2rem;
  position: relative;
}

.layout_container .layout_container_narrow {
  max-width: 80rem;
  padding-inline: 0;
}

.layout_header {
  background-color: #ddd;
  height: var(--height-fixed-header);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.layout_main {
  flex: 1;
  min-height: 0;
  padding-block: var(--height-fixed-header) 12.8rem;
  position: relative;
}

.layout_footer {
  padding-block: 4rem;
  position: relative;
}

.layout_section {
  line-height: 1.6;
  margin-top: 6rem;
}

.layout_section:first-of-type {
  margin-top: 4rem;
}

.layout_section :where(p, ul, ol) + :where(p, ul, ol) {
  margin-top: 1em;
}

.layout_section_content {
  margin-top: 4rem;
}

/*===============================================
	LAYOUT ： 1200px以上
===============================================*/
@media screen and (min-width: 1200px) {
  .layout_wrapper {
    padding-left: var(--width-side-header);
  }
  .layout_container {
    max-width: 112rem;
    padding-inline: 6rem;
  }
  .layout_header {
    grid-area: header;
    height: 100%;
    width: var(--width-side-header);
  }
  .layout_footer {
    grid-area: footer;
    padding-block: 5rem 2rem;
  }
  .layout_main {
    grid-area: main;
    margin-bottom: 3em;
    padding-block: 0 20rem;
  }
  .layout_section {
    margin-top: 12rem;
  }
  .layout_section:first-of-type {
    margin-top: 7rem;
  }
  .layout_section_content {
    margin-top: 7rem;
  }
}
/* ---------------------------------------------------------

	HEADER

--------------------------------------------------------- */
html.is-open {
  height: 100%;
  overflow: hidden;
}

.header_wrap {
  background-color: #fff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}

.header_logo {
  background: url(../img/common/header_logo_sp.svg) center/contain no-repeat;
  height: 2rem;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  width: 20rem;
}

.header_logo a {
  display: block;
  height: 100%;
}

.header_nav {
  background-color: #fff;
  height: calc(100svh - var(--height-fixed-header));
  opacity: 0;
  overflow-y: auto;
  padding: 4.5rem 2rem;
  pointer-events: none;
  position: absolute;
  top: var(--height-fixed-header);
  left: 0;
  transition: opacity 0.2s;
  width: 100vw;
}

.header_nav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.header_gnav_item:not(:first-child) {
  border-top: 1px solid #e6e6e6;
}

.header_gnav_title {
  color: var(--color-text-default);
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1.5rem 0.4rem;
  text-align: left;
  text-decoration: none;
  width: 100%;
}

.header_gnav_title::before {
  content: "";
  background: center/contain no-repeat;
  display: inline-block;
  flex: 0 0 auto;
  height: 1.8rem;
  margin-right: 0.4rem;
  width: 1.8rem;
}

.header_gnav_company::before {
  background-image: url(../img/common/icon_company.svg);
}

.header_gnav_business::before {
  background-image: url(../img/common/icon_business.svg);
}

.header_gnav_ir::before {
  background-image: url(../img/common/icon_ir.svg);
}

.header_gnav_topics::before {
  background-image: url(../img/common/icon_topics.svg);
}

.header_gnav_sustainability::before {
  background-image: url(../img/common/icon_sustainability.svg);
}

.header_gnav_careers::before {
  background-image: url(../img/common/icon_careers.svg);
}

.header_gnav_item:not(.header_gnav_item_nosnav) .header_gnav_title::after {
  content: "";
  border-right: 1px solid var(--color-text-default);
  border-bottom: 1px solid var(--color-text-default);
  display: inline-block;
  height: 0.75rem;
  margin-left: auto;
  transform: rotate(45deg);
  transition: transform 0.2s;
  width: 0.75rem;
}

.header_gnav_item:not(.header_gnav_item_nosnav) .header_gnav_title.is-open::after {
  transform: rotate(45deg) scale(-1, -1);
}

.header_snav_wrap {
  display: none;
  padding: 0.5rem 2.6rem 3rem;
}

.header_snav_wrap a {
  color: var(--color-text-default);
  text-decoration: none;
}

.header_snav_title {
  font-weight: 600;
  margin-block: 0.5em 1.5em;
}

.header_snav_subtitle {
  border-bottom: 1px solid #e6e6e6;
  margin-block: 2em 1em;
  padding-bottom: 0.75em;
}

.header_snav_subtitle + .header_snav_list {
  margin-left: 1em;
}

.header_snav_item:not(:first-child) {
  margin-top: 1.5rem;
}

.header_nav_switch {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  height: 1.8rem;
  overflow: hidden;
  padding: 0;
  position: absolute;
  top: 1.1rem;
  right: 1rem;
  text-indent: 100%;
  white-space: nowrap;
  width: 2rem;
}

.header_nav_switch::before,
.header_nav_switch::after {
  content: "";
  background-color: var(--color-text-default);
  height: 2px;
  position: absolute;
  left: 0;
  transition: opacity 0.2s;
  width: 100%;
}

.header_nav_switch::before {
  top: 0;
}

.header_nav_switch::after {
  bottom: 0;
}

.header_nav_switch.is-open::before,
.header_nav_switch.is-open::after {
  opacity: 0;
}

.header_nav_switch span::before,
.header_nav_switch span::after {
  content: "";
  background-color: var(--color-text-default);
  height: 2px;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  left: 0;
  transition: transform 0.2s;
  width: 100%;
}

.header_nav_switch.is-open span::before {
  transform: rotate(45deg);
}

.header_nav_switch.is-open span::after {
  transform: rotate(-45deg);
}

.header_language_switcher {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5em;
  margin-top: 0.5em;
}

.header_language_switcher a {
  border: 1px solid var(--color-primary-light);
  border-radius: 0.5em;
  color: var(--color-primary-light);
  display: block;
  font-weight: 600;
  padding: 0.5em 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

/*===============================================
	HEADER ： 1200px以上
===============================================*/
@media screen and (min-width: 1200px) {
  .header_wrap {
    padding: 0;
  }
  .header_inner {
    background-color: #fff;
    height: 100%;
    padding-block: 2rem;
  }
  .header_logo {
    background-image: url(../img/common/header_logo_pc.svg);
    height: 9.8rem;
    margin-inline: auto;
    width: 8.5rem;
  }
  .header_nav {
    height: auto;
    margin-top: 4.8rem;
    opacity: 1;
    overflow-y: visible;
    padding: 0;
    pointer-events: auto;
    position: static;
    transition: none;
    width: 100%;
  }
  .header_gnav_item {
    padding-inline: 1.6rem;
    position: relative;
  }
  .header_gnav_item:not(:first-child) {
    border-top: none;
  }
  .header_gnav_item:not(:first-child)::before {
    content: "";
    background-color: #e6e6e6;
    height: 1px;
    position: absolute;
    top: 0;
    left: 1.6rem;
    width: calc(100% - 3.2rem);
  }
  .header_gnav_item:not(.header_gnav_item_nosnav)::after {
    content: "";
    border: 0.75rem solid transparent;
    border-left: 1.5rem solid #fff;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: transform 0.2s;
  }
  .header_gnav_item:not(.header_gnav_item_nosnav):hover::after {
    transform: translate(100%, -50%);
  }
  .header_gnav_title {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background: transparent;
    border: none;
    color: var(--color-text-default);
    cursor: pointer;
    font-size: 1.4rem;
    padding: 1.5rem 0.25em;
    width: 100%;
  }
  .header_gnav_item:not(.header_gnav_item_nosnav) .header_gnav_title::after {
    display: none;
  }
  .header_snav_wrap {
    background-color: #333;
    display: block;
    height: 100vh;
    opacity: 0;
    overflow-y: auto;
    padding: 14.2rem 3rem 7rem;
    position: fixed;
    top: 0;
    left: var(--width-side-header);
    transform: translateX(-100%);
    transition: opacity 0.25s ease-out, transform 0.25s ease-out;
    width: 29rem;
    z-index: -1;
  }
  .header_gnav_item:hover .header_snav_wrap {
    opacity: 1;
    transform: translateX(0);
  }
  .header_snav_wrap a {
    color: #fff;
    font-size: 1.4rem;
  }
  .header_snav_title {
    margin-bottom: 1.25em;
  }
  .header_snav_title a {
    font-size: 1.6rem;
  }
  .header_snav_subtitle {
    border-bottom-color: #777;
    color: #fff;
    font-size: 1.4rem;
    padding-bottom: 1em;
  }
  .header_snav_item:not(:first-child) {
    margin-top: 1.5rem;
  }
  .header_nav_switch {
    display: none;
  }
  .header_language_switcher {
    grid-template-columns: inherit;
    padding-inline: 1.6rem;
  }
}
/*	多言語対応
--------------------------------------------------------- */
html[lang=en] .header_wrap,
html[lang=en] body {
  margin-top: 39px;
}

#site-translate-header-wrapper {
  background-color: #fff;
  border: 1px dotted #f00;
  height: auto;
  margin: 0 auto;
  padding: 1px;
  position: relative;
  z-index: 100;
}

#site-translate-header-wrapper {
  box-sizing: border-box;
  height: auto;
  position: fixed;
  top: 0;
  text-align: center;
  width: 100% !important;
}

#site-translate-message {
  margin: 0.2em;
  padding: 0.2em 0 0.2em 0.2em;
  text-align: center;
}

#site-translate-message {
  display: flex;
  justify-content: center;
  align-items: center;
}

#site-translate-header-wrapper p {
  color: #000;
  font-family: "ヒラギノ角 Pro W3", "HIragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", sans-serif;
  font-size: 12px;
  margin: 0 !important;
}

#site-translate-header-wrapper p {
  font-size: 10px;
  height: 35px;
  line-height: 12px;
}

/* ---------------------------------------------------------

	FOOTER

--------------------------------------------------------- */
.footer_wrapper {
  background-color: var(--color-primary-darkest);
  color: #eaeaea;
}

.footer_wrapper a {
  color: #fff;
  text-decoration: none;
}

.footer_navi_wrap:not(:first-child),
.footer_navi:not(:first-child) {
  margin-top: 4rem;
}

.footer_navi_inner .footer_navi_wrap:not(:first-child),
.footer_navi_inner .footer_navi:not(:first-child) {
  margin-top: 3rem;
}

.footer_navi_title {
  border-bottom: 1px solid #eaeaea;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  padding-bottom: 0.75em;
}

.footer_navi_title + .footer_navi_title {
  margin-top: 2em;
}

.footer_inner_title {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1em;
}

.footer_navi_sub {
  margin-top: 6rem;
}

.footer_list_item {
  line-height: 1.4;
}

.footer_list_item:not(:first-child) {
  margin-top: 0.75em;
}

.footer_copyright {
  font-size: 1.1rem;
  margin-top: 4rem;
}

.footer_pagetop {
  background-color: var(--color-primary-darkest);
  border-radius: 4.8rem 4.8rem 0 0;
  color: #eaeaea;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 600;
  height: 4.8rem;
  padding-top: 0.5em;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 9.6rem;
}

/*===============================================
	FOOTER ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .footer_navi_main {
    display: flex;
    justify-content: space-between;
    gap: 3em;
    font-size: 1.4rem;
  }
  .footer_navi_inner {
    display: flex;
    gap: 3rem;
  }
  .footer_navi_sub {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    position: relative;
  }
  .footer_navi_sub::before {
    content: "";
    background-color: #fff;
    height: 1px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
  .footer_navi_sub .footer_list {
    display: flex;
    gap: 2rem;
    font-size: 1.4rem;
  }
  .footer_navi_wrap:not(:first-child),
  .footer_navi_sub .footer_list_item:not(:first-child),
  .footer_navi_inner .footer_navi_wrap:not(:first-child) {
    margin-top: 0;
  }
  .footer_copyright {
    margin-top: 0;
  }
}
/*===============================================
	FOOTER ： 1200px以上
===============================================*/
@media screen and (min-width: 1200px) {
  .footer_navi_sub::before {
    width: calc(100vw - var(--width-side-header));
  }
}
/* ---------------------------------------------------------

	MODULE

--------------------------------------------------------- */
/*	ページタイトル
--------------------------------------------------------- */
.module_page_heading {
  background: #0081cc url(../img/common/heading_bg.png) left center/auto 100% no-repeat;
  padding-inline: 2rem;
  position: relative;
}

.module_page_title {
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 600;
  height: 6rem;
  margin-inline: auto;
  max-width: 100rem;
}

/*===============================================
	ページタイトル ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .module_page_title {
    font-size: 2.5rem;
    height: 10rem;
  }
}
/*===============================================
	ページタイトル ： 1200px以上
===============================================*/
@media screen and (min-width: 1200px) {
  .module_page_heading {
    padding-inline: 6rem;
  }
  .module_page_title {
    margin-inline: 0;
    max-width: inherit;
  }
}
/*===============================================
	ページタイトル ： 1400px以上
===============================================*/
@media screen and (min-width: 1400px) {
  .module_page_heading {
    padding-inline: 10rem;
  }
}
/*	パンくずリスト
--------------------------------------------------------- */
.module_breadcrumb {
  color: var(--color-text-default);
  display: flex;
  flex-wrap: wrap;
  font-size: 1.1rem;
  line-height: 1.75;
  margin: 0.6rem auto 3rem;
  max-width: 104rem;
  padding-inline: 2rem;
}

.module_breadcrumb a {
  color: var(--color-text-default);
  text-decoration: none;
}

.module_breadcrumb li:not(:first-child)::before {
  content: "＞";
  margin-inline: 0.5em;
}

/*===============================================
	パンくずリスト ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .module_breadcrumb {
    font-size: 1.4rem;
    margin-top: 0.8rem;
  }
}
/*===============================================
	パンくずリスト ： 1200px以上
===============================================*/
@media screen and (min-width: 1200px) {
  .module_breadcrumb {
    margin-inline: 0;
    max-width: inherit;
    padding-inline: 6rem;
  }
}
/*===============================================
	パンくずリスト ： 1400px以上
===============================================*/
@media screen and (min-width: 1400px) {
  .module_breadcrumb {
    padding-inline: 10rem;
  }
}
/*	セクション
--------------------------------------------------------- */
/*  セクションタイトル  */
.module_section_title {
  border-bottom: 1px solid var(--color-primary-dark);
  color: var(--color-text-dark);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75em;
  padding-bottom: 0.25em;
}

/*  セクションリード  */
.module_section_lead {
  font-size: 1.4rem;
}

/*===============================================
	セクション ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .module_section_title {
    font-size: 2.5rem;
  }
  .module_section_lead {
    font-size: 1.6rem;
  }
}
/*	中見出しタイトル
--------------------------------------------------------- */
.module_title_middle,
.module_post_content h2 {
  color: var(--color-text-dark);
  display: grid;
  grid-template-columns: 1.5em 1fr;
  gap: 0.5em;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1em;
}

.module_title_middle::before,
.module_post_content h2::before {
  content: "";
  background-color: var(--color-primary-dark);
  height: 1px;
  margin-top: 0.75em;
}

.module_title_middle:not(:first-child),
.module_post_content h2:not(:first-child) {
  margin-top: 4rem;
}

/*===============================================
	中見出しタイトル ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .module_title_middle {
    grid-template-columns: 2em 1fr;
    font-size: 2rem;
    margin-bottom: 1.5em;
  }
  .module_title_middle:not(:first-child) {
    margin-top: 9rem;
  }
}
/*	小見出しタイトル
--------------------------------------------------------- */
.module_title_sub,
.module_post_content h3 {
  border-left: 2px solid var(--color-primary-dark);
  color: var(--color-text-dark);
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 1em;
  padding-left: 0.75em;
}

.module_title_sub:not(:first-child),
.module_post_content h3:not(:first-child) {
  margin-top: 2.5rem;
}

/*	ボールドタイトル
--------------------------------------------------------- */
.module_title_bold,
.module_post_content h4 {
  color: var(--color-text-dark);
  font-size: 1em;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5em;
}

.module_title_bold:not(:first-child),
.module_post_content h4:not(:first-child) {
  margin-top: 1.5em;
}

/*	リスト（順序付き）
--------------------------------------------------------- */
.module_list_ordered,
.module_post_content ol {
  padding-left: 1.25em;
}

.module_list_ordered > li,
.module_post_content ol > li {
  list-style: decimal;
}

.module_list_ordered > li:not(:first-child),
.module_post_content ol > li:not(:first-child) {
  margin-top: 0.4em;
}

.module_list_ordered_nest {
  counter-reset: ordered-num;
  margin-top: 0.75em;
}

.module_list_ordered > li:not(:last-child) .module_list_ordered_nest {
  margin-bottom: 0.75em;
}

.module_list_ordered_nest > li::before {
  content: "（" counter(ordered-num) "）";
  counter-increment: ordered-num;
}

/*	リスト（順序なし）
--------------------------------------------------------- */
.module_list_unordered > li,
.module_post_content ul > li {
  padding-left: 1em;
  text-indent: -1em;
}

.module_list_unordered > li:not(:first-child),
.module_post_content ul > li:not(:first-child) {
  margin-top: 0.4em;
}

.module_list_unordered > li::before,
.module_post_content ul > li::before {
  content: "・";
}

.module_list_unordered > li > span.underline {
  text-decoration: underline;
}

/*	ボタン（標準）
--------------------------------------------------------- */
.module_button {
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: 5px;
  color: var(--color-text-dark);
  cursor: pointer;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  max-width: 37rem;
  padding: 0.925em;
  text-align: center;
  text-decoration: none;
  width: 90%;
}

.module_button_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  margin-top: 4rem;
}

/*===============================================
	ボタン（標準） ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .module_button_wrap {
    gap: 4em;
    margin-top: 8rem;
  }
}
/*===============================================
	ボタン（標準） ： マウスホバー
===============================================*/
@media (hover: hover) and (pointer: fine) {
  .module_button {
    transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
  }
  .module_button:hover {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary-light);
    color: #fff;
  }
}
/*	ボタン（ページ遷移）
--------------------------------------------------------- */
.module_button_internal {
  text-align: center;
}

.module_button_internal a {
  color: var(--color-text-dark);
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
}

.module_button_internal a::after {
  content: "→";
  display: inline-block;
  margin-left: 0.25em;
}

/*===============================================
	ボタン（ページ遷移） ： マウスホバー
===============================================*/
@media (hover: hover) and (pointer: fine) {
  .module_button_internal a::after {
    transition: transform 0.3s ease-in-out;
  }
  .module_button_internal a:hover::after {
    transform: translateX(0.25em);
  }
}
/*	ボタン（戻る）
--------------------------------------------------------- */
.module_button_back {
  text-align: center;
}

.module_button_back a {
  color: var(--color-text-dark);
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
}

.module_button_back a::before {
  content: "←";
  display: inline-block;
  margin-right: 0.25em;
}

/*===============================================
	ボタン（戻る） ： マウスホバー
===============================================*/
@media (hover: hover) and (pointer: fine) {
  .module_button_back a::before {
    transition: transform 0.3s ease-in-out;
  }
  .module_button_back a:hover::before {
    transform: translateX(-0.25em);
  }
}
/*	内部リンクナビゲーション
--------------------------------------------------------- */
.module_nav_internal {
  display: flex;
  justify-content: center;
}

.module_nav_internal_item {
  border-left: 1px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
}

.module_nav_internal_item:last-child {
  border-right: 1px solid #ccc;
}

.module_nav_internal_item a {
  color: var(--color-text-default);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.35rem;
  font-weight: 600;
  height: 100%;
  line-height: 1.3;
  padding-block: 0.15em;
  padding-inline: 0.5em;
  position: relative;
  text-align: center;
  text-decoration: none;
}

.module_nav_internal_current a::before {
  content: "";
  background-color: var(--color-text-default);
  display: block;
  height: 1px;
  position: absolute;
  bottom: -0.25em;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2em);
}

.module_nav_internal_current a::after {
  content: "";
  border: 4px solid transparent;
  border-top: 6px solid var(--color-text-default);
  display: block;
  height: 0;
  position: absolute;
  top: calc(100% + 0.25em);
  left: 50%;
  transform: translateX(-50%);
  width: 0;
}

/*===============================================
	内部リンクナビゲーション ： 450px以上
===============================================*/
@media screen and (min-width: 450px) {
  .module_nav_internal_item a {
    font-size: 1.4rem;
    padding-inline: 1em;
  }
}
/*===============================================
	内部リンクナビゲーション ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .module_nav_internal_item a {
    font-size: 1.8rem;
    padding-inline: 1.75em;
  }
  .module_nav_internal_current a::before {
    bottom: -0.5em;
    width: calc(100% - 3.5em);
  }
  .module_nav_internal_current a::after {
    top: calc(100% + 0.5em);
  }
}
/*	記事リスト
--------------------------------------------------------- */
.module_news_list_item {
  border-bottom: 1px solid #ccc;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1em;
  padding-block: 1em;
}

.module_news_list_category {
  background-color: #888;
  border-radius: 5px;
  color: #fff;
  display: block;
  flex: 0 0 auto;
  align-self: flex-start;
  font-size: 1.2rem;
  padding: 0.125em 0.5em;
  text-align: center;
  text-decoration: none;
  width: 8.5em;
}

.module_news_list_press {
  background-color: #6094d0;
}

.module_news_list_notice {
  background-color: #5daf3b;
}

.module_news_list_recruit {
  background-color: #db6565;
}

.module_news_list_title {
  flex-basis: 100%;
  line-height: 1.2;
  text-decoration: none;
}

.module_news_list_title a {
  color: var(--color-text-default);
  font-size: 1.4rem;
  font-weight: 400;
  text-decoration: none;
}

.module_news_list_pdf::after {
  content: "";
  background: url(../img/common/icon_pdf.svg) center/contain no-repeat;
  display: inline-block;
  height: 1.3em;
  margin-left: 0.5em;
  vertical-align: text-bottom;
  width: 1.3em;
}

/*===============================================
	記事リスト ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .module_news_list_item {
    flex-wrap: nowrap;
    gap: 0.5em 1em;
    padding-block: 1em;
  }
  .module_news_list_category {
    margin-top: 0.175em;
  }
  .module_news_list_title {
    flex-basis: auto;
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .module_news_list_title a {
    font-size: 1.6rem;
  }
}
/*	年数セレクト
--------------------------------------------------------- */
.module_news_select {
  display: inline-block;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.module_news_select::after {
  content: "";
  border-right: 1px solid #707070;
  border-bottom: 1px solid #707070;
  display: block;
  height: 1rem;
  position: absolute;
  top: 50%;
  right: 1.125rem;
  transform: translateY(-50%) rotate(45deg);
  width: 1rem;
  z-index: -1;
}

.module_news_select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(204, 204, 204, 0.8);
  color: var(--color-text-dark);
  font-size: 1.6rem;
  padding: 0.5em 2.5em 0.5em 0.5em;
}

/*	ページネーション
--------------------------------------------------------- */
.module_pagination,
.module_pagination_archive {
  margin-top: 5rem;
}

.module_pagination,
.module_pagination_archive ul.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
}

.module_pagination .page-numbers:not(.dots),
.module_pagination_archive ul .page-numbers:not(.dots) {
  border: 1px solid #707070;
  border-radius: 5px;
  color: var(--color-text-default);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  height: 4rem;
  text-decoration: none;
  width: 4rem;
}

.module_pagination .page-numbers.current,
.module_pagination_archive ul .page-numbers.current {
  border-color: var(--color-primary-light);
  color: var(--color-primary-light);
}

/*===============================================
	ページネーション ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .module_pagination,
  .module_pagination_archive {
    margin-top: 8rem;
  }
  .module_pagination,
  .module_pagination_archive ul.page-numbers {
    gap: 1.5em;
    margin-top: 8rem;
  }
  .module_pagination .page-numbers:not(.dots),
  .module_pagination_archive ul .page-numbers:not(.dots) {
    font-size: 2.5rem;
    height: 5.2rem;
    width: 5.2rem;
  }
}
/*===============================================
	ページネーション ： マウスホバー
===============================================*/
@media (hover: hover) and (pointer: fine) {
  .module_pagination a.page-numbers,
  .module_pagination_archive a.page-numbers {
    transition: border-color 0.3s ease-in-out, color 0.3s ease-in-out;
  }
  .module_pagination a.page-numbers:hover,
  .module_pagination_archive a.page-numbers:hover {
    border-color: var(--color-primary-light);
    color: var(--color-primary-light);
  }
}
/*	記事詳細
--------------------------------------------------------- */
.module_post_thumbnail {
  margin-inline: auto;
  margin-bottom: 4rem;
  max-width: 52.8rem;
}

.module_post_title {
  border-bottom: 1px solid var(--color-primary-darkest);
  color: var(--color-text-dark);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 0.5em;
  padding-bottom: 0.25em;
}

.module_post_date {
  display: block;
  margin-top: 0.5em;
  text-align: right;
}

.module_post_content {
  margin-top: 3rem;
}

.module_post_content * + figure,
.module_post_content figure + * {
  margin-top: 2em;
}

.module_post_content .module_button_back {
  margin-top: 6rem;
}

* + .module_post_content .wp-block-file {
  display: grid;
  gap: 1em;
  margin-top: 2em;
}

.module_post_content .wp-block-file:not(.wp-element-button) {
  font-size: 1em;
}

.module_post_content .wp-block-file__button {
  background-color: var(--color-button-main);
  justify-self: start;
  margin-left: 0;
}

.module_post_content .wp-block-file * + .wp-block-file__button {
  margin-left: 0;
}

.module_post_content .wp-block-embed iframe {
  aspect-ratio: 16/9;
  height: auto;
  width: 100%;
}

.module_post_content .wp-block-columns {
  margin-block: 2em;
}

/*===============================================
	記事詳細 ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .module_post_thumbnail {
    margin-bottom: 6rem;
  }
  .module_post_content .module_button_back {
    margin-top: 11.2rem;
  }
  .module_post_content .wp-block-columns {
    margin-block: 3em;
  }
}
/*	アコーディオン + アコーディオン風見出し
--------------------------------------------------------- */
.module_accordion_title button,
.module_title_accordion span {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  border-bottom: 1px solid #eaeaea;
  color: var(--color-text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  padding: 2rem 2rem 2rem 0;
  text-align: left;
  width: 100%;
}

.module_title_middle + .module_title_accordion,
.module_title_accordion:not(:first-child) {
  margin-top: 4rem;
}

.module_title_accordion span {
  padding-top: 0;
}

.module_accordion_title button::after {
  content: "";
  border-right: 2px solid var(--color-text-dark);
  border-bottom: 2px solid var(--color-text-dark);
  display: block;
  height: 0.6rem;
  margin-left: 2rem;
  transform: rotate(45deg);
  transition: transform 0.2s;
  width: 0.6rem;
}

.module_accordion_title button.is-open::after {
  transform: rotate(45deg) scale(-1, -1);
}

.module_accordion_data {
  display: none;
  padding-block: 2.5rem 5rem;
}

/*===============================================
	アコーディオン + アコーディオン風見出し ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .module_title_middle + .module_title_accordion,
  .module_title_accordion:not(:first-child) {
    margin-top: 8rem;
  }
}
/*	表組み（ボーダーあり）
--------------------------------------------------------- */
.module_table_border {
  border-bottom: 1px solid #ddd;
  display: flex;
  flex-wrap: wrap;
}

* + .module_table_border {
  margin-top: 2rem;
}

.module_table_border_title {
  border-top: 1px solid #ddd;
  display: flex;
  flex-basis: 40%;
  align-items: center;
  font-weight: 600;
  padding: 1em 1em 1em 0.5em;
}

.module_table_border_data {
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  display: flex;
  flex: 0 0 60%;
  align-items: center;
  padding: 1em 0.5em 1em 1em;
  word-break: break-all;
}

/*===============================================
	表組み（ボーダーあり） ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  * + .module_table_border {
    margin-top: 4rem;
  }
  .module_table_border_title {
    flex-basis: 38%;
    padding: 1.75em;
  }
  .module_table_border_data {
    flex-basis: 62%;
    padding: 1.75em 2.5em;
    word-break: normal;
  }
}
/*	表組み（ボーダーなし）
--------------------------------------------------------- */
* + .module_table_noborder {
  margin-top: 2rem;
}

.module_table_noborder_title {
  background-color: #f5f5f5;
  color: var(--color-text-dark);
  font-weight: 600;
  padding: 0.5em 1em;
}

.module_table_noborder_data {
  padding: 1em 1em 1.5em;
}

/*===============================================
	表組み（ボーダーなし） ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .module_table_noborder {
    display: flex;
    flex-wrap: wrap;
    row-gap: 1px;
  }
  * + .module_table_noborder {
    margin-top: 4rem;
  }
  .module_table_noborder_title {
    display: flex;
    flex-basis: 15rem;
    justify-content: center;
    align-items: center;
    padding: 1em;
  }
  .module_table_noborder_data {
    flex-basis: calc(100% - 15rem);
    padding: 1em 2em;
  }
}
/*	表組み（ヘッダーあり）
--------------------------------------------------------- */
.module_table_header {
  border-bottom: 1px solid #ddd;
  width: 100%;
}

* + .module_table_header {
  margin-top: 2rem;
}

.module_table_header th {
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  font-weight: 600;
  padding: 1em;
  text-align: left;
}

.module_table_header td {
  border-top: 1px solid #ddd;
  padding: 1em;
}

.module_table_header th:where(:not(:first-child)),
.module_table_header td:where(:not(:first-child)) {
  border-left: 1px solid #ddd;
  text-align: center;
}

.module_table_header caption {
  font-size: 0.85em;
  margin-bottom: 0.5em;
  text-align: right;
}

/*===============================================
	表組み（ヘッダーあり） ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  * + .module_table_header {
    margin-top: 4rem;
  }
  .module_table_header th {
    padding: 1.25em 1.75em;
  }
  .module_table_header td {
    padding: 1.75em;
  }
}
/*	PDFボックス
--------------------------------------------------------- */
.module_pdf_box {
  background-color: #f5f5f5;
  margin-top: 2rem;
  padding: 2rem;
  text-align: center;
}

.module_pdf_box_text {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  margin-top: 1.5rem;
}

/*===============================================
	PDFボックス ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .module_pdf_box {
    display: flex;
    align-items: center;
    gap: 4.5rem;
    padding: 3.5rem 4rem;
    text-align: left;
  }
}
/*	テキスト類
--------------------------------------------------------- */
.module_notice_pdf {
  margin-top: 4rem;
  padding-left: 1em;
  text-align: right;
  text-indent: -1em;
}

.module_notice_date {
  text-align: right;
}

/*	アイコン類
--------------------------------------------------------- */
.layout_section :not(.module_not_icon) > a[target=_blank]::after {
  content: "";
  background: url(../img/common/icon_blank.svg) center/contain no-repeat;
  display: inline-block;
  height: 0.9em;
  margin-inline: 0.3em;
  vertical-align: baseline;
  width: 0.9em;
}

.layout_section :not(.module_not_icon) > a[href$=".pdf"]::after {
  content: "";
  background: url(../img/common/icon_pdf.svg) center/contain no-repeat;
  display: inline-block;
  height: 1.3em;
  margin-inline: 0.5em 0;
  vertical-align: text-bottom;
  width: 1.3em;
}

/*	SP対応：表組み横スクロール
--------------------------------------------------------- */
/*===============================================
	SP対応：表組み横スクロール ： 768px未満
===============================================*/
@media screen and (max-width: 767px) {
  .module_table_wrap {
    overflow-x: auto;
  }
  .module_table_wrap table {
    width: 80rem;
  }
}
/*	アンカーリンク
--------------------------------------------------------- */
.module_anchor_link {
  scroll-margin-top: calc(var(--height-fixed-header) + 1em);
}

/*===============================================
	アンカーリンク ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .module_anchor_link {
    scroll-margin-top: 2em;
  }
}
/*	インデックスページ
--------------------------------------------------------- */
.module_index_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.module_index_list_item a {
  color: #fff;
  display: block;
  font-size: 2rem;
  font-weight: 600;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.module_index_list_item a::after {
  content: "";
  background-color: #9a9a9a;
  height: 100%;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.module_index_list_item p {
  display: grid;
  place-items: center;
  padding-inline: 1em;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
}

/*===============================================
	インデックスページ ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .module_index_list {
    gap: 2rem;
  }
  .module_index_list_item {
    flex-basis: calc((100% - 2rem) / 2);
  }
}
/*===============================================
	インデックスページ ： 1200px以上
===============================================*/
@media screen and (min-width: 1200px) {
  .module_index_list_item {
    flex-basis: calc((100% - 4rem) / 3);
  }
}
/*===============================================
	インデックスページ ： マウスホバー
===============================================*/
@media (hover: hover) and (pointer: fine) {
  .module_index_list_item img {
    transition: transform 0.6s;
  }
  .module_index_list_item a:hover img {
    transform: scale(1.15);
  }
  .module_index_list_item a:hover {
    opacity: 1;
  }
}
/*	株価ボード・株価チャートの言語切替
--------------------------------------------------------- */
.module_language_changer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75em;
  margin-block: -2em 0.5em;
}

.module_stock_price_wrap + .module_language_changer {
  margin-top: 1.5em;
}

.module_language_changer button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 0.5em;
  color: #ccc;
  cursor: pointer;
  font-weight: 600;
  padding: 0.5em 0;
  width: 4.5em;
}

.module_language_changer button.is-current {
  border-color: var(--color-primary-light);
  color: var(--color-primary-light);
}

/*===============================================
	株価ボード・株価チャートの言語切替 ： マウスホバー
===============================================*/
@media (hover: hover) and (pointer: fine) {
  .module_language_changer button {
    transition: opacity 0.6s;
  }
  .module_language_changer button:hover {
    opacity: 0.8;
  }
}
/*	株価ボード
--------------------------------------------------------- */
/*===============================================
	株価ボード ： 768px未満
===============================================*/
@media screen and (max-width: 767px) {
  .module_stock_price_wrap {
    margin-inline: auto;
    max-width: 28rem;
  }
  .module_stock_price_first img {
    aspect-ratio: 1.04/1;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: left center;
       object-position: left center;
  }
  .module_stock_price_second img {
    aspect-ratio: 1.2/1;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 41% center;
       object-position: 41% center;
  }
  .module_stock_price_third img {
    aspect-ratio: 1.5/1;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: right center;
       object-position: right center;
  }
}
/*===============================================
	株価ボード ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .module_stock_price_second,
  .module_stock_price_third {
    display: none;
  }
}
/* ---------------------------------------------------------

	PAGE

--------------------------------------------------------- */
/*	トップページ
--------------------------------------------------------- */
.home_mv_wrap {
  background-color: #333;
}

.home_mv_wrap video {
  aspect-ratio: 1/1;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.home_title_section {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4rem;
  text-align: center;
}

.home_title_section::after {
  content: "";
  background-color: var(--color-primary-dark);
  height: 2px;
  position: absolute;
  top: 1.75em;
  left: 50%;
  transform: translateX(-50%);
  width: 6rem;
}

.home_title_section span {
  display: block;
  font-size: 0.6em;
  margin-top: 2.2em;
  text-transform: uppercase;
}

.home_index_list {
  display: grid;
  gap: 1.5em;
}

.home_index_list a {
  aspect-ratio: 2.7/1;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  font-weight: 600;
  overflow: hidden;
  padding-inline: 1em;
  position: relative;
  text-align: center;
  text-decoration: none;
}

.home_index_list a::before {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.home_index_message a::before {
  background-image: url(../img/home/index_img_message.jpg);
}

.home_index_ir a::before {
  background-image: url(../img/home/index_img_ir.jpg);
}

.home_index_strategy a::before {
  background-image: url(../img/home/index_img_strategy.jpg);
}

.home_index_sustainability a::before {
  background-image: url(../img/home/index_img_sustainability.jpg);
}

.home_index_list span {
  z-index: 1;
}

/*===============================================
	トップページ ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .home_mv_wrap {
    height: 100svh;
    -o-object-fit: cover;
       object-fit: cover;
    overflow-y: hidden;
  }
  .home_mv_wrap.is_vertical {
    aspect-ratio: 3/2;
    height: auto;
    width: 100%;
  }
  .home_mv_wrap.is_horizontal {
    -o-object-fit: contain;
       object-fit: contain;
    text-align: center;
  }
  .home_mv_wrap video {
    aspect-ratio: 3/2;
  }
  .home_mv_wrap.is_horizontal video {
    width: auto;
  }
  .home_title_section {
    font-size: 2.5rem;
    margin-bottom: 6.4rem;
  }
  .home_news_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .home_news_wrap .module_news_list_item {
    padding-right: 2em;
  }
  .home_news_archive {
    text-align: right;
  }
  .home_index_list {
    grid-template-columns: 1fr 1fr;
  }
  .home_index_list a {
    font-size: 2rem;
  }
}
/*===============================================
	トップページ ： マウスホバー
===============================================*/
@media (hover: hover) and (pointer: fine) {
  .home_index_list a::before {
    transition: transform 0.6s;
  }
  .home_index_list a:hover {
    opacity: 1;
  }
  .home_index_list a:hover::before {
    transform: scale(1.2);
  }
}
/*	トップメッセージ
--------------------------------------------------------- */
.message_box {
  display: grid;
  gap: 2em;
}

.message_box + .message_box {
  border-top: 1px solid #ccc;
  padding-top: 3em;
}

.message_box_title {
  margin-bottom: 1.5em;
}

.message_box_title img {
  height: 8.8rem;
  width: auto;
}

.message_box:nth-of-type(2) .message_box_title img {
  height: 10.3rem;
}

.message_box_name {
  text-align: right;
}

.message_box_name img {
  height: 4.8rem;
  width: auto;
}

.message_box_profile {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: right;
}

.message_box_photo {
  text-align: center;
}

.message_box_photo img {
  max-width: 19rem;
}

/*===============================================
	トップページ ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .message_box {
    grid-template-columns: 1fr 22rem;
    gap: 7em;
  }
  .message_box + .message_box {
    padding-top: 5em;
  }
  .message_box_title {
    margin-bottom: 2em;
  }
  .message_box_title img {
    height: 14.3rem;
  }
  .message_box:nth-of-type(2) .message_box_title img {
    height: 16.8rem;
  }
  .message_box_name {
    margin-block: 2.5em 1.5em;
  }
  .message_box_name img {
    height: 5.6rem;
  }
  .message_box_photo {
    place-self: start;
  }
}
/*	経営理念・方針
--------------------------------------------------------- */
.philosophy_gallery_wrap {
  padding-bottom: 15%;
  position: relative;
}

.philosophy_gallery_wrap::before {
  content: "";
  background: url(../img/company/philosophy_bird.svg) right top/contain no-repeat;
  display: block;
  height: 85%;
  position: absolute;
  top: 25%;
  right: 0;
  width: 700%;
  z-index: -1;
}

.philosophy_gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3em;
}

.philosophy_gallery_item {
  flex-basis: calc((100% - 2rem) / 2);
}

/*===============================================
	経営理念・方針 ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .philosophy_gallery_wrap {
    padding-bottom: 5%;
  }
  .philosophy_gallery_wrap::before {
    height: 102%;
    top: 23%;
    width: 230%;
  }
  .philosophy_gallery_item {
    flex-basis: calc((100% - 6rem) / 4);
  }
}
/*	コーポレートガバナンス
--------------------------------------------------------- */
.governance_title {
  background-color: #f7f7f7;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 4rem;
  padding: 1em;
  text-align: center;
}

/*===============================================
	コーポレートガバナンス ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .governance_title {
    font-size: 1.8rem;
    margin-bottom: 6rem;
  }
}
/*	会社概要・沿革・組織図・役員一覧
--------------------------------------------------------- */
.outline_list_wrap {
  border-left: 2px solid var(--color-primary-dark);
}

.outline_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  padding-block: 0.75em;
}

.outline_list_title {
  flex-basis: 8em;
  font-weight: 600;
  padding-left: 0.75em;
}

.outline_list_data {
  flex-basis: calc(100% - 8em - 1em);
}

.outline_2column {
  display: grid;
}

.outline_2column + .outline_2column {
  margin-top: 3rem;
}

.outline_history_link {
  margin-top: 1.5em;
}

.outline_table_header th,
.outline_table_header td {
  padding: 1em 0.75em;
  text-align: left;
}

.outline_table_header td:first-child {
  white-space: nowrap;
}

.outline_notice_wrap {
  margin-top: 3rem;
  text-align: right;
}

.outline_notice_list {
  display: inline-block;
  font-size: 0.85em;
  text-align: left;
}

/*===============================================
	会社概要・沿革・組織図・役員一覧 ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .outline_list_title {
    flex-basis: 7em;
  }
  .outline_list_data {
    flex-basis: calc(100% - 7em - 1em);
  }
  .outline_2column {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .outline_2column + .outline_2column {
    margin-top: 6rem;
  }
  .outline_2column .outline_list_wrap:first-child .outline_list_title {
    flex-basis: 6em;
  }
  .outline_2column .outline_list_wrap:first-child .outline_list_data {
    flex-basis: calc(100% - 6em - 1em);
  }
  .outline_2column .outline_list_wrap:last-child .outline_list_title {
    flex-basis: 8em;
  }
  .outline_2column .outline_list_wrap:last-child .outline_list_data {
    flex-basis: calc(100% - 8em - 1em);
  }
  .outline_table_header th,
  .outline_table_header td {
    padding: 1em 2em;
  }
  .outline_notice_list {
    font-size: 1em;
  }
}
/*	こんなところにヤマエ
--------------------------------------------------------- */
.layout_main-discovery {
  background: #e9f3ff;
  margin-bottom: 0;
  padding-bottom: 0;
}

.discovery {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.discovery__title {
  color: #333;
  display: flex;
  align-items: center;
  margin: 2.5vh 0 2vh;
}

.discovery__title-block {
  padding: 2vh 10vh 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}

.discovery__title--main {
  display: inline-block;
  margin-right: 3vh;
  padding: 0.1em 0;
  position: relative;
}

.discovery__title--main .main-en {
  font-size: 4vh;
  font-weight: 400;
}

.discovery__title--main .main-jp {
  font-size: 1.3vh;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-40%);
  white-space: nowrap;
}

.discovery__title--sub {
  font-size: 1.8vh;
  font-weight: 600;
}

.discovery__text {
  font-size: 1.6vh;
  line-height: 1.35;
}

.discovery__kv-block {
  height: 95vh;
  margin-bottom: 15vh;
  /*padding-top: 18vh;*/
  /*height: 100vh;
  min-height: 1000px;*/
  overflow-x: auto;
  position: relative;
  width: 100%;
}

.discovery__kv-block-inner {
  display: block;
  margin: 18vh auto 0;
  position: relative;
  /*position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);*/
  /*width: 856px;
  height: 578px;*/
  width: 111.0726643599vh;
}

.discovery__kv-block-inner .kv {
  width: 100%;
}

.discovery__kv-block-inner .kv img {
  width: 100%;
}

.discovery__kv-block-inner .mark {
  cursor: pointer;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.45));
  padding: 2% 0 2%;
  position: absolute;
  transition: 0.3s all;
  z-index: 5;
}

.discovery__kv-block-inner .mark img {
  width: 2.491349481vh;
}

.discovery__kv-block-inner .mark:hover,
.discovery__kv-block-inner .mark:active {
  animation: float-01 1s linear infinite;
  opacity: 1;
  transform: scale(1.1);
}

.discovery__kv-block-inner .mark.mark-01 {
  top: 53%;
  left: 29%;
}

.discovery__kv-block-inner .mark.mark-02 {
  top: 71%;
  left: 57%;
}

.discovery__kv-block-inner .mark.mark-03 {
  top: 47%;
  left: 20%;
}

.discovery__kv-block-inner .mark.mark-04 {
  top: 36%;
  left: 28.5%;
}

.discovery__kv-block-inner .mark.mark-05 {
  top: 78%;
  left: 34%;
}

.discovery__kv-block-inner .mark.mark-06 {
  top: 58%;
  left: 6%;
}

.discovery__kv-block-inner .mark.mark-07 {
  top: 70%;
  left: 88%;
}

.discovery__kv-block-inner .mark.mark-08 {
  top: 23%;
  left: 18%;
}

.discovery__kv-block-inner .mark.mark-09 {
  top: 22%;
  left: 26%;
}

.discovery__kv-block-inner .mark.mark-10 {
  top: 4%;
  left: 31%;
}

.discovery__kv-block-inner .mark.mark-11 {
  top: 3%;
  left: 41%;
}

.discovery__kv-block-inner .mark.mark-12 {
  top: 3%;
  left: 56%;
}

.discovery__kv-block-inner .mark.mark-13 {
  top: 43%;
  left: 35%;
}

.discovery__kv-block-inner .mark.mark-14 {
  top: 37%;
  left: 47%;
}

.discovery__kv-block-inner .mark.mark-15 {
  top: 25%;
  left: 54.5%;
}

.discovery__kv-block-inner .mark.mark-16 {
  top: 17.5%;
  left: 61.5%;
}

.discovery__kv-block-inner .mark.mark-17 {
  top: 12%;
  left: 69%;
}

.discovery__kv-block-inner .mark.mark-18 {
  top: 51%;
  left: 56%;
}

.discovery__kv-block-inner .mark.mark-19 {
  top: 38%;
  left: 67%;
}

.discovery__kv-block-inner .mark.mark-20 {
  top: 27%;
  left: 81%;
}

.discovery__kv-block-inner .mark.mark-21 {
  top: 60%;
  left: 66%;
}

.discovery__kv-block-inner .mark.mark-22 {
  top: 48%;
  left: 76%;
}

.discovery__kv-block-inner .mark.mark-23 {
  top: 46%;
  left: 83%;
}

.discovery__kv-block-inner .mark.mark-24 {
  top: 40%;
  left: 90%;
}

.discovery .bird-01 {
  max-width: 1920px;
  /*display: none;*/
  pointer-events: none;
  position: absolute;
  top: -5%;
  right: -5%;
  width: 162.9065743945vh;
  z-index: 5;
}

.discovery .bird-02 {
  display: none;
  max-width: 1920px;
  pointer-events: none;
  position: absolute;
  top: -5%;
  right: -5%;
  width: 162.9065743945vh;
  z-index: 5;
}

.discovery .bird-03 {
  max-width: 1800px;
  /*display: none;*/
  pointer-events: none;
  position: absolute;
  top: -15%;
  right: -5%;
  width: 148.0968858131vh;
  z-index: 5;
}

.discovery .icon {
  position: absolute;
  z-index: 2;
}

.discovery .icon img {
  width: 100%;
}

.discovery .icon-float-01 {
  animation: float-01 1.1s linear infinite;
}

.discovery .icon-float-02 {
  animation: float-02 1.8s ease-in-out infinite;
}

.discovery .icon-float-03 {
  animation: float-03 1.5s linear infinite;
}

.discovery .icon-float-04 {
  animation: float-04 3s linear infinite;
}

.discovery .icon-float-05 {
  animation: float-05 1s ease-out infinite;
}

.discovery .icon-float-06 {
  animation: float-05 1.4s ease-in infinite;
  transform-origin: 100% 100%;
}

.discovery .icon-float-07 {
  animation: float-07 1.6s linear infinite;
}

.discovery .icon-float-08 {
  animation: float-08 1.9s linear infinite;
}

.discovery .icon-wave-01 {
  animation: wave-01 2s linear infinite;
  transform-origin: 0 100%;
}

.discovery .icon-wave-02 {
  animation: wave-02 2.5s ease-in-out infinite;
  transform-origin: 18% 100%;
}

.discovery .icon-bound-01 {
  animation: bound-01 0.7s cubic-bezier(0.662, 0.115, 0.88, 0.1) infinite alternate;
}

.discovery .icon-drive-01 {
  animation: drive-01 10s ease-in-out;
  transform-origin: 18% 100%;
}

.discovery .icon-wine {
  top: -4%;
  left: 57%;
  width: 11.3494809689vh;
}

.discovery .icon-wine {
  top: -4%;
  left: 57%;
  width: 11.3494809689vh;
}

.discovery .icon-chocolate {
  top: 11.8%;
  left: 70.2%;
  width: 9.8269896194vh;
}

.discovery .icon-candy {
  top: 8%;
  left: 75%;
  width: 7.6124567474vh;
}

.discovery .icon-PC {
  top: 9.5%;
  left: 28%;
  width: 6.9204152249vh;
}

.discovery .icon-octopus {
  top: 77%;
  left: 78%;
  width: 6.6435986159vh;
}

.discovery .icon-ball {
  top: 70%;
  /*left: 73%;
  top: 80%;*/
  left: 70%;
  width: 1.7993079585vh;
}

.discovery .icon-shrimp {
  top: 88%;
  left: 93%;
  width: 7.4740484429vh;
}

.discovery .icon-pig {
  top: 58%;
  left: 23.5%;
  width: 7.8011953444vh;
}

.discovery .icon-ship {
  top: 76.4%;
  left: 43%;
  width: 10.4575163399vh;
}

.discovery .icon-fish {
  top: 74.5%;
  left: 54%;
  width: 7.7059758721vh;
}

.discovery .icon-oyster {
  top: 80%;
  left: 32%;
  width: 5.8131487889vh;
}

.discovery .icon-rice {
  top: 33%;
  left: 70%;
  width: 3.4832756632vh;
}

.discovery .icon-lunchbox {
  top: 42.2%;
  left: 58.5%;
  width: 5.3588856357vh;
}

.discovery .icon-board {
  top: 67%;
  left: 79.5%;
  width: 2.76816609vh;
}

.discovery .icon-sushi {
  top: 76%;
  left: 5%;
  width: 8.3044982699vh;
}

.discovery .icon-flag-01 {
  top: 70%;
  left: 13.5%;
  width: 7.7508650519vh;
}

.discovery .icon-flag-02 {
  top: 69%;
  left: 93.5%;
  width: 7.0588235294vh;
}

.discovery .icon-track {
  top: 50.5%;
  left: 59%;
  width: 6.9716775599vh;
}

.discovery .icon-hospital {
  top: 37.1%;
  left: 40.8%;
  width: 10.988780539vh;
  z-index: 3;
}

.discovery .modal {
  display: none;
  overflow: auto;
  position: absolute;
  top: 0;
  right: 5%;
  transition: all 1s ease-in-out;
  z-index: 9;
}

.discovery .modal__content {
  animation: show 0.6s linear 0s;
  max-width: 506px;
  min-width: 300px;
  padding: 100px 15px 15px;
  width: 100%;
}

.discovery .modal__content-inner {
  background: #fff;
  border-radius: 20px;
  box-shadow: 8px 10px 0 0 rgba(0, 0, 0, 0.16);
  padding: 30px 55px;
  position: relative;
  z-index: 3;
}

.discovery .modal__content .modal-close {
  border: 1px solid #9d9d9d;
  border-radius: 50%;
  cursor: pointer;
  height: 24px;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
}

.discovery .modal__content .modal-close::before,
.discovery .modal__content .modal-close::after {
  content: "";
  background: #707070;
  height: 1px;
  position: absolute;
  top: 10px;
  right: 3px;
  width: 16px;
}

.discovery .modal__content .modal-close::before {
  transform: rotate(45deg);
}

.discovery .modal__content .modal-close::after {
  transform: rotate(-45deg);
}

.discovery .modal__content::before {
  content: "";
  background: rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  height: 110px;
  position: absolute;
  top: 80px;
  left: calc(50% + 8px);
  transform: translateX(-50%);
  width: 110px;
  z-index: -2;
}

.discovery .modal__content::after {
  content: "";
  background: #fff;
  border-radius: 50%;
  height: 110px;
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  z-index: -1;
}

.discovery .modal__inner-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 72px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -35%);
  width: 110px;
}

.discovery .modal__inner-icon img {
  height: 100%;
  width: auto;
}

.discovery .modal__inner-title {
  border-bottom: 1px solid #ccc;
  color: var(--color-text-dark);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 1.5em auto 0;
  padding-bottom: 0.5em;
  text-align: center;
}

.discovery .modal__inner-title:nth-of-type(n+2) {
  margin-top: 1.25em;
}

.discovery .modal__inner-text {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 1.6rem;
}

.discovery .modal__inner-text a {
  text-decoration: none;
}

.discovery .modal__inner-text ul {
  margin-block: 0.25em;
  margin-left: 1em;
}

.discovery .modal__inner-text ul li::before {
  content: "ー ";
}

.discovery .scroll-hint-icon-wrap {
  z-index: 9;
}

/*===============================================
	こんなところにヤマエ ： 1200px未満
===============================================*/
@media screen and (max-width: 1199px) {
  .discovery__kv-block {
    height: auto;
  }
  .discovery__title {
    margin: 20px 0 10px;
  }
  .discovery__title-block {
    padding: 0 50px;
  }
}
/*===============================================
	こんなところにヤマエ ： 768px未満
===============================================*/
@media screen and (max-width: 767px) {
  .discovery .modal {
    right: 0;
  }
  .discovery__title {
    display: block;
    margin: 20px 0 10px;
  }
  .discovery__title-block {
    padding: 0 20px;
    position: relative;
  }
  .discovery__title--main {
    display: inline-block;
    margin-right: 0;
    padding: 0.1em 0;
    position: relative;
  }
  .discovery__title--main .main-en {
    font-size: 2.4rem;
  }
  .discovery__title--main .main-jp {
    font-size: 1rem;
  }
  .discovery__title--sub {
    font-size: 1.4rem;
    margin: 0.2em 0 0.5em;
  }
  .discovery .modal__content-inner {
    padding: 30px;
  }
  .discovery__text {
    font-size: 1.4rem;
  }
  .discovery__kv-block-inner {
    margin-top: 5vh;
  }
}
/*===============================================
	こんなところにヤマエ ： アニメーション
===============================================*/
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes float-01 {
  0% {
    margin-top: 0;
  }
  50% {
    margin-top: -7px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes float-02 {
  0% {
    margin-top: 0;
  }
  25% {
    margin-top: 4px;
  }
  50% {
    margin-top: 0;
  }
  75% {
    margin-top: -4px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes float-03 {
  0% {
    margin-top: 0;
  }
  50% {
    margin-top: -4px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes float-04 {
  0% {
    margin-top: 0;
    transform: rotate(0);
  }
  25% {
    transform: rotate(2deg);
  }
  50% {
    margin-top: -1px;
    transform: rotate(0);
  }
  75% {
    transform: rotate(-2deg);
  }
  100% {
    margin-top: 0;
    transform: rotate(0);
  }
}
@keyframes float-05 {
  0% {
    margin-top: 0;
    transform: rotate(0);
  }
  25% {
    transform: rotate(5deg);
  }
  50% {
    margin-top: -8px;
    transform: rotate(0);
  }
  75% {
    transform: rotate(-5deg);
  }
  100% {
    margin-top: 0;
    transform: rotate(0);
  }
}
@keyframes float-06 {
  0% {
    margin-top: 0;
    transform: rotate(0);
  }
  12.5% {
    transform: rotate(10deg);
  }
  25% {
    transform: rotate(0deg);
  }
  37.5% {
    transform: rotate(-10deg);
  }
  50% {
    margin-top: -10px;
    transform: rotate(0deg);
  }
  62.5% {
    transform: rotate(10deg);
  }
  75% {
    transform: rotate(0deg);
  }
  87.5% {
    transform: rotate(-10deg);
  }
  100% {
    margin-top: 0;
    transform: rotate(0);
  }
}
@keyframes float-07 {
  0% {
    margin-top: 0;
    transform: rotate(0);
  }
  25% {
    transform: rotate(8deg);
  }
  50% {
    margin-top: -3px;
    transform: rotate(0);
  }
  75% {
    transform: rotate(-8deg);
  }
  100% {
    margin-top: 0;
    transform: rotate(0);
  }
}
@keyframes float-08 {
  0% {
    margin-top: 0;
    transform: rotate(0);
  }
  25% {
    transform: rotate(2deg);
  }
  50% {
    margin-top: -3px;
    transform: rotate(0);
  }
  75% {
    transform: rotate(-2deg);
  }
  100% {
    margin-top: 0;
    transform: rotate(0);
  }
}
@keyframes wave-01 {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(0);
  }
  75% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes wave-02 {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes bound-01 {
  from {
    transform: translateY(0) scale(1, 1);
  }
  10% {
    transform: translateY(0.2px) scale(1, 1);
  }
  20% {
    transform: translateY(0.5px) scale(1, 1);
  }
  96% {
    transform: translateY(26px) scale(1, 1);
  }
  97% {
    transform: translateY(28px) scale(0.9, 1);
  }
  98% {
    transform: translateY(29px) scale(0.9, 0.8);
  }
  99% {
    transform: translateY(29.7px) scale(1, 0.5);
  }
  to {
    transform: translateY(30px) scale(1, 0.5);
  }
}
@keyframes drive-01 {
  0% {
    top: 20%;
    left: 31%;
  }
  100% {
    top: 50.5%;
    left: 59%;
  }
}
/*	拡がる事業領域
--------------------------------------------------------- */
.page-template-page-business-network .layout_wrapper {
  overflow: visible;
}

.page-template-page-business-network .layout_main {
  padding-bottom: 0;
}

.page-template-page-business-network .layout_footer {
  margin-top: 12.8rem;
}

.network_start {
  font-size: 1.7rem;
  font-weight: 600;
  padding-bottom: 5em;
  position: relative;
  text-align: center;
}

.network_start::after {
  content: "";
  border: 1.5em solid transparent;
  border-top-color: #e8e8e8;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.network_box {
  margin-top: 6rem;
  scroll-margin-top: 8.5em;
}

.network_menu_wrap {
  background-color: #fff;
  padding-block: 2em;
  position: sticky;
  top: var(--height-fixed-header);
  width: 100%;
  z-index: 1;
}

.network_menu_wrap::after {
  content: "";
  background-color: var(--color-text-default);
  display: block;
  height: 1.5px;
  position: absolute;
  bottom: 2em;
  left: calc((100% - 4.5em) / 4 / 2);
  width: calc(100% - (100% - 4.5em) / 4);
}

.network_menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5em;
  height: 8.5rem;
}

.network_menu li {
  padding-block: 1em;
  position: relative;
}

.network_menu li::after {
  content: "";
  background-color: var(--color-text-default);
  border: 1px solid var(--color-text-default);
  border-radius: 50%;
  height: 0.6rem;
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
  width: 0.6rem;
  z-index: 1;
}

.network_menu li.is_current::after {
  background-color: #fff;
  border: 3px solid transparent;
  height: 2rem;
  bottom: -0.9rem;
  width: 2rem;
}

.network_menu .network_menu_procurement.is_current::after {
  border-color: #e85e5e;
}

.network_menu .network_menu_production.is_current::after {
  border-color: #e88d1f;
}

.network_menu .network_menu_logistics.is_current::after {
  border-color: #5daf3b;
}

.network_menu .network_menu_retail.is_current::after {
  border-color: var(--color-button-main);
}

.network_menu a {
  color: var(--color-text-default);
  display: block;
  font-size: 0.85em;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: color 0.3s, font-size 0.3s;
}

.network_menu .is_current a {
  font-size: 0.9em;
}

.network_menu_procurement.is_current a,
#network_procurement .network_box_title {
  color: #e85e5e;
}

.network_menu_production.is_current a,
#network_production .network_box_title {
  color: #e88d1f;
}

.network_menu_logistics.is_current a,
#network_logistics .network_box_title {
  color: #5daf3b;
}

.network_menu_retail.is_current a,
#network_retail .network_box_title {
  color: var(--color-button-main);
}

.network_menu a small {
  display: block;
}

.network_menu_icon {
  display: block;
  fill: var(--color-text-default);
  height: 2rem;
  margin-inline: auto;
  transition: fill 0.3s, height 0.3s, width 0.3s;
  width: 4rem;
}

.network_menu .is_current .network_menu_icon {
  height: 2.5rem;
  width: 5rem;
}

.network_menu_procurement.is_current .network_menu_icon,
#network_procurement .network_box_title_icon {
  fill: #e85e5e;
}

.network_menu_production.is_current .network_menu_icon,
#network_production .network_box_title_icon {
  fill: #e88d1f;
}

.network_menu_logistics.is_current .network_menu_icon,
#network_logistics .network_box_title_icon {
  fill: #5daf3b;
}

.network_menu_retail.is_current .network_menu_icon,
#network_retail .network_box_title_icon {
  fill: var(--color-button-main);
}

.network_box_title {
  background-color: #fff;
  border-bottom: 1px solid #dfdfdf;
  display: flex;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 400;
  padding-block: 3em 0.25em;
  position: sticky;
  top: calc(var(--height-fixed-header) + 8rem);
}

.network_box_title_icon {
  display: block;
  height: 1em;
  padding-top: 0.25em;
  width: 1.75em;
}

.network_box_title small {
  font-size: 0.5em;
}

.network_box_subtitle {
  font-weight: 600;
}

.network_box_images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  gap: 1em;
  margin-block: 1em;
}

.network_box_list_wrap {
  border-top: 1px solid #dfdfdf;
  margin-top: 0.75em;
  padding-top: 0.75em;
}

.network_box_list_wrap .network_box_list + .network_box_list {
  margin-top: 0.25em;
}

.network_box_list li + li {
  margin-top: 0.25em;
}

.network_box_list a {
  border-bottom: 1px dotted var(--color-text-default);
  color: var(--color-text-default);
  text-decoration: none;
}

.network_box_note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em 1em;
  font-size: 0.85em;
  margin-top: 1.5em;
}

.network_box i {
  font-style: normal;
}

.network_icon_food {
  color: #0281cc;
}

.network_icon_livestock {
  color: #06b050;
}

.network_icon_housing {
  color: #82720c;
}

.network_icon_other {
  color: #7f7f7f;
}

.network_icon_oversea {
  color: #f00;
}

/*===============================================
	拡がる事業領域 ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .network_start {
    font-size: 2.5rem;
    padding-bottom: 4.5em;
  }
  .network_box {
    scroll-margin-top: 10em;
  }
  .network_menu_wrap {
    padding-block: 3em;
  }
  .network_menu_wrap::after {
    bottom: 3em;
  }
  .network_menu {
    height: 10rem;
  }
  .network_menu li::after {
    height: 0.8rem;
    bottom: -0.3rem;
    left: 50%;
    width: 0.8rem;
  }
  .network_menu li.is_current::after {
    height: 2.2rem;
    bottom: -1rem;
    width: 2.2rem;
  }
  .network_menu a {
    font-size: 1em;
  }
  .network_menu a small {
    display: inline;
  }
  .network_menu .is_current a {
    font-size: 1.5em;
  }
  .network_menu_icon {
    height: 2.5rem;
    width: 5rem;
  }
  .network_menu .is_current .network_menu_icon {
    height: 3.5rem;
    width: 7rem;
  }
  .network_box_list_wrap {
    display: flex;
    gap: 1.5em;
  }
  .network_box_list_wrap .network_box_list + .network_box_list {
    border-left: 1px solid #dfdfdf;
    margin-top: 0;
    padding-left: 1.5em;
  }
  .network_box_note {
    gap: 0.25em 1.5em;
    margin-top: 2em;
  }
}
/*===============================================
	拡がる事業領域 ： 1200px以上
===============================================*/
@media screen and (min-width: 1200px) {
  .page-template-page-business-network .layout_wrapper {
    display: block;
  }
  .page-template-page-business-network .layout_main {
    height: 100vh;
    margin-left: auto;
    overflow-y: auto;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    width: 100%;
  }
  .page-template-page-business-network .module_page_heading {
    scroll-snap-align: start;
  }
  .page-template-page-business-network .layout_footer {
    scroll-snap-align: end;
  }
  .network_wrap {
    display: grid;
    grid-template-columns: 15rem 1fr;
    gap: 7rem;
  }
  .network_box {
    scroll-margin-top: 0;
  }
  .network_menu_wrap {
    align-self: start;
    padding-block: 0;
    position: sticky;
    top: 10vh;
  }
  .network_menu_wrap::after {
    height: calc(100% - (100% - 6em) / 4);
    top: calc((100% - 6em) / 4 / 2);
    right: 0;
    bottom: auto;
    left: auto;
    width: 1.5px;
  }
  .network_menu {
    grid-template: repeat(4, 8.8rem)/1fr;
    gap: 2em;
    height: auto;
  }
  .network_menu li {
    align-self: center;
    padding-block: 0;
    padding-right: 1em;
  }
  .network_menu li::after {
    top: 50%;
    right: -0.325rem;
    bottom: auto;
    left: auto;
    transform: translateY(-50%);
  }
  .network_menu li.is_current::after {
    right: -1rem;
    bottom: 0;
  }
  .network_menu a small {
    display: block;
  }
  .network_box_title {
    background-color: #fff;
    border-bottom: 1px solid #dfdfdf;
    font-size: 3.2rem;
    font-weight: 400;
    padding-block: 2em 0.25em;
    position: sticky;
    top: calc(var(--height-fixed-header) + 8rem);
  }
  .network_box_title {
    position: static;
  }
  .network_box {
    min-height: 80vh;
    padding-bottom: 3em;
    scroll-snap-align: start;
  }
}
/*	グループ会社（一覧）
--------------------------------------------------------- */
.page-template-page-business-group {
  background-color: #f5f5f5;
}

.group_section_date {
  margin-top: 3em;
  text-align: right;
}

.group_yamaehisano_wrap {
  display: grid;
  place-content: center;
}

.group_yamaehisano_wrap .group_archive_list_item {
  max-width: 60rem;
}

.group_archive_note {
  margin-bottom: 1.5em;
}

.group_archive_list {
  display: grid;
  gap: 2.5rem;
}

.group_archive_list_item {
  padding-bottom: 2.25em;
  position: relative;
}

.group_archive_list_item_inner {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
  height: 100%;
  padding: 1.5em 1.5em 2em;
}

.group_archive_list_item_heading {
  color: var(--color-text-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25em;
  margin-bottom: 1em;
  min-height: 5rem;
}

.group_archive_list_item_icon {
  flex: 0 0 auto;
}

.group_archive_list_item_icon img {
  max-height: 5rem;
  width: auto;
}

.group_archive_list_item_heading h3 {
  font-size: 1.6rem;
  font-weight: 600;
}

.group_archive_list_item_lead {
  margin-bottom: 1em;
}

.group_archive_list_item_inner .group_info_list {
  margin-block: 0;
}

.group_archive_list_item .module_button_internal {
  margin-top: 0.5em;
  position: absolute;
  right: 0;
  bottom: 0;
}

.group_archive_list_item .module_button_internal a {
  color: var(--color-button-main);
  text-decoration: underline;
}

.group_archive_list_item .group_info_list {
  -moz-column-gap: 1em;
       column-gap: 1em;
}

/*===============================================
	グループ会社（一覧） ： 768px以上
================================}=============*/
@media screen and (min-width: 768px) {
  .group_archive_note {
    margin-bottom: 2em;
  }
  .group_archive_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .group_archive_list_item_inner {
    padding: 2em 2em 2.5em;
  }
}
/*===============================================
	グループ会社（一覧） ： 1200px以上
================================}=============*/
@media screen and (min-width: 1200px) {
  .group_archive_list_item_heading {
    min-height: 8rem;
  }
  .group_archive_list_item_heading img {
    max-height: 8rem;
  }
  .group_archive_list_item_heading h3 {
    font-size: 1.8rem;
  }
}
/*	グループ会社（詳細）
--------------------------------------------------------- */
.group_post_heading {
  border-left: 2px solid var(--color-primary-light);
  padding-block: 0.25em 0.5em;
  padding-left: 1em;
}

.group_post_title {
  color: var(--color-text-dark);
  font-size: 2.2rem;
  font-weight: 600;
}

.group_post_title span {
  color: var(--color-text-dark);
  display: block;
}

.group_relation_parent {
  color: var(--color-text-default);
  font-size: 1.6rem;
}

.group_relation_parent + .group_post_title {
  margin-top: 0.25em;
}

.group_post_image_main {
  margin-top: 2.5em;
}

.group_post_message {
  border: 1px solid var(--color-text-default);
  border-radius: 1rem;
  margin-top: 2.5em;
  padding: 1.5em;
}

.group_post_message_title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.75em;
}

.group_post_box {
  display: grid;
  gap: 2.5rem;
  margin-top: 5em;
}

.group_post_box_title {
  border-bottom: 2px solid #ccc;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  position: relative;
  text-indent: -0.5em;
}

.group_post_box_title::after {
  content: "";
  background-color: var(--color-primary-light);
  display: block;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 25px;
}

.group_post_info {
  border-top: 1px solid var(--color-text-default);
  padding-top: 3.25em;
}

.group_post_info_title {
  color: var(--color-text-dark);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.25em;
}

.group_info_list {
  display: grid;
  grid-template-columns: minmax(4em, auto) 1fr;
  gap: 0.5em 1.5em;
  margin-block: 2em;
}

.group_info_address span {
  display: inline-block;
}

.group_post_info_map iframe {
  height: 27rem;
  width: 100%;
}

.group_comingsoon {
  color: var(--color-text-dark);
  font-size: 1.5em;
  font-weight: 600;
  text-align: center;
}

/*===============================================
	グループ会社（詳細） ： 768px以上
================================}=============*/
@media screen and (min-width: 768px) {
  .group_post_heading {
    padding-left: 1.75em;
  }
  .group_post_title {
    font-size: 3rem;
  }
  .group_post_image_main {
    margin-top: 5.5em;
  }
  .group_post_message {
    margin-top: 4.5em;
    padding: 2em;
  }
  .group_post_message_title {
    font-size: 2.5rem;
  }
  .group_post_box {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 10em;
  }
  .group_post_box:nth-of-type(even) .group_post_box_text {
    order: 1;
  }
  .group_post_box:nth-of-type(even) .group_post_box_image {
    order: 0;
  }
  .group_post_box_title {
    font-size: 2.5rem;
  }
  .group_post_info {
    padding-top: 7.25em;
  }
  .group_post_info_title {
    font-size: 2rem;
  }
}
/*	IR・投資家情報
--------------------------------------------------------- */
.ir_index_wrap {
  display: grid;
  gap: 1rem;
  font-size: 1.4rem;
}

.ir_index_box {
  background-color: #f5f5f5;
  color: var(--color-text-dark);
  padding: 1.25em;
}

.ir_index_box dt {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.75em;
}

.ir_index_box dd + dd {
  margin-top: 0.4em;
}

.ir_index_box a {
  color: var(--color-text-dark);
  display: inline-block;
  line-height: 1.4;
  padding-left: 1.15em;
  text-decoration: none;
  text-indent: -1.15em;
}

.ir_index_box a::before {
  content: "";
  border-top: 1px solid var(--color-text-dark);
  border-right: 1px solid var(--color-text-dark);
  display: inline-block;
  height: 0.5rem;
  margin-right: 0.75em;
  transform: rotate(45deg) translateY(-50%);
  width: 0.5rem;
}

.ir_index_box a br {
  display: none;
}

.ir_index_report {
  background-color: #ebf7fe;
  padding: 1.25em;
}

.ir_index_report dt {
  color: var(--color-text-dark);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1em;
}

.ir_index_report dt small {
  color: var(--color-text-default);
  font-size: 0.75em;
  margin-left: 1em;
}

.ir_index_report_image {
  margin-inline: auto;
  max-width: 16rem;
}

.ir_index_wrap .ir_index_report_image a[target=_blank]::after {
  display: none;
}

.ir_index_report_en {
  font-size: 1.4rem;
  margin-top: 0.75em;
  text-align: center;
}

.ir_calendar_wrap {
  overflow-x: auto;
}

.ir_calendar {
  display: grid;
  grid-template-columns: 2fr 3fr 3fr 3fr 3fr;
  gap: 1rem;
  margin-block: 5em;
  min-width: 72.5rem;
}

.ir_calendar_inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem;
}

.ir_calendar_inner:first-child {
  grid-template-columns: repeat(2, 1fr);
}

.ir_calendar_item {
  color: #fff;
  display: grid;
  place-content: center;
  height: 7.8rem;
  position: relative;
}

.ir_calendar_1,
.ir_calendar_2,
.ir_calendar_3 {
  background-color: #6bb2e8;
}

.ir_calendar_4,
.ir_calendar_5,
.ir_calendar_6 {
  background-color: #eca2b9;
}

.ir_calendar_7,
.ir_calendar_8,
.ir_calendar_9 {
  background-color: #80c8e8;
}

.ir_calendar_10,
.ir_calendar_11,
.ir_calendar_12 {
  background-color: #efb275;
}

.ir_calendar_pin {
  border-left: 1px solid #0057af;
  color: var(--color-text-default);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  min-height: 3.1em;
  padding-block: 0.25em;
  padding-left: 0.4em;
  position: absolute;
  white-space: nowrap;
}

.ir_calendar_pin::before {
  content: "";
  background-color: #0057af;
  border-radius: 50%;
  display: block;
  height: 5px;
  position: absolute;
  left: -3px;
  width: 5px;
}

.ir_calendar_pin_upper::before {
  top: 0;
}

.ir_calendar_pin_lower::before {
  bottom: 0;
}

.ir_calendar_pin_upper {
  bottom: 100%;
}

.ir_calendar_pin_lower {
  top: 100%;
}

.ir_calendar_2 .ir_calendar_pin {
  left: 30%;
}

.ir_calendar_5 .ir_calendar_pin {
  left: 30%;
}

.ir_calendar_6 .ir_calendar_pin_upper {
  left: 50%;
}

.ir_calendar_6 .ir_calendar_pin_lower {
  left: 80%;
}

.ir_calendar_8 .ir_calendar_pin {
  left: 30%;
}

.ir_calendar_11 .ir_calendar_pin {
  left: 30%;
}

.ir_calendar_12 .ir_calendar_pin {
  left: 15%;
}

.ir_calendar_list_wrap {
  display: grid;
}

.ir_index_faq {
  text-align: center;
}

/*===============================================
	IR・投資家情報 ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .ir_index_wrap {
    grid-template: auto/1fr 1fr;
  }
  .ir_index_box {
    padding: 1.5em;
  }
  .ir_index_box dt {
    font-size: 2.2rem;
    margin-bottom: 0.5em;
  }
  .ir_index_report {
    padding: 1.5em;
  }
  .ir_index_report dt {
    font-size: 2.2rem;
    margin-bottom: 0.75em;
  }
  .ir_index_report dt small {
    font-size: 0.65em;
  }
  .ir_calendar_list_wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}
/*===============================================
	IR・投資家情報 ： 1200px以上
===============================================*/
@media screen and (min-width: 1200px) {
  .ir_index_wrap {
    grid-template-columns: 1fr 1fr 1fr 22em;
  }
  .ir_index_box a br {
    display: block;
  }
}
/*	決算ハイライト
--------------------------------------------------------- */
.highlights_menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11em, 1fr));
  gap: 2px;
  font-size: 1.4rem;
  margin-bottom: 6rem;
}

.highlights_menu_item a {
  background-color: #e6e6e6;
  color: var(--color-text-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.65em 0.5em;
  text-decoration: none;
}

.highlights_menu_item.is-current a {
  background-color: var(--color-primary-light);
  color: #fff;
  font-weight: 600;
}

.highlights_panel {
  display: none;
}

.highlights_panel.is-show {
  display: block;
}

/*	事業データ
--------------------------------------------------------- */
.business-data_chart {
  margin-inline: auto;
  margin-top: 2.5em;
  max-width: 73rem;
}

.business-data_image {
  margin-bottom: 1.5em;
}

.business-data_chart_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3em;
  margin-top: 2em;
}

/*===============================================
	事業データ ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .business-data_chart_wrap {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4em;
    margin-top: 3em;
  }
}
/*	株式情報
--------------------------------------------------------- */
.stock_contact_box {
  background-color: #eaeaea;
  display: flex;
  justify-content: center;
  margin-top: 4rem;
  padding: 1.5em;
}

.stock_contact_box_title {
  color: var(--color-text-dark);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1em;
}

.stock_table_major thead th:nth-child(n+2) {
  width: 6.2em;
}

.stock_chart_wrap {
  display: grid;
  gap: 3em;
}

.stock_chart_image {
  margin-inline: auto;
  max-width: 40rem;
  padding-left: 1em;
}

/*===============================================
	株式情報 ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .stock_table_stock .module_table_border_title {
    flex-basis: 28%;
    padding: 1.75em;
  }
  .stock_table_stock .module_table_border_data {
    flex-basis: 72%;
    padding: 1.75em 2.5em;
  }
  .stock_contact_box {
    background-color: #eaeaea;
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    padding: 2.5em 1.5em;
  }
  .stock_contact_box_title {
    color: var(--color-text-dark);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1em;
  }
  .stock_table_major thead th:nth-child(n+2) {
    width: auto;
  }
  .stock_chart_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5em;
  }
  .stock_chart_image {
    padding-left: 0;
  }
}
/*	株式情報
--------------------------------------------------------- */
.stock-chart_chart_wrap {
  height: 118rem;
}

/*===============================================
	株式情報 ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .stock-chart_chart_wrap {
    height: 108rem;
  }
}
/*	決算短信
--------------------------------------------------------- */
.result_accordion_title {
  color: var(--color-text-dark);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1em;
}

.result_accordion_title:not(:first-child) {
  margin-top: 2em;
}

.result_accordion_list {
  padding-left: 1em;
}

.result_accordion_list li:not(:first-child) {
  margin-top: 0.5em;
}

.result_accordion_list a {
  font-size: 1.6rem;
}

/*	中期経営計画
--------------------------------------------------------- */
.strategy_image_purpose {
  margin-top: 4rem;
}

.strategy_vision_logo {
  margin-bottom: 2rem;
  text-align: center;
}

.strategy_vision_logo img {
  max-width: 20rem;
  width: 100%;
}

.strategy_vision_title {
  color: var(--color-primary-light);
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}

.strategy_vision_subtitle {
  color: var(--color-text-dark);
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 0.5em;
  text-align: center;
}

.strategy_vision_flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75em;
  margin-block: 1em 4em;
  position: relative;
}

.strategy_vision_flow::before,
.strategy_vision_flow::after {
  content: "";
  background-color: #2888d0;
  height: 1.5px;
  position: absolute;
  bottom: -2.25em;
  left: 50%;
  width: 3em;
}

.strategy_vision_flow::before {
  transform: translateX(-50%) rotate(45deg);
}

.strategy_vision_flow::after {
  transform: translateX(-50%) rotate(-45deg);
}

.strategy_vision_flow li {
  aspect-ratio: 1/1;
  border: 1px solid var(--color-primary-light);
  border-radius: 50%;
  color: var(--color-primary-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 600;
  position: relative;
  text-align: center;
}

.strategy_vision_flow li:not(:last-child)::after {
  content: "";
  border: 0.25em solid transparent;
  border-left: 0.5em solid var(--color-primary-light);
  display: block;
  height: 0;
  position: absolute;
  top: 50%;
  right: -1em;
  transform: translateY(-50%);
  width: 0;
}

.strategy_vision_flow div {
  max-width: 75%;
}

.strategy_vision_list {
  margin-block: 1.5em 4.5em;
  position: relative;
}

.strategy_vision_list::before {
  content: "";
  background-color: #2888d0;
  display: block;
  height: 1.5em;
  position: absolute;
  bottom: -2.5em;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5em;
}

.strategy_vision_list::after {
  content: "";
  border: 1.5em solid transparent;
  border-top-color: #2888d0;
  display: block;
  height: 0;
  position: absolute;
  bottom: -5.5em;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
}

.strategy_vision_list li {
  border: 1px solid #9d9d9d;
  border-radius: 1rem;
  color: var(--color-text-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  padding: 1em;
}

.strategy_vision_list li:not(:first-child) {
  margin-top: 0.75em;
}

.strategy_vision_goal {
  display: flex;
  justify-content: center;
}

.strategy_vision_goal span {
  background-color: #2888d0;
  border-radius: 1rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  padding: 0.5em 2em;
  text-align: center;
}

.strategy_new_name {
  text-align: center;
}

.strategy_new_name p:first-child {
  color: var(--color-primary-light);
  font-size: 4rem;
  font-weight: 600;
}

.strategy_new_name p:nth-child(2) {
  color: var(--color-primary-light);
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 0.25em;
}

.strategy_new_name p:last-child span {
  background: linear-gradient(to bottom, transparent 0%, transparent 50%, #fffa5b 50%, #fffa5b 100%);
  color: var(--color-text-dark);
  font-size: 1.6rem;
}

.strategy_zaimu_heading {
  color: var(--color-text-dark);
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
}

.strategy_new_list {
  display: grid;
  gap: 1em;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 3rem;
  text-align: center;
}

.strategy_new_list_title {
  background-color: var(--color-primary-light);
  border-radius: 1rem 1rem 0 0;
  color: #fff;
  padding: 0.5em;
}

.strategy_new_list_data {
  border: 1px solid var(--color-primary-light);
  border-radius: 0 0 1rem 1rem;
  color: var(--color-primary-light);
  padding: 1em 0.5em;
}

.strategy_new_list_data ul {
  display: inline-block;
  text-align: left;
}

.strategy_new_list_data small {
  display: block;
  font-size: 0.65em;
}

.strategy_hizaimu_label {
  background-color: #fffa5b;
  border-radius: 1rem;
  color: var(--color-text-dark);
  margin-inline: auto;
  max-width: 20rem;
}

.strategy_image_go25 {
  margin-inline: auto;
  max-width: 70rem;
}

.strategy_table {
  margin-top: 3rem;
  table-layout: fixed;
  width: 100%;
}

.strategy_table th {
  background-color: #f5f5f5;
  color: var(--color-text-dark);
  font-weight: 400;
  padding: 1em;
  white-space: nowrap;
}

.strategy_table thead th {
  font-size: 1.4rem;
}

.strategy_table thead th:first-child {
  width: 9em;
}

.strategy_table thead th:nth-child(2) {
  width: 7em;
}

.strategy_table thead th:nth-last-child(2) {
  color: var(--color-primary-light);
  font-weight: 600;
}

.strategy_table tbody th {
  border-top: 1px solid #fff;
}

.strategy_table tbody td {
  border-bottom: 1px solid #eaeaea;
  padding: 1em;
  text-align: center;
}

.strategy_table tbody td:nth-last-child(2) {
  background-color: #eff9ff;
  font-weight: 600;
}

.strategy_table tbody td:last-child {
  text-align: left;
}

/*===============================================
	中期経営計画 ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .strategy_image_purpose {
    margin-top: 6rem;
  }
  .strategy_vision_logo {
    margin-bottom: 4rem;
  }
  .strategy_vision_logo img {
    max-width: 28rem;
  }
  .strategy_vision_title {
    font-size: 2.5rem;
  }
  .strategy_vision_subtitle {
    font-size: 1.8rem;
  }
  .strategy_vision_flow {
    gap: 2.5em;
    margin-block: 2.5em 8em;
  }
  .strategy_vision_flow::before,
  .strategy_vision_flow::after {
    bottom: -4em;
    width: 5em;
  }
  .strategy_vision_flow li {
    font-size: 1.8rem;
  }
  .strategy_vision_flow li:not(:last-child)::after {
    content: "";
    border-width: 0.4em;
    border-left-width: 1em;
    right: -2em;
  }
  .strategy_vision_flow div {
    margin-top: 0.25em;
  }
  .strategy_vision_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5em;
    margin-block: 2em 6em;
  }
  .strategy_vision_list::before {
    bottom: -3em;
  }
  .strategy_vision_list::after {
    bottom: -6em;
  }
  .strategy_vision_list li {
    flex-basis: calc((100% - 3em) / 3);
    font-size: 1.6rem;
    min-height: 14rem;
    padding: 1em;
    text-align: center;
  }
  .strategy_vision_list li:not(:first-child) {
    margin-top: 0;
  }
  .strategy_vision_goal span {
    font-size: 2.5rem;
  }
  .strategy_new_name p:first-child {
    font-size: 8.5rem;
  }
  .strategy_new_name p:nth-child(2) {
    font-size: 3rem;
    margin-top: 0.125em;
  }
  .strategy_new_name p:last-child span {
    font-size: 3rem;
  }
  .strategy_table .module_table_noborder_title {
    flex-basis: 20rem;
  }
  .strategy_table .module_table_noborder_data {
    flex-basis: calc(100% - 20rem);
  }
  .strategy_zaimu_heading {
    font-size: 2.5rem;
  }
  .strategy_new_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25em;
    font-size: 2rem;
    margin-bottom: 4rem;
  }
  .strategy_new_list_data {
    font-size: 2.5rem;
    padding: 1em 0.5em;
  }
  .strategy_hizaimu_list {
    grid-template-columns: repeat(2, 1fr);
  }
  .strategy_new_list_data ul {
    font-size: 2rem;
  }
  .strategy_hizaimu_label {
    font-size: 1.6rem;
  }
  .strategy_table {
    margin-top: 5rem;
  }
  .strategy_table tbody th {
    font-size: 1.6rem;
  }
}
/*	トピックス
--------------------------------------------------------- */
.topics_menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em 0;
  margin-bottom: 4rem;
}

.topics_menu_item {
  border-left: 1px solid #ccc;
}

.topics_menu_item:nth-child(3),
.topics_menu_item:nth-child(6) {
  border-right: 1px solid #ccc;
}

.topics_menu_item a {
  color: var(--color-text-default);
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

.topics_menu_icon {
  fill: var(--color-text-default);
  height: 1.8rem;
  vertical-align: text-bottom;
  width: 2rem;
}

.topics_menu_all .topics_menu_current,
.topics_menu_all .topics_menu_current .topics_menu_icon {
  color: #3884dc;
  fill: #3884dc;
}

.topics_menu_food .topics_menu_current,
.topics_menu_food .topics_menu_current .topics_menu_icon {
  color: #e85e5e;
  fill: #e85e5e;
}

.topics_menu_sport .topics_menu_current,
.topics_menu_sport .topics_menu_current .topics_menu_icon {
  color: #ff7abc;
  fill: #ff7abc;
}

.topics_menu_housing .topics_menu_current,
.topics_menu_housing .topics_menu_current .topics_menu_icon {
  color: #5daf3b;
  fill: #5daf3b;
}

.topics_menu_internal .topics_menu_current,
.topics_menu_internal .topics_menu_current .topics_menu_icon {
  color: #ffa813;
  fill: #ffa813;
}

.topics_menu_interview .topics_menu_current,
.topics_menu_interview .topics_menu_current .topics_menu_icon {
  color: #009ce8;
  fill: #009ce8;
}

.topics_list {
  display: grid;
  gap: 3rem 2rem;
}

.topics_list_item,
.topics_list_title {
  line-height: 1.2;
}

.topics_list_thumbnail img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.topics_list_category_wrap {
  display: block;
}

.topics_list_category {
  margin-block: 0.75em 0.5em;
}

.topics_list_category a {
  border-radius: 0.5rem;
  color: #fff;
  font-size: 1.2rem;
  padding: 0.125em 0.75em;
  text-decoration: none;
}

.topics_list_food a {
  background-color: #e85e5e;
}

.topics_list_sport a {
  background-color: #ff7abc;
}

.topics_list_housing a {
  background-color: #5daf3b;
}

.topics_list_internal a {
  background-color: #ffa813;
}

.topics_list_interview a {
  background-color: #009ce8;
}

.topics_list_title a {
  color: var(--color-text-default);
  font-size: 1.6rem;
  font-weight: 400;
  text-decoration: none;
}

/*===============================================
	トピックス ： 560px以上
===============================================*/
@media screen and (min-width: 560px) {
  .topics_list {
    grid-template-columns: 1fr 1fr;
  }
}
/*===============================================
	トピックス ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .topics_menu {
    grid-template-columns: repeat(6, 1fr);
    margin-bottom: 6rem;
  }
  .topics_menu_item:nth-child(3),
  .topics_menu_item:nth-child(6) {
    border-right: none;
  }
  .topics_menu_item:last-child {
    border-right: 1px solid #ccc;
  }
  .topics_menu_item a {
    font-size: 1.3rem;
  }
  .topics_list {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .topics_list_item,
  .topics_list_title {
    line-height: 1.2;
  }
}
/*===============================================
	トピックス ： 1200px以上
===============================================*/
@media screen and (min-width: 1200px) {
  .topics_menu {
    margin-bottom: 7.5rem;
  }
  .topics_menu_item a {
    font-size: 1.6rem;
  }
  .topics_menu_icon {
    height: 2.2rem;
  }
}
/*===============================================
	トピックス ： マウスホバー
===============================================*/
@media (hover: hover) and (pointer: fine) {
  .topics_menu_item a {
    transition: color 0.3s;
  }
  .topics_menu_item a .topics_menu_icon {
    transition: fill 0.3s;
  }
  .topics_menu_item a:hover {
    opacity: 1;
  }
  .topics_menu_all a:hover,
  .topics_menu_all a:hover .topics_menu_icon {
    color: #3884dc;
    fill: #3884dc;
  }
  .topics_menu_food a:hover,
  .topics_menu_food a:hover .topics_menu_icon {
    color: #e85e5e;
    fill: #e85e5e;
  }
  .topics_menu_sport a:hover,
  .topics_menu_sport a:hover .topics_menu_icon {
    color: #ff7abc;
    fill: #ff7abc;
  }
  .topics_menu_housing a:hover,
  .topics_menu_housing a:hover .topics_menu_icon {
    color: #5daf3b;
    fill: #5daf3b;
  }
  .topics_menu_internal a:hover,
  .topics_menu_internal a:hover .topics_menu_icon {
    color: #ffa813;
    fill: #ffa813;
  }
  .topics_menu_interview a:hover,
  .topics_menu_interview a:hover .topics_menu_icon {
    color: #009ce8;
    fill: #009ce8;
  }
}
/*	サステナビリティ
--------------------------------------------------------- */
.sustainability_title {
  color: var(--color-text-dark);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1em;
  text-align: center;
}

.sustainability_title:not(:first-child) {
  margin-top: 3em;
}

.sustainability_mv {
  margin-top: 2em;
}

.sustainability_committee {
  border: 1px solid #9d9d9d;
  border-radius: 1rem;
  display: grid;
  gap: 1.5em;
  padding: 1em;
}

.sustainability_committee_title {
  background-color: #fff;
  border: 1px solid var(--color-primary-light);
  border-radius: 5px;
  color: var(--color-primary-light);
  font-size: 1.8rem;
  font-weight: 600;
  padding-block: 0.25em;
  text-align: center;
}

div:not(.sustainability_committee_box) > .sustainability_committee_title:first-child {
  background-color: var(--color-primary-light);
  color: #fff;
  margin-bottom: 1em;
}

.sustainability_committee_flow {
  color: var(--color-text-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3em;
  font-size: 1.6rem;
  font-weight: 600;
  margin-block: 0.75em;
}

.sustainability_committee_flow span {
  display: flex;
  align-items: center;
  gap: 1em;
}

.sustainability_committee_flow span:first-child::after {
  content: "";
  background: url(../img/sustainability/sustainability_arrow01.svg) center/contain no-repeat;
  display: block;
  height: 1.5em;
  width: 1.25em;
}

.sustainability_committee_flow span:last-child::before {
  content: "";
  background: url(../img/sustainability/sustainability_arrow02.svg) center/contain no-repeat;
  display: block;
  height: 1.5em;
  width: 1.25em;
}

.sustainability_committee_box {
  background-color: #edf9ff;
  border-radius: 5px;
  padding: 1em;
}

.sustainability_committee_box p {
  color: var(--color-text-dark);
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 1em;
  text-align: center;
}

.sustainability_committee .module_table_noborder {
  margin-top: 0;
}

.sustainability_section_menu {
  display: grid;
  gap: 0.5em;
}

.sustainability_section_menu li {
  height: 100%;
}

.sustainability_section_menu a {
  border: 1px solid;
  border-radius: 5px;
  color: var(--color-text-dark);
  display: grid;
  place-content: center;
  font-weight: 600;
  height: 100%;
  line-height: 1.4;
  min-height: 3em;
  padding: 0.25em 0.5em;
  text-align: center;
  text-decoration: none;
}

.sustainability_section_title {
  border-bottom: 2px solid #ccc;
  color: var(--color-text-dark);
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: -3em;
  margin-bottom: 2.5em;
  padding-top: 3em;
  padding-bottom: 0.25em;
  position: relative;
}

.sustainability_section_title::after {
  content: "";
  background-color: var(--color-primary-dark);
  display: block;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 2.5rem;
}

.sustainability_section_images {
  display: grid;
  gap: 1em;
}

.sustainability_section .module_title_middle {
  margin-top: 2em;
}

.sustainability_section_list {
  color: var(--color-text-dark);
  display: grid;
  gap: 1em;
  font-size: 1.4rem;
}

.sustainability_section_list h5 {
  border: 1px solid;
  border-radius: 1rem;
  color: var(--color-text-dark);
  display: grid;
  place-content: center;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5em;
  min-height: 3em;
  padding: 0.25em 0.5em;
  text-align: center;
}

.sustainability_section_menu li:nth-child(1) a,
.sustainability_carbon .sustainability_section_list h5 {
  background-color: #e5f5ff;
  border-color: #2472a2;
}

.sustainability_section_menu li:nth-child(2) a,
.sustainability_primary .sustainability_section_list h5 {
  background-color: #ffe5e5;
  border-color: #b76464;
}

.sustainability_section_menu li:nth-child(3) a,
.sustainability_recycling .sustainability_section_list h5 {
  background-color: #f0fee8;
  border-color: #218e2f;
}

.sustainability_section_menu li:nth-child(4) a,
.sustainability_human .sustainability_section_list h5 {
  background-color: #fffcdb;
  border-color: #cb9c1d;
}

.sustainability_icon_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2em;
}

.sustainability_icon_list li {
  flex-basis: 7rem;
}

.sustainalibily_primary_list {
  border-bottom: 1px solid #ccc;
  display: grid;
  grid-template-columns: minmax(4em, auto) 1fr;
  margin-top: 2em;
  padding-bottom: 1em;
}

.sustainalibily_primary_list dt {
  color: var(--color-text-dark);
  font-weight: 600;
  padding-right: 1em;
}

.sustainalibily_primary_list dt,
.sustainalibily_primary_list dd {
  border-top: 1px solid #ccc;
  margin-top: 1em;
  padding-top: 1em;
}

.sustainability_primary_relation {
  color: var(--color-primary-light);
  display: grid;
  grid-template-columns: 1.25fr 2.4rem 1fr;
  place-items: center;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  font-weight: 600;
  margin-inline: auto;
  margin-top: 2em;
  max-width: 48rem;
  text-align: center;
}

.sustainability_primary_summary {
  color: var(--color-text-dark);
  font-feature-settings: "palt";
  font-weight: 600;
  margin-top: 1em;
  padding-bottom: 3em;
  position: relative;
  text-align: center;
}

.sustainability_primary_summary::after {
  content: "";
  background: url(../img/common/icon_arrow_flow.svg) center/contain no-repeat;
  height: 3rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4.8rem;
}

.sustainability_brand_wrap {
  background-color: #edf9ff;
  border-radius: 1rem;
  margin-top: 1em;
  padding: 1.5em 1em;
}

.sustainability_brand_title {
  background-color: #2888d0;
  border-radius: 1rem;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 600;
  padding-block: 0.5em;
  text-align: center;
}

.sustainability_brand_images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  margin-top: 1em;
}

.sustainability_brand_images li {
  flex-basis: calc((100% - 2em) / 3);
}

.sustainability_brand_subtitle {
  color: #2888d0;
  font-size: 1.7rem;
  font-weight: 600;
  margin-top: 1em;
  text-align: center;
}

.sustainability_brand_flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1.75em;
  margin-inline: auto;
  margin-top: 1em;
  max-width: 30rem;
}

.sustainability_brand_flow li {
  background-color: #fff;
  border: 1px solid var(--color-primary-light);
  border-radius: 50%;
  color: var(--color-primary-light);
  display: grid;
  place-items: center;
  font-weight: 600;
  height: 7rem;
  line-height: 1.4;
  position: relative;
  text-align: center;
  width: 7rem;
}

.sustainability_brand_flow li:not(:last-child)::after {
  content: "";
  border: 5px solid transparent;
  border-left: 12px solid var(--color-primary-light);
  display: block;
  height: 0;
  position: absolute;
  top: 50%;
  right: -1.75em;
  transform: translateY(-50%);
  width: 0;
}

.sustainability_brand_flow li:nth-child(4) {
  margin-left: auto;
}

.sustainability_recycling_column {
  display: grid;
  place-items: center;
  gap: 1.5em;
}

.sustainability_human_column {
  display: grid;
  place-items: center;
  gap: 1.5em;
  margin-top: 2em;
}

/*===============================================
	サステナビリティ ： 620px以上
===============================================*/
@media screen and (min-width: 620px) {
  .sustainability_brand_images li {
    flex-basis: calc((100% - 4em) / 5);
  }
  .sustainability_brand_flow {
    justify-content: center;
    max-width: inherit;
  }
  .sustainability_brand_flow li:nth-child(4) {
    margin-left: 0;
  }
}
/*===============================================
	サステナビリティ ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .sustainability_committee {
    grid-template-columns: repeat(2, 1fr);
    gap: 3em;
    padding: 2.5em;
  }
  .sustainability_committee .module_table_noborder_data {
    display: grid;
    align-items: center;
    padding-right: 0;
  }
  .sustainability_committee .module_table_noborder {
    display: grid;
    grid-template-columns: minmax(6em, auto) 1fr;
  }
  .sustainability_title {
    font-size: 2.5rem;
  }
  .sustainability_section_menu {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5em;
  }
  .sustainability_section_menu a {
    min-height: 5em;
  }
  .sustainability_section_title {
    font-size: 2.5rem;
    margin-top: -2em;
    padding-top: 2em;
  }
  .sustainability_section_images {
    grid-template-columns: 1fr 1fr;
    gap: 2em;
  }
  .sustainability_section .module_title_middle {
    margin-top: 2.5em;
  }
  .sustainability_section_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25em;
  }
  .sustainability_section_list h5 {
    min-height: 5em;
  }
  .sustainability_icon_list {
    margin-top: 3em;
  }
  .sustainalibily_primary_list {
    grid-template-columns: minmax(6em, auto) 1fr;
  }
  .sustainalibily_primary_list dt {
    padding-left: 1em;
  }
  .sustainability_primary_relation {
    grid-template-columns: 1.25fr 4.8rem 1fr;
    -moz-column-gap: 1.5em;
         column-gap: 1.5em;
    font-size: 2.4rem;
    max-width: 63rem;
  }
  .sustainability_primary_summary {
    margin-top: 1.5em;
    padding-bottom: 3.5em;
  }
  .sustainability_primary_summary::after {
    height: 4rem;
  }
  .sustainability_brand_wrap {
    padding: 1.5em 2em;
  }
  .sustainability_brand_inner {
    margin-inline: auto;
    max-width: 65rem;
  }
  .sustainability_brand_title,
  .sustainability_brand_subtitle {
    font-size: 2rem;
  }
  .sustainability_brand_flow li {
    height: 8.5rem;
    width: 8.5rem;
  }
  .sustainability_recycling_column {
    grid-template-columns: 1fr 45%;
    gap: 4em;
  }
  .sustainability_recycling_column .sustainability_section_list {
    grid-template-columns: 1fr;
    gap: 2em;
  }
  .sustainability_human_column {
    grid-template-columns: 37.5% 1fr;
    gap: 4em;
    margin-top: 3em;
  }
}
/*	お問い合わせ
--------------------------------------------------------- */
.contact_flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-inline: auto;
  max-width: 37rem;
  position: relative;
  width: 90%;
}

.contact_flow::before {
  content: "";
  background-color: #ccc;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 6rem);
  z-index: -1;
}

.contact_flow_item {
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 50%;
  color: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  height: 6rem;
  width: 6rem;
}

.contact_flow_current {
  border-color: var(--color-primary-light);
  color: var(--color-primary-light);
}

.contact_privacy {
  border: 1px solid var(--color-primary-dark);
  margin-top: 4rem;
  padding: 2em 1em;
  text-align: center;
}

.contact_privacy_title {
  color: var(--color-text-dark);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5em;
}

.contact_privacy_action {
  background-color: transparent;
  border: none;
  font-size: 1.6rem;
  margin: 2em 0 0;
  outline: none;
  padding: 0;
}

.contact_radio_wrap {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 3em;
       column-gap: 3em;
}

.contact_privacy_action .contact_radio_wrap {
  justify-content: center;
  margin-top: 1em;
}

.contact_form_list {
  font-size: 1.6rem;
  margin-top: 4rem;
}

.contact_form_list_title {
  background-color: #f5f5f5;
  color: var(--color-text-dark);
  font-weight: 600;
  margin-bottom: 0.75em;
  padding: 0.75em 1em;
}

.contact_form_list_title:not(:first-child) {
  margin-top: 2em;
}

.contact_form_any::before {
  content: "任意";
  background-color: #9f9f9f;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  margin-right: 0.75em;
  padding: 0.125em 0.25em;
}

.contact_form_require::before {
  content: "必須";
  background-color: var(--color-primary-light);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  margin-right: 0.75em;
  padding: 0.125em 0.25em;
}

.contact_text,
.contact_email,
.contact_select,
.contact_textarea {
  border: 1px solid #c6c6c6;
  border-radius: 5px;
  color: var(--color-text-dark);
  line-height: 1.5;
  padding: 0.625em 1em;
  width: 100%;
}

.contact_select {
  padding-block: 0.42em;
}

.contact_textarea {
  height: 13rem;
  line-height: 1.6;
}

.contact_radio_text {
  display: flex;
  align-items: center;
  gap: 0.25em;
  position: relative;
}

.contact_radio_text::before {
  content: "";
  border: 1px solid #ccc;
  border-radius: 50%;
  display: block;
  height: 1.5rem;
  margin-top: 0.125em;
  width: 1.5rem;
}

input:checked + .contact_radio_text::before {
  border-color: var(--color-primary-light);
}

input:checked + .contact_radio_text::after {
  content: "";
  background-color: var(--color-primary-light);
  border-radius: 50%;
  display: block;
  height: 0.9rem;
  position: absolute;
  top: calc(50% + 0.0625em);
  left: 0.3rem;
  transform: translateY(-50%);
  width: 0.9rem;
}

.contact_radio input {
  display: none;
}

.contact_form_notice {
  font-size: 1.2rem;
  margin-top: 0.5em;
  padding-left: 1em;
  text-indent: -1em;
}

.contact_form_tel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.25em;
  max-width: 47rem;
}

.contact_age {
  margin-right: 0.25em;
  width: 28.56%;
}

.contact_submit_wrap .module_button {
  font-size: 1.4rem;
}

.contact_submit_wrap .wpcf7-previous,
.contact_submit_wrap .wpcf7-previous + .wpcf7-submit {
  width: 45%;
}

.contact_complete_info {
  margin-top: 4rem;
  text-align: center;
}

.contact_complete_info_title {
  color: var(--color-text-dark);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5em;
}

.wpcf7-not-valid-tip {
  margin-top: 0.25em;
}

/*===============================================
	お問い合わせ ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  .contact_privacy {
    margin-top: 9rem;
  }
  .contact_form_list {
    display: flex;
    flex-wrap: wrap;
    gap: 1px 3rem;
    margin-top: 9rem;
  }
  .contact_form_list_title {
    display: flex;
    flex-basis: 24rem;
    align-items: center;
    margin-bottom: 0;
  }
  .contact_form_list_title:not(:first-child) {
    margin-top: 0;
  }
  .contact_form_list_data {
    flex-basis: calc(100% - 24rem - 3rem);
    padding-block: 0.75em;
  }
  .contact_select {
    max-width: 26.5rem;
  }
  .contact_form_tel {
    gap: 0.5em;
  }
  .contact_age {
    margin-right: 0.5em;
    max-width: 13.5rem;
    width: 28.8%;
  }
  .contact_submit_wrap .module_button {
    font-size: 1.6rem;
  }
  .contact_submit_wrap .wpcf7-spinner {
    position: absolute;
    bottom: -3em;
  }
  .contact_complete_info {
    margin-top: 9rem;
  }
  .contact_complete_info_title {
    font-size: 2rem;
  }
}
/*	個人情報保護方針
--------------------------------------------------------- */
.privacy_section_lead {
  text-align: right;
}

/*	多言語対応
--------------------------------------------------------- */
html[lang=en] .network_menu_wrap {
  padding-top: 2.5em;
}

html[lang=en] .network_menu a {
  font-size: 0.5em;
}

html[lang=en] .network_menu .is_current a {
  font-size: 0.6em;
}

html[lang=en] .network_box_title {
  font-size: 2rem;
}

html[lang=en] .network_box_title small {
  font-size: 0.75em;
  margin-inline: 0.5em;
}

html:lang(en) .highlights_menu {
  grid-template-columns: repeat(auto-fit, minmax(12em, 1fr));
  font-size: 1.3rem;
}

html[lang=en] .stock_table_for_en .module_table_border_title {
  flex-basis: 50%;
}

html[lang=en] .stock_table_for_en .module_table_border_data {
  flex: 0 0 50%;
}

html[lang=en] .contact_flow_item {
  width: 11rem;
}

html[lang=en] .contact_form_require::before {
  content: "required";
}

html[lang=en] .sustainability_brand_flow li {
  font-size: 10px;
}

/*===============================================
	多言語対応 ： 768px以上
===============================================*/
@media screen and (min-width: 768px) {
  html[lang=en] .sustainability_brand_flow li {
    font-size: 12px;
  }
  html[lang=en] .stock_table_for_en .module_table_border_title {
    flex-basis: 38%;
  }
  html[lang=en] .stock_table_for_en .module_table_border_data {
    flex: 0 0 62%;
  }
}
/*===============================================
	多言語対応 ： 1200px以上
===============================================*/
@media screen and (min-width: 1200px) {
  html[lang=en] .network_menu_wrap {
    padding-top: 0;
  }
  html[lang=en] .network_menu a {
    font-size: 1em;
  }
  html[lang=en] .network_menu .is_current a {
    font-size: 1.1em;
  }
  html[lang=en] .network_box_title {
    font-size: 2.8rem;
  }
}/*# sourceMappingURL=bundle.css.map */