@charset "UTF-8";
/*--------------------------
Reset
--------------------------*/
*, ::before, ::after {
  border-style: solid;
  border-width: 0;
  box-sizing: border-box;
  vertical-align: middle;
}

html {
  line-height: 1.15;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

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

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

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

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;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border-radius: 0;
  color: inherit;
  font: inherit;
  margin: 0;
  padding: 0;
  text-align: inherit;
  text-transform: inherit;
  vertical-align: middle;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

button, [type=button], [type=reset], [type=submit], [role=button] {
  color: inherit;
  cursor: pointer;
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  min-width: 0;
  padding: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

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

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

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

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

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-collapse: collapse;
  border-color: inherit;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td, th {
  padding: 0;
  vertical-align: top;
}

th {
  font-weight: bold;
  text-align: left;
}

/* -----------------------------
Base
------------------------------*/
html {
  font-size: 16px;
}

body {
  background-color: #fff;
  color: #000;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  font-feature-settings: "palt";
}

a {
  color: #000;
  text-decoration: none;
}
a:visited {
  color: #000;
}
a:hover {
  color: #000;
  text-decoration: none;
}
a:active {
  color: #000;
  text-decoration: none;
}
@media (min-width: 768px) {
  a[href^="tel:"] {
    cursor: text;
    text-decoration: none;
  }
}
a[href^="tel:"]:hover {
  color: #000;
}

::-moz-selection {
  background-color: #036eb8;
  color: #fff;
  text-shadow: none;
}

::selection {
  background-color: #036eb8;
  color: #fff;
  text-shadow: none;
}

/* 幅 */
.w10p {
  width: 10%;
}

.w20p {
  width: 20%;
}

.w30p {
  width: 30%;
}

.w40p {
  width: 40%;
}

.w50p {
  width: 50%;
}

.w60p {
  width: 60%;
}

.w70p {
  width: 70%;
}

.w80p {
  width: 80%;
}

.w90p {
  width: 90%;
}

.w100p {
  width: 100%;
}

/* /幅 */
/* 配置 */
.txt-r {
  text-align: right;
}

.txt-l {
  text-align: left;
}

.txt-c {
  text-align: center;
}

/* /配置 */
/* マージン */
.mb0 {
  margin-bottom: 0 !important;
}

/* /マージン */
/*--------------------------
  Components
--------------------------*/
html,
body {
  overflow-x: hidden !important;
}

img {
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  width: 100%;
}
@media (max-width: 767px) {
  img {
    max-width: 100%;
  }
}

a:hover {
  opacity: 0.7;
}

@keyframes SlideDown {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-100px);
  }
}
.anim-slideDown {
  animation: slideDown 0.5s ease forwards 0.1s normal;
  opacity: 0;
}

.anim-slideUp {
  animation: slideUp 0.5s ease forwards 0.1s normal;
  opacity: 1;
}

.overlay::before {
  background: rgba(0, 0, 0, 0.5);
  content: "";
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}
.overlay.overlay-scroll::before {
  z-index: 999;
}

@media (max-width: 767px) {
  .min-md-only {
    display: none !important;
  }
}

@media (min-width: 400px) {
  .max-400-only {
    display: none !important;
  }
}

@media (max-width: 1265px) {
  .min-1266-only {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .max-md-only {
    display: none !important;
  }
}

img.self-size {
  max-width: 100%;
}

.page-s01 {
  padding-top: 102px !important;
}
@media (min-width: 768px) {
  .page-s01 {
    padding-top: 0 !important;
  }
}

.flex-column {
  flex-direction: column;
}

/* ------------------------
  common parts
------------------------ */
/*--------タイトル-----------*/
.ttl-s01 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3333333333;
  margin-bottom: 28px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .ttl-s01 {
    font-size: 50px;
    line-height: 1.34;
    margin-bottom: 85px;
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .ttl-s01 {
    font-size: 3.9494470774vw;
    margin-bottom: 6.7140600316vw;
  }
}
.ttl-s01::after {
  background: #26438D;
  content: "";
  height: 2px;
  display: block;
  margin-top: 18px;
  width: 50px;
}
@media (min-width: 768px) {
  .ttl-s01::after {
    height: 3px;
    margin-top: 29px;
    width: 80px;
  }
}
.ttl-s01 span {
  color: #BF2812;
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  /* Semi Bold */
  font-size: 15px;
  font-weight: bold;
  line-height: 1.3333333333;
  padding-top: 13px;
}
@media (min-width: 768px) {
  .ttl-s01 span {
    font-size: 30px;
    line-height: 1.3333333333;
    padding-top: 13px;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .ttl-s01 span {
    font-size: 2.3696682464vw;
    padding-top: 1.0268562401vw;
  }
}

.ttl-s02 {
  font-size: 25px;
  font-weight: bold;
  line-height: 1.32;
  margin-bottom: 37px;
}
@media (min-width: 768px) {
  .ttl-s02 {
    font-size: 30px;
    line-height: 1.3333333333;
    margin-bottom: 54px;
  }
}
.ttl-s02::before {
  content: "";
  display: inline-block;
  margin-right: 15px;
}
.ttl-s02.company-information::before {
  background: url(../images/common/icon_company_information.svg) no-repeat 0 0;
  background-size: 29px 29px;
  height: 29px;
  transform: translateY(-2px);
  width: 29px;
}
.ttl-s02.products-services {
  letter-spacing: -0.1em;
}
.ttl-s02.products-services::before {
  background: url(../images/common/icon_products_services.svg) no-repeat 0 0;
  background-size: 29px 29px;
  height: 29px;
  transform: translateY(-3px);
  width: 29px;
}
.ttl-s02.products-services span {
  letter-spacing: 0em;
}
.ttl-s02.ir-information::before {
  background: url(../images/common/icon_ir_information.svg) no-repeat 0 0;
  background-size: 29px 26px;
  height: 26px;
  transform: translateY(-5px);
  width: 29px;
}
.ttl-s02.sustainability {
  letter-spacing: -0.1em;
}
.ttl-s02.sustainability::before {
  background: url(../images/common/icon_sustainability.svg) no-repeat 0 0;
  background-size: 29px 29px;
  height: 29px;
  transform: translateY(-3px);
  width: 29px;
}
.ttl-s02.sustainability span {
  letter-spacing: 0em;
}
.ttl-s02.recruitment {
  letter-spacing: -0.1em;
}
.ttl-s02.recruitment::before {
  background: url(../images/common/icon_recruitment.svg) no-repeat 0 0;
  background-size: 29px 25px;
  height: 25px;
  transform: translateY(-4px);
  width: 29px;
}
.ttl-s02.recruitment span {
  letter-spacing: 0em;
}
.ttl-s02.company-topics {
  letter-spacing: -0.1em;
}
.ttl-s02.company-topics::before {
  margin-right: 0;
}
.ttl-s02.company-topics span {
  letter-spacing: 0em;
  padding: 7px 0 0 0;
}
.ttl-s02 span {
  color: #BF2812;
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 1.3333333333;
  padding: 7px 0 0 44px;
}

.ttl-s03 {
  border-top: 3px solid #dfdfdf;
  font-family: "Manrope", sans-serif;
  font-size: 29px;
  font-weight: 800;
  line-height: 1.3103448276;
  margin: 0 20px 150px;
  padding: 14px 0 0;
  width: 279px;
}
@media (min-width: 768px) {
  .ttl-s03 {
    margin: 30px 0 244px;
    padding: 10px 0 0;
  }
}
.ttl-s03 span {
  display: inline-block;
  font-size: 14px;
  line-height: 1.3571428571;
  margin-right: 11px;
  vertical-align: 10px;
}
.ttl-s04 {
  border-top: 3px solid #dfdfdf;
  font-family: "Manrope", sans-serif;
  font-size: 29px;
  font-weight: 800;
  line-height: 1.3103448276;
  margin: 37px 20px 150px;
  padding: 14px 0 0;
  white-space: nowrap;
  width: 279px;
}
@media (max-width: 350px) {
  .ttl-s04 {
    font-size: 26px;
  }
}
@media (min-width: 768px) {
  .ttl-s04 {
    margin: 30px 0 244px;
    padding: 10px 0 0;
  }
}
.ttl-s04 span {
  display: inline-block;
  font-size: 14px;
  line-height: 1.3571428571;
  margin-right: 11px;
  vertical-align: 10px;
}

/*--------/タイトル----------*/
/*--------SP画像モーダル-----------*/
#sp-modal-image {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: all 400ms ease;
  z-index: 1200;
}
#sp-modal-image.is-active {
  visibility: visible;
  opacity: 1;
}
#sp-modal-image .smi-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0.7;
  z-index: 1;
}
#sp-modal-image .smi-content {
  height: auto;
  max-height: 100%;
  position: relative;
  width: 100%;
  z-index: 2;
}
#sp-modal-image .smi-content img {
  height: auto;
  max-height: none;
  max-width: none;
  position: relative;
  width: 100%;
}
#sp-modal-image .smi-content .btn-close {
  background: #0D6BCF;
  border-radius: 50%;
  height: 40px;
  opacity: 0.7;
  position: absolute;
  right: 10px;
  top: -50px;
  width: 40px;
}
#sp-modal-image .smi-content .btn-close:before {
  background: #FFF;
  content: "";
  display: block;
  left: 50%;
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
  transform-origin: center center;
  width: 15px;
}
#sp-modal-image .smi-content .btn-close:after {
  background: #FFF;
  content: "";
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
  transform-origin: center center;
  width: 15px;
}

/*--------/SP画像モーダル----------*/
/*--------SP ZOOMアイコン-----------*/
@media (max-width: 767px) {
  .btn-icon-zoom {
    position: relative;
  }
  .btn-icon-zoom::before {
    background: url(../images/common/icon_zoom.svg) no-repeat 0 0;
    background-size: 25px 25px;
    bottom: 0;
    content: "";
    height: 25px;
    pointer-events: none;
    position: absolute;
    right: 20px;
    width: 25px;
    z-index: 1;
  }
  .btn-icon-zoom a {
    display: block;
  }
}
@media (min-width: 768px) {
  .btn-icon-zoom a {
    pointer-events: none;
  }
}

/*--------/SP ZOOMアイコン----------*/
/*--------other-----------*/
.other-contents-company {
  padding: 100px 20px 0;
}
@media (min-width: 768px) {
  .other-contents-company {
    padding: 100px 0 0;
  }
}
.other-contents-company > p {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3333333333;
  margin-bottom: 31px;
  text-align: center;
}
@media (min-width: 768px) {
  .other-contents-company > p {
    font-size: 28px;
    line-height: 1.3214285714;
    margin-bottom: 36px;
    text-align: center;
  }
}
.other-contents-company ul {
  padding-top: -15px;
  width: 100%;
}
@media (min-width: 768px) {
  .other-contents-company ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: -13px;
  }
}
.other-contents-company ul::before, .other-contents-company ul::after {
  content: "";
  height: 0;
  order: 1;
}
@media (min-width: 768px) {
  .other-contents-company ul::before, .other-contents-company ul::after {
    width: calc((100% - 26px) / 3);
  }
}
.other-contents-company ul li {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .other-contents-company ul li {
    margin-top: 13px;
    width: calc((100% - 26px) / 3);
  }
}
.other-contents-company ul li a {
  align-items: center;
  background-color: #E9ECF0;
  background-position: 18px center;
  background-repeat: no-repeat;
  background-size: 60px 60px !important;
  display: flex;
  font-size: 17px;
  height: 92px;
  line-height: 1.7058823529;
  padding: 0 20px 0 97px;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .other-contents-company ul li a {
    background-size: 65px 65px !important;
    background-position: 20px center;
    font-size: 19px;
    height: 100px;
    padding: 0 0 0 105px;
    max-width: 380px;
  }
}
.other-contents-company ul li a:hover {
  background-color: #BF2812;
  color: #fff;
  font-weight: bold;
  opacity: 1;
}
.other-contents-company ul li a br.sp {
  display: block;
}
@media (min-width: 768px) {
  .other-contents-company ul li a br.sp {
    display: none;
  }
}
.other-contents-company ul li a br.pc {
  display: none;
}
@media (min-width: 768px) {
  .other-contents-company ul li a br.pc {
    display: block;
  }
}
.other-contents-company ul li.active a {
  background-color: #1e4292 !important;
  color: #fff;
  font-weight: bold;
}
.other-contents-company ul li.active a:hover::after {
  display: none;
}
@media (max-width: 767px) {
  .other-contents-company ul li:nth-child(1) a {
    background-image: url(../images/common/other_contents/other_contents01_sp.png);
  }
}
@media (min-width: 768px) {
  .other-contents-company ul li:nth-child(1) a {
    background-image: url(../images/common/other_contents/other_contents01.png);
  }
}
@media (max-width: 767px) {
  .other-contents-company ul li:nth-child(2) a {
    background-image: url(../images/common/other_contents/other_contents02_sp.png);
  }
}
@media (min-width: 768px) {
  .other-contents-company ul li:nth-child(2) a {
    background-image: url(../images/common/other_contents/other_contents02.png);
  }
}
@media (max-width: 767px) {
  .other-contents-company ul li:nth-child(3) a {
    background-image: url(../images/common/other_contents/other_contents03_sp.png);
  }
}
@media (min-width: 768px) {
  .other-contents-company ul li:nth-child(3) a {
    background-image: url(../images/common/other_contents/other_contents03.png);
  }
}
@media (max-width: 767px) {
  .other-contents-company ul li:nth-child(4) a {
    background-image: url(../images/common/other_contents/other_contents04_sp.png);
  }
}
@media (min-width: 768px) {
  .other-contents-company ul li:nth-child(4) a {
    background-image: url(../images/common/other_contents/other_contents04.png);
  }
}
@media (max-width: 767px) {
  .other-contents-company ul li:nth-child(5) a {
    background-image: url(../images/common/other_contents/other_contents05_sp.png);
  }
}
@media (min-width: 768px) {
  .other-contents-company ul li:nth-child(5) a {
    background-image: url(../images/common/other_contents/other_contents05.png);
  }
}
@media (max-width: 767px) {
  .other-contents-company ul li:nth-child(6) a {
    background-image: url(../images/common/other_contents/other_contents06_sp.png);
  }
}
@media (min-width: 768px) {
  .other-contents-company ul li:nth-child(6) a {
    background-image: url(../images/common/other_contents/other_contents06.png);
  }
}
@media (max-width: 767px) {
  .other-contents-company ul li:nth-child(7) a {
    background-image: url(../images/common/other_contents/other_contents07_sp.png);
  }
}
@media (min-width: 768px) {
  .other-contents-company ul li:nth-child(7) a {
    background-image: url(../images/common/other_contents/other_contents07.png);
  }
}
@media (max-width: 767px) {
  .other-contents-company ul li:nth-child(8) a {
    background-image: url(../images/common/other_contents/other_contents08_sp.png);
  }
}
@media (min-width: 768px) {
  .other-contents-company ul li:nth-child(8) a {
    background-image: url(../images/common/other_contents/other_contents08.png);
  }
}
@media (max-width: 767px) {
  .other-contents-company ul li:nth-child(9) a {
    background-image: url(../images/common/other_contents/other_contents09_sp.png);
  }
}
@media (min-width: 768px) {
  .other-contents-company ul li:nth-child(9) a {
    background-image: url(../images/common/other_contents/other_contents09.png);
  }
}
@media (max-width: 767px) {
  .other-contents-company ul li:nth-child(10) a {
    background-image: url(../images/common/other_contents/other_contents10_sp.png);
  }
}
@media (min-width: 768px) {
  .other-contents-company ul li:nth-child(10) a {
    background-image: url(../images/common/other_contents/other_contents10.png);
  }
}

.other-contents-ir {
  padding: 50px 20px 0;
}
@media (min-width: 768px) {
  .other-contents-ir {
    padding: 100px 0 0;
  }
}
.other-contents-ir > p {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3333333333;
  margin-bottom: 31px;
  text-align: center;
}
@media (min-width: 768px) {
  .other-contents-ir > p {
    font-size: 28px;
    line-height: 1.3214285714;
    margin-bottom: 36px;
    text-align: center;
  }
}
.other-contents-ir ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 15px 20px;
}
@media (min-width: 768px) {
  .other-contents-ir ul {
    gap: 57px 19px;
  }
}
.other-contents-ir ul li {
  width: calc((100% - 20px) / 2);
}
@media (min-width: 768px) {
  .other-contents-ir ul li {
    width: calc((100% - 57px) / 4);
  }
}
.other-contents-ir ul li a {
  display: block;
  margin-bottom: 17px;
}
.other-contents-ir ul li p {
  font-size: 16px;
  line-height: 1.25;
  text-align: center;
}
@media (min-width: 768px) {
  .other-contents-ir ul li p {
    font-size: 17px;
    line-height: 1.1764705882;
  }
}

.btn-s01 {
  align-items: center;
  background: #1e4292 url(../images/common/icon_link_arrow.svg) no-repeat right 15px center;
  background-size: 30px 30px;
  border-radius: 31px;
  color: #fff !important;
  display: flex;
  font-size: 14px;
  font-weight: bold;
  height: 61px;
  padding-left: 17px;
  transition: 0.6s;
  width: 100%;
}
@media (min-width: 768px) {
  .btn-s01 {
    font-size: 14px;
    height: 61px;
    line-height: 1.3571428571;
    padding-left: 20px;
    width: 225px;
  }
}
.btn-s01:hover {
  opacity: 1;
}
@media (min-width: 768px) {
  .btn-s01:hover {
    background-color: #2f53a3;
    background-position-x: right 8px;
    color: #fff;
  }
}
@media (min-width: 768px) {
  .btn-s01.large {
    width: 270px;
  }
}
@media (min-width: 768px) {
  .btn-s01.large2 {
    width: 314px;
  }
}

.btn-s02 {
  align-items: center;
  background: #fff url(../images/common/icon_link_arrow03.svg) no-repeat right 15px center;
  background-size: 30px 30px;
  border-radius: 31px;
  color: #1E4292 !important;
  display: flex;
  font-size: 14px;
  font-weight: bold;
  height: 61px;
  padding-left: 17px;
  transition: 0.6s;
  width: 100%;
}
@media (min-width: 768px) {
  .btn-s02 {
    font-size: 14px;
    height: 61px;
    line-height: 1.3571428571;
    padding-left: 20px;
    width: 225px;
  }
}
.btn-s02:hover {
  opacity: 1;
}
@media (min-width: 768px) {
  .btn-s02:hover {
    background-position-x: right 8px;
    opacity: 0.7;
  }
}
@media (min-width: 768px) {
  .btn-s02.large {
    width: 270px;
  }
}
@media (min-width: 768px) {
  .btn-s02.large2 {
    width: 314px;
  }
}

.area-ir-information {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .area-ir-information {
    display: flex;
    margin: 0 auto;
    max-width: 1266px;
    padding: 0 50px;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .area-ir-information {
    max-width: 1206px;
    padding: 0 20px;
  }
}
@media (min-width: 768px) {
  .area-ir-information .ttl-link {
    border-right: 1px solid #D8D8D8;
    margin-right: 53px;
    padding: 155px 48px 0 0;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .area-ir-information .ttl-link {
    margin-right: 4.1864139021vw;
    padding-right: 3.7914691943vw;
  }
}
@media (min-width: 768px) {
  .area-ir-information .ttl-link .ttl-s02 {
    margin-bottom: 24px;
  }
}
.area-ir-information-box {
  flex: 1;
}
@media (min-width: 768px) {
  .area-ir-information-box .ir-get-list {
    display: flex;
    flex-direction: column;
    padding-top: 136px;
  }
}
.area-ir-information-box .ir-get-list-select {
  background: #EFF1F4 url(../images/common/icon_select.svg) no-repeat right 10px center;
  background-size: 13px 20px;
  cursor: pointer;
  height: 44px;
  margin-bottom: 28px;
  padding: 0 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .area-ir-information-box .ir-get-list-select {
    display: none;
  }
}
.area-ir-information-box .ir-get-list-select:hover {
  opacity: 0.7;
}
.area-ir-information-box .ir-get-list [role=tablist] {
  display: none;
}
@media (min-width: 768px) {
  .area-ir-information-box .ir-get-list [role=tablist] {
    align-items: center;
    justify-content: space-between;
    display: flex;
    margin: 0 0 60px auto;
  }
}
@media (min-width: 768px) {
  .area-ir-information-box .ir-get-list [role=tablist] li {
    padding: 8px 18px;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .area-ir-information-box .ir-get-list [role=tablist] li {
    margin-left: 0.7898894155vw;
    padding: 0.6319115324vw 1.579778831vw;
  }
}
.area-ir-information-box .ir-get-list .list-topics .ir-news {
  margin: -30px 0 40px;
}
@media (min-width: 768px) {
  .area-ir-information-box .ir-get-list .list-topics .ir-news {
    margin: -40px 0 0;
  }
}
.area-ir-information-box .ir-get-list .list-topics .ir-news li {
  font-size: 15px;
  line-height: 2;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .area-ir-information-box .ir-get-list .list-topics .ir-news li {
    align-items: center;
    display: flex;
    margin-top: 40px;
  }
}
.area-ir-information-box .ir-get-list .list-topics .ir-news li .date-category {
  margin-bottom: 9px;
}
@media (min-width: 768px) {
  .area-ir-information-box .ir-get-list .list-topics .ir-news li .date-category {
    margin-bottom: 0;
  }
}
.area-ir-information-box .ir-get-list .list-topics .ir-news li .date-category .date {
  margin-right: 25px;
}
@media (min-width: 768px) and (max-width: 1265px) {
  .area-ir-information-box .ir-get-list .list-topics .ir-news li .date-category .date {
    margin-right: 1.9747235387vw;
  }
}
.area-ir-information-box .ir-get-list .list-topics .ir-news li .date-category .category {
  align-items: center;
  background: #edeef0;
  border-radius: 14px;
  display: inline-flex;
  font-size: 12px;
  height: 27px;
  justify-content: center;
  line-height: 2.5;
  margin-right: 20px;
  width: 105px;
}
@media (min-width: 768px) and (max-width: 1265px) {
  .area-ir-information-box .ir-get-list .list-topics .ir-news li .date-category .category {
    margin-right: 1.579778831vw;
  }
}
.area-ir-information-box .ir-get-list .list-topics .ir-news li > p {
  font-size: 14px;
  line-height: 2.1428571429;
}
@media (min-width: 768px) {
  .area-ir-information-box .ir-get-list .list-topics .ir-news li > p {
    font-size: 15px;
    line-height: 2;
    flex: 1;
    padding-right: 0;
  }
}
.area-ir-information-box .ir-get-list .list-topics .ir-news li > p a {
  color: #7E7E7E;
}
@media (min-width: 768px) {
  .area-ir-information-box .ir-get-list .list-topics .ir-news li > p a {
    color: #000;
  }
}

.area-company-information {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .area-company-information {
    margin: 0 auto;
    max-width: 1266px;
    padding: 0 50px;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .area-company-information {
    max-width: 1206px;
    padding: 0 20px;
  }
}
@media (min-width: 768px) {
  .area-company-information .ttl-link {
    margin-right: 53px;
    padding: 155px 48px 0 0;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .area-company-information .ttl-link {
    margin-right: 4.1864139021vw;
    padding-right: 3.7914691943vw;
  }
}
@media (min-width: 768px) {
  .area-company-information .ttl-link .ttl-s02 {
    margin-bottom: 24px;
  }
}
@media (min-width: 768px) {
  .area-company-information .ttl-link p {
    margin: 0 0 0 auto;
  }
}
.area-company-information-box {
  flex: 1;
}
@media (min-width: 768px) {
  .area-company-information-box .company-information-get-list {
    display: flex;
    flex-direction: column;
    padding-top: 136px;
  }
}
.area-company-information-box .company-information-get-list-select {
  background: #EFF1F4 url(../images/common/icon_select.svg) no-repeat right 10px center;
  background-size: 13px 20px;
  cursor: pointer;
  height: 44px;
  margin-bottom: 28px;
  padding: 0 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .area-company-information-box .company-information-get-list-select {
    display: none;
  }
}
.area-company-information-box .company-information-get-list-select:hover {
  opacity: 0.7;
}
.area-company-information-box .company-information-get-list [role=tablist] {
  display: none;
}
@media (min-width: 768px) {
  .area-company-information-box .company-information-get-list [role=tablist] {
    align-items: center;
    display: flex;
    margin: 0 0 60px auto;
    position: relative;
    z-index: 10px;
  }
}
@media (min-width: 768px) {
  .area-company-information-box .company-information-get-list [role=tablist] li {
    margin-left: 10px;
    padding: 8px 20px;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .area-company-information-box .company-information-get-list [role=tablist] li {
    margin-left: 0.7898894155vw;
    padding: 0.6319115324vw 1.579778831vw;
  }
}
.area-company-information-box .company-information-get-list .list-topics .company-information-news {
  margin: -30px 0 40px;
}
@media (min-width: 768px) {
  .area-company-information-box .company-information-get-list .list-topics .company-information-news {
    margin: -40px 0 0;
  }
}
.area-company-information-box .company-information-get-list .list-topics .company-information-news li {
  font-size: 15px;
  line-height: 2;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .area-company-information-box .company-information-get-list .list-topics .company-information-news li {
    display: flex;
    margin-top: 40px;
  }
}
.area-company-information-box .company-information-get-list .list-topics .company-information-news li .date-category {
  margin-bottom: 9px;
}
@media (min-width: 768px) {
  .area-company-information-box .company-information-get-list .list-topics .company-information-news li .date-category {
    margin-bottom: 0;
  }
}
.area-company-information-box .company-information-get-list .list-topics .company-information-news li .date-category .date {
  margin-right: 25px;
}
@media (min-width: 768px) and (max-width: 1265px) {
  .area-company-information-box .company-information-get-list .list-topics .company-information-news li .date-category .date {
    margin-right: 1.9747235387vw;
  }
}
.area-company-information-box .company-information-get-list .list-topics .company-information-news li .date-category .category {
  align-items: center;
  background: #edeef0;
  border-radius: 14px;
  display: inline-flex;
  font-size: 12px;
  height: 27px;
  justify-content: center;
  line-height: 2.5;
  margin-right: 20px;
  width: 105px;
}
@media (min-width: 768px) and (max-width: 1265px) {
  .area-company-information-box .company-information-get-list .list-topics .company-information-news li .date-category .category {
    margin-right: 1.579778831vw;
  }
}
.area-company-information-box .company-information-get-list .list-topics .company-information-news li > p {
  font-size: 14px;
  line-height: 2.1428571429;
}
@media (min-width: 768px) {
  .area-company-information-box .company-information-get-list .list-topics .company-information-news li > p {
    font-size: 15px;
    line-height: 2;
    flex: 1;
  }
}
.area-company-information-box .company-information-get-list .list-topics .company-information-news li > p a {
  color: #7E7E7E;
}
@media (min-width: 768px) {
  .area-company-information-box .company-information-get-list .list-topics .company-information-news li > p a {
    color: #000;
  }
}
.area-company-information.top {
  padding: 105px 20px 0;
}
@media (min-width: 768px) {
  .area-company-information.top {
    display: block;
    padding: 0 20px;
  }
}
@media (min-width: 768px) {
  .area-company-information.top .ttl-link {
    display: flex;
    margin: 0;
    padding: 200px 0 0 0;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .area-company-information.top .ttl-link {
    margin-right: 4.1864139021vw;
    padding-right: 3.7914691943vw;
  }
}
@media (min-width: 768px) {
  .area-company-information.top .ttl-link .ttl-s02 {
    margin-bottom: 24px;
  }
}
.area-company-information.top .ttl-link .ttl-s02::before {
  display: none;
}
@media (min-width: 768px) {
  .area-company-information.top .ttl-link .ttl-s02 span {
    padding: 7px 0 0 0;
  }
}
@media (min-width: 768px) {
  .area-company-information.top .ttl-link p {
    margin: 0 0 0 auto;
  }
}
@media (min-width: 768px) {
  .area-company-information.top .area-company-information-box .company-information-get-list {
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  .area-company-information.top .area-company-information-box .company-information-get-list [role=tablist] {
    margin: 0 0 60px 0;
  }
}

.area-sustainability-initiatives {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .area-sustainability-initiatives {
    margin: 0 auto;
    max-width: 1266px;
    padding: 0 50px;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .area-sustainability-initiatives {
    max-width: 1206px;
    padding: 0 20px;
  }
}
.area-sustainability-initiatives .sustainability-initiatives-list {
  margin-bottom: 72px;
}
@media (min-width: 768px) {
  .area-sustainability-initiatives .sustainability-initiatives-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 90px;
  }
}
.area-sustainability-initiatives .sustainability-initiatives-list-select {
  background: #EFF1F4 url(../images/common/icon_select.svg) no-repeat right 10px center;
  background-size: 13px 20px;
  cursor: pointer;
  height: 44px;
  margin-bottom: 28px;
  padding: 0 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .area-sustainability-initiatives .sustainability-initiatives-list-select {
    display: none;
  }
}
.area-sustainability-initiatives .sustainability-initiatives-list-select:hover {
  opacity: 0.7;
}
.area-sustainability-initiatives .sustainability-initiatives-list [role=tablist] {
  display: none;
}
@media (min-width: 768px) {
  .area-sustainability-initiatives .sustainability-initiatives-list [role=tablist] {
    align-items: center;
    display: flex;
    margin: 0 auto 50px;
  }
}
@media (min-width: 768px) {
  .area-sustainability-initiatives .sustainability-initiatives-list [role=tablist] li {
    margin: 0 20px;
    padding: 8px 20px;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .area-sustainability-initiatives .sustainability-initiatives-list [role=tablist] li {
    margin: 0 0.7898894155vw;
    padding: 0.6319115324vw 1.579778831vw;
  }
}
.area-sustainability-initiatives .sustainability-initiatives-list .list-article .sustainability-initiatives-news {
  margin: -40px 0 40px;
}
@media (min-width: 768px) {
  .area-sustainability-initiatives .sustainability-initiatives-list .list-article .sustainability-initiatives-news {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: -51px auto 0;
  }
}
.area-sustainability-initiatives .sustainability-initiatives-list .list-article .sustainability-initiatives-news::before, .area-sustainability-initiatives .sustainability-initiatives-list .list-article .sustainability-initiatives-news::after {
  content: "";
  height: 0;
  order: 1;
  width: calc((100% - 52px) / 3);
}
.area-sustainability-initiatives .sustainability-initiatives-list .list-article .sustainability-initiatives-news li {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .area-sustainability-initiatives .sustainability-initiatives-list .list-article .sustainability-initiatives-news li {
    margin-top: 51px;
    width: calc((100% - 52px) / 3);
  }
}
.area-sustainability-initiatives .sustainability-initiatives-list .list-article .sustainability-initiatives-news li a {
  display: block;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .area-sustainability-initiatives .sustainability-initiatives-list .list-article .sustainability-initiatives-news li a {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .area-sustainability-initiatives .sustainability-initiatives-list .list-article .sustainability-initiatives-news li a img {
    display: block;
    height: 17.5355450237vw;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
  }
}
@media (min-width: 1266px) {
  .area-sustainability-initiatives .sustainability-initiatives-list .list-article .sustainability-initiatives-news li a img {
    height: 222px;
  }
}
.area-sustainability-initiatives .sustainability-initiatives-list .list-article .sustainability-initiatives-news li .category-wrap {
  display: flex;
  flex-wrap: wrap;
}
.area-sustainability-initiatives .sustainability-initiatives-list .list-article .sustainability-initiatives-news li .category-wrap p:nth-of-type(3n - 1) {
  margin: 0 8px;
}
@media (min-width: 768px) {
  .area-sustainability-initiatives .sustainability-initiatives-list .list-article .sustainability-initiatives-news li .category-wrap p:nth-of-type(3n - 1) {
    margin: 0 10px;
  }
}
.area-sustainability-initiatives .sustainability-initiatives-list .list-article .sustainability-initiatives-news li .category {
  align-items: center;
  background: #edeef0;
  border-radius: 14px;
  display: inline-flex;
  font-size: 12px;
  height: 27px;
  justify-content: center;
  line-height: 2.5;
  margin-bottom: 15px;
  width: calc((100% - 16px) / 3);
}
@media (min-width: 768px) {
  .area-sustainability-initiatives .sustainability-initiatives-list .list-article .sustainability-initiatives-news li .category {
    border-radius: 17px;
    border-radius: 15px;
    font-size: 15px;
    height: 34px;
    line-height: 1.3333333333;
    margin-bottom: 20px;
    width: calc((100% - 20px) / 3);
  }
}
.area-sustainability-initiatives .sustainability-initiatives-list .list-article .sustainability-initiatives-news li .ttl-article {
  color: #212121;
  font-size: 14px;
  line-height: 1.7142857143;
}
@media (min-width: 768px) {
  .area-sustainability-initiatives .sustainability-initiatives-list .list-article .sustainability-initiatives-news li .ttl-article {
    font-size: 18px;
    line-height: 1.6666666667;
  }
}

#sec-top-recruitment {
  position: relative;
}
#sec-top-recruitment .area-recruitment {
  padding: 45px 0 0 20px;
}
@media (min-width: 768px) {
  #sec-top-recruitment .area-recruitment {
    margin: 0 auto;
    max-width: 1166px;
    padding: 147px 0 0;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  #sec-top-recruitment .area-recruitment {
    max-width: 1206px;
    padding: 147px 20px 0;
  }
}
#sec-top-recruitment .area-recruitment .slider-recruit {
  margin-right: -15px;
  max-height: 216px !important;
  padding: 0 0 0 36px;
  z-index: 99;
}
@media (min-width: 768px) {
  #sec-top-recruitment .area-recruitment .slider-recruit {
    margin-right: 0;
    max-height: 360px !important;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(100px);
    top: 193px;
    width: 100%;
  }
}
@media (min-width: 1366px) {
  #sec-top-recruitment .area-recruitment .slider-recruit {
    transform: translateX(calc(100px + (100vw - 1366px) / 2));
  }
}
@media (min-width: 768px) and (max-width: 1365px) {
  #sec-top-recruitment .area-recruitment .slider-recruit {
    transform: translateX(80px);
  }
}
@media (min-width: 1326px) and (max-width: 1365px) {
  #sec-top-recruitment .area-recruitment .slider-recruit {
    transform: translateX(calc(100px + (100vw - 1366px) / 2));
  }
}
#sec-top-recruitment .area-recruitment .slider-recruit .slick-list {
  max-height: 360px !important;
}
#sec-top-recruitment .area-recruitment .slider-recruit .slick-list .slick-track {
  max-height: 360px !important;
}
#sec-top-recruitment .area-recruitment .slider-recruit .slick-list .slick-track .slick-slide {
  min-width: 279px;
  max-width: 279px;
}
@media (min-width: 768px) {
  #sec-top-recruitment .area-recruitment .slider-recruit .slick-list .slick-track .slick-slide {
    min-width: 464px;
    max-width: 464px;
  }
}
#sec-top-recruitment .area-recruitment .slider-recruit div {
  margin: 0 15px 0 0;
}
@media (min-width: 768px) {
  #sec-top-recruitment .area-recruitment .slider-recruit div {
    margin: 0 50px 0 0;
  }
}
#sec-top-recruitment .area-recruitment .slider-recruit .slick-next {
  background: #EFF1F3;
  bottom: 42px;
  left: 0;
  height: 36px;
  position: relative;
  text-align: center;
  width: 36px;
  z-index: 100;
}
@media (min-width: 768px) {
  #sec-top-recruitment .area-recruitment .slider-recruit .slick-next {
    bottom: 70px;
    height: 60px;
    width: 60px;
  }
}
#sec-top-recruitment .area-recruitment .slider-recruit .slick-next::before {
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  color: #fff;
  content: "";
  display: block;
  height: 10px;
  left: calc(50% - 2px);
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center center;
  width: 10px;
}
@media (min-width: 768px) {
  #sec-top-recruitment .area-recruitment .slider-recruit .slick-next::before {
    height: 15px;
    left: calc(50% - 4px);
    width: 15px;
  }
}
#sec-top-recruitment .area-recruitment .slider-recruit .slick-next:hover {
  background: #dee2d4;
}
#sec-top-recruitment .area-recruitment .slider-recruit .slick-prev {
  background: #C42811;
  left: -36px;
  height: 36px;
  position: relative;
  text-align: center;
  top: 210px;
  width: 36px;
  z-index: 100;
}
@media (min-width: 768px) {
  #sec-top-recruitment .area-recruitment .slider-recruit .slick-prev {
    height: 60px;
    left: -59px;
    top: 350px;
    width: 60px;
  }
}
#sec-top-recruitment .area-recruitment .slider-recruit .slick-prev::before {
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  color: #fff;
  content: "";
  display: block;
  height: 10px;
  left: calc(50% + 2px);
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
  transform-origin: center center;
  width: 10px;
}
@media (min-width: 768px) {
  #sec-top-recruitment .area-recruitment .slider-recruit .slick-prev::before {
    height: 15px;
    left: calc(50% + 4px);
    width: 15px;
  }
}
#sec-top-recruitment .area-recruitment .slider-recruit .slick-prev:hover {
  background: #E64a33;
}
#sec-top-recruitment .back-txt-recruit {
  margin: 0 auto;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  #sec-top-recruitment .back-txt-recruit {
    width: 1166px;
    z-index: 0;
  }
}
#sec-top-recruitment .back-txt-recruit span {
  color: #EFF1F4;
  content: "Company";
  font-family: "Manrope", sans-serif;
  font-size: 100px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.33;
  position: absolute;
  left: 72px;
  top: 85px;
  white-space: nowrap;
  z-index: 1;
}
@media (min-width: 768px) {
  #sec-top-recruitment .back-txt-recruit span {
    font-size: 250px;
    left: auto;
    line-height: 1.332;
    right: -300px;
    top: 52px;
  }
}
#sec-top-recruitment .txt-link {
  padding: 70px 20px 0 0;
}
@media (min-width: 768px) {
  #sec-top-recruitment .txt-link {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 378px 0 0 0;
  }
}
#sec-top-recruitment .txt-link p {
  font-size: 25px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  #sec-top-recruitment .txt-link p {
    font-size: 34px;
    line-height: 1.4705882353;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #sec-top-recruitment .txt-link p {
    font-size: 3.4615384615vw;
  }
}
@media (min-width: 768px) {
  #sec-top-recruitment .txt-link a {
    transform: translateY(10px);
  }
}

.pager {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .pager {
    margin: 0 auto;
    padding: 0;
  }
}
.pager .start {
  display: none;
}
@media (min-width: 768px) {
  .pager .start {
    display: block;
    font-size: 19px;
    margin-right: 35px;
  }
}
.pager .start a {
  color: #B4B4B4;
  pointer-events: none;
}
.pager .start.link-active a {
  color: #707070;
  pointer-events: auto;
}
.pager .end {
  display: none;
}
@media (min-width: 768px) {
  .pager .end {
    display: block;
    font-size: 19px;
    margin-left: 35px;
  }
}
.pager .end a {
  color: #B4B4B4;
  pointer-events: none;
}
.pager .end.link-active a {
  color: #707070;
  pointer-events: auto;
}
.pager .btn-prev,
.pager .btn-next {
  width: calc((100% - 50px) / 2);
}
@media (min-width: 768px) {
  .pager .btn-prev,
  .pager .btn-next {
    width: 248px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .pager .btn-prev,
  .pager .btn-next {
    width: 25vw;
  }
}
.pager .btn-prev a,
.pager .btn-next a {
  align-items: center;
  background: #eff1f4;
  color: #707070;
  display: flex;
  font-size: 14px;
  height: 40px;
  justify-content: center;
  pointer-events: none;
}
@media (min-width: 768px) {
  .pager .btn-prev a,
  .pager .btn-next a {
    font-size: 22px;
    height: 62px;
  }
}
.pager .btn-prev.btn-active,
.pager .btn-next.btn-active {
  cursor: pointer;
}
.pager .btn-prev.btn-active a,
.pager .btn-next.btn-active a {
  background: #1E4292;
  color: #fff;
  pointer-events: auto;
}
.pager .page-num {
  color: #1B224C;
  font-size: 14px;
  text-align: center;
  width: 50px;
}
@media (min-width: 768px) {
  .pager .page-num {
    font-size: 20px;
    margin: 0 38px;
    width: auto;
  }
}
@media (min-width: 768px) {
  .pager .btn-active,
  .pager .link-active {
    cursor: pointer;
  }
}

.faq-container .faq-category {
  margin-bottom: 65px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .faq-container .faq-category {
    margin-bottom: 72px;
    padding: 0;
  }
}
.faq-container .faq-category ul {
  margin-top: -16px;
}
@media (min-width: 768px) {
  .faq-container .faq-category ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: -16px;
  }
}
.faq-container .faq-category ul::before {
  content: "";
  height: 0;
  order: 1;
}
.faq-container .faq-category ul li {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .faq-container .faq-category ul li {
    margin-top: 16px;
    width: calc((100% - 16px) / 2);
  }
}
.faq-container .faq-category ul li a {
  background: #1e4292;
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 14px;
  height: 60px;
  justify-content: center;
  line-height: 1.3571428571;
}
@media (min-width: 768px) {
  .faq-container .faq-category ul li a {
    font-size: 18px;
    line-height: 1.3333333333;
  }
}
.faq-container .faq-category ul li a:hover {
  background: #BF2812;
  opacity: 1;
}
.faq-container h2 {
  border-bottom: 1px solid #E4E4E4;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
  margin: 0 20px 20px;
  padding-bottom: 18px;
}
@media (min-width: 768px) {
  .faq-container h2 {
    font-size: 32px;
    line-height: 1.34375;
    margin: 0 auto 35px;
    padding-bottom: 32px;
    max-width: 926px;
  }
}
.faq-container .faq-list {
  margin-bottom: 60px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .faq-container .faq-list {
    margin: 0 auto 72px;
    max-width: 926px;
    padding: 0;
  }
}
.faq-container .faq-list dt {
  position: relative;
  z-index: 1;
}
.faq-container .faq-list dt::before {
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  z-index: 1;
}
.faq-container .faq-list dt::after {
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: rotate(90deg);
  transform-origin: center center;
  transition: 0.5s;
  width: 13px;
  z-index: 1;
}
.faq-container .faq-list dt.open::after {
  transform: rotate(0);
}
.faq-container .faq-list dt p {
  align-items: center;
  background: #eff1f4;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.625;
  min-height: 65px;
  padding: 15px 45px 15px 55px;
  position: relative;
}
@media (min-width: 768px) {
  .faq-container .faq-list dt p {
    font-size: 17px;
    line-height: 1.7058823529;
    min-height: 83px;
    padding: 15px 75px;
  }
}
.faq-container .faq-list dt p:hover {
  opacity: 0.7;
}
.faq-container .faq-list dt p::before {
  color: #1E4292;
  content: "Q";
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  font-weight: 600;
  left: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .faq-container .faq-list dt p::before {
    font-size: 40px;
  }
}
.faq-container .faq-list dd {
  display: none;
}
.faq-container .faq-list dd p {
  border-bottom: 1px solid #C3C3C3;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  justify-content: center;
  line-height: 1.6875;
  min-height: 83px;
  padding: 31px 15px 31px 55px;
  position: relative;
}
@media (min-width: 768px) {
  .faq-container .faq-list dd p {
    font-size: 17px;
    line-height: 1.7058823529;
    min-height: 83px;
    padding: 31px 20px 31px 75px;
  }
}
.faq-container .faq-list dd p::before {
  color: #BF2812;
  content: "A";
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  font-weight: 600;
  left: 17px;
  position: absolute;
  top: 40px;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .faq-container .faq-list dd p::before {
    font-size: 40px;
  }
}
.faq-container .faq-list dd p a {
  color: #3294DD;
  text-decoration: underline;
}
.faq-container .faq-list dd + dt {
  margin-top: 21px;
}
@media (min-width: 768px) {
  .faq-container .faq-list dd + dt {
    margin-top: 21px;
  }
}

.box-alternately {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .box-alternately {
    padding: 0;
  }
}
@media (min-width: 768px) {
  .box-alternately ul li {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
}
.box-alternately ul li + li {
  margin-top: 60px;
}
@media (min-width: 768px) {
  .box-alternately ul li + li {
    margin-top: 124px;
  }
}
.box-alternately ul li > p {
  margin-bottom: 16px !important;
}
@media (min-width: 768px) {
  .box-alternately ul li > p {
    height: 421px;
    margin-bottom: 0 !important;
    max-height: 421px;
  }
}
@media (min-width: 768px) {
  .box-alternately ul li > p img {
    height: 100%;
    display: block;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
  }
}
@media (min-width: 768px) {
  .box-alternately ul li > p img.fit-bottom {
    -o-object-position: bottom;
    object-position: bottom;
  }
}
@media (min-width: 768px) and (max-width: 1285px) {
  .box-alternately ul li div {
    width: calc(50vw - 50px);
  }
}
.box-alternately ul li div h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
  margin-bottom: 21px;
}
@media (min-width: 768px) {
  .box-alternately ul li div h2 {
    font-size: 30px;
    line-height: 1.3333333333;
    margin-bottom: 41px;
  }
}
.box-alternately ul li div h2 span {
  color: #BF2812;
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3333333333;
  padding-top: 7px;
}
@media (min-width: 768px) {
  .box-alternately ul li div h2 span {
    font-size: 20px;
    padding-top: 15px;
    line-height: 1.35;
  }
}
.box-alternately ul li div .text {
  font-size: 16pxx;
  line-height: 1.5625;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .box-alternately ul li div .text {
    line-height: 2;
    margin-bottom: 35px;
    max-width: 533px;
  }
}
@media (min-width: 768px) {
  .box-alternately ul li:nth-of-type(odd) > p {
    margin: 0 calc((100vw - 1166px) / -2) 0 0;
    order: 1;
    width: 50vw;
  }
}
@media (min-width: 768px) and (max-width: 1285px) {
  .box-alternately ul li:nth-of-type(odd) > p {
    margin: 0 -50px 0 0;
    width: calc(50vw + 50px);
  }
}
@media (min-width: 1286px) {
  .box-alternately ul li:nth-of-type(odd) > p {
    text-align: left;
  }
}
.box-alternately ul li:nth-of-type(odd) div {
  padding-right: 0;
}
@media (min-width: 768px) {
  .box-alternately ul li:nth-of-type(odd) div {
    padding-right: 50px;
  }
}
.box-alternately ul li:nth-of-type(even) {
  justify-content: flex-start;
}
.box-alternately ul li:nth-of-type(even) > p {
  margin: 0;
}
@media (min-width: 768px) {
  .box-alternately ul li:nth-of-type(even) > p {
    margin: 0 0 0 calc((100vw - 1166px) / -2);
    width: 50vw;
  }
}
@media (min-width: 768px) and (max-width: 1285px) {
  .box-alternately ul li:nth-of-type(even) > p {
    margin: 0 0 0 -50px;
    width: 50vw;
  }
}
@media (min-width: 1286px) {
  .box-alternately ul li:nth-of-type(even) > p {
    text-align: right;
  }
}
.box-alternately ul li:nth-of-type(even) div {
  padding: 0;
}
@media (min-width: 768px) {
  .box-alternately ul li:nth-of-type(even) div {
    padding: 0 0 0 50px;
  }
}
@media (min-width: 768px) and (max-width: 1285px) {
  .box-alternately ul li:nth-of-type(even) div {
    width: 50vw;
  }
}

.topics-detail {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .topics-detail {
    margin: 0 auto;
    max-width: 811px;
    padding: 0;
  }
}
.topics-detail h1 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3333333333;
  margin-bottom: 38px;
}
@media (min-width: 768px) {
  .topics-detail h1 {
    font-size: 32px;
    line-height: 1.34375;
  }
}
.topics-detail .date-category {
  align-items: center;
  display: flex;
  margin-bottom: 79px;
}
.topics-detail .date-category time {
  font-size: 15px;
  line-height: 2;
  margin-right: 25px;
}
.topics-detail .date-category .category {
  background: #edeef0;
  border-radius: 14px;
  font-size: 12px;
  height: 27px;
  line-height: 2.5;
  padding: 0 33px;
}
.topics-detail h2 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3333333333;
  margin-bottom: 26px;
}
@media (min-width: 768px) {
  .topics-detail h2 {
    font-size: 32px;
    line-height: 1.34375;
  }
}
.topics-detail .txt-topics-detail-s01 {
  font-size: 14px;
  line-height: 1.3571428571;
  margin-bottom: 70px;
}
@media (min-width: 768px) {
  .topics-detail .txt-topics-detail-s01 {
    font-size: 18px;
    line-height: 1.3333333333;
    margin-bottom: 105px;
  }
}
.topics-detail h3 {
  border-left: 9px solid #1e4292;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.32;
  margin: 100px 0 28px;
  padding-left: 15px;
}
@media (min-width: 768px) {
  .topics-detail h3 {
    font-size: 30px;
    line-height: 1.3333333333;
    margin: 145px 0 28px;
  }
}
.topics-detail picture,
.topics-detail img {
  display: block;
  margin: 0 auto 60px;
  max-width: 100%;
  text-align: center;
  width: auto;
}
@media (min-width: 768px) {
  .topics-detail picture,
  .topics-detail img {
    margin: 0 auto 88px;
  }
}
.topics-detail ol {
  counter-reset: num;
  margin-bottom: 47px;
}
.topics-detail ol li {
  counter-increment: num;
  font-size: 14px;
  line-height: 1.3571428571;
  margin-bottom: 5px;
  padding-left: 2em;
  text-indent: -2.3em;
}
@media (min-width: 768px) {
  .topics-detail ol li {
    font-size: 18px;
    line-height: 1.3333333333;
  }
}
.topics-detail ol li::before {
  content: counter(num) ".";
  display: inline-block;
  font-size: 16px;
  text-indent: 0;
  width: 2em;
}
.topics-detail ul {
  counter-reset: num;
  margin-bottom: 47px;
}
.topics-detail ul li {
  font-size: 14px;
  line-height: 1.3571428571;
  margin-bottom: 5px;
  padding-left: 2em;
  text-indent: -2em;
}
@media (min-width: 768px) {
  .topics-detail ul li {
    font-size: 18px;
    line-height: 1.3333333333;
  }
}
.topics-detail ul li::before {
  background: #707070;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 11px;
  margin-right: 1.2em;
  text-indent: 0;
  width: 11px;
}
.topics-detail a {
  color: #00acba;
  font-size: 14px;
  line-height: 1.3571428571;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .topics-detail a {
    font-size: 18px;
    line-height: 1.3333333333;
  }
}
.topics-detail .btn-back {
  margin-top: 70px;
}
.topics-detail .btn-back a {
  align-items: center;
  background: #1e4292;
  color: #fff;
  display: flex;
  height: 77px;
  font-size: 14px;
  font-weight: bold;
  justify-content: center;
  line-height: 1.3571428571;
  text-decoration: none;
}
@media (min-width: 768px) {
  .topics-detail .btn-back a {
    font-size: 20px;
    line-height: 2.2;
    margin: 0 auto;
    width: 381px;
  }
}

.note-contact {
  align-items: center;
  background: #E9ECF0;
  display: flex;
  font-size: 14px;
  justify-content: center;
  line-height: 1.7142857143;
  margin: 0 20px 40px;
  min-height: 140px;
  padding: 0 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .note-contact {
    font-size: 18px;
    line-height: 1.6666666667;
    margin: 0 0 60px;
    min-height: 175px;
    padding: 0;
  }
}
.note-contact .required {
  background: #fff;
  color: #BF2812;
  display: inline-flex;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.7142857143;
  margin-right: 10px;
  padding: 0 12px;
}

@media (min-width: 768px) {
  .note-contact .required {
    font-size: 18px;
    line-height: 1.6666666667;
  }
}
.form-contact {
  margin-bottom: 20px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .form-contact {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 37px;
    padding: 0;
  }
}
.form-contact dt {
  align-items: center;
  background: #1e4292;
  color: #fff;
  display: inline-flex;
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3333333333;
  margin: 0 10px 10px 0;
  min-height: 48px;
  padding: 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .form-contact dt {
    font-size: 20px;
    line-height: 1.35;
    margin: 0 25px 10px 0;
    max-width: 365px;
    min-height: 70px;
    padding: 12px 27px;
  }
}
.form-contact dt .required {
  align-items: center;
  background: #fff;
  color: #BF2812;
  display: inline-flex;
  font-size: 12px;
  font-weight: bold;
  height: 18px;
  line-height: 1.3333333333;
  justify-content: center;
  margin: 0 8px 0 0;
  width: 42px;
}
@media (min-width: 768px) {
  .form-contact dt .required {
    font-size: 18px;
    height: auto;
    line-height: 1.3333333333;
    margin: 0 15px 0 0;
    padding: 0 12px;
    width: auto;
  }
}
.form-contact dt .note {
  color: #fff;
  display: block;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.3076923077;
  padding-top: 7px;
  width: 100%;
}
@media (min-width: 768px) {
  .form-contact dt .note {
    font-size: 16px;
    line-height: 1.3125;
    padding-top: 8px;
  }
}
.form-contact dt + dd {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .form-contact dt + dd {
    margin-bottom: 10px;
  }
}
.form-contact dd {
  align-self: center;
  min-height: 44px;
  width: 100%;
}
@media (min-width: 768px) {
  .form-contact dd {
    margin-bottom: 10px;
    min-height: 50px;
    padding: 10px 0;
    width: calc(100% - 365px - 25px);
  }
}
.form-contact dd.txt {
  min-height: auto;
}
@media (min-width: 768px) {
  .form-contact dd.txt {
    font-size: 18px;
  }
}
.form-contact dd input {
  align-items: center;
  background: #F4F9FF;
  display: inline-flex;
  font-size: 16px;
  height: 44px;
  line-height: 1.3125;
  padding: 15px;
  width: 100%;
}
@media (min-width: 768px) {
  .form-contact dd input {
    height: 50px;
    font-size: 18px;
    line-height: 1.3333333333;
  }
}
.form-contact dd input.ip-post-code {
  font-size: 25px;
  line-height: 1.32;
  margin: 0 0 10px 10px;
  width: 154px;
}
@media (min-width: 768px) {
  .form-contact dd input.ip-post-code {
    margin: 0 0 10px 12px;
    width: 287px;
  }
}
.form-contact dd input[type=checkbox] {
  border: 2px solid #000;
  height: auto;
  margin-right: 11px;
  padding: 0;
  vertical-align: baseline;
  width: auto;
}
.form-contact dd label {
  cursor: pointer;
}
.form-contact dd textarea {
  background: #F4F9FF;
  font-size: 16px;
  height: 240px;
  line-height: 1.3125;
  padding: 15px;
  width: 100%;
}
@media (min-width: 768px) {
  .form-contact dd textarea {
    font-size: 18px;
    height: 253px;
    line-height: 1.3333333333;
  }
}
.form-contact dd .select-address {
  align-items: center;
  background: #F4F9FF url(../images/common/icon_select02.svg) no-repeat right 21px center;
  background-size: 18px 28px;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  height: 44px;
  line-height: 1.3125;
  margin-bottom: 10px;
  padding: 0 15px;
  width: 189px;
}
@media (min-width: 768px) {
  .form-contact dd .select-address {
    font-size: 18px;
    height: 50px;
    line-height: 1.3333333333;
    padding: 15px 15px 10px;
    width: 309px;
  }
}
.form-contact dd .select-address option {
  color: #000;
}
.form-contact dd .post-code {
  font-size: 25px;
  line-height: 1.32;
  margin-right: 10px;
}
@media (min-width: 768px) {
  .form-contact dd .post-code {
    font-size: 30px;
    line-height: 1.3333333333;
    margin-right: 12px;
  }
}
.form-contact dd .post-code .ip-post-code {
  font-size: 13px;
  line-height: 1.3076923077;
}
@media (min-width: 768px) {
  .form-contact dd .post-code .ip-post-code {
    font-size: 18px;
    line-height: 1.3333333333;
  }
}
.form-contact dd .post-code .p-post-code-note {
  margin-left: 10px;
  font-size: 13px;
  line-height: 1.3076923077;
}
@media (min-width: 768px) {
  .form-contact dd .post-code .p-post-code-note {
    margin-left: 12px;
    font-size: 16px;
    line-height: 1.3125;
  }
}
.form-contact dd .re-enter {
  font-size: 13px;
  line-height: 1.3076923077;
  margin-bottom: 10px;
  padding-top: 12px;
}
@media (min-width: 768px) {
  .form-contact dd .re-enter {
    font-size: 16px;
    line-height: 1.3125;
    margin-bottom: 8px;
    padding-top: 9px;
  }
}
.form-contact dd .select-product {
  align-items: center;
  background: #F4F9FF url(../images/common/icon_select02.svg) no-repeat right 21px center;
  background-size: 18px 28px;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  height: 44px;
  line-height: 1.3125;
  padding: 0 15px;
  width: 90%;
}
@media (min-width: 768px) {
  .form-contact dd .select-product {
    font-size: 18px;
    height: 50px;
    line-height: 1.3333333333;
    max-width: 507px;
    padding: 15px;
    width: 100%;
  }
}
.form-contact dd .select-product option {
  color: #000;
}
.form-contact dd .check-list {
  align-items: center;
  display: flex;
  font-size: 14px;
  flex-wrap: wrap;
  padding: 0;
  margin-top: -8px;
  max-width: 500px;
  width: 100%;
}
@media (min-width: 768px) {
  .form-contact dd .check-list {
    font-size: 15px;
  }
}
@media (min-width: 1066px) {
  .form-contact dd .check-list {
    font-size: 16px;
  }
}
.form-contact dd .check-list li {
  margin-top: 8px;
  /* 1番目、4番目、7番目、10番目...の要素を選択 */
  /* 1番目、3番目、5番目、7番目...の要素を選択 */
  /* 2番目、5番目、8番目、11番目...の要素を選択 */
  /* 2番目、4番目、6番目、8番目...の要素を選択 */
}
@media (min-width: 600px) {
  .form-contact dd .check-list li:nth-of-type(3n - 2) {
    width: 170px;
  }
}
@media (min-width: 1066px) {
  .form-contact dd .check-list li:nth-of-type(3n - 2) {
    width: 210px;
  }
}
@media (max-width: 599px) {
  .form-contact dd .check-list li:nth-of-type(2n - 1) {
    width: 170px;
  }
}
@media (min-width: 768px) and (max-width: 1065px) {
  .form-contact dd .check-list li:nth-of-type(2n - 1) {
    width: 170px;
  }
}
@media (min-width: 600px) and (max-width: 767px) {
  .form-contact dd .check-list li:nth-of-type(3n - 1) {
    width: 120px;
  }
}
@media (min-width: 1066px) {
  .form-contact dd .check-list li:nth-of-type(3n - 1) {
    width: 140px;
  }
}
@media (max-width: 599px) {
  .form-contact dd .check-list li:nth-of-type(2n) {
    width: calc(100% - 170px);
  }
}
@media (min-width: 768px) and (max-width: 1065px) {
  .form-contact dd .check-list li:nth-of-type(2n) {
    width: calc(100% - 170px);
  }
}
.form-contact dd .check-list li label {
  display: flex;
  align-items: center;
}
.form-contact dd .error {
  display: block;
  color: #BF2812;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.3076923077;
}
@media (min-width: 768px) {
  .form-contact dd .error {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.3125;
  }
}
.form-contact.confirm {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .form-contact.confirm {
    margin-bottom: 85px;
  }
}
.form-contact.confirm dd {
  min-height: auto;
}
.form-contact .invalid {
  background-color: #fcf5f5;
  border: 1px solid #c0554e;
}

.about-privacy {
  align-items: center;
  background: #E9ECF0;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  justify-content: center;
  line-height: 1.3571428571;
  margin: 0 20px 60px;
  min-height: 200px;
  padding: 0 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .about-privacy {
    font-size: 18px;
    line-height: 1.3333333333;
    margin: 0 0 80px;
    min-height: 235px;
    padding: 0;
  }
}
.about-privacy h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
  margin-bottom: 26px;
}
@media (min-width: 768px) {
  .about-privacy h2 {
    font-size: 25px;
    line-height: 1.32;
  }
}
.about-privacy > p {
  font-size: 14px;
  line-height: 1.3571428571;
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  .about-privacy > p {
    font-size: 18px;
    line-height: 1.3333333333;
  }
}
.about-privacy .check {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
.about-privacy .check input {
  margin-right: 10px;
}
.about-privacy .check label {
  font-size: 14px;
  line-height: 1.3571428571;
}
@media (min-width: 768px) {
  .about-privacy .check label {
    font-size: 18px;
    line-height: 1.3333333333;
  }
}
.about-privacy .check .error {
  display: block;
  width: 100%;
  color: #BF2812;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.3076923077;
}
@media (min-width: 768px) {
  .about-privacy .check .error {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.3125;
  }
}
.about-privacy a {
  color: #379AFF;
  text-decoration: underline;
}
.about-privacy a:hover {
  text-decoration: none;
}

.btn-box {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 777px;
}
.btn-box .form-btn {
  align-items: center;
  background: #1e4292;
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: bold;
  height: 77px;
  line-height: 1.3571428571;
  justify-content: center;
  margin: 0 20px;
  width: calc(100% - 40px);
}
@media (min-width: 768px) {
  .btn-box .form-btn {
    font-size: 20px;
    line-height: 2.2;
    height: 77px;
    margin: 0 auto;
    width: 381px;
  }
}
.btn-box .form-btn:hover {
  opacity: 0.7;
}
.btn-box .form-btn.back {
  background: #E9ECF0;
  color: #000;
  margin-right: 7px;
}
.btn-box .form-btn.send {
  margin-left: 7px;
}
.btn-box .form-btn.send:hover {
  background: #BF2812;
  opacity: 1;
}

.contact-list-link {
  margin-bottom: 70px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .contact-list-link {
    margin-bottom: 94px;
    padding: 0;
  }
}
.contact-list-link ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: -20px;
}
@media (min-width: 768px) {
  .contact-list-link ul {
    margin-top: -50px;
  }
}
.contact-list-link ul::after {
  content: "";
  width: calc((100% - 20px) / 2);
}
@media (min-width: 768px) {
  .contact-list-link ul::after {
    width: calc((100% - 66px) / 3);
  }
}
.contact-list-link ul li {
  margin-top: 20px;
  text-align: center;
  width: calc((100% - 20px) / 2);
}
@media (min-width: 768px) {
  .contact-list-link ul li {
    margin-top: 50px;
    width: calc((100% - 66px) / 3);
  }
}
.contact-list-link ul li a {
  display: block;
  margin-bottom: 17px;
}
@media (min-width: 768px) {
  .contact-list-link ul li a {
    margin-bottom: 35px;
  }
}
.contact-list-link ul li p {
  font-size: 16px;
  line-height: 1.6875;
}
@media (min-width: 768px) {
  .contact-list-link ul li p {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.3333333333;
  }
}

.btn-back-home {
  margin-top: 70px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .btn-back-home {
    padding: 0;
  }
}
.btn-back-home a {
  align-items: center;
  background: #1e4292;
  color: #fff;
  display: flex;
  height: 77px;
  font-size: 14px;
  font-weight: bold;
  justify-content: center;
  line-height: 1.3571428571;
  text-decoration: none;
}
@media (min-width: 768px) {
  .btn-back-home a {
    font-size: 20px;
    line-height: 2.2;
    margin: 0 auto;
    width: 381px;
  }
}

.btn-back-donload {
  margin-top: 70px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .btn-back-donload {
    padding: 0;
  }
}
.btn-back-donload a {
  align-items: center;
  background: #1e4292;
  color: #fff;
  display: flex;
  height: 77px;
  font-size: 14px;
  font-weight: bold;
  justify-content: center;
  line-height: 1.3571428571;
  text-decoration: none;
}
@media (min-width: 768px) {
  .btn-back-donload a {
    font-size: 20px;
    line-height: 2.2;
    margin: 0 auto;
    width: 381px;
  }
}

.area-view-files {
  padding: 0 20px;
  position: relative;
}
@media (min-width: 768px) {
  .area-view-files {
    margin: 0 auto;
    max-width: 920px;
    padding: 0;
  }
}
.area-view-files .finance-file-get-list-select,
.area-view-files .ir-news-get-list-select,
.area-view-files .ir-lib-report {
  background: #EFF1F4 url(../images/common/icon_select.svg) no-repeat right 10px center;
  background-size: 13px 20px;
  cursor: pointer;
  height: 44px;
  margin-bottom: 37px;
  padding: 0 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .area-view-files .finance-file-get-list-select,
  .area-view-files .ir-news-get-list-select,
  .area-view-files .ir-lib-report {
    margin-bottom: 28px;
    position: absolute;
    right: 0;
    top: 0;
    width: 197px;
  }
}
@media (min-width: 768px) {
  .area-view-files .files-container {
    margin-top: 77px;
  }
}
.area-view-files .files-container h2 {
  border-left: 9px solid #1e4292;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.32;
  margin-bottom: 40px;
  padding-left: 10px;
}
@media (min-width: 768px) {
  .area-view-files .files-container h2 {
    font-size: 30px;
    line-height: 1.3333333333;
    margin-bottom: 31px;
    padding-left: 15px;
  }
}
@media (min-width: 768px) {
  .area-view-files .files-container ul {
    border-top: 1px solid #E4E4E4;
    padding-top: 31px;
  }
}
@media (min-width: 768px) {
  .area-view-files .files-container ul li {
    align-items: center;
    display: flex;
  }
}
.area-view-files .files-container ul li + li {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .area-view-files .files-container ul li + li {
    margin-top: 44px;
  }
}
.area-view-files .files-container ul li .date {
  font-size: 14px;
  line-height: 1.3571428571;
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .area-view-files .files-container ul li .date {
    font-size: 17px;
    line-height: 1.7058823529;
    margin: 0 36px 0 0;
    white-space: nowrap;
  }
}
.area-view-files .files-container ul li .file {
  position: relative;
  flex: 1;
}
.area-view-files .files-container ul li .file a {
  font-size: 14px;
  line-height: 1.3571428571;
}
@media (min-width: 768px) {
  .area-view-files .files-container ul li .file a {
    font-size: 17px;
    line-height: 1.7058823529;
  }
}

#sec-common-contact .back-txt-common-contact {
  margin: 0 auto;
  position: relative;
  width: 100%;
  z-index: 0;
}
@media (min-width: 768px) {
  #sec-common-contact .back-txt-common-contact {
    width: 1166px;
  }
}
#sec-common-contact .back-txt-common-contact span {
  color: #284a97;
  font-family: "Manrope", sans-serif;
  font-size: 100px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.33;
  position: absolute;
  left: 20px;
  top: 125px;
  white-space: nowrap;
  z-index: 1;
}
@media (min-width: 768px) {
  #sec-common-contact .back-txt-common-contact span {
    font-size: 250px;
    left: auto;
    line-height: 1.332;
    right: -340px;
    top: 32px;
  }
}
#sec-common-contact .area-contact {
  background: #1E4292;
  color: #fff;
  margin: 78px 0 -70px;
  padding: 48px 20px 49px;
}
@media (min-width: 768px) {
  #sec-common-contact .area-contact {
    margin-top: 64px;
    margin: 64px 0 -130px;
    padding: 140px 20px 145px;
  }
}
#sec-common-contact .area-contact-container {
  position: relative;
}
@media (min-width: 768px) {
  #sec-common-contact .area-contact-container {
    align-items: items;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1266px;
    padding: 0 50px;
  }
}
@media (min-width: 768px) {
  #sec-common-contact .area-contact-container .ttl-info {
    align-items: center;
    display: flex;
  }
}
#sec-common-contact .area-contact-container .ttl-info h2 {
  border-bottom: 1px solid #fff;
  font-family: "Manrope", sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.3333333333;
  margin: 0 0 21px;
  padding: 0 0 26px;
}
@media (min-width: 768px) {
  #sec-common-contact .area-contact-container .ttl-info h2 {
    border-bottom: none;
    border-right: 1px solid #fff;
    margin: 0 29px 0 0;
    padding: 0 60px 0 0;
  }
}
#sec-common-contact .area-contact-container .ttl-info p {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
  font-size: 17px;
  font-weight: normal;
  line-height: 1.7647058824;
}
#sec-common-contact .area-contact-container .btn-common-contact {
  align-items: center;
  background: #bf2812 url(../images/common/icon_contact.svg) no-repeat 40px center;
  border-radius: 32px;
  color: #fff;
  display: inline-flex;
  font-size: 15px;
  font-weight: bold;
  justify-content: center;
  height: 64px;
  line-height: 1.3333333333;
  margin-top: 43px;
  padding-left: 30px;
  width: 201px;
}
@media (min-width: 768px) {
  #sec-common-contact .area-contact-container .btn-common-contact {
    margin-top: 0;
  }
}

.data-pdf a {
  align-items: center;
  display: flex;
}
.data-pdf a span:first-child {
  padding-right: 20px;
}
@media (min-width: 768px) {
  .data-pdf a span:first-child {
    padding-right: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1165px) {
  .data-pdf a span:first-child {
    padding-right: 20px;
  }
}
.data-pdf a span.icon-pdf {
  background: url(../images/common/icon_pdf.svg) no-repeat center 0;
  background-size: 20px 24px;
  color: #C42811;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.6666666667;
  padding: 27px 0 0;
}
@media (min-width: 768px) {
  .data-pdf a span.icon-pdf {
    background: url(../images/common/icon_pdf.svg) no-repeat 0 center;
    font-size: 16px;
    line-height: 1.875;
    padding: 0 0 0 32px;
  }
}
@media (min-width: 768px) and (max-width: 1165px) {
  .data-pdf a span.icon-pdf {
    background: url(../images/common/icon_pdf.svg) no-repeat center 0;
    background-size: 20px 24px;
    font-size: 12px;
    line-height: 1.6666666667;
    padding: 27px 0 0;
  }
}

.products-services-link-box {
  background: #fff;
  padding: 50px 20px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .products-services-link-box {
    padding: 70px 0;
  }
}
@media (min-width: 768px) and (max-width: 1205px) {
  .products-services-link-box {
    padding: 70px 20px;
  }
}
.products-services-link-box ul {
  margin-top: -20px;
}
@media (min-width: 768px) {
  .products-services-link-box ul {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 940px;
  }
}
.products-services-link-box ul li {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .products-services-link-box ul li {
    margin-top: 0;
    width: calc((100% - 20px) / 2);
  }
}
.products-services-link-box ul li.link-catalog-download a {
  align-items: center;
  background: url(../images/products_services/catalog_download_bg_sp.jpg) no-repeat 0 0;
  background-size: cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 25px;
  font-weight: bold;
  height: 141px;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .products-services-link-box ul li.link-catalog-download a {
    background: url(../images/products_services/catalog_download_bg.jpg) no-repeat 0 0;
    background-size: cover;
    height: 160px;
  }
}
.products-services-link-box ul li.link-catalog-download a p:nth-of-type(1) {
  font-size: 32px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  line-height: 1.375;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .products-services-link-box ul li.link-catalog-download a p:nth-of-type(1) {
    font-size: 38px;
  }
}
.products-services-link-box ul li.link-catalog-download a p:nth-of-type(2) {
  align-items: center;
  background: #BF2812;
  border-radius: 22px;
  display: flex;
  font-size: 10px;
  height: 44px;
  justify-content: center;
  margin-top: 10px;
  padding-left: 13px;
  position: relative;
  width: 138px;
  z-index: 1;
}
@media (min-width: 768px) {
  .products-services-link-box ul li.link-catalog-download a p:nth-of-type(2) {
    border-radius: 32px;
    font-size: 12px;
    height: 53px;
    margin-top: 10px;
    padding-left: 20px;
    width: 166px;
  }
}
.products-services-link-box ul li.link-catalog-download a p:nth-of-type(2)::before {
  background: url(../images/common/icon_download02.svg) no-repeat 0 0;
  background-size: 14px 14px;
  content: "";
  display: block;
  height: 14px;
  left: 27.5px;
  position: absolute;
  top: 15.8px;
  width: 14px;
  z-index: 2;
}
@media (min-width: 768px) {
  .products-services-link-box ul li.link-catalog-download a p:nth-of-type(2)::before {
    background-size: 16px 16px;
    height: 16px;
    left: 36px;
    top: calc(50% - 1px);
    transform: translateY(-50%);
    width: 16px;
  }
}
.products-services-link-box ul li.link-contact a {
  align-items: center;
  background: #1E4292;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 25px;
  font-weight: bold;
  height: 141px;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .products-services-link-box ul li.link-contact a {
    height: 160px;
  }
}
.products-services-link-box ul li.link-contact a::before {
  color: #274a96;
  content: "Contact";
  font-family: "Manrope", sans-serif;
  font-size: 114px;
  font-weight: 800;
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
@media (min-width: 768px) {
  .products-services-link-box ul li.link-contact a::before {
    font-size: 145px;
    left: 10px;
    right: unset;
  }
}
.products-services-link-box ul li.link-contact a p:nth-of-type(1) {
  font-size: 32px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  line-height: 1.375;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .products-services-link-box ul li.link-contact a p:nth-of-type(1) {
    font-size: 38px;
  }
}
.products-services-link-box ul li.link-contact a p:nth-of-type(2) {
  align-items: center;
  background: #BF2812;
  border-radius: 22px;
  display: flex;
  font-size: 10px;
  height: 44px;
  justify-content: center;
  margin-top: 10px;
  padding-left: 13px;
  position: relative;
  width: 138px;
  z-index: 1;
}
@media (min-width: 768px) {
  .products-services-link-box ul li.link-contact a p:nth-of-type(2) {
    border-radius: 32px;
    font-size: 12px;
    height: 53px;
    margin-top: 10px;
    padding-left: 25px;
    width: 166px;
  }
}
.products-services-link-box ul li.link-contact a p:nth-of-type(2)::before {
  background: url(../images/common/icon_contact.svg) no-repeat 0 0;
  background-size: 15px 12px;
  content: "";
  display: block;
  height: 12px;
  left: 27.5px;
  position: absolute;
  top: 15.8px;
  width: 15px;
  z-index: 2;
}
@media (min-width: 768px) {
  .products-services-link-box ul li.link-contact a p:nth-of-type(2)::before {
    background-size: 18px 14px;
    height: 14px;
    left: 36px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
  }
}

@media (min-width: 768px) {
  .img-mx358 {
    max-width: 358px;
  }
}

@media (min-width: 768px) {
  .img-mx367 {
    max-width: 367px;
  }
}

@media (min-width: 768px) {
  .img-mx373 {
    max-width: 373px;
  }
}

@media (min-width: 768px) {
  .img-mx400 {
    max-width: 400px;
  }
}

@media (min-width: 768px) {
  .img-mx496 {
    max-width: 496px;
  }
}

/*--------/other----------*/
/*--------/en----------*/
@media (min-width: 768px) {
  .c-banner-links {
    display: flex;
  }
}

.c-banner-links__item {
  align-items: center;
  background-size: cover;
  background-position: center;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .c-banner-links__item {
    padding: 44px;
    flex: 1;
    width: 50%;
    height: 437px;
  }
}
.c-banner-links__item.m-products {
  background-image: url(/assets/images/en/top/top-banner-1.jpg);
}
.c-banner-links__item.m-products .c-banner-links__title::before {
  background: url(../images/top/icon_service.svg) no-repeat 0 0;
}
@media (min-width: 768px) {
  .c-banner-links__item.m-products .c-banner-links__btn .btn-s01 {
    width: 265px;
  }
}
.c-banner-links__item.m-library {
  background-image: url(/assets/images/en/top/top-banner-2.jpg);
}
.c-banner-links__item.m-library .c-banner-links__title::before {
  background-image: url(../images/common/icon_ir_information_white.svg);
}

.c-banner-links__title {
  color: #fff;
  text-align: center;
  font-size: 25px;
  margin-bottom: 0.5em;
}
@media (min-width: 768px) {
  .c-banner-links__title {
    font-size: 30px;
  }
}
.c-banner-links__title::before {
  background-size: 100% 100%;
  content: "";
  display: inline-block;
  margin-top: -0.3em;
  margin-right: 15px;
  height: 25px;
  width: 25px;
}
@media (min-width: 768px) {
  .c-banner-links__title::before {
    height: 28px;
    width: 28px;
  }
}

.c-banner-links__summary {
  color: #fff;
  line-height: 2;
  font-size: 14px;
}

.c-banner-links__btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .c-banner-links__btn {
    margin-top: 20px;
    width: 100%;
  }
  .c-banner-links__btn .btn-s01 {
    width: 100%;
  }
}

/*--------/en----------*/
html {
  scroll-behavior: smooth;
}

/*--------------------------
	header
--------------------------*/
.header {
  background: #fff;
  position: relative;
}
@media (max-width: 767px) {
  .header {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
    height: 70px;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
  }
}
@media (min-width: 768px) {
  .header {
    align-items: center;
    display: flex;
    height: 100px;
    justify-content: space-between;
    z-index: 999;
  }
}
.header.fixed {
  animation: SlideDown 1s;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}
.header .h-logo {
  padding: 12.5px 0 12.5px 14px;
  width: 83px;
}
@media (min-width: 768px) {
  .header .h-logo {
    margin-left: 25px;
    padding: 0;
    width: 104px;
  }
}
.header .h-contents {
  display: none;
}
@media (min-width: 768px) {
  .header .h-contents {
    display: flex;
  }
}
@media (min-width: 768px) {
  .header .h-contents .h-nav .sub-menu {
    display: flex;
    flex-direction: row-reverse;
    font-size: 14px;
    line-height: 1.3571428571;
    margin: 0 30px 14px 0;
    padding-top: 20px;
  }
}
@media (min-width: 768px) {
  .header .h-contents .h-nav .sub-menu li {
    margin-right: 20px;
  }
}
@media (min-width: 768px) {
  .header .h-contents .h-nav .sub-menu li:first-child {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .header .h-contents .h-nav .sub-menu li.active a {
    color: #000;
  }
}
@media (min-width: 768px) {
  .header .h-contents .h-nav .sub-menu li.catalog-dl a {
    align-items: center;
    background: #BF2812 url(../images/common/icon_download02.svg) no-repeat 13px 7px;
    background-size: 11px 11px;
    border-radius: 21px;
    color: #fff;
    display: inline-flex;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.3333333333;
    height: 26px;
    padding-left: 29px;
    width: 153px;
  }
}
@media (min-width: 768px) {
  .header .h-contents .h-nav .sub-menu li a {
    color: #989898;
  }
}
@media (min-width: 768px) {
  .header .h-contents .h-nav .main-menu > ul {
    display: flex;
  }
}
@media (min-width: 768px) {
  .header .h-contents .h-nav .main-menu > ul > li {
    font-weight: bold;
    margin-right: 30px;
    padding-bottom: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .header .h-contents .h-nav .main-menu > ul > li {
    font-size: 1.2638230648vw;
    margin-right: 2.3696682464vw;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header .h-contents .h-nav .main-menu > ul > li {
    font-size: 13px;
  }
}
.header .h-contents .h-nav .main-menu > ul > li.active > a {
  color: #1e4292 !important;
}
.header .h-contents .h-nav .main-menu > ul > li.active > a:hover {
  opacity: 1;
}
.header .h-contents .h-nav .main-menu > ul > li .menu-contents {
  display: none;
  left: 0;
  height: auto;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 998;
}
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper {
  background: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16) inset;
  padding: 40px 20px;
}
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner {
  align-items: center;
  display: flex;
  margin: 0 auto;
  max-width: 1266px;
}
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .left-container {
  min-width: 300px;
  width: 327px;
}
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container {
  border-left: 1px solid #DFDFDF;
  margin-right: 40px;
  padding-left: 40px;
  width: 460px;
}
@media (min-width: 1166px) and (max-width: 1265px) {
  .header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container {
    margin-right: 3.1595576619vw;
    padding-left: 3.1595576619vw;
    width: auto;
  }
}
@media (min-width: 768px) and (max-width: 1165px) {
  .header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container {
    margin-right: 1.579778831vw;
    padding-left: 1.579778831vw;
    width: auto;
  }
}
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container + .right-container {
  width: 432px;
}
@media (min-width: 768px) and (max-width: 1265px) {
  .header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container + .right-container {
    width: auto;
  }
}
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container {
  border-left: 1px solid #DFDFDF;
  padding-left: 40px;
  max-width: 921px;
}
@media (min-width: 1166px) and (max-width: 1265px) {
  .header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container {
    padding-left: 3.1595576619vw;
  }
}
@media (min-width: 768px) and (max-width: 1165px) {
  .header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container {
    padding-left: 1.579778831vw;
  }
}
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container .single-link {
  margin-bottom: 16px;
}
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container .single-link + p {
  font-size: 17px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container .single-link img {
  height: 332px;
}
@media (min-width: 768px) and (max-width: 1265px) {
  .header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container .single-link img {
    height: 26.224328594vw;
    width: auto;
  }
}
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container,
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container {
  border-left: 1px solid #DFDFDF;
  padding-left: 40px;
  max-width: 921px;
}
@media (min-width: 1166px) and (max-width: 1265px) {
  .header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container,
  .header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container {
    padding-left: 3.1595576619vw;
  }
}
@media (min-width: 768px) and (max-width: 1165px) {
  .header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container,
  .header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container {
    padding-left: 1.579778831vw;
  }
}
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container .link-list,
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container .link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: -28px;
  max-width: 860px;
  text-align: center;
  width: 100%;
}
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container .link-list::before, .header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container .link-list::after,
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container .link-list::before,
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container .link-list::after {
  content: "";
  height: 0;
  order: 1;
}
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container .link-list li,
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container .link-list li {
  margin-top: 28px;
  max-width: 200px;
}
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container .link-list li a,
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container .link-list li a {
  display: block;
  margin-bottom: 16px;
}
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container .link-list li a img,
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container .link-list li a img {
  width: 100%;
}
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container .link-list li p,
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container .link-list li p {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.4285714286;
}
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container .link-list.column4 li,
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container .link-list.column4 li {
  width: calc((100% - 4.8939641109vw) / 4);
}
@media (min-width: 768px) {
  .header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container .link-list.column4::before, .header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container .link-list.column4::after,
  .header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container .link-list.column4::before,
  .header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container .link-list.column4::after {
    width: calc((100% - 4.8939641109vw) / 4);
  }
}
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container .link-list.column3 li,
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container .link-list.column3 li {
  width: calc((100% - 3.2626427406vw) / 3);
}
@media (min-width: 768px) {
  .header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container .link-list.column3::before, .header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container .link-list.column3::after,
  .header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container .link-list.column3::before,
  .header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container .link-list.column3::after {
    width: calc((100% - 3.2626427406vw) / 3);
  }
}
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container .link-list.column2 li,
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container .link-list.column2 li {
  width: calc((100% - 1.6313213703vw) / 2);
}
@media (min-width: 768px) {
  .header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container .link-list.column2::before, .header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container .link-list.column2::after,
  .header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container .link-list.column2::before,
  .header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container .link-list.column2::after {
    width: calc((100% - 1.6313213703vw) / 2);
  }
}
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container .link-list.column1,
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container .link-list.column1 {
  display: block;
  margin-top: -29px;
}
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container .link-list.column1 li,
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container .link-list.column1 li {
  max-width: 100%;
  width: 100%;
}
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container .link-list.column1 li + li,
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container .link-list.column1 li + li {
  margin-top: 29px;
}
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container .link-list.column1 li a,
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container .link-list.column1 li a {
  margin-bottom: 10px;
}
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container .link-list.column1.row2,
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container .link-list.column1.row2 {
  display: flex;
  margin-top: 0;
}
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container .link-list.column1.row2 li,
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container .link-list.column1.row2 li {
  width: calc((100% - 35px) / 2);
}
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .center-container .link-list.column1.row2 li + li,
.header .h-contents .h-nav .main-menu > ul > li .menu-contents-wrapper-inner .right-container .link-list.column1.row2 li + li {
  margin-left: 35px;
}
@media (min-width: 768px) {
  .header .h-contents .h-nav .main-menu > ul > li:nth-of-type(1) .right-container {
    max-height: none;
    padding: 0 40px;
    overflow-y: auto;
  }
}
.header .h-contents .h-contact a {
  background: #1e4292 url(../images/common/icon_mail.svg) no-repeat top 32px center;
  background-size: 22px 18px;
  color: #fff;
  position: relative;
}
@media (min-width: 768px) {
  .header .h-contents .h-contact a {
    display: flex;
    font-size: 12px;
    font-weight: bold;
    justify-content: center;
    padding: 55px 0 29px;
    width: 100px;
  }
}
@media (min-width: 768px) {
  .header.m-type2 .h-contents .h-nav .sub-menu li.catalog-dl a {
    width: 145px;
  }
}

/*--------------------------
	main
--------------------------*/
.main {
  position: relative;
}
@media (max-width: 767px) {
  .main.main--no-mb {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .main.main--no-mb {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .main.mt-adjustment {
    margin-top: 100px;
  }
}
@media (max-width: 767px) {
  .main {
    margin-bottom: 70px;
    padding-top: 70px;
  }
}
@media (min-width: 768px) {
  .main {
    margin-bottom: 130px;
  }
}
@media (min-width: 768px) {
  .main-container {
    margin: 0 auto;
    max-width: 1266px;
    padding: 84px 50px 0;
    position: relative;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .main-container {
    padding: 6.2401263823vw 3.9494470774vw 0;
  }
}
.main-container .breadcrumbs-ttl-wrapper {
  display: flex;
  flex-direction: column;
}
.main-container .breadcrumbs-ttl-wrapper .breadcrumbs {
  order: 0;
}
.main-container .breadcrumbs-ttl-wrapper h1 {
  order: -1;
}
.main-container .breadcrumbs-ttl-wrapper .page-mv {
  order: 1;
}
.main-container .breadcrumbs {
  margin-bottom: 28px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .main-container .breadcrumbs {
    padding: 0;
  }
}
.main-container .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
}
.main-container .breadcrumbs ol li {
  color: #707070;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .main-container .breadcrumbs ol li {
    font-size: 13px;
    line-height: 1.7;
  }
}
.main-container .breadcrumbs ol li:not(:first-child)::before {
  content: "|";
  padding: 0 3px;
}
.main-container .breadcrumbs ol li a {
  color: #707070;
  vertical-align: baseline;
}
.main-container .breadcrumbs ol li:first-child a {
  color: #000;
}

/*--------------------------
	footer
--------------------------*/
.footer {
  background: #EFF1F4;
}
.footer .f-contents {
  padding: 35px 20px 43px;
}
@media (min-width: 768px) {
  .footer .f-contents {
    box-sizing: content-box;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1266px;
    padding: 0 20px 109px;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .footer .f-contents {
    align-items: center;
    flex-direction: column;
    padding: 0 20px 40px;
  }
}
.footer .f-contents .logo-address {
  font-size: 13px;
  line-height: 1.9230769231;
  text-align: center;
}
@media (min-width: 768px) {
  .footer .f-contents .logo-address {
    font-size: 13px;
    margin-right: 140px;
    padding-top: 79px;
    text-align: left;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .footer .f-contents .logo-address {
    margin-right: 0;
    padding-top: 40px;
  }
}
.footer .f-contents .logo-address .f-logo {
  margin: 0 auto 27px;
  text-align: center;
  width: 282px;
}
@media (min-width: 768px) {
  .footer .f-contents .logo-address .f-logo {
    margin: 0 0 27px;
  }
}
@media (min-width: 768px) {
  .footer .f-contents .logo-address p {
    white-space: nowrap;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .footer .f-contents .logo-address p {
    text-align: center;
  }
}
.footer .f-contents .logo-address .f-tel {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  gap: 4px;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.2307692308;
}
@media (min-width: 768px) {
  .footer .f-contents .logo-address .f-tel {
    justify-content: flex-start;
    margin-top: 10px;
    gap: 5px;
    font-size: 13px;
    line-height: 1.2307692308;
  }
}
.footer .f-contents .logo-address .f-tel::before {
  content: "";
  border-radius: 50%;
  background-image: url("data:image/svg+xml;charset=utf8,%3C!--%20Generator%3A%20Adobe%20Illustrator%2018.1.1%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200)%20--%3E%3Csvg%20version%3D%221.1%22%20id%3D%22_x32_%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20512%20512%22%20style%3D%22width%3A%20256px%3B%20height%3A%20256px%3B%20opacity%3A%201%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%23000000%3B%7D%3C%2Fstyle%3E%3Cg%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M256%2C0C114.618%2C0%2C0%2C114.617%2C0%2C256c0%2C141.382%2C114.618%2C256%2C256%2C256s256-114.618%2C256-256%20C512%2C114.617%2C397.383%2C0%2C256%2C0z%20M375.688%2C364.187c-3.094%2C3.602-32.18%2C41.883-78.477%2C25.758%20c-46.312-16.125-81.992-45.398-108.187-76.492c-26.203-31.094-49-71.218-57.047-119.586c-8.031-48.367%2C34.618-70.531%2C38.695-72.977%20c4.078-2.446%2C21.969-6.687%2C30%2C5.258c8.008%2C11.946%2C22.313%2C48.344%2C23.578%2C57.126c1.273%2C8.781-7.922%2C18.5-18.492%2C20.507%20c-10.578%2C2.008-10.047%2C7.485-10.047%2C7.485s5.875%2C21.367%2C40.484%2C62.438c34.617%2C41.07%2C54.672%2C50.484%2C54.672%2C50.484%20s5.297%2C1.446%2C9.078-8.633c3.766-10.078%2C14.906-17.492%2C23.344-14.75c8.438%2C2.742%2C41.883%2C23.007%2C52.305%2C32.93%20C386%2C343.672%2C378.79%2C360.586%2C375.688%2C364.187z%22%20style%3D%22fill%3A%20rgb(75%2C%2075%2C%2075)%3B%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 0 0;
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
}
@media (min-width: 768px) {
  .footer .f-contents .logo-address .f-tel::before {
    width: 20px;
    height: 20px;
  }
}
.footer .f-contents .logo-address .f-contact {
  margin-top: 27px;
}
.footer .f-contents .f-sitemap {
  display: none;
}
@media (min-width: 768px) {
  .footer .f-contents .f-sitemap {
    display: flex;
    margin-left: -50px;
    padding-top: 76px;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .footer .f-contents .f-sitemap {
    margin: 0;
    padding: 30px 1.7377567141vw 0 0;
  }
}
@media (min-width: 768px) {
  .footer .f-contents .f-sitemap .sitemap-box {
    padding-left: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .footer .f-contents .f-sitemap .sitemap-box {
    padding-left: 1.7377567141vw;
  }
}
@media (min-width: 768px) {
  .footer .f-contents .f-sitemap .sitemap-box:first-child {
    margin-top: -32px;
  }
}
.footer .f-contents .f-sitemap .sitemap-box h4 {
  font-weight: bold;
}
@media (min-width: 768px) {
  .footer .f-contents .f-sitemap .sitemap-box h4 {
    font-size: 16px;
    margin-bottom: 6px;
  }
}
.footer .f-contents .f-sitemap .sitemap-box .multi-list + h4 {
  padding-top: 25px;
}
.footer .f-contents .f-sitemap .sitemap-box .multi-list li {
  padding: 1px 0;
}
.footer .f-contents .f-sitemap .sitemap-box .multi-list li::before {
  background: #A7A7A7;
  content: "";
  display: inline-block;
  height: 2px;
  margin-right: 8px;
  width: 10px;
}
.footer .f-contents .f-sitemap .sitemap-box .multi-list li.multiple::before {
  transform: translateY(-10px);
}
@media (min-width: 768px) {
  .footer .f-contents .f-sitemap .sitemap-box .multi-list li a {
    font-size: 14px;
    line-height: 1.3571428571;
    display: inline-block;
  }
}
@media (min-width: 768px) {
  .footer .f-contents .f-sitemap .sitemap-box .single-list {
    padding-top: 25px;
  }
}
@media (min-width: 768px) {
  .footer .f-contents .f-sitemap .sitemap-box .single-list li {
    margin-bottom: 25px;
  }
}
.footer .f-contents .f-sitemap .sitemap-box .single-list li a {
  font-weight: bold;
}
@media (min-width: 768px) {
  .footer .f-contents .f-sitemap .sitemap-box .single-list li a {
    line-height: 1.3125;
  }
}
.footer .f-contents .f-sitemap .sitemap-box .single-list.m-no-pd {
  padding: 0;
}
.footer .copyright {
  background: #30343D;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .footer .copyright {
    padding: 0;
  }
}
.footer .copyright .copyright-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
@media (min-width: 768px) {
  .footer .copyright .copyright-container {
    justify-content: flex-end;
    max-width: 1366px;
    height: 70px;
    margin: 0 auto;
    padding: 0 40px;
  }
}
.footer .copyright p {
  color: #fff;
  font-weight: bold;
  font-size: 11px;
}
@media (min-width: 768px) {
  .footer .copyright p {
    line-height: 1.3636363636;
  }
}

/*--------------------------
	page-top
--------------------------*/
.btn-page-top {
  display: block;
  position: fixed;
  z-index: 101;
  bottom: 20px;
  right: 20px;
  width: 70px;
}
@media (min-width: 768px) {
  .btn-page-top {
    bottom: 30px;
    right: 30px;
  }
}
.btn-page-top:hover {
  opacity: 1;
}

/*--------------------------
	hamburger
--------------------------*/
#toggle {
  background: #1e4292;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}
@media (min-width: 768px) {
  #toggle {
    display: none;
  }
}
#toggle #toggle-box {
  cursor: pointer;
  height: 70px;
  position: relative;
  width: 70px;
}
#toggle #toggle-box > span {
  background: #fff;
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  transition: transform 0.3s ease-in-out, top 0.2s ease, bottom 0.2s ease;
  transform: translateX(-50%);
  width: 30px;
}
#toggle #toggle-box > span:nth-child(1) {
  top: 24px;
}
#toggle #toggle-box > span:nth-child(2) {
  top: 50%;
  transform: translate(-50%);
}
#toggle #toggle-box > span:nth-child(3) {
  bottom: 24px;
}

#sp-nav {
  background: #1E4292;
  border-top: 1px solid #4E6AA4;
  color: #fff;
  height: calc(100% - 70px);
  overflow: auto;
  position: fixed;
  right: 0;
  top: 70px;
  transform: translateX(100%);
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  width: 100%; /* 表示メニュー幅 */
  z-index: 900;
}
@media (min-width: 768px) {
  #sp-nav {
    display: none;
  }
}
#sp-nav > ul > li.about-rix > a span {
  position: relative;
}
#sp-nav > ul > li.about-rix > a span::before {
  background: url(../images/common/icon_sp_nav_about-rix.svg) no-repeat 0 0;
  background-size: 19px 31px;
  content: "";
  height: 31px;
  left: -40px;
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 19px;
}
#sp-nav > ul > li.company > p span {
  position: relative;
}
#sp-nav > ul > li.company > p span::before {
  background: url(../images/common/icon_sp_nav_company.svg) no-repeat 0 0;
  background-size: 23px 23px;
  content: "";
  height: 23px;
  left: -40px;
  position: absolute;
  top: 49%;
  transform: translateY(-50%);
  width: 23px;
}
#sp-nav > ul > li.products > p span {
  position: relative;
}
#sp-nav > ul > li.products > p span::before {
  background: url(../images/common/icon_sp_nav_product.svg) no-repeat 0 0;
  background-size: 21px 21px;
  content: "";
  height: 21px;
  left: -40px;
  position: absolute;
  top: 49%;
  transform: translateY(-50%);
  width: 21px;
}
#sp-nav > ul > li.ir > p span {
  position: relative;
}
#sp-nav > ul > li.ir > p span::before {
  background: url(../images/common/icon_sp_nav_ir.svg) no-repeat 0 0;
  background-size: 23px 37px;
  content: "";
  height: 37px;
  left: -40px;
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  width: 23px;
}
#sp-nav > ul > li.sustainability > p span {
  position: relative;
}
#sp-nav > ul > li.sustainability > p span::before {
  background: url(../images/common/icon_sp_nav_sustainability.svg) no-repeat 0 0;
  background-size: 23px 23px;
  content: "";
  height: 23px;
  left: -40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
}
#sp-nav > ul > li.recruit > a span {
  position: relative;
}
#sp-nav > ul > li.recruit > a span::before {
  background: url(../images/common/icon_sp_nav_recruit.svg) no-repeat 0 0;
  background-size: 20px 23px;
  content: "";
  height: 20px;
  left: -40px;
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 23px;
}
#sp-nav > ul > li.contact > a span {
  position: relative;
}
#sp-nav > ul > li.contact > a span::before {
  background: url(../images/common/icon_sp_nav_contact.svg) no-repeat 0 0;
  background-size: 23px 19px;
  content: "";
  height: 19px;
  left: -40px;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 23px;
}
#sp-nav > ul > li.download > a span {
  position: relative;
}
#sp-nav > ul > li.download > a span::before {
  background: url(../images/common/icon_sp_nav_catalog.svg) no-repeat 0 0;
  background-size: 20px 20px;
  content: "";
  height: 20px;
  left: -40px;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 20px;
}
#sp-nav > ul > li.language > p span {
  position: relative;
}
#sp-nav > ul > li.language > p span::before {
  background: url(../images/common/icon_sp_nav_language.svg) no-repeat 0 0;
  background-size: 23px 27px;
  content: "";
  height: 23px;
  left: -40px;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 27px;
}
#sp-nav ul {
  list-style: none;
}
#sp-nav ul li a,
#sp-nav ul li p {
  align-items: center;
  border-bottom: 1px solid #fff;
  color: #fff;
  cursor: pointer;
  display: flex;
  height: 80px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.3333333333;
  padding: 0 30px;
  position: relative;
  text-decoration: none;
  transition: opacity 0.6s ease;
}
#sp-nav ul li a:hover,
#sp-nav ul li p:hover {
  background: #2f53a3;
  opacity: 0.7;
}
#sp-nav ul li p::before {
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
}
#sp-nav ul li p::after {
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: rotate(90deg);
  transform-origin: center center;
  transition: 0.5s;
  width: 13px;
}
#sp-nav ul li p.open {
  background: #0A2E7B;
}
#sp-nav ul li p.open::after {
  transform: rotate(0);
}
#sp-nav ul li > a::after {
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  content: "";
  display: block;
  height: 13px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 13px;
}
#sp-nav ul li > p,
#sp-nav ul li > a {
  padding-left: 60px;
}
#sp-nav ul li ul {
  background: #0A2E7B;
  border-bottom: 1px solid #fff;
  display: none;
}
#sp-nav ul li ul li:last-child a {
  border-bottom: none;
}
#sp-nav ul li ul li a {
  font-size: 14px;
  height: 46px;
  margin-left: auto;
  padding-left: 9px;
  padding-right: 50px;
  width: calc(100% - 60px);
}
#sp-nav ul li ul li a::after {
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  content: "";
  display: block;
  height: 10px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
}
#sp-nav ul li .new-tab {
  background: url(../images/common/icon_new_tab.svg) no-repeat right center;
  padding-right: 30px;
}

.is-open #toggle #toggle-box > span {
  background: #fff;
}
.is-open #toggle #toggle-box > span:nth-child(1) {
  left: 20px;
  top: 50%;
  transform: rotate(45deg) translatey(-50%);
}
.is-open #toggle #toggle-box > span:nth-child(2) {
  width: 0;
}
.is-open #toggle #toggle-box > span:nth-child(3) {
  left: 20px;
  top: 50%;
  transform: rotate(-45deg) translatey(-50%);
}
.is-open #sp-nav {
  transform: translateX(0);
  z-index: 999;
}

.no-scroll {
  height: 100%;
  position: fixed !important;
  width: 100%;
}

/* -----------------------------
tab
------------------------------*/
/* タブの通常状態 */
option[role=tab-ir],
option[role=tab-company-information],
option[role=tab-sustainability-initiatives],
option[role=tab-company-topics],
option[role=tab-finance-file],
option[role=tab-ir-news],
option[role=tab-ir-lib-report] {
  cursor: pointer;
}
option[role=tab-ir]:hover,
option[role=tab-company-information]:hover,
option[role=tab-sustainability-initiatives]:hover,
option[role=tab-company-topics]:hover,
option[role=tab-finance-file]:hover,
option[role=tab-ir-news]:hover,
option[role=tab-ir-lib-report]:hover {
  opacity: 0.7;
}

/* タブの通常状態 */
li[role=tab-ir],
li[role=tab-company-information],
li[role=tab-sustainability-initiatives],
li[role=tab-company-topics],
li[role=tab-finance-file],
li[role=tab-ir-news],
li[role=tab-ir-lib-report] {
  cursor: pointer;
  /* アクティブ状態 */
}
li[role=tab-ir][aria-selected=true],
li[role=tab-company-information][aria-selected=true],
li[role=tab-sustainability-initiatives][aria-selected=true],
li[role=tab-company-topics][aria-selected=true],
li[role=tab-finance-file][aria-selected=true],
li[role=tab-ir-news][aria-selected=true],
li[role=tab-ir-lib-report][aria-selected=true] {
  background-color: #BF2812;
  border-radius: 19px;
  color: #fff;
  display: inline-block;
}
li[role=tab-ir][aria-selected=true]:hover,
li[role=tab-company-information][aria-selected=true]:hover,
li[role=tab-sustainability-initiatives][aria-selected=true]:hover,
li[role=tab-company-topics][aria-selected=true]:hover,
li[role=tab-finance-file][aria-selected=true]:hover,
li[role=tab-ir-news][aria-selected=true]:hover,
li[role=tab-ir-lib-report][aria-selected=true]:hover {
  opacity: 1;
}
li[role=tab-ir]:hover,
li[role=tab-company-information]:hover,
li[role=tab-sustainability-initiatives]:hover,
li[role=tab-company-topics]:hover,
li[role=tab-finance-file]:hover,
li[role=tab-ir-news]:hover,
li[role=tab-ir-lib-report]:hover {
  opacity: 0.7;
}

/* コンテンツの通常状態 */
[role=tabpanel-ir],
[role=tabpanel-company-information],
[role=tabpanel-sustainability-initiatives],
[role=tabpanel-company-topics],
[role=tabpanel-finance-file],
[role=tabpanel-ir-news],
[role=tabpanel-ir-lib-report] {
  display: none;
  /* 表示状態 */
}
[role=tabpanel-ir][aria-hidden=false],
[role=tabpanel-company-information][aria-hidden=false],
[role=tabpanel-sustainability-initiatives][aria-hidden=false],
[role=tabpanel-company-topics][aria-hidden=false],
[role=tabpanel-finance-file][aria-hidden=false],
[role=tabpanel-ir-news][aria-hidden=false],
[role=tabpanel-ir-lib-report][aria-hidden=false] {
  display: block;
}

@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint.is-right-scrollable {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 120px;
  height: 80px;
  border-radius: 5px;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

/*--------------------------
	top
--------------------------*/
.page-top {
  overflow-x: hidden;
  position: relative;
}
.page-top .top-mv {
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 9.4871794872vw;
  font-weight: bold;
  height: 420px;
  justify-content: flex-end;
  letter-spacing: -0.03em;
  line-height: 1.3513513514;
  padding: 0 0 40px 15px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .page-top .top-mv {
    font-size: 45px;
    height: 579px;
    letter-spacing: 0;
    line-height: 1.3333333333;
    margin: 0 0 42px auto;
    padding: 0 0 44px 50px;
    width: calc(100% - 50px);
  }
}
.page-top .top-mv span {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 1.3333333333;
  margin-bottom: 9px;
}
@media (min-width: 768px) {
  .page-top .top-mv span {
    font-size: 20px;
    line-height: 1.35;
    margin-bottom: 11px;
  }
}
.page-top .top-mv span::before {
  background: #fff;
  content: "";
  display: block;
  height: 3px;
  margin-bottom: 15px;
  width: 38px;
}
.page-top .video-container {
  height: 420px;
  position: absolute;
  right: 0;
  top: 70px;
  width: 100%;
  z-index: 0;
}
@media (min-width: 768px) {
  .page-top .video-container {
    height: 579px;
    position: absolute;
    right: 0;
    top: 1px;
    width: calc(100% - 50px);
  }
}
.page-top .video-container .thumb-wrap {
  background-image: url("https://img.youtube.com/vi/QMjnLXej66s/maxresdefault.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transition: 0.3s all;
}
.page-top .video-container .thumb-wrap.completed {
  visibility: hidden;
}
.page-top .btn-scroll-down {
  position: absolute;
  right: 0;
  top: 462px;
  z-index: 97;
  width: 100%;
}
@media (min-width: 768px) {
  .page-top .btn-scroll-down {
    top: 535px;
    max-width: 814px;
  }
}
.page-top .btn-scroll-down .topinfo-slider {
  margin-left: 72px;
  padding-left: 0;
  background: #1e4292;
  opacity: 0;
}
@media (min-width: 768px) {
  .page-top .btn-scroll-down .topinfo-slider {
    margin-left: 0;
    padding-left: 144px;
  }
}
.page-top .btn-scroll-down .topinfo-slider.slick-initialized {
  opacity: 1;
}
.page-top .btn-scroll-down .topinfo-slider a {
  align-items: center;
  background: #1e4292;
  color: #fff;
  display: block;
  font-size: 12px;
  font-family: "Manrope", sans-serif;
  padding: 15px 10px 15px 20px;
  width: 320px;
  opacity: 0;
  transition: 0.3s opacity ease;
}
@media (min-width: 768px) {
  .page-top .btn-scroll-down .topinfo-slider a {
    align-items: center;
    background-size: 7px 24px;
    background-position: right 23px center;
    display: flex;
    font-size: 13px;
    height: 72px;
    line-height: 1.3846153846;
    padding: 0 27px 0 20px;
    width: 630px;
  }
}
.page-top .btn-scroll-down .topinfo-slider a:hover {
  opacity: 1;
}
.page-top .btn-scroll-down .topinfo-slider a.slick-active {
  opacity: 1;
}
.page-top .btn-scroll-down .topinfo-slider a .news-txt {
  display: block;
  overflow: hidden;
  padding-top: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .page-top .btn-scroll-down .topinfo-slider a .news-txt {
    padding-top: 0;
  }
}
.page-top .btn-scroll-down .topinfo-slider a .date {
  margin-right: 5px;
}
.page-top .btn-scroll-down .topinfo-slider a .cate {
  align-items: center;
  background: #fff;
  border-radius: 15px;
  color: #333;
  display: inline-flex;
  justify-content: center;
  margin: 0 10px;
  min-width: 100px;
  padding: 5px 10px;
}
.page-top .btn-scroll-down .topinfo-slider .slick-next {
  background: #1e4292;
  top: 18px;
  left: 36px;
  position: absolute;
  text-align: center;
  width: 36px;
  height: 36px;
  z-index: 100;
}
@media (min-width: 768px) {
  .page-top .btn-scroll-down .topinfo-slider .slick-next {
    top: 36px;
    left: 72px;
    height: 72px;
    width: 72px;
  }
}
.page-top .btn-scroll-down .topinfo-slider .slick-next::before {
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  color: #fff;
  content: "";
  display: block;
  left: calc(50% - 2px);
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center center;
  width: 12px;
  height: 12px;
}
@media (min-width: 768px) {
  .page-top .btn-scroll-down .topinfo-slider .slick-next::before {
    left: calc(50% - 4px);
    width: 18px;
    height: 18px;
  }
}
.page-top .btn-scroll-down .topinfo-slider .slick-next:hover {
  background: #2f53a3;
}
.page-top .btn-scroll-down .topinfo-slider .slick-prev {
  background: #1e4292;
  top: 18px;
  left: 0;
  position: absolute;
  text-align: center;
  width: 36px;
  height: 36px;
  z-index: 100;
}
@media (min-width: 768px) {
  .page-top .btn-scroll-down .topinfo-slider .slick-prev {
    top: 36px;
    width: 72px;
    height: 72px;
  }
}
.page-top .btn-scroll-down .topinfo-slider .slick-prev::before {
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  color: #fff;
  content: "";
  display: block;
  left: calc(50% + 2px);
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
  transform-origin: center center;
  width: 12px;
  height: 12px;
}
@media (min-width: 768px) {
  .page-top .btn-scroll-down .topinfo-slider .slick-prev::before {
    left: calc(50% + 4px);
    width: 18px;
    height: 18px;
  }
}
.page-top .btn-scroll-down .topinfo-slider .slick-prev:hover {
  background: #2f53a3;
}
.page-top .back-txt-rix-corporation {
  margin: 0 auto;
  position: relative;
  width: 390px;
}
@media (min-width: 768px) {
  .page-top .back-txt-rix-corporation {
    width: 1166px;
  }
}
.page-top .back-txt-rix-corporation span {
  color: #EFF1F4;
  content: "RIX Corporation";
  font-family: "Manrope", sans-serif;
  font-size: 100px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.33;
  position: absolute;
  right: -380px;
  top: -30px;
  white-space: nowrap;
  z-index: -1;
}
@media (min-width: 768px) {
  .page-top .back-txt-rix-corporation span {
    font-size: 250px;
    line-height: 1.332;
    right: -990px;
    top: -180px;
  }
}
.page-top .area-business {
  display: flex;
  flex-direction: column;
  margin: 82px 0 0;
  padding: 20px 20px 60px;
}
@media (min-width: 768px) {
  .page-top .area-business {
    align-items: center;
    flex-direction: row;
    max-width: 1166px;
    margin: 0 auto;
    padding: 150px 26px 132px;
  }
}
.page-top .area-business-inner {
  order: 1;
}
@media (min-width: 768px) {
  .page-top .area-business-inner {
    max-width: 476px;
  }
}
.page-top .area-business-inner h2 {
  font-size: 6.4102564103vw;
  font-weight: bold;
  letter-spacing: -0.03em;
  line-height: 1.32;
  margin-bottom: 47px;
}
@media (min-width: 768px) {
  .page-top .area-business-inner h2 {
    font-size: 34px;
    letter-spacing: 0;
    line-height: 1.3529411765;
    margin-bottom: 49px;
  }
}
.page-top .area-business-inner h2 span {
  color: #1e4292;
  display: block;
  font-family: Manrope;
  font-size: 5.1282051282vw;
  font-weight: bold;
  line-height: 1.35;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .page-top .area-business-inner h2 span {
    font-size: 24px;
    line-height: 1.3333333333;
    margin-bottom: 18px;
  }
}
.page-top .area-business-inner p {
  font-size: 3.0769230769vw;
  line-height: 2.0833333333;
}
@media (min-width: 768px) {
  .page-top .area-business-inner p {
    font-size: 15px;
    line-height: 2;
  }
}
.page-top .area-business figure {
  margin-bottom: 34px;
}
@media (min-width: 768px) {
  .page-top .area-business figure {
    margin: 0 80px 0 0;
    width: 558px;
  }
}
.page-top .area-about-rix {
  display: block;
  margin: 0 20px 60px;
}
@media (min-width: 768px) {
  .page-top .area-about-rix {
    max-width: 720px;
    margin: 0 auto 132px;
  }
}
.page-top .area-about-rix h3 {
  background: #1e4292;
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 16px;
  padding: 8px 0;
  line-height: 1;
}
@media (max-width: 375px) {
  .page-top .area-about-rix h3 {
    padding: 6px 0;
    font-size: 13px;
  }
}
@media (min-width: 768px) {
  .page-top .area-about-rix h3 {
    padding: 12px 0;
    font-size: 24px;
  }
}
.page-top .area-about-rix img {
  display: block;
}
.page-top .area-service {
  background: url(../images/top/rix_service_back_sp.jpg) 0 0;
  background-size: cover;
  height: 383px;
  margin-bottom: 57px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-top .area-service {
    background: url(../images/top/rix_service_back.jpg) 0 0;
    background-size: cover;
    height: 437px;
    margin-bottom: 0;
    padding: 0 0 0 100px;
    width: calc(100% - 214px);
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .page-top .area-service {
    width: calc(100% - 16.9036334913vw);
  }
}
.page-top .area-service h2 {
  color: #fff;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.32;
  margin-bottom: 26px;
  padding-top: 56px;
}
@media (min-width: 768px) {
  .page-top .area-service h2 {
    font-size: 30px;
    line-height: 1.3333333333;
    margin-bottom: 29px;
    padding-top: 97px;
  }
}
.page-top .area-service h2::before {
  background: url(../images/top/icon_service.svg) no-repeat 0 0;
  content: "";
  display: inline-block;
  height: 29px;
  margin-right: 15px;
  width: 29px;
}
.page-top .area-service h2 span {
  font-family: "Manrope", sans-serif;
  display: block;
  font-size: 15px;
  line-height: 1.3333333333;
  padding: 9px 0 0 44px;
}
@media (min-width: 768px) {
  .page-top .area-service h2 span {
    font-size: 15px;
    line-height: 1.3333333333;
    padding: 7px 0 0 44px;
  }
}
.page-top .area-service p {
  color: #fff;
  font-size: 14px;
  line-height: 1.7857142857;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .page-top .area-service p {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 25px;
    margin-right: 20px;
    max-width: 476px;
  }
}
.page-top .area-ir-information-box .ir-get-list .btn-s01 {
  margin-bottom: 54px;
}
.page-top .area-ir-information-box .ir-link-list {
  margin: 0 0 69px;
  padding: 0 10px;
}
@media (min-width: 768px) {
  .page-top .area-ir-information-box .ir-link-list {
    border-top: 1px solid #D8D8D8;
    margin: 70px 0 0;
    padding: 47px 0 106px;
  }
}
.page-top .area-ir-information-box .ir-link-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: -33px;
}
@media (min-width: 768px) {
  .page-top .area-ir-information-box .ir-link-list ul {
    margin-top: -48px;
  }
}
.page-top .area-ir-information-box .ir-link-list ul::after {
  content: "";
  display: block;
  width: calc((100% - 10px) / 2);
}
@media (min-width: 768px) {
  .page-top .area-ir-information-box .ir-link-list ul::after {
    width: calc((100% - 92px) / 3);
  }
}
.page-top .area-ir-information-box .ir-link-list ul li {
  margin-top: 33px;
  text-align: center;
  width: calc((100% - 10px) / 2);
}
@media (min-width: 768px) {
  .page-top .area-ir-information-box .ir-link-list ul li {
    margin-top: 48px;
    width: calc((100% - 92px) / 3);
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .page-top .area-ir-information-box .ir-link-list ul li {
    width: calc((100% - 3.1595576619vw) / 3);
  }
}
.page-top .area-ir-information-box .ir-link-list ul li a {
  display: block;
  margin-bottom: 17px;
}
@media (min-width: 768px) {
  .page-top .area-ir-information-box .ir-link-list ul li a {
    margin-bottom: 22px;
  }
}
.page-top .area-ir-information-box .ir-link-list ul li p {
  font-size: 15px;
  line-height: 1.4666666667;
}
@media (min-width: 768px) {
  .page-top .area-ir-information-box .ir-link-list ul li p {
    font-size: 17px;
    line-height: 1.2941176471;
  }
}
.page-top .bnr-rixpower {
  background: url(../images/top/back_rix_power_sp.jpg) no-repeat center 0;
  background-size: cover;
  height: 417px;
  padding-top: 267px;
}
@media (min-width: 768px) {
  .page-top .bnr-rixpower {
    background: url(../images/top/back_rix_power.jpg) no-repeat center 0;
    background-size: cover;
    height: 404px;
    margin: 0 auto 120px;
    max-width: 1166px;
    padding-top: 258px;
  }
}
.page-top .bnr-rixpower a {
  margin: 0 auto;
  position: relative;
  width: 225px;
}
@media (min-width: 768px) {
  .page-top .bnr-rixpower a {
    margin: 0 auto;
  }
}
.page-top .bnr-rixpower a::before {
  background: url(../images/top/rixpower_title.svg) no-repeat 0 0;
  background-size: 194px 157px;
  content: "";
  display: block;
  height: 157px;
  left: 50%;
  position: absolute;
  top: -177px;
  transform: translateX(-50%);
  width: 194px;
}
.page-top .area-sustainability {
  margin-bottom: 65px;
}
@media (min-width: 768px) {
  .page-top .area-sustainability {
    margin-bottom: 159px;
  }
}
.page-top .area-sustainability-container {
  background: url(../images/top/back_sustainability_sp.jpg) no-repeat center 0;
  background-size: cover;
  min-height: 401px;
}
@media (min-width: 768px) {
  .page-top .area-sustainability-container {
    background: url(../images/top/back_sustainability.jpg) no-repeat center 0;
    background-size: cover;
    min-height: 454px;
  }
}
.page-top .area-sustainability-container-box {
  padding: 73px 20px 0;
}
@media (min-width: 768px) {
  .page-top .area-sustainability-container-box {
    margin: 0 auto;
    max-width: 1166px;
    padding: 126px 0 0;
    position: relative;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .page-top .area-sustainability-container-box {
    max-width: 1206px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.page-top .area-sustainability-container-box h2 {
  color: #fff;
  margin-bottom: 31px;
}
@media (min-width: 768px) {
  .page-top .area-sustainability-container-box h2 {
    margin-bottom: 29px;
  }
}
.page-top .area-sustainability-container-box h2 span {
  color: #fff;
}
.page-top .area-sustainability-container-box h2.sustainability::before {
  background: url(../images/common/icon_sustainability_white.svg) no-repeat 0 0;
}
.page-top .area-sustainability-container-box h2 + p {
  color: #fff;
  font-size: 14px;
  line-height: 2.1428571429;
}
@media (min-width: 768px) {
  .page-top .area-sustainability-container-box h2 + p {
    font-size: 15px;
    line-height: 2;
    width: 476px;
  }
}
.page-top .area-sustainability-container-box a {
  display: none;
}
@media (min-width: 768px) {
  .page-top .area-sustainability-container-box a {
    display: flex;
    position: absolute;
    right: 0;
    top: 134px;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .page-top .area-sustainability-container-box a {
    right: 20px;
  }
}
.page-top .area-sustainability .sustainability-link-list {
  margin: -82px 0 0;
}
@media (min-width: 768px) {
  .page-top .area-sustainability .sustainability-link-list {
    margin: -87px auto 0;
    max-width: 1166px;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .page-top .area-sustainability .sustainability-link-list {
    max-width: 1206px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.page-top .area-sustainability .sustainability-link-list ul {
  margin-top: -28px;
  padding: 0 9.4871794872vw;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .page-top .area-sustainability .sustainability-link-list ul {
    display: flex;
    justify-content: space-between;
    margin-top: 0;
    padding: 0;
  }
}
.page-top .area-sustainability .sustainability-link-list ul li {
  margin-top: 28px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-top .area-sustainability .sustainability-link-list ul li {
    margin-top: 0;
    transition: 0.3s;
    width: calc((100% - 42px) / 2);
  }
}
@media (min-width: 768px) {
  .page-top .area-sustainability .sustainability-link-list ul li:hover {
    transform: translateY(-10px);
  }
}
.page-top .area-sustainability .sustainability-link-list ul li a {
  display: block;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .page-top .area-sustainability .sustainability-link-list ul li a {
    margin-bottom: 22px;
  }
}
.page-top .area-sustainability .sustainability-link-list ul li a:hover {
  opacity: 1;
}
.page-top .area-sustainability .sustainability-link-list ul li p {
  font-size: 17px;
  line-height: 1.7647058824;
}
.page-top #sec-top-company-information {
  background: #EFF1F4;
  padding-top: 77px;
  position: relative;
}
@media (min-width: 768px) {
  .page-top #sec-top-company-information {
    margin-right: 50px;
    padding-top: 0;
    padding-bottom: 92px;
    padding-left: 50px;
  }
}
@media (min-width: 768px) {
  .page-top #sec-top-company-information .area-company-information-box {
    padding-bottom: 92px;
  }
}
.page-top #sec-top-company-information .area-company-information-box .company-information-get-list .list-topics .company-information-news li .date-category .category {
  background: #fff;
}
.page-top #sec-top-company-information .company-information-link-list {
  padding: 46px 30px;
}
@media (min-width: 768px) {
  .page-top #sec-top-company-information .company-information-link-list {
    padding: 80px 0;
  }
}
.page-top #sec-top-company-information .company-information-link-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: -33px 0 0;
}
@media (min-width: 768px) {
  .page-top #sec-top-company-information .company-information-link-list ul {
    margin: -53px auto 0;
    max-width: 1166px;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .page-top #sec-top-company-information .company-information-link-list ul {
    padding: 0 20px;
  }
}
.page-top #sec-top-company-information .company-information-link-list ul li {
  margin-top: 33px;
  text-align: center;
  width: calc((100% - 10px) / 2);
}
@media (min-width: 768px) {
  .page-top #sec-top-company-information .company-information-link-list ul li {
    margin-top: 53px;
    width: calc((100% - 60px) / 4);
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .page-top #sec-top-company-information .company-information-link-list ul li {
    width: calc((100% - 30px) / 4);
  }
}
.page-top #sec-top-company-information .company-information-link-list ul li a {
  display: block;
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .page-top #sec-top-company-information .company-information-link-list ul li a {
    margin-bottom: 17px;
  }
}
.page-top #sec-top-company-information .company-information-link-list ul li p {
  font-size: 14px;
  line-height: 2.1428571429;
}
@media (min-width: 768px) {
  .page-top #sec-top-company-information .company-information-link-list ul li p {
    font-size: 17px;
    line-height: 1.7647058824;
  }
}
.page-top #sec-top-company-information .action-banner {
  padding: 38px 0 42px;
  background-color: #fff;
  background-image: url(../images/top/action_banner_bg.svg);
  background-repeat: no-repeat;
  background-position: left 0 center;
  background-size: 94.1% auto;
}
@media (min-width: 768px) {
  .page-top #sec-top-company-information .action-banner {
    width: 1166px;
    max-width: 1166px;
    margin: 0 auto;
    padding: 21px 0 26px;
    background-position: left 4px center;
    background-size: 364px auto;
  }
}
.page-top #sec-top-company-information .action-banner h3 {
  margin-bottom: 25px;
  padding: 0 18px;
}
@media (min-width: 768px) {
  .page-top #sec-top-company-information .action-banner h3 {
    padding: 0;
    margin-bottom: 18px;
  }
}
.page-top #sec-top-company-information .action-banner h3 span {
  display: block;
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
  line-height: 1.7333333333;
}
@media (min-width: 768px) {
  .page-top #sec-top-company-information .action-banner h3 span {
    margin-bottom: 5px;
    font-size: 20px;
    line-height: 1.7;
  }
}
.page-top #sec-top-company-information .action-banner h3 img {
  display: block;
}
@media (min-width: 768px) {
  .page-top #sec-top-company-information .action-banner h3 img {
    width: 582px;
    margin: 0 auto;
  }
}
.page-top #sec-top-company-information .action-banner .btn-s01 {
  width: 225px;
  margin: 0 auto;
}
.page-top #sec-top-company-information .back-txt-company {
  margin: 0 auto;
  position: relative;
  width: 390px;
}
@media (min-width: 768px) {
  .page-top #sec-top-company-information .back-txt-company {
    width: 1166px;
    z-index: 0;
  }
}
.page-top #sec-top-company-information .back-txt-company span {
  color: #fff;
  content: "Company";
  font-family: "Manrope", sans-serif;
  font-size: 100px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.33;
  position: absolute;
  right: -100px;
  top: -140px;
  white-space: nowrap;
  z-index: 1;
}
@media (min-width: 768px) {
  .page-top #sec-top-company-information .back-txt-company span {
    font-size: 250px;
    line-height: 1.332;
    right: -300px;
    top: -180px;
  }
}

/*--------------------------
	/company/
--------------------------*/
.page-company {
  overflow-x: hidden;
  position: relative;
}
.page-company .top-mv {
  background: url(../images/company/company_mv_sp.jpg) no-repeat center 0;
  background-size: cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 9.4871794872vw;
  font-weight: bold;
  height: 420px;
  justify-content: flex-end;
  letter-spacing: -0.05em;
  line-height: 1.3513513514;
  margin: 0 0 37px 0;
  padding: 0 0 20px 20px;
}
@media (min-width: 768px) {
  .page-company .top-mv {
    background: url(../images/company/company_mv.jpg) no-repeat center 0;
    background-size: cover;
    font-size: 45px;
    height: 544px;
    letter-spacing: 0;
    line-height: 1.3333333333;
    margin: 0 0 0 auto;
    padding: 0 0 44px 50px;
    width: 100%;
  }
}
.page-company .back-txt-corporation {
  margin: 0 auto;
  position: relative;
  width: 390px;
}
@media (min-width: 768px) {
  .page-company .back-txt-corporation {
    width: 1166px;
  }
}
.page-company .back-txt-corporation span {
  color: #EFF1F4;
  font-family: "Manrope", sans-serif;
  font-size: 100px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.33;
  position: absolute;
  right: -390px;
  top: 35px;
  white-space: nowrap;
  z-index: -1;
}
@media (min-width: 768px) {
  .page-company .back-txt-corporation span {
    font-size: 250px;
    line-height: 1.332;
    right: -1120px;
    top: -25px;
  }
}
.page-company .main-container {
  position: relative;
}
@media (min-width: 768px) {
  .page-company .main-container {
    margin-top: -40px;
    position: relative;
  }
}
.page-company .main-container h1::after {
  content: "企業情報";
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3333333333;
  order: 1;
  position: absolute;
  right: 20px;
  top: 82px;
}
@media (min-width: 768px) {
  .page-company .main-container h1::after {
    font-size: 46px;
    line-height: 1.347826087;
    right: 50px;
    top: 225px;
  }
}
@media (min-width: 768px) and (max-width: 1285px) {
  .page-company .main-container h1::after {
    margin-right: 10px;
  }
}
.page-company .main-container .area-company-topics {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-company .main-container .area-company-topics {
    display: flex;
    margin: 0 auto;
    max-width: 1266px;
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .page-company .main-container .area-company-topics {
    max-width: 1206px;
    padding: 0 20px;
  }
}
@media (min-width: 768px) {
  .page-company .main-container .area-company-topics .ttl-link {
    margin-right: 78px;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .page-company .main-container .area-company-topics .ttl-link {
    margin-right: 6.1611374408vw;
  }
}
.page-company .main-container .area-company-topics .ttl-link .ttl-s02 {
  margin-bottom: 29px;
}
@media (min-width: 768px) {
  .page-company .main-container .area-company-topics .ttl-link .ttl-s02 {
    margin-bottom: 51px;
  }
}
.page-company .main-container .area-company-topics-box {
  flex: 1;
  margin-bottom: 108px;
}
@media (min-width: 768px) {
  .page-company .main-container .area-company-topics-box {
    margin-bottom: 120px;
  }
}
@media (min-width: 768px) {
  .page-company .main-container .area-company-topics-box .company-topics-get-list {
    display: flex;
    flex-direction: column;
    padding-right: 20px;
  }
}
.page-company .main-container .area-company-topics-box .company-topics-get-list-select {
  background: #EFF1F4 url(../images/common/icon_select.svg) no-repeat right 10px center;
  background-size: 13px 20px;
  cursor: pointer;
  height: 44px;
  margin-bottom: 28px;
  padding: 0 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .page-company .main-container .area-company-topics-box .company-topics-get-list-select {
    display: none;
  }
}
.page-company .main-container .area-company-topics-box .company-topics-get-list-select:hover {
  opacity: 0.7;
}
.page-company .main-container .area-company-topics-box .company-topics-get-list [role=tablist] {
  display: none;
}
@media (min-width: 768px) {
  .page-company .main-container .area-company-topics-box .company-topics-get-list [role=tablist] {
    align-items: center;
    display: flex;
    margin: 0 0 60px auto;
  }
}
@media (min-width: 768px) {
  .page-company .main-container .area-company-topics-box .company-topics-get-list [role=tablist] li {
    margin-left: 10px;
    padding: 8px 20px;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .page-company .main-container .area-company-topics-box .company-topics-get-list [role=tablist] li {
    margin-left: 0.7898894155vw;
    padding: 0.6319115324vw 1.579778831vw;
  }
}
.page-company .main-container .area-company-topics-box .company-topics-get-list .list-topics .company-topics-news {
  margin: -30px 0 40px;
}
@media (min-width: 768px) {
  .page-company .main-container .area-company-topics-box .company-topics-get-list .list-topics .company-topics-news {
    margin: -40px 0 0;
  }
}
.page-company .main-container .area-company-topics-box .company-topics-get-list .list-topics .company-topics-news li {
  font-size: 15px;
  line-height: 2;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .page-company .main-container .area-company-topics-box .company-topics-get-list .list-topics .company-topics-news li {
    display: flex;
    margin-top: 40px;
  }
}
.page-company .main-container .area-company-topics-box .company-topics-get-list .list-topics .company-topics-news li .date-category {
  margin-bottom: 9px;
}
@media (min-width: 768px) {
  .page-company .main-container .area-company-topics-box .company-topics-get-list .list-topics .company-topics-news li .date-category {
    margin-bottom: 0;
  }
}
.page-company .main-container .area-company-topics-box .company-topics-get-list .list-topics .company-topics-news li .date-category .date {
  margin-right: 25px;
}
@media (min-width: 768px) and (max-width: 1265px) {
  .page-company .main-container .area-company-topics-box .company-topics-get-list .list-topics .company-topics-news li .date-category .date {
    margin-right: 1.9747235387vw;
  }
}
.page-company .main-container .area-company-topics-box .company-topics-get-list .list-topics .company-topics-news li .date-category .category {
  align-items: center;
  background: #edeef0;
  border-radius: 14px;
  display: inline-flex;
  font-size: 12px;
  height: 27px;
  justify-content: center;
  line-height: 2.5;
  margin-right: 20px;
  width: 105px;
}
@media (min-width: 768px) and (max-width: 1265px) {
  .page-company .main-container .area-company-topics-box .company-topics-get-list .list-topics .company-topics-news li .date-category .category {
    margin-right: 1.579778831vw;
  }
}
.page-company .main-container .area-company-topics-box .company-topics-get-list .list-topics .company-topics-news li > p {
  font-size: 14px;
  line-height: 2.1428571429;
}
@media (min-width: 768px) {
  .page-company .main-container .area-company-topics-box .company-topics-get-list .list-topics .company-topics-news li > p {
    font-size: 15px;
    line-height: 2;
    flex: 1;
  }
}
.page-company .main-container .area-company-topics-box .company-topics-get-list .list-topics .company-topics-news li > p a {
  color: #7E7E7E;
}
@media (min-width: 768px) {
  .page-company .main-container .area-company-topics-box .company-topics-get-list .list-topics .company-topics-news li > p a {
    color: #000;
  }
}
.page-company .main-container .area-company-topics-box .area-company-information-box .company-information-get-list .list-topics .max-md-only {
  display: none;
}
.page-company .main-container .company-contents-list {
  margin-bottom: 29px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-company .main-container .company-contents-list {
    margin-bottom: 0px;
    padding: 0;
  }
}
.page-company .main-container .company-contents-list ul {
  margin-top: -36px;
}
@media (min-width: 768px) {
  .page-company .main-container .company-contents-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: -76px;
  }
}
.page-company .main-container .company-contents-list ul li {
  margin-top: 36px;
}
@media (min-width: 768px) {
  .page-company .main-container .company-contents-list ul li {
    margin-top: 76px;
    width: calc((100% - 26px) / 2);
  }
}
.page-company .main-container .company-contents-list ul li a {
  display: block;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .page-company .main-container .company-contents-list ul li a {
    margin-bottom: 15px;
  }
}
.page-company .main-container .company-contents-list ul li p {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
}
@media (min-width: 768px) {
  .page-company .main-container .company-contents-list ul li p {
    font-size: 28px;
    line-height: 1.3214285714;
  }
}
.page-company .main-container .company-contents-list ul li p span {
  color: #BF2812;
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3333333333;
  padding-top: 7px;
}
@media (min-width: 768px) {
  .page-company .main-container .company-contents-list ul li p span {
    font-size: 20px;
    line-height: 1.35;
    padding-top: 10px;
  }
}

/*--------------------------
	/company/policy/
--------------------------*/
.page-company-policy .page-mv {
  margin-bottom: 61px;
  padding: 0 20px;
  position: relative;
}
@media (min-width: 768px) {
  .page-company-policy .page-mv {
    margin: 0 auto 110px;
    max-width: 1166px;
    padding: 0;
  }
}
.page-company-policy .page-mv .txt-company-policy-s01 {
  bottom: 0;
  font-family: ten-mincho, serif;
  font-feature-settings: normal;
  font-size: 3.0769230769vw;
  font-weight: 400;
  line-height: 2.0833333333;
  position: absolute;
}
@media (min-width: 1266px) {
  .page-company-policy .page-mv .txt-company-policy-s01 {
    bottom: -32px;
    font-size: 27px;
    line-height: 1.8518518519;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .page-company-policy .page-mv .txt-company-policy-s01 {
    bottom: -4.2654028436vw;
    font-size: 2.1327014218vw;
    line-height: 1.8518518519;
  }
}
.page-company-policy .page-mv .txt-company-policy-s01 img {
  width: 83.0769230769vw;
}
@media (min-width: 768px) {
  .page-company-policy .page-mv .txt-company-policy-s01 img {
    max-width: 729px;
  }
}
@media (min-width: 768px) and (max-width: 1265px) {
  .page-company-policy .page-mv .txt-company-policy-s01 img {
    width: 57.5829383886vw;
  }
}
.page-company-policy .management-philosophy,
.page-company-policy .behavioral-guidelines {
  margin-bottom: 83px;
}
@media (min-width: 768px) {
  .page-company-policy .management-philosophy,
  .page-company-policy .behavioral-guidelines {
    margin-bottom: 83px;
  }
}
.page-company-policy .management-philosophy h2,
.page-company-policy .behavioral-guidelines h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
  margin-bottom: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-company-policy .management-philosophy h2,
  .page-company-policy .behavioral-guidelines h2 {
    font-size: 32px;
    line-height: 1.34375;
    margin-bottom: 49px;
  }
}
.page-company-policy .management-philosophy h2 span,
.page-company-policy .behavioral-guidelines h2 span {
  color: #BF2812;
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3076923077;
  padding-top: 7px;
}
@media (min-width: 768px) {
  .page-company-policy .management-philosophy h2 span,
  .page-company-policy .behavioral-guidelines h2 span {
    font-size: 20px;
    line-height: 1.35;
    padding-top: 15px;
  }
}
.page-company-policy .management-philosophy-container,
.page-company-policy .behavioral-guidelines-container {
  margin-top: -68px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-company-policy .management-philosophy-container,
  .page-company-policy .behavioral-guidelines-container {
    margin: 0 auto;
    padding: 0;
    max-width: 920px;
  }
}
@media (min-width: 768px) {
  .page-company-policy .management-philosophy-container-inner,
  .page-company-policy .behavioral-guidelines-container-inner {
    align-items: top;
    display: flex;
    margin-top: 35px;
    min-height: 92px;
  }
}
.page-company-policy .management-philosophy-container-inner h3,
.page-company-policy .behavioral-guidelines-container-inner h3 {
  border-bottom: 1px solid #000;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3333333333;
  margin-bottom: 22px;
  padding: 68px 0 23px;
}
@media (min-width: 768px) {
  .page-company-policy .management-philosophy-container-inner h3,
  .page-company-policy .behavioral-guidelines-container-inner h3 {
    font-size: 25px;
    line-height: 1.32;
    margin-bottom: 0;
    padding: 0;
    width: 310px;
  }
}
.page-company-policy .management-philosophy-container-inner h3 span,
.page-company-policy .behavioral-guidelines-container-inner h3 span {
  font-size: 18px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  line-height: 1.3333333333;
  margin-right: 10px;
}
@media (min-width: 768px) {
  .page-company-policy .management-philosophy-container-inner h3 span,
  .page-company-policy .behavioral-guidelines-container-inner h3 span {
    display: inline-block;
    font-size: 20px;
    line-height: 1.35;
    margin-right: 11px;
  }
}
.page-company-policy .management-philosophy-container-inner p,
.page-company-policy .behavioral-guidelines-container-inner p {
  font-size: 16px;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .page-company-policy .management-philosophy-container-inner p,
  .page-company-policy .behavioral-guidelines-container-inner p {
    border-bottom: 1px solid #E4E4E4;
    font-size: 17px;
    line-height: 1.7058823529;
    max-width: calc(100% - 310px);
    padding-left: 10px;
  }
}
.page-company-policy .action-banner {
  padding: 38px 0 42px;
  background-color: #fff;
  background-image: url(../images/top/action_banner_bg.svg);
  background-repeat: no-repeat;
  background-position: left 0 center;
  background-size: 94.1% auto;
}
@media (min-width: 768px) {
  .page-company-policy .action-banner {
    width: 1166px;
    max-width: 1166px;
    margin: 0 auto;
    padding: 21px 0 26px;
    background-position: left 4px center;
    background-size: 364px auto;
  }
}
.page-company-policy .action-banner h3 {
  margin-bottom: 25px;
  padding: 0 18px;
}
@media (min-width: 768px) {
  .page-company-policy .action-banner h3 {
    padding: 0;
    margin-bottom: 18px;
  }
}
.page-company-policy .action-banner h3 span {
  display: block;
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
  line-height: 1.7333333333;
}
@media (min-width: 768px) {
  .page-company-policy .action-banner h3 span {
    margin-bottom: 5px;
    font-size: 20px;
    line-height: 1.7;
  }
}
.page-company-policy .action-banner h3 img {
  display: block;
}
@media (min-width: 768px) {
  .page-company-policy .action-banner h3 img {
    width: 582px;
    margin: 0 auto;
  }
}
.page-company-policy .action-banner .btn-s01 {
  width: 225px;
  margin: 0 auto;
}

/*--------------------------
	/company/message/
--------------------------*/
.page-company-message .page-mv {
  margin-bottom: 40px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-company-message .page-mv {
    margin-bottom: 50px;
    padding: 0;
  }
}
.page-company-message .txt-company-message-s01 {
  font-size: 14px;
  line-height: 2.5;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-company-message .txt-company-message-s01 {
    font-size: 16px;
    line-height: 2;
    margin: 0 auto;
    max-width: 1130px;
    padding: 0;
  }
}

/*--------------------------
	/company/office/
--------------------------*/
.page-company-office .nav-business-offices {
  margin-bottom: 51px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-company-office .nav-business-offices {
    margin-bottom: 83px;
    padding: 0;
  }
}
.page-company-office .nav-business-offices > ul {
  margin-top: -15px;
}
@media (min-width: 768px) {
  .page-company-office .nav-business-offices > ul {
    display: flex;
    justify-content: space-between;
    margin-top: 0;
  }
}
.page-company-office .nav-business-offices > ul > li {
  margin-top: 15px;
  position: relative;
}
@media (min-width: 768px) {
  .page-company-office .nav-business-offices > ul > li {
    margin-top: 0;
    width: calc((100% - 30px) / 4);
  }
}
.page-company-office .nav-business-offices > ul > li > a {
  align-items: center;
  background: #1e4292;
  color: #fff;
  display: flex;
  font-size: 14px;
  height: 45px;
  line-height: 1.3571428571;
  justify-content: center;
  position: relative;
}
@media (min-width: 768px) {
  .page-company-office .nav-business-offices > ul > li > a {
    font-size: 18px;
    line-height: 1.3333333333;
    height: 84px;
  }
}
@media (min-width: 840px) {
  .page-company-office .nav-business-offices > ul > li > a {
    height: 60px;
  }
}
.page-company-office .nav-business-offices > ul > li > a:hover {
  background: #bf2812;
  opacity: 1;
}
.page-company-office .nav-business-offices > ul > li.accordion-hover-touch > a {
  padding: 0 30px;
}
.page-company-office .nav-business-offices > ul > li.accordion-hover-touch > a:hover::after {
  color: #fff;
  content: "▼";
  display: block;
  font-size: 14px;
  line-height: 1.3571428571;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) and (max-width: 1165px) {
  .page-company-office .nav-business-offices > ul > li.accordion-hover-touch > a:hover::after {
    font-size: 18px;
    line-height: 1.3333333333;
    right: 10px;
  }
}
.page-company-office .nav-business-offices > ul > li.accordion-hover-touch.open > a {
  background: #bf2812;
}
.page-company-office .nav-business-offices > ul > li.accordion-hover-touch.open > a::after {
  color: #fff;
  content: "▼";
  display: block;
  font-size: 14px;
  line-height: 1.3571428571;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) and (max-width: 1165px) {
  .page-company-office .nav-business-offices > ul > li.accordion-hover-touch.open > a::after {
    font-size: 18px;
    line-height: 1.3333333333;
    right: 10px;
  }
}
.page-company-office .nav-business-offices > ul > li ul {
  display: none;
  width: 100%;
}
@media (min-width: 768px) {
  .page-company-office .nav-business-offices > ul > li ul {
    left: 0;
    position: absolute;
    top: 100%;
    z-index: 998;
  }
}
.page-company-office .nav-business-offices > ul > li ul li {
  margin-top: 0;
}
.page-company-office .nav-business-offices > ul > li ul li a {
  align-items: center;
  background: #e9ecf0;
  color: #363636;
  display: flex;
  font-size: 14px;
  height: 45px;
  line-height: 1.3571428571;
  justify-content: center;
  position: relative;
}
@media (min-width: 768px) {
  .page-company-office .nav-business-offices > ul > li ul li a {
    height: 50px;
  }
}
.page-company-office .nav-business-offices > ul > li ul li:not(:first-child) a {
  border-top: 1px solid #A0A0A0;
}
.page-company-office .list-business-offices {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-company-office .list-business-offices {
    margin: 0 auto;
    max-width: 920px;
    padding: 0;
  }
}
.page-company-office .list-business-offices ul li + li {
  margin: 66px 0 0;
}
@media (min-width: 768px) {
  .page-company-office .list-business-offices ul li + li {
    border-bottom: none;
    margin: 93px 0 0;
  }
}
.page-company-office .list-business-offices ul li h2 {
  font-size: 25px;
  font-weight: bold;
  line-height: 1.32;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .page-company-office .list-business-offices ul li h2 {
    font-size: 32px;
    line-height: 1.34375;
    margin-bottom: 63px;
  }
}
.page-company-office .list-business-offices ul li .info {
  border-bottom: 1px solid #E4E4E4;
  padding-bottom: 25px;
}
@media (min-width: 768px) {
  .page-company-office .list-business-offices ul li .info {
    border-bottom: none;
    display: flex;
  }
}
.page-company-office .list-business-offices ul li .info + .info {
  padding-top: 27px;
}
@media (min-width: 768px) {
  .page-company-office .list-business-offices ul li .info + .info {
    padding-top: 38px;
  }
}
.page-company-office .list-business-offices ul li .info > p {
  border-bottom: 1px solid #000;
  color: #9d9d9d;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3571428571;
  margin-bottom: 28px;
  padding-bottom: 23px;
}
@media (min-width: 768px) {
  .page-company-office .list-business-offices ul li .info > p {
    font-size: 17px;
    line-height: 1.7058823529;
    margin-bottom: 0;
    padding-bottom: 46px;
    width: 310px;
  }
}
@media (min-width: 768px) {
  .page-company-office .list-business-offices ul li .info .address-map {
    border-bottom: 1px solid #E4E4E4;
    display: flex;
    justify-content: space-between;
    padding-bottom: 46px;
    flex: 1;
  }
}
.page-company-office .list-business-offices ul li .info .address-map .address {
  font-size: 14px;
  line-height: 1.3571428571;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .page-company-office .list-business-offices ul li .info .address-map .address {
    font-size: 17px;
    line-height: 1.2352941176;
    margin-bottom: 0;
    max-width: 508px;
    padding: 0 10px;
  }
}
.page-company-office .list-business-offices ul li .info .address-map .map {
  align-items: center;
  background: #bf2812;
  border-radius: 20px;
  color: #fff;
  display: flex;
  font-weight: bold;
  height: 33px;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .page-company-office .list-business-offices ul li .info .address-map .map {
    border-radius: 17px;
    font-size: 15px;
    height: 33px;
    line-height: 1.3333333333;
    width: 73px;
  }
}

/*--------------------------
	/company/group/
--------------------------*/
.page-company-group .nav-group-company {
  margin-bottom: 51px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-company-group .nav-group-company {
    margin-bottom: 83px;
    padding: 0;
  }
}
.page-company-group .nav-group-company > ul {
  margin-top: -15px;
}
@media (min-width: 768px) {
  .page-company-group .nav-group-company > ul {
    display: flex;
    justify-content: space-between;
    margin-top: 0;
  }
}
.page-company-group .nav-group-company > ul > li {
  margin-top: 15px;
  position: relative;
}
@media (min-width: 768px) {
  .page-company-group .nav-group-company > ul > li {
    margin-top: 0;
    width: calc((100% - 20px) / 2);
  }
}
.page-company-group .nav-group-company > ul > li > a {
  align-items: center;
  background: #1e4292;
  color: #fff;
  display: flex;
  font-size: 14px;
  height: 45px;
  line-height: 1.3571428571;
  justify-content: center;
  position: relative;
}
@media (min-width: 768px) {
  .page-company-group .nav-group-company > ul > li > a {
    font-size: 18px;
    line-height: 1.3333333333;
    height: 60px;
  }
}
.page-company-group .nav-group-company > ul > li > a:hover {
  background: #bf2812;
  opacity: 1;
}
.page-company-group .nav-group-company > ul > li.accordion-hover-touch > a:hover::after {
  color: #fff;
  content: "▼";
  display: block;
  font-size: 14px;
  line-height: 1.3571428571;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) and (max-width: 1165px) {
  .page-company-group .nav-group-company > ul > li.accordion-hover-touch > a:hover::after {
    font-size: 18px;
    line-height: 1.3333333333;
    right: 10px;
  }
}
.page-company-group .nav-group-company > ul > li.accordion-hover-touch.open > a {
  background: #bf2812;
}
.page-company-group .nav-group-company > ul > li.accordion-hover-touch.open > a::after {
  color: #fff;
  content: "▼";
  display: block;
  font-size: 14px;
  line-height: 1.3571428571;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) and (max-width: 1165px) {
  .page-company-group .nav-group-company > ul > li.accordion-hover-touch.open > a::after {
    font-size: 18px;
    line-height: 1.3333333333;
    right: 10px;
  }
}
.page-company-group .nav-group-company > ul > li ul {
  display: none;
  width: 100%;
}
@media (min-width: 768px) {
  .page-company-group .nav-group-company > ul > li ul {
    left: 0;
    position: absolute;
    top: 100%;
    z-index: 998;
  }
}
.page-company-group .nav-group-company > ul > li ul li {
  margin-top: 0;
}
.page-company-group .nav-group-company > ul > li ul li a {
  align-items: center;
  background: #e9ecf0;
  color: #363636;
  display: flex;
  font-size: 14px;
  height: 45px;
  line-height: 1.3571428571;
  justify-content: center;
  position: relative;
}
@media (min-width: 768px) {
  .page-company-group .nav-group-company > ul > li ul li a {
    height: 50px;
  }
}
.page-company-group .nav-group-company > ul > li ul li:not(:first-child) a {
  border-top: 1px solid #A0A0A0;
}
.page-company-group .list-all {
  margin-bottom: 30px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-company-group .list-all {
    margin: 0 auto 33px;
    max-width: 1014px;
    padding: 0;
    width: 100%;
  }
}
.page-company-group .list-all h2 {
  margin-bottom: 30px;
  text-align: left;
}
@media (min-width: 768px) {
  .page-company-group .list-all h2 {
    margin-bottom: 40px;
  }
}
.page-company-group .list-all ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 12px;
}
@media (min-width: 600px) {
  .page-company-group .list-all ul {
    gap: 15px 25px;
  }
}
.page-company-group .list-all ul li {
  background: url(../images/common/icon_link_arrow04.svg) no-repeat 0 7px;
  background-size: 11px 10px;
  padding-left: 24px;
  width: calc((100% - 12px) / 2);
}
@media (min-width: 600px) {
  .page-company-group .list-all ul li {
    width: calc((100% - 50px) / 3);
  }
}
.page-company-group .list-all ul li a {
  font-size: 14px;
  line-height: 1.3571428571;
}
@media (min-width: 768px) {
  .page-company-group .list-all ul li a {
    font-size: 17px;
    line-height: 1.4705882353;
  }
}
.page-company-group main h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
  margin-bottom: 34px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-company-group main h2 {
    font-size: 32px;
    line-height: 1.34375;
    margin-bottom: 78px;
  }
}
.page-company-group main h2 span {
  color: #BF2812;
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3076923077;
  padding-top: 7px;
}
@media (min-width: 768px) {
  .page-company-group main h2 span {
    font-size: 20px;
    line-height: 1.35;
    padding-top: 15px;
  }
}
.page-company-group main h3 span {
  display: block;
  position: relative;
  border-left: 9px solid #1e4292;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.32;
  margin: 0 0 64px 20px;
  padding-left: 10px;
}
@media (min-width: 768px) {
  .page-company-group main h3 span {
    border-left: 9px solid #1e4292;
    font-size: 30px;
    line-height: 1.3333333333;
    margin: 0 auto 66px;
    max-width: 920px;
    padding-left: 15px;
  }
}
.page-company-group main h4 {
  font-size: 25px;
  font-weight: bold;
  line-height: 1.32;
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .page-company-group main h4 {
    font-size: 32px;
    line-height: 1.34375;
    margin-bottom: 63px;
    padding-bottom: 0;
  }
}
.page-company-group .list-group-company {
  margin: 0 auto 100px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-company-group .list-group-company {
    margin: 0 auto 147px;
    max-width: 920px;
    padding: 0;
  }
}
.page-company-group .list-group-company > ul > li {
  padding: 0 0 96px;
}
@media (min-width: 768px) {
  .page-company-group .list-group-company > ul > li {
    border-bottom: none;
    padding: 0 0 123px;
  }
}
.page-company-group .list-group-company > ul > li h2 {
  font-size: 25px;
  font-weight: bold;
  line-height: 1.32;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .page-company-group .list-group-company > ul > li h2 {
    font-size: 32px;
    line-height: 1.34375;
    margin-bottom: 63px;
  }
}
.page-company-group .list-group-company > ul > li dl {
  margin-top: -27px;
}
@media (min-width: 768px) {
  .page-company-group .list-group-company > ul > li dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.page-company-group .list-group-company > ul > li dl dt {
  border-bottom: 1px solid #000;
  color: #9D9D9D;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.7142857143;
  margin: 27px 0 21px;
  padding: 0 0 19px;
}
@media (min-width: 768px) {
  .page-company-group .list-group-company > ul > li dl dt {
    flex-basis: 310px;
    float: left;
    font-size: 17px;
    line-height: 1.7058823529;
    margin: 0 0 0;
    padding: 37px 0 59px;
  }
}
.page-company-group .list-group-company > ul > li dl dd {
  font-size: 14px;
  line-height: 1.7142857143;
}
@media (min-width: 768px) {
  .page-company-group .list-group-company > ul > li dl dd {
    border-bottom: 1px solid #E4E4E4;
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    flex-basis: calc(100% - 310px);
    font-size: 17px;
    justify-content: space-between;
    line-height: 1.7058823529;
    padding: 37px 0 59px 10px;
  }
}
@media (min-width: 768px) {
  .page-company-group .list-group-company > ul > li dl dd .address {
    width: calc(100% - 73px);
    padding-right: 10px;
  }
}
.page-company-group .list-group-company > ul > li dl dd .map {
  align-items: center;
  background: #bf2812;
  border-radius: 20px;
  color: #fff;
  display: flex;
  font-weight: bold;
  height: 33px;
  justify-content: center;
  margin-top: 15px;
  width: 100%;
}
@media (min-width: 768px) {
  .page-company-group .list-group-company > ul > li dl dd .map {
    border-radius: 17px;
    font-size: 15px;
    height: 33px;
    line-height: 1.3333333333;
    margin-top: 0;
    width: 73px;
  }
}
.page-company-group .list-group-company > ul > li dl dd ul li {
  padding-left: -1em;
  text-indent: 1em;
}
/*--------------------------
	/company/partner-item/
--------------------------*/
.page-company-partner-item h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
  margin-bottom: 50px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-company-partner-item h2 {
    font-size: 32px;
    line-height: 1.34375;
    margin: 0 auto 66px;
    max-width: 920px;
    padding: 0;
  }
}
.page-company-partner-item h2 span {
  display: inline-block;
  font-size: 13px;
  line-height: 1.3076923077;
  padding-top: 7px;
}
@media (min-width: 768px) {
  .page-company-partner-item h2 span {
    font-size: 20px;
    line-height: 1.35;
  }
}
.page-company-partner-item .list-partner {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-company-partner-item .list-partner {
    margin: 0 auto;
    max-width: 920px;
    padding: 0;
  }
}
.page-company-partner-item .list-partner ul {
  margin-top: -20px;
}
@media (min-width: 768px) {
  .page-company-partner-item .list-partner ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.page-company-partner-item .list-partner ul li {
  border-bottom: 1px solid #E4E4E4;
  font-size: 16px;
  line-height: 1.6875;
  margin-top: 20px;
  padding-bottom: 15px;
}
@media (min-width: 768px) {
  .page-company-partner-item .list-partner ul li {
    font-size: 17px;
    line-height: 1.7058823529;
    width: calc((100% - 28px) / 2);
  }
}

/*--------------------------
	/company/info/
--------------------------*/
.page-company-info .area-company-information {
  margin-bottom: 45px;
}
@media (min-width: 768px) {
  .page-company-info .area-company-information {
    margin-bottom: 89px;
    max-width: 811px;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .page-company-info .area-company-information-box .company-information-get-list {
    padding-top: 0;
  }
}
.page-company-info .area-company-information-box .company-information-get-list-select {
  background-color: #EFF1F4;
}
@media (min-width: 768px) {
  .page-company-info .area-company-information-box .company-information-get-list [role=tablist] {
    margin: 0 auto 60px;
  }
}
@media (min-width: 768px) {
  .page-company-info .area-company-information-box .company-information-get-list [role=tablist] li {
    margin: 0 0 0 30px;
  }
}
.page-company-info .area-company-information-box .company-information-get-list [role=tablist] li:first-child {
  margin-left: 0;
}
@media (min-width: 768px) {
  .page-company-info .area-company-information-box .company-information-get-list .list-topics .company-information-news li.active {
    display: flex;
  }
}
.page-company-info .area-company-information-box .company-information-get-list .list-topics .company-information-news li p a {
  color: #000;
}
/*--------------------------
	/company/outline/
--------------------------*/
.page-company-outline h2 {
  font-size: 25px;
  font-weight: bold;
  line-height: 1.32;
  margin-bottom: 24px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-company-outline h2 {
    font-size: 32px;
    line-height: 1.34375;
    margin: 0 auto 63px;
    max-width: 920px;
    padding: 0;
  }
}
.page-company-outline .list-company-outline {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-company-outline .list-company-outline {
    margin: 0 auto;
    max-width: 920px;
    padding: 0;
  }
}
.page-company-outline .list-company-outline + h2 {
  padding-top: 80px;
}
@media (min-width: 768px) {
  .page-company-outline .list-company-outline + h2 {
    padding-top: 124px;
  }
}
.page-company-outline .list-company-outline dl {
  margin-top: -23px;
}
@media (min-width: 768px) {
  .page-company-outline .list-company-outline dl {
    display: flex;
    flex-wrap: wrap;
    margin-top: -39px;
  }
}
.page-company-outline .list-company-outline dl dt {
  border-bottom: 1px solid #000;
  color: #9D9D9D;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.7142857143;
  padding: 23px 0;
}
@media (min-width: 768px) {
  .page-company-outline .list-company-outline dl dt {
    font-size: 17px;
    line-height: 1.7058823529;
    padding: 39px 0;
    width: 310px;
  }
}
.page-company-outline .list-company-outline dl dd {
  font-size: 14px;
  line-height: 1.7142857143;
  padding: 23px 0 20px;
}
@media (min-width: 768px) {
  .page-company-outline .list-company-outline dl dd {
    border-bottom: 1px solid #E4E4E4;
    font-size: 17px;
    line-height: 1.7058823529;
    padding: 39px 10px;
    width: calc(100% - 310px);
  }
}
.page-company-outline .list-company-outline dl dd .list-name {
  display: flex;
}
.page-company-outline .list-company-outline dl dd .list-name div {
  width: 50%;
}
.page-company-outline .list-company-outline dl dd .member-list {
  display: table;
  width: 100%;
}
.page-company-outline .list-company-outline dl dd .member-list > li {
  display: table-row;
}
.page-company-outline .list-company-outline dl dd .member-list > li > div {
  display: table-cell;
  vertical-align: top;
  padding: 1em 0 0;
}
.page-company-outline .list-company-outline dl dd .member-list > li > div:nth-child(1) {
  width: 50%;
}
.page-company-outline .list-company-outline dl dd .note-text {
  margin-top: 2em;
}
.page-company-outline .list-company-outline dl dd .note-text.note-text-right {
  width: 50%;
  margin-left: auto;
}

/*--------------------------
	/company/organization/
--------------------------*/
.page-company-organization .link-txt {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-company-organization .link-txt {
    margin-bottom: 44px;
    padding: 0;
  }
}
.page-company-organization .link-txt p:first-child {
  font-weight: bold;
}
@media (min-width: 768px) {
  .page-company-organization .link-txt p:first-child {
    font-size: 20px;
    line-height: 1.35;
  }
}
@media (min-width: 768px) {
  .page-company-organization .link-txt p:last-child {
    font-size: 17px;
    line-height: 1.2941176471;
  }
}
.page-company-organization .organization-img {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-company-organization .organization-img {
    padding: 0;
  }
}

/*--------------------------
	/company/business/
--------------------------*/
.page-company-business {
  overflow-x: hidden;
  position: relative;
}
.page-company-business .img-company-business-s01 {
  margin-bottom: 122px;
  margin-bottom: 31.4432989691vw;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-company-business .img-company-business-s01 {
    margin-bottom: 243px;
    padding: 0;
  }
}
.page-company-business .back-txt-business {
  margin: 0 auto;
  position: relative;
  width: 390px;
}
@media (min-width: 768px) {
  .page-company-business .back-txt-business {
    width: 1166px;
  }
}
.page-company-business .back-txt-business span {
  color: #EFF1F4;
  font-family: "Manrope", sans-serif;
  font-size: 100px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  position: absolute;
  right: 30px;
  top: -70px;
  white-space: nowrap;
  z-index: -1;
}
@media (min-width: 768px) {
  .page-company-business .back-txt-business span {
    font-size: 250px;
    line-height: 1.332;
    right: -55px;
    top: -230px;
  }
}
.page-company-business main h2 {
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 20px;
  font-weight: bold;
  height: 206px;
  line-height: 1.35;
  justify-content: center;
  margin-bottom: 27px;
}
@media (min-width: 768px) {
  .page-company-business main h2 {
    font-size: 32px;
    height: 300px;
    line-height: 1.34375;
    margin-bottom: 70px;
  }
}
.page-company-business main h2 span {
  font-family: "Manrope", sans-serif;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.34;
}
@media (min-width: 768px) {
  .page-company-business main h2 span {
    font-size: 80px;
    line-height: 1.325;
  }
}
.page-company-business main h2.ttl-company-business-s01 {
  background: url(../images/company/business/bg_business01_sp.jpg) no-repeat center 0;
  background-size: cover;
}
@media (min-width: 768px) {
  .page-company-business main h2.ttl-company-business-s01 {
    background: url(../images/company/business/bg_business01.jpg) no-repeat center 0;
    background-size: cover;
  }
}
.page-company-business main h2.ttl-company-business-s02 {
  background: url(../images/company/business/bg_business02_sp.jpg) no-repeat center 0;
  background-size: cover;
}
@media (min-width: 768px) {
  .page-company-business main h2.ttl-company-business-s02 {
    background: url(../images/company/business/bg_business02.jpg) no-repeat center 0;
    background-size: cover;
  }
}
.page-company-business main h2.ttl-company-business-s03 {
  background: url(../images/company/business/bg_business03_sp.jpg) no-repeat center 0;
  background-size: cover;
}
@media (min-width: 768px) {
  .page-company-business main h2.ttl-company-business-s03 {
    background: url(../images/company/business/bg_business03.jpg) no-repeat center 0;
    background-size: cover;
  }
}
.page-company-business main h2.ttl-company-business-s04 {
  background: url(../images/company/business/bg_business04_sp.jpg) no-repeat center 0;
  background-size: cover;
}
@media (min-width: 768px) {
  .page-company-business main h2.ttl-company-business-s04 {
    background: url(../images/company/business/bg_business04.jpg) no-repeat center 0;
    background-size: cover;
  }
}
.page-company-business .area-business-contents {
  margin-bottom: 66px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-company-business .area-business-contents {
    margin: 0 auto 100px;
    max-width: 1206px;
    padding: 0 20px;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .page-company-business .area-business-contents-inner {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 768px) and (max-width: 1165px) {
  .page-company-business .area-business-contents-inner {
    display: block;
  }
}
.page-company-business .area-business-contents-inner h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3333333333;
  margin: 0 0 41px 0;
}
@media (min-width: 768px) {
  .page-company-business .area-business-contents-inner h3 {
    font-size: 27px;
    line-height: 1.3333333333;
    margin: 0;
    width: calc(100% - 617px);
  }
}
@media (min-width: 768px) and (max-width: 1165px) {
  .page-company-business .area-business-contents-inner h3 {
    margin-bottom: 41px;
    width: 100%;
  }
}
.page-company-business .area-business-contents-inner p {
  font-size: 14px;
  line-height: 1.7142857143;
}
@media (min-width: 768px) {
  .page-company-business .area-business-contents-inner p {
    font-size: 16px;
    line-height: 1.625;
    max-width: 617px;
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1165px) {
  .page-company-business .area-business-contents-inner p {
    max-width: 100%;
  }
}
.page-company-business .area-business-contents h4 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
  margin-bottom: 31px;
  padding-top: 66px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-company-business .area-business-contents h4 {
    font-size: 32px;
    line-height: 1.34375;
    margin-bottom: 56px;
    padding-top: 100px;
  }
}
.page-company-business .area-business-contents h4 span {
  color: #BF2812;
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3076923077;
  padding-top: 7px;
}
@media (min-width: 768px) {
  .page-company-business .area-business-contents h4 span {
    font-size: 20px;
    line-height: 1.35;
    padding-top: 15px;
  }
}
.page-company-business .area-business-contents .list-business-field {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: -28px;
}
@media (min-width: 768px) {
  .page-company-business .area-business-contents .list-business-field {
    margin-top: -58px;
  }
}
.page-company-business .area-business-contents .list-business-field::after {
  content: "";
  width: calc((100% - 61px) / 4);
}
.page-company-business .area-business-contents .list-business-field li {
  margin-top: 28px;
  text-align: center;
  width: calc((100% - 12px) / 2);
}
@media (min-width: 768px) {
  .page-company-business .area-business-contents .list-business-field li {
    margin-top: 58px;
    width: calc((100% - 61px) / 4);
  }
}
.page-company-business .area-business-contents .list-business-field li img {
  display: block;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .page-company-business .area-business-contents .list-business-field li img {
    margin-bottom: 22px;
  }
}
.page-company-business .contents-box01 {
  background: #F0F1F3;
  margin-top: 75px;
  padding: 40px 20px 68px;
}
@media (min-width: 768px) {
  .page-company-business .contents-box01 {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: 114px;
    padding: 43px 116px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-company-business .contents-box01 {
    padding: 43px 20px;
  }
}
.page-company-business .contents-box01 > p {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-company-business .contents-box01 > p {
    margin: 0 45px 0 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-company-business .contents-box01 > p {
    max-width: 37.6767676768vw;
  }
}
@media (min-width: 768px) {
  .page-company-business .contents-box01 .contents-box01-txt {
    width: calc(100% - 373px - 45px);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-company-business .contents-box01 .contents-box01-txt {
    width: calc(100% - 37.6767676768vw - 45px);
  }
}
.page-company-business .contents-box01 .contents-box01-txt p:first-child {
  align-items: center;
  background: #fff;
  color: #1E4292;
  display: flex;
  font-size: 18px;
  font-weight: bold;
  min-height: 45px;
  justify-content: center;
  line-height: 1.3333333333;
  margin-bottom: 30px;
  padding: 9px 10px;
}
@media (min-width: 768px) {
  .page-company-business .contents-box01 .contents-box01-txt p:first-child {
    font-size: 20px;
    line-height: 1.2;
  }
}
.page-company-business .contents-box01 .contents-box01-txt p:last-child {
  font-size: 14px;
  line-height: 1.7142857143;
}
@media (min-width: 768px) {
  .page-company-business .contents-box01 .contents-box01-txt p:last-child {
    font-size: 16px;
    line-height: 1.5;
  }
}
.page-company-business .about-rix {
  margin: 28px 0 0;
}
@media (min-width: 768px) {
  .page-company-business .about-rix {
    max-width: 720px;
    margin: 58px auto 0;
  }
}
.page-company-business .about-rix h3 {
  background: #1e4292;
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 15px;
  padding: 5px 0;
}
@media (max-width: 375px) {
  .page-company-business .about-rix h3 {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .page-company-business .about-rix h3 {
    font-size: 24px;
  }
}
.page-company-business .about-rix img {
  display: block;
}

/*--------------------------
	/company/movie-library/
--------------------------*/
.page-company-movie .p-movie__sec + .p-movie__sec {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .page-company-movie .p-movie__sec + .p-movie__sec {
    margin-top: 80px;
  }
}
.page-company-movie .p-movie__ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  gap: 6px 0;
  height: 180px;
  padding-top: 0;
}
@media (min-width: 768px) {
  .page-company-movie .p-movie__ttl {
    gap: 10px 0;
    height: 300px;
  }
}
.page-company-movie .p-movie__ttl--sec01 {
  background-image: url(../images/company/movie/company-movie-ttl__img01.webp);
}
.page-company-movie .p-movie__ttl--sec02 {
  background-image: url(../images/company/movie/company-movie-ttl__img02.webp);
}
.page-company-movie .p-movie__ttl--sec03 {
  background-image: url(../images/company/movie/company-movie-ttl__img03.webp);
}
.page-company-movie .p-movie__ttl-en {
  text-align: center;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .page-company-movie .p-movie__ttl-en {
    font-size: 60px;
    line-height: 1.25;
  }
}
.page-company-movie .p-movie__ttl-ja {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
}
@media (min-width: 768px) {
  .page-company-movie .p-movie__ttl-ja {
    font-size: 32px;
    line-height: 1;
  }
}
.page-company-movie .p-movie__list {
  display: flex;
  flex-direction: column;
  gap: 25px 0;
  margin: 25px 20px 0;
}
@media (min-width: 768px) {
  .page-company-movie .p-movie__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 50px;
    margin: 50px 50px 0;
  }
}
.page-company-movie .p-movie__item {
  width: auto;
}
@media (min-width: 768px) {
  .page-company-movie .p-movie__item {
    width: calc((100% - 50px) / 2);
  }
}
.page-company-movie .p-movie__item iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.page-company-movie .p-movie__item-movie {
  position: relative;
  padding-top: 56.25%;
}
.page-company-movie .p-movie__item-hd {
  font-weight: 700;
  margin-top: 15px;
  font-size: 16px;
  line-height: 24/16 22;
}
@media (min-width: 768px) {
  .page-company-movie .p-movie__item-hd {
    margin-top: 30px;
    font-size: 20px;
    line-height: 1.4;
  }
}
.page-company-movie .p-movie__item-txt {
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.4615384615;
}
@media (min-width: 768px) {
  .page-company-movie .p-movie__item-txt {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.5;
  }
}
.page-company-movie .p-movie__yutube-banner {
  display: block;
  transition: 0.3s opacity ease;
  margin: 50px 20px 0;
}
@media (min-width: 768px) {
  .page-company-movie .p-movie__yutube-banner {
    width: 572px;
    margin: 100px auto 0;
  }
}

/*--------------------------
	/sustainability/
--------------------------*/
.page-sustainability {
  overflow-x: hidden;
  position: relative;
}
.page-sustainability .top-mv {
  background: url(../images/sustainability/sustainability_mv_sp.jpg) no-repeat center 0;
  background-size: cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 9.4871794872vw;
  font-weight: bold;
  height: 420px;
  justify-content: flex-end;
  letter-spacing: -0.05em;
  line-height: 1.3513513514;
  margin: 0 0 37px 0;
  padding: 0 0 20px 20px;
}
@media (min-width: 768px) {
  .page-sustainability .top-mv {
    background: url(../images/sustainability/sustainability_mv.jpg) no-repeat 0 0;
    background-size: cover;
    font-size: 45px;
    height: 544px;
    letter-spacing: 0;
    line-height: 1.3333333333;
    margin: 0 0 0 auto;
    padding: 0 0 44px 50px;
    width: 100%;
  }
}
.page-sustainability .back-txt-sustainability {
  margin: 0 auto;
  position: relative;
  width: 390px;
}
@media (min-width: 768px) {
  .page-sustainability .back-txt-sustainability {
    width: 1166px;
  }
}
.page-sustainability .back-txt-sustainability span {
  color: #EFF1F4;
  font-family: "Manrope", sans-serif;
  font-size: 100px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.33;
  position: absolute;
  right: -270px;
  top: 35px;
  white-space: nowrap;
  z-index: -1;
}
@media (min-width: 768px) {
  .page-sustainability .back-txt-sustainability span {
    font-size: 250px;
    line-height: 1.332;
    right: -820px;
    top: -25px;
  }
}
.page-sustainability .main-container {
  position: relative;
}
@media (min-width: 768px) {
  .page-sustainability .main-container {
    margin-top: -40px;
    position: relative;
  }
}
.page-sustainability .main-container h1::after {
  content: "サステナビリティ";
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3333333333;
  order: 1;
  position: absolute;
  right: 20px;
  top: 82px;
}
@media (min-width: 768px) {
  .page-sustainability .main-container h1::after {
    font-size: 46px;
    line-height: 1.347826087;
    right: 0;
    top: 225px;
  }
}
@media (min-width: 768px) and (max-width: 1285px) {
  .page-sustainability .main-container h1::after {
    margin-right: 10px;
  }
}
.page-sustainability .main-container h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
  margin-bottom: 51px;
  padding: 0 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-sustainability .main-container h2 {
    font-size: 32px;
    line-height: 1.34375;
    margin-bottom: 76px;
    padding: 0;
  }
}
.page-sustainability .main-container h2 span {
  color: #BF2812;
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3076923077;
  padding-top: 7px;
}
@media (min-width: 768px) {
  .page-sustainability .main-container h2 span {
    font-size: 20px;
    line-height: 1.35;
    padding-top: 15px;
  }
}
.page-sustainability .main-container .txt-sustainability-s01 {
  font-size: 14px;
  line-height: 2.1428571429;
  padding: 0 20px 79px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-sustainability .main-container .txt-sustainability-s01 {
    font-size: 18px;
    line-height: 1.6666666667;
    margin-bottom: 98px;
    padding: 0;
  }
}
.page-sustainability .main-container .thinks3 {
  margin-bottom: 50px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-sustainability .main-container .thinks3 {
    margin-bottom: 103px;
    padding: 0;
  }
}
.page-sustainability .main-container .thinks3 ul {
  margin-top: -64px;
}
@media (min-width: 768px) {
  .page-sustainability .main-container .thinks3 ul {
    display: flex;
    justify-content: space-between;
    margin-top: 0;
  }
}
.page-sustainability .main-container .thinks3 ul li {
  background: #eff1f4;
  margin-top: 64px;
  min-height: 175px;
  padding: 68px 18px 28px;
  position: relative;
}
@media (min-width: 768px) {
  .page-sustainability .main-container .thinks3 ul li {
    margin-top: 0;
    min-height: 286px;
    padding: 0 29px 40px;
    width: calc((100% - 80px) / 3);
  }
}
.page-sustainability .main-container .thinks3 ul li span {
  color: #1e4292;
  font-family: "Manrope", sans-serif;
  font-size: 80px;
  line-height: 1.325;
  font-weight: bold;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  top: -53px;
}
@media (min-width: 768px) {
  .page-sustainability .main-container .thinks3 ul li span {
    font-size: 100px;
    line-height: 1.33;
    top: -66px;
  }
}
.page-sustainability .main-container .thinks3 ul li p {
  font-size: 14px;
  line-height: 2.1428571429;
}
@media (min-width: 768px) {
  .page-sustainability .main-container .thinks3 ul li p {
    font-size: 18px;
    line-height: 2.2222222222;
    padding-top: 92px;
  }
}
.page-sustainability .main-container .sustainability-policy-container {
  margin-bottom: 54px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-sustainability .main-container .sustainability-policy-container {
    display: flex;
    margin-bottom: 144px;
  }
}
@media (min-width: 768px) and (max-width: 1285px) {
  .page-sustainability .main-container .sustainability-policy-container {
    padding: 0 10px;
  }
}
.page-sustainability .main-container .sustainability-policy-container .image {
  margin: 0 0 39px 0;
}
@media (min-width: 768px) {
  .page-sustainability .main-container .sustainability-policy-container .image {
    margin: 0 44px 0 0;
    max-width: 420px;
  }
}
@media (min-width: 768px) and (max-width: 1285px) {
  .page-sustainability .main-container .sustainability-policy-container .image {
    margin-right: 3.4214618974vw;
    width: 32.6594090202vw;
  }
}
@media (min-width: 768px) {
  .page-sustainability .main-container .sustainability-policy-container .txt-sustainability-s02 {
    display: flex;
    flex-direction: column;
    width: calc(100% - 484px);
  }
}
@media (min-width: 768px) and (max-width: 1285px) {
  .page-sustainability .main-container .sustainability-policy-container .txt-sustainability-s02 {
    width: calc(100% - 32.6594090202vw);
  }
}
.page-sustainability .main-container .sustainability-policy-container .txt-sustainability-s02 .message {
  font-size: 14px;
  line-height: 2.1428571429;
  margin-bottom: 62px;
}
@media (min-width: 768px) {
  .page-sustainability .main-container .sustainability-policy-container .txt-sustainability-s02 .message {
    font-size: 18px;
    line-height: 2.2222222222;
    margin-top: -0.5em;
  }
}
.page-sustainability .main-container .sustainability-policy-container .txt-sustainability-s02 .name {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3125;
  text-align: right;
}
@media (min-width: 768px) {
  .page-sustainability .main-container .sustainability-policy-container .txt-sustainability-s02 .name {
    font-size: 30px;
    line-height: 1.3333333333;
    margin-top: auto;
  }
}
.page-sustainability .main-container .sustainability-policy-container .txt-sustainability-s02 .name span {
  font-size: 13px;
}
@media (min-width: 768px) {
  .page-sustainability .main-container .sustainability-policy-container .txt-sustainability-s02 .name span {
    font-size: 25px;
  }
}
.page-sustainability .main-container .sustainability-can-do {
  margin-bottom: 54px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-sustainability .main-container .sustainability-can-do {
    margin-bottom: 126px;
    padding: 0;
  }
}
.page-sustainability .main-container .sustainability-can-do ul {
  margin-top: -28px;
}
@media (min-width: 768px) {
  .page-sustainability .main-container .sustainability-can-do ul {
    display: flex;
    justify-content: space-between;
  }
}
.page-sustainability .main-container .sustainability-can-do ul li {
  margin-top: 28px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-sustainability .main-container .sustainability-can-do ul li {
    width: calc((100% - 102px) / 4);
  }
}
.page-sustainability .main-container .sustainability-can-do ul li a {
  display: block;
  margin-bottom: 22px;
}
@media (min-width: 768px) {
  .page-sustainability .main-container .sustainability-can-do ul li a {
    margin-bottom: 18px;
  }
}
.page-sustainability .main-container .sustainability-can-do ul li p {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.3333333333;
}
@media (min-width: 768px) {
  .page-sustainability .main-container .sustainability-can-do ul li p {
    font-size: 20px;
    line-height: 1.5;
  }
}
.page-sustainability .main-container .area-sustainability-initiatives .view-more {
  margin: 0 auto;
}

/*--------------------------
	/sustainability/action/
--------------------------*/
.page-sustainability-action .area-sustainability-initiatives {
  margin-bottom: 70px;
}
@media (min-width: 768px) {
  .page-sustainability-action .area-sustainability-initiatives {
    margin-bottom: 101px;
  }
}
.page-sustainability-action .area-sustainability-initiatives .sustainability-initiatives-list .list-article .sustainability-initiatives-news li {
  display: none;
}
.page-sustainability-action .area-sustainability-initiatives .sustainability-initiatives-list .list-article .sustainability-initiatives-news li.active {
  display: block;
}

/*--------------------------
	/sustainability/esg/
--------------------------*/
.page-sustainability-esg .parts-sustainability-initiatives {
  padding-top: 100px;
}
@media (min-width: 768px) {
  .page-sustainability-esg .parts-sustainability-initiatives {
    padding-top: 117px;
  }
}
.page-sustainability-esg .parts-sustainability-initiatives h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
  margin-bottom: 51px;
  padding: 0 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-sustainability-esg .parts-sustainability-initiatives h2 {
    font-size: 32px;
    line-height: 1.34375;
    margin-bottom: 76px;
    padding: 0;
  }
}
.page-sustainability-esg .parts-sustainability-initiatives h2 span {
  color: #BF2812;
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3076923077;
  padding-top: 7px;
}
@media (min-width: 768px) {
  .page-sustainability-esg .parts-sustainability-initiatives h2 span {
    font-size: 20px;
    line-height: 1.35;
    padding-top: 15px;
  }
}
.page-sustainability-esg .parts-sustainability-initiatives .list-article {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-sustainability-esg .parts-sustainability-initiatives .list-article {
    margin-bottom: 71px;
  }
}
.page-sustainability-esg .parts-sustainability-initiatives .view-more {
  margin: 0 auto;
}

/*--------------------------
	/sustainability/sdgs/
--------------------------*/
.page-sustainability-sdgs .sdgs-logo {
  margin: 0 25px 48px;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .sdgs-logo {
    position: absolute;
    top: 84px;
    right: 0;
    margin-bottom: 0;
  }
}
.page-sustainability-sdgs .sdgs-logo ul {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .sdgs-logo ul {
    margin-bottom: 20px;
  }
}
.page-sustainability-sdgs .sdgs-logo ul li:nth-of-type(1) {
  padding: 0 40px 0 0;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .sdgs-logo ul li:nth-of-type(1) {
    padding: 0 48px 0 0;
  }
}
.page-sustainability-sdgs .sdgs-logo ul li:nth-of-type(2) {
  padding: 0 0 0 40px;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .sdgs-logo ul li:nth-of-type(2) {
    padding: 0 0 0 48px;
  }
}
.page-sustainability-sdgs .sdgs-logo ul li img {
  display: block;
  width: auto;
  height: 58px;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .sdgs-logo ul li img {
    height: 71px;
  }
}
.page-sustainability-sdgs .sdgs-logo ul li:nth-of-type(1) {
  border-right: 1px solid #000;
}
.page-sustainability-sdgs .sdgs-logo p {
  font-size: 11px;
  line-height: 1;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .sdgs-logo p {
    font-size: 14px;
  }
}
.page-sustainability-sdgs .area-about {
  padding: 0 20px;
  margin-bottom: 89px;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-about {
    margin-bottom: 86px;
  }
}
.page-sustainability-sdgs .area-about .about-img {
  margin-bottom: 27px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-about .about-img {
    margin: 0 auto 43px;
    max-width: 740px;
  }
}
.page-sustainability-sdgs .area-about h2 {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.3333333333;
  margin-bottom: 23px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-about h2 {
    font-size: 32px;
    line-height: 1.34375;
    margin-bottom: 34px;
  }
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-about .about-txt-s01 {
    max-width: 953px;
    margin: 0 auto;
  }
}
.page-sustainability-sdgs .area-action-nav {
  background: #F4F9FF;
  padding: 49px 0 35px;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action-nav {
    padding: 70px 0 76px;
  }
}
.page-sustainability-sdgs .area-action-nav .area-action-inner {
  padding: 0 10px;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action-nav .area-action-inner {
    margin: 0 auto;
    max-width: 1083px;
    padding: 0 20px;
  }
}
.page-sustainability-sdgs .area-action-nav .area-action-inner h2 {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.6666666667;
  margin-bottom: 23px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action-nav .area-action-inner h2 {
    font-size: 32px;
    line-height: 1.34375;
    margin-bottom: 46px;
  }
}
.page-sustainability-sdgs .area-action-nav .area-action-inner .action-img {
  margin-bottom: 25px;
  padding: 0 10px;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action-nav .area-action-inner .action-img {
    margin-bottom: 38px;
  }
}
.page-sustainability-sdgs .area-action-nav .area-action-inner .page-link li + li {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action-nav .area-action-inner .page-link li + li {
    margin-top: 11px;
  }
}
.page-sustainability-sdgs .area-action-nav .area-action-inner .page-link li a {
  align-items: flex-start;
  background: #1e4292 url(../images/common/icon_arrow_bottom.svg) no-repeat right 10px center;
  background-size: 12px 6px;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 67px;
  padding: 5px 30px 10px 10px;
  justify-content: center;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action-nav .area-action-inner .page-link li a {
    align-items: center;
    background: #1e4292 url(../images/common/icon_arrow_bottom.svg) no-repeat right 15px center;
    background-size: 23px 11px;
    flex-direction: row;
    height: 60px;
    justify-content: flex-start;
    min-height: 60px;
    padding: 0 50px 0 17px;
  }
}
.page-sustainability-sdgs .area-action-nav .area-action-inner .page-link li a p:first-child {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3333333333;
  margin-bottom: 4px;
  vertical-align: 0;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action-nav .area-action-inner .page-link li a p:first-child {
    font-size: 20px;
    line-height: 1.35;
    margin-right: 34px;
  }
}
.page-sustainability-sdgs .area-action-nav .area-action-inner .page-link li a p:first-child span {
  font-size: 17px;
  line-height: 1.2941176471;
  margin-bottom: 4px;
  vertical-align: 0px;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action-nav .area-action-inner .page-link li a p:first-child span {
    font-size: 30px;
    line-height: 1.3333333333;
  }
}
.page-sustainability-sdgs .area-action-nav .area-action-inner .page-link li a p:last-child {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5833333333;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action-nav .area-action-inner .page-link li a p:last-child {
    font-size: 20px;
    line-height: 1.25;
  }
}
.page-sustainability-sdgs .area-action .action-ttl {
  background-size: cover;
  height: 207px;
  margin-bottom: 167px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-ttl {
    height: 451px;
    margin-bottom: 50px;
    padding: 0;
  }
}
.page-sustainability-sdgs .area-action .action-ttl p {
  color: #fff;
  font-size: 16px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  line-height: 1.3125;
  padding: 57px 0 0;
  position: relative;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-ttl p {
    font-size: 40px;
    line-height: 1.325;
    margin: 0 auto;
    max-width: 1206px;
    padding: 63px 20px 0;
  }
}
.page-sustainability-sdgs .area-action .action-ttl p::after {
  background-size: cover;
  bottom: -212px;
  content: "";
  display: block;
  left: 50%;
  margin: 0 auto;
  position: absolute;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-ttl p::after {
    left: unset;
    right: 20px;
    top: 282px;
    transform: translateX(0);
  }
}
.page-sustainability-sdgs .area-action .action-ttl p span {
  display: block;
  font-size: 51px;
  line-height: 1;
  margin: 0 0 8px;
  transform: translateX(-3px);
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-ttl p span {
    font-size: 127px;
    line-height: 1;
    margin: 10px 0 30px;
    transform: translateX(-8px);
  }
}
.page-sustainability-sdgs .area-action .action-ttl.action01 {
  background: url(../images/sustainability/sdgs/bg_action01_sp.jpg) no-repeat center 0;
  background-size: cover;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-ttl.action01 {
    background: url(../images/sustainability/sdgs/bg_action01.jpg) no-repeat center 0;
    background-size: cover;
  }
}
.page-sustainability-sdgs .area-action .action-ttl.action01 p::after {
  background: url(../images/sustainability/sdgs/action01_sdgs_icon_sp.png) no-repeat 0 0;
  background-size: cover;
  height: 118px;
  width: 170px;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-ttl.action01 p::after {
    background: url(../images/sustainability/sdgs/action01_sdgs_icon.jpg) no-repeat 0 0;
    background-size: cover;
    height: 112px;
    width: 299px;
  }
}
.page-sustainability-sdgs .area-action .action-ttl.action02 {
  background: url(../images/sustainability/sdgs/bg_action02_sp.jpg) no-repeat center 0;
  background-size: cover;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-ttl.action02 {
    background: url(../images/sustainability/sdgs/bg_action02.jpg) no-repeat center 0;
    background-size: cover;
  }
}
.page-sustainability-sdgs .area-action .action-ttl.action02 p::after {
  background: url(../images/sustainability/sdgs/action02_sdgs_icon_sp.png) no-repeat 0 0;
  background-size: cover;
  height: 117px;
  width: 86px;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-ttl.action02 p::after {
    background: url(../images/sustainability/sdgs/action02_sdgs_icon.jpg) no-repeat 0 0;
    background-size: cover;
    height: 112px;
    width: 207px;
  }
}
.page-sustainability-sdgs .area-action .action-ttl.action03 {
  background: url(../images/sustainability/sdgs/bg_action03_sp.jpg) no-repeat center 0;
  background-size: cover;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-ttl.action03 {
    background: url(../images/sustainability/sdgs/bg_action03.jpg) no-repeat center 0;
    background-size: cover;
  }
}
.page-sustainability-sdgs .area-action .action-ttl.action03 p::after {
  background: url(../images/sustainability/sdgs/action03_sdgs_icon_sp.png) no-repeat 0 0;
  background-size: cover;
  height: 117px;
  width: 170px;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-ttl.action03 p::after {
    background: url(../images/sustainability/sdgs/action03_sdgs_icon.jpg) no-repeat 0 0;
    background-size: cover;
    height: 112px;
    width: 299px;
  }
}
.page-sustainability-sdgs .area-action .action-ttl.action04 {
  background: url(../images/sustainability/sdgs/bg_action04_sp.jpg) no-repeat center 0;
  background-size: cover;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-ttl.action04 {
    background: url(../images/sustainability/sdgs/bg_action04.jpg) no-repeat center 0;
    background-size: cover;
  }
}
.page-sustainability-sdgs .area-action .action-ttl.action04 p::after {
  background: url(../images/sustainability/sdgs/action04_sdgs_icon_sp.png) no-repeat 0 0;
  background-size: cover;
  height: 117px;
  width: 170px;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-ttl.action04 p::after {
    background: url(../images/sustainability/sdgs/action04_sdgs_icon.jpg) no-repeat 0 0;
    background-size: cover;
    height: 112px;
    width: 299px;
  }
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-ttl h3 {
    margin: 0 auto;
    max-width: 1206px;
    padding: 0 20px;
  }
}
.page-sustainability-sdgs .area-action .action-ttl h3 span {
  background: #1e4292;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  padding: 0 50px 0 5px;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-ttl h3 span {
    font-size: 35px;
    line-height: 1.4571428571;
    letter-spacing: -0.05em;
  }
}
.page-sustainability-sdgs .area-action .action-ttl h3 span:last-child {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-ttl h3 span:last-child {
    margin-top: 12px;
  }
}
.page-sustainability-sdgs .area-action .action-inner {
  margin-bottom: 80px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-inner {
    margin: 0 auto 120px;
    max-width: 990px;
  }
}
.page-sustainability-sdgs .area-action .action-inner .action-txt-s01 {
  font-size: 14px;
  line-height: 1.7142857143;
  margin-bottom: 45px;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-inner .action-txt-s01 {
    font-size: 16px;
    line-height: 1.8125;
    margin-bottom: 45px;
  }
}
.page-sustainability-sdgs .area-action .action-inner-box {
  border: 1px solid #B03622;
  padding: 20px 10px;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-inner-box {
    padding: 44px 57px;
  }
}
.page-sustainability-sdgs .area-action .action-inner-box + .action-inner-box {
  margin-top: 20px;
}
.page-sustainability-sdgs .area-action .action-inner-box h4 {
  color: #BF2812;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-inner-box h4 {
    align-items: center;
    display: flex;
    font-size: 28px;
    line-height: 1.4642857143;
    margin-bottom: 36px;
  }
}
.page-sustainability-sdgs .area-action .action-inner-box h4 span:first-child {
  align-items: center;
  background: #BF2812;
  border-radius: 26px;
  color: #fff;
  display: flex;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 800;
  height: 31px;
  margin-bottom: 7px;
  justify-content: center;
  width: 71px;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-inner-box h4 span:first-child {
    display: inline-flex;
    font-size: 30px;
    height: 52px;
    margin-right: 29px;
    margin-bottom: 0;
    width: 135px;
  }
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-inner-box h4 span:nth-of-type(2) {
    width: calc(100% - 135px - 29px);
  }
}
.page-sustainability-sdgs .area-action .action-inner-box .action-inner-img-single {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-inner-box .action-inner-img-single {
    margin-bottom: 35px;
  }
}
.page-sustainability-sdgs .area-action .action-inner-box .action-inner-img-single span {
  display: block;
  font-size: 12px;
  margin-bottom: 12px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-inner-box .action-inner-img-single span {
    font-size: 16px;
    margin-bottom: 17px;
  }
}
.page-sustainability-sdgs .area-action .action-inner-box .action-inner-img-multi {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.page-sustainability-sdgs .area-action .action-inner-box .action-inner-img-multi li {
  width: calc(50% - 2px);
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-inner-box .action-inner-img-multi li {
    width: calc(50% - 4px);
  }
}
.page-sustainability-sdgs .area-action .action-inner-box .action-inner-img-multi li p {
  font-size: 8px;
  margin-top: 5px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-inner-box .action-inner-img-multi li p {
    font-size: 13px;
    margin-top: 10px;
  }
}
.page-sustainability-sdgs .area-action .action-inner-box .action-inner-img-multi li p br.sp {
  display: block;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-inner-box .action-inner-img-multi li p br.sp {
    display: none;
  }
}
.page-sustainability-sdgs .area-action .action-inner-box .action-inner-img-multi li p br.pc {
  display: none;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-inner-box .action-inner-img-multi li p br.pc {
    display: block;
  }
}
.page-sustainability-sdgs .area-action .action-inner-box .action-inner-img-multi li p + picture img {
  display: block;
  margin-top: 5px;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-inner-box .action-inner-img-multi li p + picture img {
    margin-top: 10px;
  }
}
.page-sustainability-sdgs .area-action .action-inner-box .action-inner-txt-s01 {
  font-size: 14px;
  line-height: 1.7142857143;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-inner-box .action-inner-txt-s01 {
    font-size: 16px;
    line-height: 1.8125;
  }
}
.page-sustainability-sdgs .area-action .action-inner-box .action-inner-txt-s02 {
  font-size: 14px;
  line-height: 1.7142857143;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-inner-box .action-inner-txt-s02 {
    font-size: 16px;
    line-height: 1.8125;
    margin-bottom: 64px;
  }
}
.page-sustainability-sdgs .area-action .action-inner-box .action-inner-note-s01 {
  border: 1px solid #707070;
  padding: 15px;
}
.page-sustainability-sdgs .area-action .action-inner-box .action-inner-note-s01 h5 {
  font-size: 14px;
  font-weight: bold;
  line-height: 2.0714285714;
}
.page-sustainability-sdgs .area-action .action-inner-box .action-inner-note-s01 ul li {
  font-size: 14px;
  line-height: 1.7142857143;
  padding-left: 0.5em;
  text-indent: -0.5em;
}
@media (min-width: 768px) {
  .page-sustainability-sdgs .area-action .action-inner-box .action-inner-note-s01 ul li {
    font-size: 16px;
    line-height: 1.8125;
  }
}
.page-sustainability-sdgs .area-action .action-inner-box .ttl-picture {
  font-size: 13px;
  line-height: 1.8461538462;
  margin-bottom: 6px;
  text-align: center;
}
.page-sustainability-sdgs .area-action .action-inner-box .w-auto {
  display: block;
  margin: 0 auto;
  width: auto;
}
/*--------------------------
	/sustainability/tcdf/
--------------------------*/
.page-sustainability-tcfd sup {
  top: 0;
}
.page-sustainability-tcfd .ttl-s01 {
  margin-bottom: 28px;
}
.page-sustainability-tcfd .breadcrumbs {
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .breadcrumbs {
    margin-bottom: 85px;
  }
}
.page-sustainability-tcfd .container {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0;
  }
}
.page-sustainability-tcfd .container .section {
  margin-bottom: 45px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section {
    margin-bottom: 70px;
  }
}
.page-sustainability-tcfd .container .section h2 {
  margin-bottom: 16px;
  padding-left: 10px;
  font-weight: bold;
  border-left: 6px solid #1e4292;
  font-size: 20px;
  line-height: 1.15;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section h2 {
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 9px solid #1e4292;
    font-size: 30px;
    line-height: 1.1666666667;
  }
}
.page-sustainability-tcfd .container .section .list {
  margin-bottom: 25px;
  padding-left: 20px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section .list {
    margin-bottom: 40px;
    padding-left: 32px;
  }
}
.page-sustainability-tcfd .container .section .list li {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section .list li {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7058823529;
  }
}
.page-sustainability-tcfd .container .section .list li:before {
  display: inline-block;
  content: "";
  background-color: #707070;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  margin-right: 13px;
  margin-left: -20px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section .list li:before {
    width: 11px;
    height: 11px;
    margin-right: 21px;
    margin-left: -32px;
  }
}
.page-sustainability-tcfd .container .section .inner {
  background-color: #eff1f4;
  padding: 25px 20px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section .inner {
    padding: 40px 80px;
  }
}
.page-sustainability-tcfd .container .section .inner h3 {
  text-align: center;
  color: #000;
  font-weight: bold;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.6875;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section .inner h3 {
    margin-bottom: 25px;
    font-size: 25px;
    line-height: 1.72;
  }
}
.page-sustainability-tcfd .container .section .inner p {
  font-size: 16px;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section .inner p {
    font-size: 17px;
    line-height: 1.7058823529;
  }
}
.page-sustainability-tcfd .container .section .inner p:not(:last-of-type) {
  margin-bottom: 22px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section .inner p:not(:last-of-type) {
    margin-bottom: 35px;
  }
}
.page-sustainability-tcfd .container .section .inner ol {
  padding-left: 20px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section .inner ol {
    padding-left: 32px;
  }
}
.page-sustainability-tcfd .container .section .inner ol li {
  font-size: 16px;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section .inner ol li {
    font-size: 17px;
    line-height: 1.7058823529;
  }
}
.page-sustainability-tcfd .container .section .inner ol li:not(:last-of-type) {
  margin-bottom: 13px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section .inner ol li:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
.page-sustainability-tcfd .container .section .inner ol li:before {
  display: inline-block;
  content: "";
  font-weight: bold;
  margin: -3px 10px 0 -20px;
  font-size: 13px;
  line-height: 1;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section .inner ol li:before {
    margin: -4px 16px 0 -32px;
    font-size: 16px;
  }
}
.page-sustainability-tcfd .container .section .inner ol li:nth-of-type(1):before {
  content: "1.";
}
.page-sustainability-tcfd .container .section .inner ol li:nth-of-type(2):before {
  content: "2.";
}
.page-sustainability-tcfd .container .section .inner ol li:nth-of-type(3):before {
  content: "3.";
}
.page-sustainability-tcfd .container .section .inner ol li:nth-of-type(4):before {
  content: "4.";
}
.page-sustainability-tcfd .container .section table {
  display: block;
  border-left: 1px solid #eff1f4;
  white-space: nowrap;
}
.page-sustainability-tcfd .container .section table tr th {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  font-weight: bold;
  vertical-align: middle;
}
.page-sustainability-tcfd .container .section table tr th.th01 {
  background-color: #1e4292;
  color: #fff;
  text-align: center;
  line-height: 1;
  padding: 25px 0;
  font-size: 16px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section table tr th.th01 {
    padding: 25px 0;
    font-size: 16px;
  }
}
.page-sustainability-tcfd .container .section table tr th.th02 {
  background-color: #eff1f4;
  color: #000;
}
.page-sustainability-tcfd .container .section table tr td {
  border-right: 1px solid #eff1f4;
  border-bottom: 1px solid #eff1f4;
  vertical-align: middle;
}
.page-sustainability-tcfd .container .section table tr td.medium {
  background-color: #d9eaff;
}
.page-sustainability-tcfd .container .section table tr td.high {
  background-color: #BF2812;
  color: #fff;
}
.page-sustainability-tcfd .container .section table tr td.bdt-none {
  position: relative;
}
.page-sustainability-tcfd .container .section table tr td.bdt-none::before {
  display: block;
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 44.5px;
  height: 1px;
  background: #fff;
}
.page-sustainability-tcfd .container .section table tr td.ta-r {
  text-align: right;
}
.page-sustainability-tcfd .container .section table.table01 {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section table.table01 {
    margin-bottom: 30px;
  }
}
.page-sustainability-tcfd .container .section table.table01 tr th {
  padding: 15px 18px;
}
.page-sustainability-tcfd .container .section table.table01 tr th.th01:nth-of-type(1) {
  width: 170px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section table.table01 tr th.th01:nth-of-type(1) {
    width: 170px;
  }
}
.page-sustainability-tcfd .container .section table.table01 tr th.th01:nth-of-type(2) {
  width: 750px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section table.table01 tr th.th01:nth-of-type(2) {
    width: 750px;
  }
}
.page-sustainability-tcfd .container .section table.table01 tr th.th02 {
  text-align: center;
  font-weight: bold;
  line-height: 1;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section table.table01 tr th.th02 {
    font-size: 16px;
  }
}
.page-sustainability-tcfd .container .section table.table01 tr td {
  line-height: 1;
  padding: 15px 18px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section table.table01 tr td {
    padding: 15px 18px;
    font-size: 14px;
  }
}
.page-sustainability-tcfd .container .section table.table02 tr th {
  padding: 15px 18px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section table.table02 tr th {
    padding: 15px 18px;
  }
}
.page-sustainability-tcfd .container .section table.table02 tr th.th01:nth-of-type(1) {
  width: 60px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section table.table02 tr th.th01:nth-of-type(1) {
    width: 60px;
  }
}
.page-sustainability-tcfd .container .section table.table02 tr th.th01:nth-of-type(2) {
  width: 235px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section table.table02 tr th.th01:nth-of-type(2) {
    width: 235px;
  }
}
.page-sustainability-tcfd .container .section table.table02 tr th.th01:nth-of-type(3) {
  width: 235px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section table.table02 tr th.th01:nth-of-type(3) {
    width: 235px;
  }
}
.page-sustainability-tcfd .container .section table.table02 tr th.th01:nth-of-type(4) {
  width: 235px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section table.table02 tr th.th01:nth-of-type(4) {
    width: 235px;
  }
}
.page-sustainability-tcfd .container .section table.table02 tr th.th01:nth-of-type(5) {
  width: 350px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section table.table02 tr th.th01:nth-of-type(5) {
    width: 350px;
  }
}
.page-sustainability-tcfd .container .section table.table02 tr th.th02 {
  text-align: center;
  font-weight: bold;
  line-height: 1;
  font-size: 16px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section table.table02 tr th.th02 {
    font-size: 16px;
  }
}
.page-sustainability-tcfd .container .section table.table02 tr:nth-of-type(1) th.th01:nth-of-type(1) {
  width: 60px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section table.table02 tr:nth-of-type(1) th.th01:nth-of-type(1) {
    width: 60px;
  }
}
.page-sustainability-tcfd .container .section table.table02 tr:nth-of-type(1) th.th01:nth-of-type(2) {
  width: 235px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section table.table02 tr:nth-of-type(1) th.th01:nth-of-type(2) {
    width: 235px;
  }
}
.page-sustainability-tcfd .container .section table.table02 tr:nth-of-type(1) th.th01:nth-of-type(3) {
  width: 235px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section table.table02 tr:nth-of-type(1) th.th01:nth-of-type(3) {
    width: 235px;
  }
}
.page-sustainability-tcfd .container .section table.table02 tr:nth-of-type(1) th.th01:nth-of-type(4) {
  width: 235px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section table.table02 tr:nth-of-type(1) th.th01:nth-of-type(4) {
    width: 235px;
  }
}
.page-sustainability-tcfd .container .section table.table02 tr:nth-of-type(1) th.th01:nth-of-type(5) {
  width: 350px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section table.table02 tr:nth-of-type(1) th.th01:nth-of-type(5) {
    width: 350px;
  }
}
.page-sustainability-tcfd .container .section table.table02 tr:nth-of-type(2) th.th01 {
  width: 117px;
  padding: 5px 0;
  font-size: 10px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section table.table02 tr:nth-of-type(2) th.th01 {
    width: 117px;
    padding: 5px 0;
    font-size: 10px;
  }
}
.page-sustainability-tcfd .container .section table.table02 tr:nth-of-type(3) th.th02 {
  width: 50px;
  padding: 5px 0;
  font-size: 10px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section table.table02 tr:nth-of-type(3) th.th02 {
    width: 50px;
    padding: 5px 0;
    font-size: 10px;
  }
}
.page-sustainability-tcfd .container .section table.table02 tr td {
  line-height: 1.75;
  padding: 15px 18px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section table.table02 tr td {
    padding: 15px 18px;
    font-size: 14px;
  }
}
.page-sustainability-tcfd .container .section table.table02 tr td.bb-none {
  position: relative;
}
.page-sustainability-tcfd .container .section table.table02 tr td.bb-none::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 45px;
  height: 1px;
  background-color: #fff;
}
.page-sustainability-tcfd .container .section.two .org {
  margin: 0 20px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section.two .org {
    margin: 0 auto;
    width: 562px;
  }
}
.page-sustainability-tcfd .container .section.seven .goal {
  margin-bottom: 13px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section.seven .goal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
  }
}
.page-sustainability-tcfd .container .section.seven .goal .item {
  margin-bottom: 13px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section.seven .goal .item {
    width: calc((100% - 18px) / 2);
    margin-bottom: 0;
  }
}
.page-sustainability-tcfd .container .section.seven .goal .item h3 {
  background-color: #1e4292;
  text-align: center;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  padding: 13px 0;
  font-size: 15px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section.seven .goal .item h3 {
    padding: 20px 0;
    font-size: 15px;
  }
}
.page-sustainability-tcfd .container .section.seven .goal .item .box {
  display: flex;
  align-items: center;
  background-color: #eff1f4;
  padding: 20px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section.seven .goal .item .box {
    height: 120px;
    padding: 0 20px;
  }
}
.page-sustainability-tcfd .container .section.seven .goal .item .box p {
  font-weight: bold;
  font-size: 15px;
  line-height: 1.7333333333;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section.seven .goal .item .box p {
    font-size: 15px;
    line-height: 1.7333333333;
  }
}
.page-sustainability-tcfd .container .section.seven .goal .item .box ul {
  padding-left: 15px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section.seven .goal .item .box ul {
    padding-left: 24px;
  }
}
.page-sustainability-tcfd .container .section.seven .goal .item .box ul li {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.6875;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section.seven .goal .item .box ul li {
    font-size: 16px;
    line-height: 1.6875;
  }
}
.page-sustainability-tcfd .container .section.seven .goal .item .box ul li:before {
  display: inline-block;
  content: "";
  background-color: #707070;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  margin-right: 13px;
  margin-left: -20px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section.seven .goal .item .box ul li:before {
    width: 11px;
    height: 11px;
    margin-right: 12px;
    margin-left: -24px;
  }
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section.seven .goal .item:not(:last-of-type) .box {
    padding: 0 30px;
  }
}
.page-sustainability-tcfd .container .section.nine .table02 tr th {
  padding: 15px 18px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section.nine .table02 tr th {
    padding: 15px 18px;
  }
}
.page-sustainability-tcfd .container .section.nine .table02 tr th.th01:nth-of-type(1) {
  width: 500px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section.nine .table02 tr th.th01:nth-of-type(1) {
    width: 500px;
  }
}
.page-sustainability-tcfd .container .section.nine .table02 tr th.th01:nth-of-type(2) {
  width: 235px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section.nine .table02 tr th.th01:nth-of-type(2) {
    width: 235px;
  }
}
.page-sustainability-tcfd .container .section.nine .table02 tr th.th01:nth-of-type(3) {
  width: 202px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section.nine .table02 tr th.th01:nth-of-type(3) {
    width: 202px;
  }
}
.page-sustainability-tcfd .container .section.nine .table02 tr th.th01:nth-of-type(4) {
  width: 235px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section.nine .table02 tr th.th01:nth-of-type(4) {
    width: 235px;
  }
}
.page-sustainability-tcfd .container .section.nine .table02 tr th.th01:nth-of-type(5) {
  width: 350px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section.nine .table02 tr th.th01:nth-of-type(5) {
    width: 350px;
  }
}
.page-sustainability-tcfd .container .section.nine .table02 tr th.th02 {
  text-align: center;
  font-weight: bold;
  line-height: 1;
  font-size: 16px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section.nine .table02 tr th.th02 {
    font-size: 16px;
  }
}
.page-sustainability-tcfd .container .section.nine .table02 tr td {
  line-height: 1;
  padding: 15px 18px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .container .section.nine .table02 tr td {
    padding: 15px 18px;
    font-size: 14px;
  }
}
.page-sustainability-tcfd .container .section.nine .table02 tr td.bb-none {
  position: relative;
}
.page-sustainability-tcfd .container .section.nine .table02 tr td.bb-none::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 45px;
  height: 1px;
  background-color: #fff;
}
.page-sustainability-tcfd .notice {
  display: flex;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .notice {
    margin-top: 20px;
  }
}
.page-sustainability-tcfd .notice:before {
  display: inline-block;
  content: "※";
  font-size: 13px;
  line-height: 1.1538461538;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .notice:before {
    font-size: 15px;
    line-height: 1.7333333333;
  }
}
.page-sustainability-tcfd .notice ul li {
  font-size: 13px;
  line-height: 1.1538461538;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .notice ul li {
    font-size: 15px;
    line-height: 1.7333333333;
  }
}
.page-sustainability-tcfd .unit {
  text-align: right;
  font-size: 13px;
  line-height: 1.1538461538;
}
@media (min-width: 768px) {
  .page-sustainability-tcfd .unit {
    font-size: 15px;
    line-height: 1.7333333333;
  }
}

/*--------------------------
	/sustainability/materiality/
--------------------------*/
.page-sustainability-materiality .ttl-s01 {
  margin-bottom: 28px;
}
.page-sustainability-materiality .breadcrumbs {
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .page-sustainability-materiality .breadcrumbs {
    margin-bottom: 85px;
  }
}
.page-sustainability-materiality .container {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-sustainability-materiality .container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0;
  }
}
.page-sustainability-materiality .container .section {
  margin-bottom: 45px;
}
@media (min-width: 768px) {
  .page-sustainability-materiality .container .section {
    margin-bottom: 70px;
  }
}
.page-sustainability-materiality .container .section .section-hd {
  margin-bottom: 22px;
  padding-left: 10px;
  font-weight: bold;
  border-left: 6px solid #1e4292;
  font-size: 20px;
  line-height: 1.15;
}
@media (min-width: 768px) {
  .page-sustainability-materiality .container .section .section-hd {
    margin-bottom: 35px;
    padding-left: 15px;
    border-left: 9px solid #1e4292;
    font-size: 30px;
    line-height: 1.1666666667;
  }
}
.page-sustainability-materiality .container .section .section-txt {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.7333333333;
}
@media (min-width: 768px) {
  .page-sustainability-materiality .container .section .section-txt {
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 1.7058823529;
  }
}
.page-sustainability-materiality .container .section.section-about .about-top .about-top-hd {
  background-color: #1E4292;
  text-align: center;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
  font-size: 20px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .page-sustainability-materiality .container .section.section-about .about-top .about-top-hd {
    padding: 12px 0;
    font-size: 25px;
    line-height: 1.72;
  }
}
.page-sustainability-materiality .container .section.section-about .about-top .about-top-txt {
  margin-bottom: 21px;
  padding: 20px 13px;
  background-color: #EFF1F4;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.7142857143;
}
@media (min-width: 768px) {
  .page-sustainability-materiality .container .section.section-about .about-top .about-top-txt {
    margin-bottom: 35px;
    padding: 32px 0;
    font-size: 16px;
    line-height: 1.6875;
  }
}
.page-sustainability-materiality .container .section .about-content .about-content-hd {
  margin-bottom: 13px;
  padding: 9px 0;
  font-size: 24px;
  line-height: 1.2083333333;
  text-align: center;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
}
@media (min-width: 768px) {
  .page-sustainability-materiality .container .section .about-content .about-content-hd {
    margin-bottom: 20px;
    padding: 14px 0;
    font-size: 30px;
    line-height: 1.2;
  }
}
.page-sustainability-materiality .container .section .about-content .about-content-hd.bg-green {
  background-color: #96B3A7;
}
.page-sustainability-materiality .container .section .about-content .about-content-hd.bg-yellow {
  background-color: #DDB440;
}
.page-sustainability-materiality .container .section .about-content .about-content-hd.bg-purple {
  background-color: #976080;
}
.page-sustainability-materiality .container .section .about-content .about-content-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .page-sustainability-materiality .container .section .about-content .about-content-wrap {
    flex-direction: row;
    gap: 30px;
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .page-sustainability-materiality .container .section .about-content .about-content-wrap .about-content-item {
    width: calc((100% - 30px) / 2);
  }
}
.page-sustainability-materiality .container .section .about-content .about-content-wrap .about-content-item.bdr-green {
  border: 1px solid #96B3A7;
}
.page-sustainability-materiality .container .section .about-content .about-content-wrap .about-content-item.bdr-yellow {
  border: 1px solid #DDB440;
}
.page-sustainability-materiality .container .section .about-content .about-content-wrap .about-content-item.bdr-purple {
  border: 1px solid #976080;
}
.page-sustainability-materiality .container .section .about-content .about-content-wrap .about-content-item .about-content-item-hd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}
@media (min-width: 768px) {
  .page-sustainability-materiality .container .section .about-content .about-content-wrap .about-content-item .about-content-item-hd {
    padding: 16px 0;
  }
}
.page-sustainability-materiality .container .section .about-content .about-content-wrap .about-content-item .about-content-item-hd.bg-green {
  border-bottom: 1px solid #96B3A7;
  background-color: #F5FFFB;
}
.page-sustainability-materiality .container .section .about-content .about-content-wrap .about-content-item .about-content-item-hd.bg-yellow {
  border-bottom: 1px solid #DDB440;
  background-color: #FFFAEA;
}
.page-sustainability-materiality .container .section .about-content .about-content-wrap .about-content-item .about-content-item-hd.bg-purple {
  border-bottom: 1px solid #976080;
  background-color: #FFF0F9;
}
.page-sustainability-materiality .container .section .about-content .about-content-wrap .about-content-item .about-content-item-hd .en {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.2307692308;
}
@media (min-width: 768px) {
  .page-sustainability-materiality .container .section .about-content .about-content-wrap .about-content-item .about-content-item-hd .en {
    font-size: 15px;
    line-height: 1.2;
  }
}
.page-sustainability-materiality .container .section .about-content .about-content-wrap .about-content-item .about-content-item-hd .ja {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.6875;
}
@media (min-width: 768px) {
  .page-sustainability-materiality .container .section .about-content .about-content-wrap .about-content-item .about-content-item-hd .ja {
    font-size: 18px;
    line-height: 1.7222222222;
  }
}
.page-sustainability-materiality .container .section .about-content .about-content-wrap .about-content-item .about-content-item-hd .ja.c-green {
  color: #6D9B88;
}
.page-sustainability-materiality .container .section .about-content .about-content-wrap .about-content-item .about-content-item-hd .ja.c-yellow {
  color: #C69B21;
}
.page-sustainability-materiality .container .section .about-content .about-content-wrap .about-content-item .about-content-item-hd .ja.c-purple {
  color: #976080;
}
.page-sustainability-materiality .container .section .about-content .about-content-wrap .about-content-item .about-content-item-list {
  padding: 13px 16px;
}
@media (min-width: 768px) {
  .page-sustainability-materiality .container .section .about-content .about-content-wrap .about-content-item .about-content-item-list {
    padding: 20px 25px;
  }
}
.page-sustainability-materiality .container .section .about-content .about-content-wrap .about-content-item .about-content-item-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.page-sustainability-materiality .container .section .about-content .about-content-wrap .about-content-item .about-content-item-list li::before {
  display: block;
  content: "";
  background-color: #707070;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .page-sustainability-materiality .container .section .about-content .about-content-wrap .about-content-item .about-content-item-list li::before {
    width: 10px;
    height: 10px;
    margin: 8px 8px 0 0;
  }
}
.page-sustainability-materiality .container .section .about-content .about-content-wrap .about-content-item .about-content-item-list li span {
  display: block;
  width: calc(100% - 16px);
  font-size: 13px;
  line-height: 1.7692307692;
}
@media (min-width: 768px) {
  .page-sustainability-materiality .container .section .about-content .about-content-wrap .about-content-item .about-content-item-list li span {
    width: calc(100% - 18px);
    font-size: 15px;
    line-height: 1.7333333333;
  }
}
.page-sustainability-materiality .container .section.section-process .section-process-item {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .page-sustainability-materiality .container .section.section-process .section-process-item {
    margin-bottom: 25px;
  }
}
.page-sustainability-materiality .container .section.section-process .section-process-item .section-process-item-title {
  background-color: #1E4292;
  color: #fff;
  font-weight: bold;
  padding: 10px 16px;
  font-size: 16px;
  line-height: 1.6875;
}
@media (min-width: 768px) {
  .page-sustainability-materiality .container .section.section-process .section-process-item .section-process-item-title {
    padding: 16px 25px;
    font-size: 20px;
    line-height: 1.7;
  }
}
.page-sustainability-materiality .container .section.section-process .section-process-item .section-process-item-desc {
  background-color: #EFF1F4;
  font-size: 14px;
  line-height: 1.7142857143;
  padding: 13px 16px;
}
@media (min-width: 768px) {
  .page-sustainability-materiality .container .section.section-process .section-process-item .section-process-item-desc {
    padding: 20px 25px;
    font-size: 16px;
    line-height: 1.6875;
  }
}

/*----------------------------------
	/sustainability/health-management
----------------------------------*/
.page-sustainability-health-management br.sp-only {
  display: block;
}
@media (min-width: 768px) {
  .page-sustainability-health-management br.sp-only {
    display: none;
  }
}
.page-sustainability-health-management br.pc-only {
  display: none;
}
@media (min-width: 768px) {
  .page-sustainability-health-management br.pc-only {
    display: block;
  }
}
.page-sustainability-health-management .container {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-sustainability-health-management .container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0;
  }
}
.page-sustainability-health-management .anchor-link {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .page-sustainability-health-management .anchor-link {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 40px;
  }
}
.page-sustainability-health-management .anchor-link li {
  position: relative;
}
@media (min-width: 768px) {
  .page-sustainability-health-management .anchor-link li {
    width: calc((100% - 10px) / 3);
  }
}
.page-sustainability-health-management .anchor-link li a {
  align-items: center;
  background: #1e4292;
  color: #fff;
  font-weight: 700;
  display: flex;
  font-size: 14px;
  height: 45px;
  line-height: 1;
  justify-content: center;
  position: relative;
}
@media (min-width: 768px) {
  .page-sustainability-health-management .anchor-link li a {
    font-size: 18px;
    line-height: 1;
    height: 60px;
  }
}
.page-sustainability-health-management .anchor-link li a:hover {
  opacity: 1;
}
.page-sustainability-health-management .anchor-link li::after {
  display: block;
  content: "";
  background-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2014%2012%22%20style%3D%22enable-background%3Anew%200%200%2014%2012%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%23FFFFFF%3B%7D%3C%2Fstyle%3E%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_879%22%20class%3D%22st0%22%20d%3D%22M7%2C12l7-12H0L7%2C12z%22%2F%3E%3C%2Fsvg%3E");
  background-position: 0 0;
  background-size: auto 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(50% - 6px);
  right: 21px;
  width: 11px;
  height: 9px;
}
@media (min-width: 768px) {
  .page-sustainability-health-management .anchor-link li::after {
    width: 14px;
    height: 12px;
  }
}
.page-sustainability-health-management .section {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .page-sustainability-health-management .section {
    margin-top: 80px;
  }
}
.page-sustainability-health-management .section .section__ttl {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
  text-align: center;
}
@media (min-width: 768px) {
  .page-sustainability-health-management .section .section__ttl {
    font-size: 32px;
    line-height: 1.34375;
  }
}
.page-sustainability-health-management .section .section__ttl span {
  color: #BF2812;
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3076923077;
  padding-top: 7px;
}
@media (min-width: 768px) {
  .page-sustainability-health-management .section .section__ttl span {
    font-size: 20px;
    line-height: 1.35;
    padding-top: 15px;
  }
}
.page-sustainability-health-management .section .section__hd {
  margin-top: 42px;
  padding-left: 10px;
  font-weight: bold;
  border-left: 6px solid #1e4292;
  font-size: 20px;
  line-height: 1.15;
}
@media (min-width: 768px) {
  .page-sustainability-health-management .section .section__hd {
    margin-top: 56px;
    padding-left: 15px;
    border-left: 9px solid #1e4292;
    font-size: 30px;
    line-height: 1.1666666667;
  }
}
.page-sustainability-health-management .section .section__txt {
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.7333333333;
}
@media (min-width: 768px) {
  .page-sustainability-health-management .section .section__txt {
    margin-top: 30px;
    font-size: 17px;
    line-height: 1.7058823529;
  }
}
.page-sustainability-health-management .section .section__txt a {
  text-decoration: underline;
}
.page-sustainability-health-management .section .declaration {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .page-sustainability-health-management .section .declaration {
    flex-direction: row;
    align-items: center;
    margin-top: 32px;
  }
}
.page-sustainability-health-management .section .declaration__catch {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #BF2812;
  width: 100%;
  height: 165px;
}
@media (min-width: 768px) {
  .page-sustainability-health-management .section .declaration__catch {
    width: 50%;
    height: 220px;
  }
}
.page-sustainability-health-management .section .declaration__catch .declaration__catch-jp {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .page-sustainability-health-management .section .declaration__catch .declaration__catch-jp {
    font-size: 30px;
    line-height: 1.7;
  }
}
.page-sustainability-health-management .section .declaration__catch .declaration__catch-en {
  position: absolute;
  bottom: -0.12em;
  width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.13);
  font-family: "Manrope", sans-serif;
  font-weight: bold;
  letter-spacing: -0.008em;
  line-height: 1;
  font-size: 60px;
}
@media (min-width: 768px) {
  .page-sustainability-health-management .section .declaration__catch .declaration__catch-en {
    font-size: 75px;
  }
}
.page-sustainability-health-management .section .declaration__kenko {
  width: auto;
}
@media (min-width: 768px) {
  .page-sustainability-health-management .section .declaration__kenko {
    width: 50%;
  }
}
.page-sustainability-health-management .section .declaration__president {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .page-sustainability-health-management .section .declaration__president {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
  }
}
.page-sustainability-health-management .section .declaration__president .declaration-president__txt {
  line-height: 2.0666666667;
}
@media (min-width: 768px) {
  .page-sustainability-health-management .section .declaration__president .declaration-president__txt {
    width: calc(100% - 60px - 460px);
    font-size: 17px;
    line-height: 2.0588235294;
  }
}
@media (min-width: 768px) {
  .page-sustainability-health-management .section .declaration__president .declaration-president__img {
    width: 460px;
    margin-left: 60px;
  }
}
.page-sustainability-health-management .section .organization_chart__img {
  margin-top: 23px;
}
@media (min-width: 768px) {
  .page-sustainability-health-management .section .organization_chart__img {
    margin-top: 30px;
  }
}
.page-sustainability-health-management .section .strategy_map__img {
  margin-top: 23px;
}
@media (min-width: 768px) {
  .page-sustainability-health-management .section .strategy_map__img {
    margin-top: 30px;
  }
}
.page-sustainability-health-management .section .indicators__table {
  margin-top: 23px;
}
@media (min-width: 768px) {
  .page-sustainability-health-management .section .indicators__table {
    margin-top: 30px;
  }
}
.page-sustainability-health-management .section .indicators__table table {
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll !important;
  width: 920px;
}
.page-sustainability-health-management .section .indicators__table table th {
  background: #1E4292;
  border: 1px solid #dcdddd;
  text-align: center;
  color: #fff;
  font-weight: 700;
  vertical-align: middle;
  padding: 15px 0;
  font-size: 16px;
  line-height: 1.125;
}
@media (min-width: 768px) {
  .page-sustainability-health-management .section .indicators__table table th {
    padding: 25px 0;
  }
}
.page-sustainability-health-management .section .indicators__table table th:nth-of-type(1) {
  width: 17.6%;
}
.page-sustainability-health-management .section .indicators__table table th:nth-of-type(2) {
  width: 43%;
}
.page-sustainability-health-management .section .indicators__table table td {
  border: 1px solid #dcdddd;
  text-align: center;
  vertical-align: middle;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.125;
}
@media (min-width: 768px) {
  .page-sustainability-health-management .section .indicators__table table td {
    padding: 10px 20px;
  }
}
.page-sustainability-health-management .section .indicators__notice {
  margin-top: 23px;
}
@media (min-width: 768px) {
  .page-sustainability-health-management .section .indicators__notice {
    margin-top: 30px;
  }
}
.page-sustainability-health-management .section .indicators__notice li {
  font-size: 15px;
  line-height: 2.0666666667;
}
@media (min-width: 768px) {
  .page-sustainability-health-management .section .indicators__notice li {
    font-size: 17px;
    line-height: 2.0588235294;
  }
}
.page-sustainability-health-management .section .effort_example__img {
  width: auto;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .page-sustainability-health-management .section .effort_example__img {
    width: 308px;
    margin-top: 20px;
  }
}
@media (min-width: 768px) {
  .page-sustainability-health-management .section .effort_example__img--big {
    width: 353px;
  }
}
.page-sustainability-health-management .section .effort_example__img--border {
  border: 1px solid #000;
}
@media (min-width: 768px) {
  .page-sustainability-health-management .section .effort_example__img--border {
    border: 2px solid #000;
  }
}
.page-sustainability-health-management .section .effort_example_declaration__kenko {
  width: auto;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .page-sustainability-health-management .section .effort_example_declaration__kenko {
    width: 289px;
    margin-top: 20px;
  }
}

/*--------------------------
	/sustainability/esg/esg-data/
--------------------------*/
.page-sustainability-esg-data .container {
  margin: 30px 0 0;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-sustainability-esg-data .container {
    max-width: 920px;
    margin: 40px auto 0;
    padding: 0;
  }
}
.page-sustainability-esg-data .lead-txt {
  font-size: 15px;
  line-height: 1.7333333333;
}
@media (min-width: 768px) {
  .page-sustainability-esg-data .lead-txt {
    font-size: 17px;
    line-height: 1.7058823529;
  }
}
.page-sustainability-esg-data .anchor-link {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .page-sustainability-esg-data .anchor-link {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 40px;
  }
}
.page-sustainability-esg-data .anchor-link li {
  position: relative;
}
@media (min-width: 768px) {
  .page-sustainability-esg-data .anchor-link li {
    width: calc((100% - 10px) / 3);
  }
}
.page-sustainability-esg-data .anchor-link li a {
  align-items: center;
  background: #1e4292;
  color: #fff;
  font-weight: 700;
  display: flex;
  font-size: 14px;
  height: 45px;
  line-height: 1;
  justify-content: center;
  position: relative;
}
@media (min-width: 768px) {
  .page-sustainability-esg-data .anchor-link li a {
    font-size: 18px;
    line-height: 1;
    height: 60px;
  }
}
.page-sustainability-esg-data .anchor-link li a:hover {
  opacity: 1;
}
.page-sustainability-esg-data .anchor-link li::after {
  display: block;
  content: "";
  background-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2014%2012%22%20style%3D%22enable-background%3Anew%200%200%2014%2012%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%23FFFFFF%3B%7D%3C%2Fstyle%3E%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_879%22%20class%3D%22st0%22%20d%3D%22M7%2C12l7-12H0L7%2C12z%22%2F%3E%3C%2Fsvg%3E");
  background-position: 0 0;
  background-size: auto 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(50% - 6px);
  right: 21px;
  width: 11px;
  height: 9px;
}
@media (min-width: 768px) {
  .page-sustainability-esg-data .anchor-link li::after {
    width: 14px;
    height: 12px;
  }
}
.page-sustainability-esg-data .section-hd2 {
  font-weight: bold;
  line-height: 1;
  font-size: 21px;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .page-sustainability-esg-data .section-hd2 {
    font-size: 32px;
    margin-top: 80px;
  }
}
.page-sustainability-esg-data .section-hd2 span {
  color: #BF2812;
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  margin-top: 20px;
  font-size: 13px;
}
@media (min-width: 768px) {
  .page-sustainability-esg-data .section-hd2 span {
    margin-top: 25px;
    font-size: 20px;
  }
}
.page-sustainability-esg-data .section-hd3 {
  font-weight: bold;
  margin-top: 40px;
  padding-left: 10px;
  border-left: 6px solid #1e4292;
  font-size: 20px;
  line-height: 1.15;
}
@media (min-width: 768px) {
  .page-sustainability-esg-data .section-hd3 {
    margin-top: 54px;
    padding-left: 15px;
    border-left: 9px solid #1e4292;
    font-size: 30px;
    line-height: 1.1666666667;
  }
}
.page-sustainability-esg-data table {
  display: block;
  border-left: 1px solid #eff1f4;
  white-space: nowrap;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .page-sustainability-esg-data table {
    width: 920px;
    margin-top: 30px;
  }
}
.page-sustainability-esg-data table tr th {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  font-weight: bold;
  vertical-align: middle;
}
.page-sustainability-esg-data table tr th.th01 {
  background-color: #1e4292;
  color: #fff;
  text-align: center;
  line-height: 1;
  padding: 25px 20px;
  font-size: 16px;
}
.page-sustainability-esg-data table tr th.th02 {
  text-align: center;
  background-color: #eff1f4;
  color: #000;
  padding: 20px;
}
@media (min-width: 768px) {
  .page-sustainability-esg-data table tr th.wide {
    width: 330px;
  }
}
.page-sustainability-esg-data table tr td {
  border-right: 1px solid #dcdddd;
  border-bottom: 1px solid #dcdddd;
  text-align: center;
  vertical-align: middle;
  line-height: 1;
  padding: 20px;
}
.page-sustainability-esg-data table tr a {
  color: #1460B9;
  text-decoration: underline;
}
.page-sustainability-esg-data table tr .t-left {
  text-align: left !important;
}
.page-sustainability-esg-data .notice {
  margin-top: 18px;
}
@media (min-width: 768px) {
  .page-sustainability-esg-data .notice {
    margin-top: 24px;
  }
}
.page-sustainability-esg-data .notice li {
  font-size: 12px;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .page-sustainability-esg-data .notice li {
    font-size: 14px;
    line-height: 1.7142857143;
  }
}

/*--------------------------
	/ir/
--------------------------*/
.page-ir {
  overflow-x: hidden;
  position: relative;
}
.page-ir .ir-mv {
  position: relative;
  height: 112.8205128205vw;
}
@media (min-width: 768px) {
  .page-ir .ir-mv {
    height: 56.4102564103vw;
  }
}
@media (min-width: 992px) {
  .page-ir .ir-mv {
    height: 34.4802342606vw;
  }
}
.page-ir .ir-mv::before {
  display: block;
  content: "";
  position: absolute;
  background-color: #1E4292;
  width: 100vw;
  height: 69.7435897436vw;
}
@media (min-width: 768px) {
  .page-ir .ir-mv::before {
    width: 100%;
    height: 34.8717948718vw;
  }
}
@media (min-width: 992px) {
  .page-ir .ir-mv::before {
    width: 100%;
    height: 27.2327964861vw;
  }
}
.page-ir .ir-mv .ir-mv-slider {
  position: absolute;
  top: 0;
  left: -33px;
  width: calc(100vw + 33px);
}
@media (min-width: 768px) {
  .page-ir .ir-mv .ir-mv-slider {
    top: 2.0497803807vw;
    left: 5.270863836vw;
    width: 100vw;
  }
}
.page-ir .ir-mv .ir-mv-slider .ir-mv-slide-inner {
  display: block;
  background-color: #fff;
  transition: 0.6s ease;
  margin: 5.1282051282vw 2.5641025641vw;
  border-radius: 5px;
  box-shadow: 0 0 2.5641025641vw rgba(0, 0, 0, 0.18);
}
@media (min-width: 768px) {
  .page-ir .ir-mv .ir-mv-slider .ir-mv-slide-inner {
    margin: 2.196193265vw 1.0980966325vw;
    border-radius: 15px;
    box-shadow: 0 0 1.0980966325vw rgba(0, 0, 0, 0.18);
  }
}
.page-ir .ir-mv .ir-mv-slider .ir-mv-slide-inner:hover {
  opacity: 1;
  background-color: #BF2812;
  color: #fff;
}
.page-ir .ir-mv .ir-mv-slider .ir-mv-slide-inner .ir-mv-slide-txt {
  min-height: 120px;
  padding: 18px 20px 16px;
}
@media (min-width: 768px) {
  .page-ir .ir-mv .ir-mv-slider .ir-mv-slide-inner .ir-mv-slide-txt {
    min-height: 150px;
    padding: 26px 28px 20px;
  }
}
.page-ir .ir-mv .ir-mv-slider .ir-mv-slide-inner .ir-mv-slide-txt h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.7222222222;
}
@media (min-width: 768px) {
  .page-ir .ir-mv .ir-mv-slider .ir-mv-slide-inner .ir-mv-slide-txt h3 {
    font-size: 20px;
    line-height: 1.7;
  }
}
.page-ir .ir-mv .ir-mv-slider .ir-mv-slide-inner .ir-mv-slide-txt p {
  font-size: 15px;
  line-height: 1.6666666667;
}
@media (min-width: 768px) {
  .page-ir .ir-mv .ir-mv-slider .ir-mv-slide-inner .ir-mv-slide-txt p {
    font-size: 17px;
    line-height: 1.7647058824;
  }
}
.page-ir .ir-mv .ir-mv-slider .ir-mv-slide-inner .ir-mv-slide-txt .is-pc {
  display: none;
}
@media (min-width: 768px) {
  .page-ir .ir-mv .ir-mv-slider .ir-mv-slide-inner .ir-mv-slide-txt .is-pc {
    display: block;
  }
}
.page-ir .ir-mv .ir-mv-slider .ir-mv-slide-inner .ir-mv-slide-txt .is-sp {
  display: block;
}
@media (min-width: 768px) {
  .page-ir .ir-mv .ir-mv-slider .ir-mv-slide-inner .ir-mv-slide-txt .is-sp {
    display: none;
  }
}
.page-ir .ir-mv .slick-next {
  position: absolute;
  z-index: 100;
  top: calc(50% + 2.5641025641vw);
  right: 10px;
  width: 40px;
  height: 40px;
  border: 2px solid #1E4292;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
}
@media (min-width: 768px) {
  .page-ir .ir-mv .slick-next {
    top: calc(50% + 0.7320644217vw);
    right: 6.7349926794vw;
    width: 60px;
    height: 60px;
  }
}
.page-ir .ir-mv .slick-next::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% - 2px);
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center center;
  width: 10px;
  height: 10px;
  border-right: 2px solid #1E4292;
  border-top: 2px solid #1E4292;
  opacity: 1;
}
@media (min-width: 768px) {
  .page-ir .ir-mv .slick-next::before {
    left: calc(50% - 3px);
    width: 15px;
    height: 15px;
  }
}
.page-ir .ir-mv .slick-prev {
  display: none !important;
  position: absolute;
  z-index: 100;
  top: calc(50% + 2.5641025641vw);
  left: 10px;
  width: 40px;
  height: 40px;
  border: 2px solid #1E4292;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
}
@media (min-width: 768px) {
  .page-ir .ir-mv .slick-prev {
    display: block !important;
    top: calc(50% + 0.7320644217vw);
    left: 2.5622254758vw;
    width: 60px;
    height: 60px;
  }
}
.page-ir .ir-mv .slick-prev::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% + 2px);
  transform: translate(-50%, -50%) rotate(-135deg);
  transform-origin: center center;
  width: 10px;
  height: 10px;
  border-right: 2px solid #1E4292;
  border-top: 2px solid #1E4292;
  opacity: 1;
}
@media (min-width: 768px) {
  .page-ir .ir-mv .slick-prev::before {
    left: calc(50% + 3px);
    width: 15px;
    height: 15px;
  }
}
.page-ir .back-txt-ir-information {
  margin: 0 auto;
  position: relative;
  width: 390px;
}
@media (min-width: 768px) {
  .page-ir .back-txt-ir-information {
    width: 1166px;
  }
}
.page-ir .back-txt-ir-information span {
  color: #EFF1F4;
  font-family: "Manrope", sans-serif;
  font-size: 100px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.33;
  position: absolute;
  right: -270px;
  top: 35px;
  white-space: nowrap;
  z-index: -1;
}
@media (min-width: 768px) {
  .page-ir .back-txt-ir-information span {
    font-size: 250px;
    line-height: 1.332;
    right: -820px;
    top: -25px;
  }
}
.page-ir .main-container {
  position: relative;
}
@media (min-width: 768px) {
  .page-ir .main-container {
    margin-top: -40px;
    position: relative;
  }
}
.page-ir .main-container h1::after {
  content: "株主・投資家情報";
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3333333333;
  order: 1;
  position: absolute;
  right: 20px;
  top: 82px;
}
@media (min-width: 768px) {
  .page-ir .main-container h1::after {
    font-size: 46px;
    line-height: 1.347826087;
    right: 50px;
    top: 225px;
  }
}
@media (min-width: 768px) and (max-width: 1285px) {
  .page-ir .main-container h1::after {
    margin-right: 10px;
  }
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1166px;
  }
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .main-box {
    margin-right: 20px;
    max-width: 816px;
    width: 100%;
  }
}
.page-ir .main-container .box-wrapper .main-box .ttl-link {
  margin-bottom: 29px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .main-box .ttl-link {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 0;
  }
}
.page-ir .main-container .box-wrapper .main-box .ttl-link .ttl-s02 {
  margin-bottom: 0;
  padding: 0;
}
.page-ir .main-container .box-wrapper .main-box .ttl-link .ttl-s02::before {
  display: none;
  margin: 0;
  padding: 0;
}
.page-ir .main-container .box-wrapper .main-box .ttl-link .ttl-s02 span {
  padding: 7px 0 0;
}
.page-ir .main-container .box-wrapper .main-box .area-ir-information {
  margin-bottom: 65px;
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .main-box .area-ir-information {
    margin-bottom: 84px;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .main-box .area-ir-information-box .ir-get-list {
    padding: 0;
  }
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .main-box .area-ir-information-box .ir-get-list [role=tablist] {
    margin: 0 0 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-ir .main-container .box-wrapper .main-box .area-ir-information-box .ir-get-list [role=tablist] {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-ir .main-container .box-wrapper .main-box .area-ir-information-box .ir-get-list .list-topics .ir-news li {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-ir .main-container .box-wrapper .main-box .area-ir-information-box .ir-get-list .list-topics .ir-news li > p {
    margin-top: 5px;
  }
}
.page-ir .main-container .box-wrapper .main-box .area-document-download {
  margin-bottom: 70px;
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .main-box .area-document-download {
    margin-bottom: 80px;
  }
}
.page-ir .main-container .box-wrapper .main-box .area-document-download .btn-download {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .main-box .area-document-download .btn-download {
    padding: 0;
  }
}
.page-ir .main-container .box-wrapper .main-box .area-document-download .btn-download a {
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  display: block;
  font-size: 15px;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 28px;
  padding: 16px 0 25px;
  position: relative;
  text-align: center;
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .main-box .area-document-download .btn-download a {
    margin-bottom: 37px;
    padding: 16px 0;
    width: 100%;
  }
}
.page-ir .main-container .box-wrapper .main-box .area-document-download .btn-download a span {
  background: url(../images/common/icon_download.svg) no-repeat center bottom;
  background-size: 18px 18px;
  display: block;
  height: 50px;
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .main-box .area-document-download .btn-download a span {
    background: url(../images/common/icon_download.svg) no-repeat right center;
    background-size: 18px 18px;
    display: inline;
    height: auto;
    padding-right: 48px;
  }
}
.page-ir .main-container .box-wrapper .main-box .area-document-download ul {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .main-box .area-document-download ul {
    padding: 0;
  }
}
.page-ir .main-container .box-wrapper .main-box .area-document-download ul li + li {
  margin-top: 28px;
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .main-box .area-document-download ul li + li {
    margin-top: 37px;
  }
}
.page-ir .main-container .box-wrapper .main-box .area-document-download ul li p {
  position: relative;
}
.page-ir .main-container .box-wrapper .main-box .area-document-download ul li p a {
  font-size: 14px;
  line-height: 1.4285714286;
  position: relative;
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .main-box .area-document-download ul li p a {
    font-size: 16px;
    line-height: 1.875;
  }
}
.page-ir .main-container .box-wrapper .main-box .area-document-download ul li p a::before {
  background: #707070;
  content: "";
  height: 1px;
  display: inline-block;
  margin-right: 15px;
  width: 20px;
}
.page-ir .main-container .box-wrapper .main-box .ir-contents-list {
  margin-bottom: 73px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .main-box .ir-contents-list {
    margin-bottom: 0;
    padding: 0;
  }
}
.page-ir .main-container .box-wrapper .main-box .ir-contents-list > ul {
  margin-top: 0px;
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .main-box .ir-contents-list > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: -47px;
  }
}
.page-ir .main-container .box-wrapper .main-box .ir-contents-list > ul > li {
  margin-top: 48px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .main-box .ir-contents-list > ul > li {
    margin-top: 47px;
    width: calc((100% - 18px) / 2);
  }
}
.page-ir .main-container .box-wrapper .main-box .ir-contents-list > ul > li > a {
  display: block;
  margin-bottom: 22px;
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .main-box .ir-contents-list > ul > li > a {
    margin-bottom: 21px;
  }
}
.page-ir .main-container .box-wrapper .main-box .ir-contents-list > ul > li p {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.3333333333;
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .main-box .ir-contents-list > ul > li p {
    font-size: 20px;
    line-height: 1.35;
  }
}
.page-ir .main-container .box-wrapper .main-box .ir-contents-list > ul > li:nth-of-type(3) p {
  height: auto;
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .main-box .ir-contents-list > ul > li:nth-of-type(3) p {
    height: 54px;
  }
}
.page-ir .main-container .box-wrapper .main-box .ir-contents-list > ul > li:nth-of-type(4) p {
  height: auto;
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .main-box .ir-contents-list > ul > li:nth-of-type(4) p {
    height: 54px;
  }
}
.page-ir .main-container .box-wrapper .main-box .ir-contents-list > ul > li .sub-links {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #d5d5d5;
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .main-box .ir-contents-list > ul > li .sub-links {
    margin-top: 20px;
    padding-top: 20px;
  }
}
.page-ir .main-container .box-wrapper .main-box .ir-contents-list > ul > li .sub-links ul li {
  margin-bottom: 13px;
  text-align: left;
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .main-box .ir-contents-list > ul > li .sub-links ul li {
    margin-bottom: 15px;
  }
}
.page-ir .main-container .box-wrapper .main-box .ir-contents-list > ul > li .sub-links ul li a {
  font-size: 14px;
  line-height: 1.7142857143;
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .main-box .ir-contents-list > ul > li .sub-links ul li a {
    font-size: 16px;
    line-height: 1.6875;
  }
}
.page-ir .main-container .box-wrapper .main-box .ir-contents-list > ul > li .sub-links ul li a:before {
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  margin-right: 10px;
  border-width: 4.5px 0 4.5px 10px;
  border-color: transparent transparent transparent #1e4392;
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .main-box .ir-contents-list > ul > li .sub-links ul li a:before {
    margin-right: 12px;
    border-width: 5px 0 5px 11px;
  }
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .sub-box {
    max-width: 330px;
    width: 100%;
  }
}
.page-ir .main-container .box-wrapper .sub-box .stock-price {
  margin-bottom: 50px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .sub-box .stock-price {
    margin-bottom: 64px;
    padding: 0;
  }
}
.page-ir .main-container .box-wrapper .sub-box .stock-price .area-chart {
  text-align: center;
}
.page-ir .main-container .box-wrapper .sub-box .stock-price .area-chart .ir-chart {
  height: 186.6666666667vw;
  margin: 0 auto;
  max-width: 661px;
  width: 100%;
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .sub-box .stock-price .area-chart .ir-chart {
    height: 630px;
    max-width: 330px;
  }
}
.page-ir .main-container .box-wrapper .sub-box .ir-calender {
  margin-bottom: 40px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .sub-box .ir-calender {
    margin-bottom: 51px;
    padding: 0;
  }
}
.page-ir .main-container .box-wrapper .sub-box .ir-calender .ttl-s02 {
  margin-bottom: 38px;
  padding: 0;
}
.page-ir .main-container .box-wrapper .sub-box .ir-calender .ttl-s02::before {
  display: none;
  margin: 0;
  padding: 0;
}
.page-ir .main-container .box-wrapper .sub-box .ir-calender .ttl-s02 span {
  padding: 7px 0 0;
}
.page-ir .main-container .box-wrapper .sub-box .ir-calender .calender-topics {
  margin-bottom: 35px;
  padding: 0 10px;
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .sub-box .ir-calender .calender-topics {
    padding: 0;
  }
}
.page-ir .main-container .box-wrapper .sub-box .ir-calender .calender-topics li + li {
  margin-top: 22px;
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .sub-box .ir-calender .calender-topics li + li {
    margin-top: 22px;
  }
}
.page-ir .main-container .box-wrapper .sub-box .ir-calender .calender-topics li .date {
  border-bottom: 1px solid #000;
  color: #9D9D9D;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3571428571;
  margin-bottom: 8px;
  padding-bottom: 9px;
}
.page-ir .main-container .box-wrapper .sub-box .ir-calender .calender-topics li .txt {
  border-bottom: 1px solid #E4E4E4;
  color: #212121;
  font-size: 14px;
  line-height: 1.3571428571;
  padding-bottom: 9px;
}
.page-ir .main-container .box-wrapper .sub-box .ir-calender .calender-topics li .txt a {
  color: #212121;
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .sub-box .ir-calender .view-ir-calender .btn-s01 {
    margin-left: auto;
  }
}
.page-ir .main-container .box-wrapper .sub-box .ir-support {
  border-top: 1px solid #D9D9D9;
  margin-bottom: 40px;
  padding: 35px 20px 0;
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .sub-box .ir-support {
    margin-bottom: 51px;
    padding: 45px 0 0;
  }
}
.page-ir .main-container .box-wrapper .sub-box .ir-support .ttl-s02 {
  margin-bottom: 38px;
  padding: 0;
}
.page-ir .main-container .box-wrapper .sub-box .ir-support .ttl-s02::before {
  display: none;
  margin: 0;
  padding: 0;
}
.page-ir .main-container .box-wrapper .sub-box .ir-support .ttl-s02 span {
  padding: 7px 0 0;
}
.page-ir .main-container .box-wrapper .sub-box .ir-support .support-menu li a {
  color: #212121;
  font-size: 14px;
  line-height: 2.1428571429;
}
@media (min-width: 768px) {
  .page-ir .main-container .box-wrapper .sub-box .ir-support .support-menu li a {
    font-size: 16px;
    line-height: 1.875;
  }
}

/*--------------------------
	/ir/news/
--------------------------*/
.page-ir-news .area-view-files h2 {
  border-left: 9px solid #1e4292;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.32;
  margin-bottom: 40px;
  padding-left: 10px;
}
@media (min-width: 768px) {
  .page-ir-news .area-view-files h2 {
    font-size: 30px;
    line-height: 1.3333333333;
    margin-bottom: 31px;
    padding-left: 15px;
  }
}
@media (min-width: 768px) {
  .page-ir-news .area-ir-information {
    border-top: 1px solid #E4E4E4;
    margin-bottom: 89px;
    max-width: 920px;
    padding: 39px 10px 0;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .page-ir-news .area-ir-information-box .ir-get-list {
    padding-top: 0;
  }
}
.page-ir-news .area-ir-information-box .ir-get-list-select {
  background-color: #EFF1F4;
}
@media (min-width: 768px) {
  .page-ir-news .area-ir-information-box .ir-get-list [role=tablist] {
    margin: 0 auto 60px;
  }
}
@media (min-width: 768px) {
  .page-ir-news .area-ir-information-box .ir-get-list [role=tablist] li {
    margin: 0 0 0 15px;
  }
}
.page-ir-news .area-ir-information-box .ir-get-list [role=tablist] li:first-child {
  margin-left: 0;
}
@media (min-width: 768px) {
  .page-ir-news .area-ir-information-box .ir-get-list .list-topics .ir-news li {
    align-items: center;
  }
}
.page-ir-news .area-ir-information-box .ir-get-list .list-topics .ir-news li p {
  flex: 1;
}
.page-ir-news .area-ir-information-box .ir-get-list .list-topics .ir-news li p a {
  color: #000;
}

/*--------------------------
	/ir/support/common/
--------------------------*/
.page-ir-support-common .txt-ir-support-common-s01 {
  font-size: 16px;
  line-height: 2.1875;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-support-common .txt-ir-support-common-s01 {
    font-size: 17px;
    line-height: 2.2941176471;
    margin: 0 auto;
    max-width: 920px;
    padding: 0;
  }
}

/*--------------------------
	/ir/lib/
--------------------------*/
.page-ir-lib .ir-lib-link {
  display: flex;
  flex-direction: column;
  gap: 45px 20px;
  margin: 75px 20px 0;
}
@media (min-width: 768px) {
  .page-ir-lib .ir-lib-link {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 60px 26px;
    max-width: 920px;
    margin: 100px auto 0;
  }
}
.page-ir-lib .ir-lib-link .ir-lib-link__item {
  width: auto;
}
@media (min-width: 768px) {
  .page-ir-lib .ir-lib-link .ir-lib-link__item {
    width: calc((100% - 52px) / 3);
  }
}
.page-ir-lib .ir-lib-link .ir-lib-link-item__hd {
  font-weight: bold;
  font-size: 28px;
  line-height: 1;
}
@media (min-width: 768px) {
  .page-ir-lib .ir-lib-link .ir-lib-link-item__hd {
    font-size: 28px;
    line-height: 1;
  }
}
.page-ir-lib .ir-lib-link .ir-lib-link-item__hd span {
  color: #bf2812;
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  min-height: auto;
  margin-top: 20px;
  font-size: 16px;
  line-height: 0.625;
}
@media (min-width: 768px) {
  .page-ir-lib .ir-lib-link .ir-lib-link-item__hd span {
    min-height: 40px;
  }
}
.page-ir-lib .ir-lib-link .ir-lib-link-item__txt {
  min-height: auto;
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.5625;
}
@media (min-width: 768px) {
  .page-ir-lib .ir-lib-link .ir-lib-link-item__txt {
    min-height: 64px;
  }
}
.page-ir-lib .ir-lib-link .ir-lib-link-item__detail {
  margin-top: 20px;
}
.page-ir-lib .area-view-files {
  margin-top: -70px;
  padding-top: 140px;
}
@media (min-width: 768px) {
  .page-ir-lib .area-view-files {
    margin-top: -100px;
    padding-top: 200px;
  }
}
.page-ir-lib .area-view-files h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
  margin-bottom: 34px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-ir-lib .area-view-files h2 {
    font-size: 32px;
    line-height: 1.34375;
    margin-bottom: 42px;
  }
}
.page-ir-lib .area-view-files h2 span {
  color: #BF2812;
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3076923077;
  padding-top: 7px;
}
@media (min-width: 768px) {
  .page-ir-lib .area-view-files h2 span {
    font-size: 20px;
    line-height: 1.35;
    padding-top: 15px;
  }
}
@media (min-width: 768px) {
  .page-ir-lib .area-view-files .finance-file-get-list-select {
    margin-bottom: 37px;
    position: relative;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .page-ir-lib .area-view-files .files-container {
    margin-top: 0;
  }
}
.page-ir-lib .area-view-files .files-container + .files-container {
  margin-top: 47px;
}
.page-ir-lib .area-view-files .files-container h3 {
  border-left: 9px solid #1E4292;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.32;
  margin-bottom: 32px;
  padding-left: 15px;
}
@media (min-width: 768px) {
  .page-ir-lib .area-view-files .files-container h3 {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.3333333333;
  }
}
.page-ir-lib .area-document-download {
  margin: 27px 20px 0;
}
@media (min-width: 768px) {
  .page-ir-lib .area-document-download {
    max-width: 920px;
    margin: 54px auto 0;
  }
}
.page-ir-lib .area-document-download .document-download-ttl span {
  padding-left: 0;
}
.page-ir-lib .area-document-download .document-download-ttl::before {
  display: none;
}
.page-ir-lib .area-document-download .btn-download {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-lib .area-document-download .btn-download {
    max-width: 814px;
    padding: 0;
  }
}
.page-ir-lib .area-document-download .btn-download a {
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  display: block;
  font-size: 15px;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 28px;
  padding: 16px 0 25px;
  position: relative;
  text-align: center;
}
@media (min-width: 768px) {
  .page-ir-lib .area-document-download .btn-download a {
    margin-bottom: 37px;
    padding: 16px 0;
    width: 100%;
  }
}
.page-ir-lib .area-document-download .btn-download a span {
  background: url(../images/common/icon_download.svg) no-repeat center bottom;
  background-size: 18px 18px;
  display: block;
  height: 50px;
}
@media (min-width: 768px) {
  .page-ir-lib .area-document-download .btn-download a span {
    background: url(../images/common/icon_download.svg) no-repeat right center;
    background-size: 18px 18px;
    display: inline;
    height: auto;
    padding-right: 48px;
  }
}
.page-ir-lib .area-document-download ul {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-lib .area-document-download ul {
    padding: 0;
  }
}
.page-ir-lib .area-document-download ul li + li {
  margin-top: 28px;
}
@media (min-width: 768px) {
  .page-ir-lib .area-document-download ul li + li {
    margin-top: 37px;
  }
}
.page-ir-lib .area-document-download ul li p {
  position: relative;
}
.page-ir-lib .area-document-download ul li p a {
  font-size: 14px;
  line-height: 1.4285714286;
  position: relative;
}
@media (min-width: 768px) {
  .page-ir-lib .area-document-download ul li p a {
    font-size: 16px;
    line-height: 1.875;
  }
}
.page-ir-lib .area-document-download ul li p a::before {
  background: #707070;
  content: "";
  height: 1px;
  display: inline-block;
  margin-right: 15px;
  width: 20px;
}

/*--------------------------
	/ir/lib/notes/
--------------------------*/
.page-ir-lib-notes .list-data-container {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-lib-notes .list-data-container {
    margin: 0 auto;
    max-width: 920px;
    padding: 0;
  }
}
.page-ir-lib-notes .list-data-container h2 {
  border-bottom: 1px solid #E4E4E4;
  font-size: 23px;
  font-weight: bold;
  line-height: 1.347826087;
  margin-bottom: 28px;
  padding-bottom: 23px;
}
@media (min-width: 768px) {
  .page-ir-lib-notes .list-data-container h2 {
    font-size: 32px;
    line-height: 1.34375;
    margin-bottom: 37px;
    padding-bottom: 32px;
  }
}
.page-ir-lib-notes .list-data-container ul {
  margin-bottom: 55px;
}
@media (min-width: 768px) {
  .page-ir-lib-notes .list-data-container ul {
    margin-bottom: 105px;
  }
}
.page-ir-lib-notes .list-data-container ul li {
  background: url(../images/common/icon_pdf.svg) no-repeat 0 center;
  padding-left: 31px;
}
@media (min-width: 768px) {
  .page-ir-lib-notes .list-data-container ul li {
    background-size: 21px 21px;
    padding-left: 31px;
  }
}
.page-ir-lib-notes .list-data-container ul li + li {
  margin-top: 25px;
}
@media (min-width: 768px) {
  .page-ir-lib-notes .list-data-container ul li + li {
    margin-top: 27px;
  }
}
.page-ir-lib-notes .list-data-container ul li a {
  color: #247FD9;
  font-size: 14px;
  line-height: 1.3571428571;
}
@media (min-width: 768px) {
  .page-ir-lib-notes .list-data-container ul li a {
    font-size: 17px;
    line-height: 1.7058823529;
  }
}

/*--------------------------
	/ir/management/message/
--------------------------*/
.page-ir-management-message .page-mv {
  margin-bottom: 40px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-management-message .page-mv {
    margin-bottom: 50px;
    padding: 0;
  }
}
.page-ir-management-message .txt-ir-management-message-s01 {
  font-size: 14px;
  line-height: 2.5;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-management-message .txt-ir-management-message-s01 {
    font-size: 16px;
    line-height: 2;
    margin: 0 auto;
    max-width: 1130px;
    padding: 0;
  }
}

/*--------------------------
	/ir/support/memo/
--------------------------*/
.page-ir-support-memo .list-ir-support-memo {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-support-memo .list-ir-support-memo {
    margin: 0 auto;
    max-width: 920px;
    padding: 0;
  }
}
.page-ir-support-memo .list-ir-support-memo dl {
  margin-top: -23px;
}
@media (min-width: 768px) {
  .page-ir-support-memo .list-ir-support-memo dl {
    display: flex;
    flex-wrap: wrap;
    margin-top: -39px;
  }
}
.page-ir-support-memo .list-ir-support-memo dl dt {
  border-bottom: 1px solid #000;
  color: #9D9D9D;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.7142857143;
  padding: 23px 0;
}
@media (min-width: 768px) {
  .page-ir-support-memo .list-ir-support-memo dl dt {
    font-size: 17px;
    line-height: 1.7058823529;
    padding: 39px 0;
    width: 310px;
  }
}
.page-ir-support-memo .list-ir-support-memo dl dd {
  font-size: 14px;
  line-height: 1.7142857143;
  padding: 23px 0 20px;
}
@media (min-width: 768px) {
  .page-ir-support-memo .list-ir-support-memo dl dd {
    border-bottom: 1px solid #E4E4E4;
    font-size: 17px;
    line-height: 1.7058823529;
    padding: 39px 10px;
    width: calc(100% - 310px);
  }
}

/*--------------------------
	/ir/finance/highlight/
--------------------------*/
.page-ir-finance-highlight h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
  margin-bottom: 41px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-ir-finance-highlight h2 {
    font-size: 32px;
    line-height: 1.34375;
  }
}
.page-ir-finance-highlight h2 span {
  color: #BF2812;
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3076923077;
  padding-top: 7px;
}
@media (min-width: 768px) {
  .page-ir-finance-highlight h2 span {
    font-size: 20px;
    line-height: 1.35;
    padding-top: 15px;
  }
}
.page-ir-finance-highlight .area-graph {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-finance-highlight .area-graph {
    padding: 0;
  }
}
.page-ir-finance-highlight .area-graph .ir-graph {
  margin-bottom: 23px;
  width: 100%;
}
@media (min-width: 768px) {
  .page-ir-finance-highlight .area-graph .ir-graph {
    margin-bottom: 43px;
  }
}
.page-ir-finance-highlight .area-graph .ir-graph.s01 {
  height: 790px;
}
@media (min-width: 768px) {
  .page-ir-finance-highlight .area-graph .ir-graph.s01 {
    height: 780px;
  }
}
.page-ir-finance-highlight .area-graph .ir-graph.s02 {
  height: 785px;
}
@media (min-width: 768px) {
  .page-ir-finance-highlight .area-graph .ir-graph.s02 {
    height: 780px;
  }
}
.page-ir-finance-highlight .area-graph .ir-graph.s03 {
  height: 680px;
}
@media (min-width: 768px) {
  .page-ir-finance-highlight .area-graph .ir-graph.s03 {
    height: 650px;
  }
}
.page-ir-finance-highlight .area-graph .ir-graph.s04 {
  height: 690px;
}
@media (min-width: 768px) {
  .page-ir-finance-highlight .area-graph .ir-graph.s04 {
    height: 660px;
  }
}
.page-ir-finance-highlight .area-graph .ir-graph.s05 {
  height: 750px;
}
@media (min-width: 768px) {
  .page-ir-finance-highlight .area-graph .ir-graph.s05 {
    height: 730px;
  }
}

/*--------------------------
	/ir/finance/fr/
--------------------------*/
.page-ir-finance-fr .area-iframe {
  margin-bottom: 70px;
}
@media (min-width: 768px) {
  .page-ir-finance-fr .area-iframe {
    margin: 0;
  }
}

/*--------------------------
	/ir/support/denshi/
--------------------------*/
.page-ir-support-denshi h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
  margin-bottom: 15px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-ir-support-denshi h2 {
    font-size: 32px;
    line-height: 1.34375;
    margin-bottom: 42px;
  }
}
.page-ir-support-denshi h2 span {
  color: #BF2812;
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3076923077;
  padding-top: 7px;
}
@media (min-width: 768px) {
  .page-ir-support-denshi h2 span {
    font-size: 20px;
    line-height: 1.35;
    padding-top: 15px;
  }
}
.page-ir-support-denshi .list-denshi {
  margin-bottom: 70px;
}
@media (min-width: 768px) {
  .page-ir-support-denshi .list-denshi {
    margin-bottom: 91px;
    padding: 0;
  }
}
.page-ir-support-denshi .list-denshi ul {
  padding: 20px;
}
@media (min-width: 768px) {
  .page-ir-support-denshi .list-denshi ul {
    margin: 0 auto;
    max-width: 920px;
    padding: 43px 55px;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .page-ir-support-denshi .list-denshi ul li {
    align-items: center;
    display: flex;
  }
}
.page-ir-support-denshi .list-denshi ul li + li {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .page-ir-support-denshi .list-denshi ul li + li {
    margin-top: 40px;
  }
}
.page-ir-support-denshi .list-denshi ul li > p {
  position: relative;
}
.page-ir-support-denshi .list-denshi ul li > p a {
  font-size: 14px;
  line-height: 1.3571428571;
}
@media (min-width: 768px) {
  .page-ir-support-denshi .list-denshi ul li > p a {
    font-size: 16px;
    line-height: 1.6666666667;
  }
}

/*--------------------------
	/ir/dividend/gift/
--------------------------*/
.page-ir-dividend-gift h2 {
  border-bottom: 1px solid #E4E4E4;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
  margin: 0 20px 20px;
  padding-bottom: 18px;
}
@media (min-width: 768px) {
  .page-ir-dividend-gift h2 {
    font-size: 32px;
    line-height: 1.34375;
    margin: 0 auto 35px;
    padding-bottom: 32px;
    max-width: 920px;
  }
}
.page-ir-dividend-gift .txt-ir-dividend-gift-s01 {
  font-size: 16px;
  line-height: 1.6875;
  margin-bottom: 60px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-dividend-gift .txt-ir-dividend-gift-s01 {
    font-size: 17px;
    line-height: 1.7058823529;
    margin: 0 auto 67px;
    max-width: 920px;
    padding: 0;
  }
}
.page-ir-dividend-gift .gift {
  font-size: 16px;
  line-height: 1.6875;
  padding: 0 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .page-ir-dividend-gift .gift {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    font-size: 17px;
    justify-content: space-between;
    line-height: 1.7058823529;
    margin: 0 auto;
    max-width: 920px;
    padding: 0;
  }
}
.page-ir-dividend-gift .gift dt {
  background: #1E4292;
  border: 1px solid #A2A2A2;
  color: #fff;
  font-weight: normal;
  padding: 13px 20px;
}
@media (min-width: 768px) {
  .page-ir-dividend-gift .gift dt {
    padding: 17px 33px;
    width: 385px;
  }
}
.page-ir-dividend-gift .gift dd {
  background: #F4F9FF;
  border: 1px solid #fff;
  padding: 13px 20px;
}
@media (min-width: 768px) {
  .page-ir-dividend-gift .gift dd {
    padding: 17px 33px;
    width: calc(100% - 385px);
  }
}
.page-ir-dividend-gift .txt-ir-dividend-gift-s02 {
  text-align: right;
  font-size: 16px;
  line-height: 1.6875;
  margin: 10px 0 0;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-dividend-gift .txt-ir-dividend-gift-s02 {
    font-size: 17px;
    line-height: 1.7058823529;
    margin: 10px auto 0;
    max-width: 920px;
    padding: 0;
  }
}

/*--------------------------
	/ir/dividend/memo/
--------------------------*/
.page-ir-dividend-memo h2 {
  border-bottom: 1px solid #E4E4E4;
  font-size: 23px;
  font-weight: bold;
  line-height: 1.347826087;
  margin: 0 20px 26px;
  padding: 0 0 23px;
}
@media (min-width: 768px) {
  .page-ir-dividend-memo h2 {
    font-size: 32px;
    line-height: 1.34375;
    margin: 0 auto 36px;
    padding: 0 0 32px;
    max-width: 920px;
  }
}
.page-ir-dividend-memo h3 {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1;
}
@media (min-width: 768px) {
  .page-ir-dividend-memo h3 {
    gap: 6px;
    font-size: 21px;
    margin-bottom: 12px;
  }
}
.page-ir-dividend-memo h3::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-color: #000;
}
@media (min-width: 768px) {
  .page-ir-dividend-memo h3::before {
    width: 16px;
    height: 16px;
  }
}
.page-ir-dividend-memo .box-ir-dividend-memo {
  margin: 0 0 80px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-dividend-memo .box-ir-dividend-memo {
    margin: 0 auto 124px;
    padding: 0;
    max-width: 920px;
  }
}
.page-ir-dividend-memo .txt-ir-dividend-memo-s01 {
  font-size: 14px;
  line-height: 1.7142857143;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .page-ir-dividend-memo .txt-ir-dividend-memo-s01 {
    font-size: 17px;
    line-height: 1.7058823529;
    margin-bottom: 30px;
  }
}
.page-ir-dividend-memo .graph {
  margin-bottom: 30px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-dividend-memo .graph {
    margin: 0 auto 66px;
    max-width: 920px;
    padding: 0;
  }
}
.page-ir-dividend-memo .tb-memo {
  margin: 0 0 0 20px;
  overflow: auto;
  /*スクロールさせる*/
  width: calc(100% - 20px);
}
@media (min-width: 768px) {
  .page-ir-dividend-memo .tb-memo {
    margin: 0 auto;
    max-width: 920px;
    width: 100%;
  }
}
.page-ir-dividend-memo .tb-memo table {
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll !important;
  width: 100%;
}
.page-ir-dividend-memo .tb-memo table th {
  background: #1E4292;
  border: 1px solid #DCDDDD;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  height: 45px;
  line-height: 1.7142857143;
  padding: 0 24px;
  text-align: center;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .page-ir-dividend-memo .tb-memo table th {
    font-size: 16px;
    height: 66px;
    line-height: 1.625;
    padding: 0;
  }
}
.page-ir-dividend-memo .tb-memo table td {
  background: #fff;
  border: 1px solid #DCDDDD;
  height: 45px;
  padding: 0 24px;
  text-align: center;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .page-ir-dividend-memo .tb-memo table td {
    height: 66px;
    padding: 0;
  }
}
.page-ir-dividend-memo .tb-memo table tr:not(:nth-of-type(1)) th {
  background: #EFF1F4;
  color: #000;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .page-ir-dividend-memo .tb-memo table tr:not(:nth-of-type(1)) th {
    padding: 0;
    width: 139px;
  }
}
.page-ir-dividend-memo .tb-memo table .sum th {
  background: #1E4292 !important;
  color: #fff !important;
}
.page-ir-dividend-memo .tb-memo table .sum td {
  background: #F4F9FF !important;
}

/*--------------------------
	/ir/governance/
--------------------------*/
.page-ir-governance .contents {
  margin-bottom: 80px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-governance .contents {
    margin: 0 auto 110px;
    max-width: 920px;
    padding: 0;
  }
}
.page-ir-governance .contents h2 {
  border-left: 9px solid #1e4292;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.32;
  margin-bottom: 31px;
  padding-left: 10px;
}
@media (min-width: 768px) {
  .page-ir-governance .contents h2 {
    font-size: 30px;
    line-height: 1.3333333333;
    padding-left: 15px;
  }
}
.page-ir-governance .contents .txt-ir-governance-s01 {
  font-size: 16px;
  line-height: 1.6875;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .page-ir-governance .contents .txt-ir-governance-s01 {
    font-size: 17px;
    line-height: 1.7058823529;
    margin-bottom: 60px;
  }
}
.page-ir-governance .contents .system-img {
  margin-bottom: 30px;
}
.page-ir-governance .contents .link-list + .link-list {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .page-ir-governance .contents .link-list + .link-list {
    margin-top: 23px;
  }
}
.page-ir-governance .contents .link-list li {
  background: url(../images/common/icon_link_arrow02.svg) no-repeat left center;
  background-size: 11px 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3333333333;
  padding-left: 25px;
}
@media (min-width: 768px) {
  .page-ir-governance .contents .link-list li {
    font-size: 20px;
    line-height: 1.35;
  }
}
.page-ir-governance .contents .link-list li p {
  position: relative;
}
.page-ir-governance .contents .link-list li + li {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .page-ir-governance .contents .link-list li + li {
    margin-top: 23px;
  }
}
/*--------------------------
	/ir/governance/compliance/
--------------------------*/
.page-ir-governance-compliance .contents {
  margin-bottom: 80px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-governance-compliance .contents {
    margin: 0 auto 110px;
    max-width: 920px;
    padding: 0;
  }
}
.page-ir-governance-compliance .contents h2 {
  border-left: 9px solid #1e4292;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.32;
  margin-bottom: 31px;
  padding-left: 10px;
}
@media (min-width: 768px) {
  .page-ir-governance-compliance .contents h2 {
    font-size: 30px;
    line-height: 1.3333333333;
    padding-left: 15px;
  }
}
.page-ir-governance-compliance .contents .system-img {
  margin-bottom: 45px;
}
.page-ir-governance-compliance .contents dl {
  font-size: 14px;
  line-height: 2.1428571429;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .page-ir-governance-compliance .contents dl {
    font-size: 16px;
    line-height: 1.875;
    margin-bottom: 80px;
  }
}
.page-ir-governance-compliance .contents dl dt {
  font-weight: normal;
}
.page-ir-governance-compliance .contents dl dd {
  padding-left: 1.1em;
}
.page-ir-governance-compliance .contents .txt-ir-governance-compliance-s01 {
  font-size: 14px;
  line-height: 2.1428571429;
  margin-bottom: 52px;
}
@media (min-width: 768px) {
  .page-ir-governance-compliance .contents .txt-ir-governance-compliance-s01 {
    font-size: 16px;
    line-height: 1.875;
  }
}

/*--------------------------
	/ir/governance/internal_control_system/
--------------------------*/
.page-ir-governance-internal-control-system .contents {
  margin-bottom: 80px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-governance-internal-control-system .contents {
    margin: 0 auto 110px;
    max-width: 920px;
    padding: 0;
  }
}
.page-ir-governance-internal-control-system .contents h2 {
  border-left: 9px solid #1e4292;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.32;
  margin-bottom: 31px;
  padding-left: 10px;
}
@media (min-width: 768px) {
  .page-ir-governance-internal-control-system .contents h2 {
    font-size: 30px;
    line-height: 1.3333333333;
    padding-left: 15px;
  }
}
.page-ir-governance-internal-control-system .contents h3 {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.3333333333;
}
@media (min-width: 768px) {
  .page-ir-governance-internal-control-system .contents h3 {
    font-size: 20px;
    line-height: 1.5;
  }
}
.page-ir-governance-internal-control-system .contents .list-ir-governance-internal-control-system-s01 {
  font-size: 14px;
  line-height: 2.1428571429;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-ir-governance-internal-control-system .contents .list-ir-governance-internal-control-system-s01 {
    font-size: 16px;
    line-height: 1.875;
  }
}
.page-ir-governance-internal-control-system .contents .list-ir-governance-internal-control-system-s01 li ul {
  margin-bottom: 0;
}
.page-ir-governance-internal-control-system .contents .list-ir-governance-internal-control-system-s01 li ul li {
  padding-left: 2em;
  text-indent: -1.2em;
}
@media (min-width: 768px) {
  .page-ir-governance-internal-control-system .contents .list-ir-governance-internal-control-system-s01 li ul li {
    padding-left: 2.3em;
    text-indent: -1.1em;
  }
}
.page-ir-governance-internal-control-system .contents .list-ir-governance-internal-control-system-s01 li ul li ul {
  margin-bottom: 0;
}
.page-ir-governance-internal-control-system .contents .list-ir-governance-internal-control-system-s01 li ul li ul li {
  padding-left: 1.25em;
  text-indent: -1.25em;
}
@media (min-width: 768px) {
  .page-ir-governance-internal-control-system .contents .list-ir-governance-internal-control-system-s01 li ul li ul li {
    padding-left: 1.3em;
    text-indent: -1.1em;
  }
}
.page-ir-governance-internal-control-system .contents .list-ir-governance-internal-control-system-s02 {
  font-size: 14px;
  line-height: 2.1428571429;
}
@media (min-width: 768px) {
  .page-ir-governance-internal-control-system .contents .list-ir-governance-internal-control-system-s02 {
    font-size: 16px;
    line-height: 1.875;
  }
}
.page-ir-governance-internal-control-system .contents .list-ir-governance-internal-control-system-s02 li {
  padding-left: 0.3em;
  text-indent: -0.3em;
}
@media (min-width: 768px) {
  .page-ir-governance-internal-control-system .contents .list-ir-governance-internal-control-system-s02 li {
    padding-left: 0.5em;
    text-indent: -0.5em;
  }
}
.page-ir-governance-internal-control-system .contents .txt-ir-governance-internal-control-system-s01 {
  font-size: 14px;
  line-height: 2.1428571429;
  margin-bottom: 52px;
}
@media (min-width: 768px) {
  .page-ir-governance-internal-control-system .contents .txt-ir-governance-internal-control-system-s01 {
    font-size: 16px;
    line-height: 1.875;
  }
}
.page-ir-governance-internal-control-system .contents .txt-ir-governance-internal-control-system-s02 {
  font-size: 14px;
  line-height: 2.1428571429;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .page-ir-governance-internal-control-system .contents .txt-ir-governance-internal-control-system-s02 {
    font-size: 16px;
    line-height: 1.875;
  }
}
.page-ir-governance-internal-control-system .contents .txt-ir-governance-internal-control-system-s03 {
  font-size: 14px;
  line-height: 2.1428571429;
}
@media (min-width: 768px) {
  .page-ir-governance-internal-control-system .contents .txt-ir-governance-internal-control-system-s03 {
    font-size: 16px;
    line-height: 1.875;
  }
}

/*--------------------------
	/ir/governance/accountability/
--------------------------*/
.page-ir-governance-accountability .contents {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-governance-accountability .contents {
    margin: 0 auto;
    max-width: 920px;
    padding: 0;
  }
}
.page-ir-governance-accountability .contents .txt-ir-governance-accountability-s01 {
  font-size: 14px;
  line-height: 2.1428571429;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .page-ir-governance-accountability .contents .txt-ir-governance-accountability-s01 {
    font-size: 16px;
    line-height: 1.875;
  }
}
.page-ir-governance-accountability .contents h2 {
  border-bottom: 1px solid #E4E4E4;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.32;
  margin-bottom: 25px;
  padding-bottom: 25px;
}
@media (min-width: 768px) {
  .page-ir-governance-accountability .contents h2 {
    font-size: 32px;
    line-height: 1.34375;
    margin-bottom: 32px;
    padding-bottom: 32px;
  }
}
.page-ir-governance-accountability .contents .link-list li {
  background: url(../images/common/icon_link_arrow02.svg) no-repeat left center;
  background-size: 11px 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3333333333;
  padding-left: 25px;
}
@media (min-width: 768px) {
  .page-ir-governance-accountability .contents .link-list li {
    font-size: 20px;
    line-height: 1.35;
  }
}
.page-ir-governance-accountability .contents .link-list li p {
  padding-right: 50px;
  position: relative;
}
@media (min-width: 768px) {
  .page-ir-governance-accountability .contents .link-list li p {
    padding-right: 90px;
  }
}
.page-ir-governance-accountability .contents .link-list li + li {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .page-ir-governance-accountability .contents .link-list li + li {
    margin-top: 23px;
  }
}
.page-ir-governance-accountability .tb-accountability {
  margin: 0 0 53px 20px;
  overflow: auto;
  /*スクロールさせる*/
  width: calc(100% - 20px);
}
@media (min-width: 768px) {
  .page-ir-governance-accountability .tb-accountability {
    margin: 0 auto 53px;
    max-width: 920px;
    width: 100%;
  }
}
.page-ir-governance-accountability .tb-accountability table {
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll !important;
  width: 100%;
}
.page-ir-governance-accountability .tb-accountability table th {
  background: #1E4292;
  border: 1px solid #DCDDDD;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  height: 45px;
  line-height: 1.7142857143;
  padding: 0 24px;
  text-align: center;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .page-ir-governance-accountability .tb-accountability table th {
    font-size: 16px;
    height: 66px;
    line-height: 1.625;
    padding: 0;
  }
}
.page-ir-governance-accountability .tb-accountability table td {
  background: #fff;
  border: 1px solid #DCDDDD;
  font-size: 14px;
  line-height: 2.1428571429;
  min-height: 117px;
  padding: 16px;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .page-ir-governance-accountability .tb-accountability table td {
    font-size: 16px;
    line-height: 1.875;
    min-height: 117px;
  }
}
.page-ir-governance-accountability .tb-accountability table tr:not(:nth-of-type(1)) td:first-child {
  background: #EFF1F4;
  border-bottom: #fff;
  border-left: none;
  border-top: 1px solid #fff;
  min-width: 231px;
}
.page-ir-governance-accountability .tb-accountability table td:nth-of-type(2) {
  text-align: center;
  white-space: nowrap;
  min-width: 110px;
}
.page-ir-governance-accountability .tb-accountability table td:nth-of-type(3) {
  min-width: 573px;
}

/*--------------------------
	/ir/governance/irpolicy/
--------------------------*/
.page-ir-governance-irpolicy .contents {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-governance-irpolicy .contents {
    margin: 0 auto;
    max-width: 920px;
    padding: 0;
  }
}
.page-ir-governance-irpolicy .contents h2 {
  border-bottom: 1px solid #E4E4E4;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.32;
  margin-bottom: 25px;
  padding-bottom: 25px;
}
@media (min-width: 768px) {
  .page-ir-governance-irpolicy .contents h2 {
    font-size: 32px;
    line-height: 1.34375;
    margin-bottom: 32px;
    padding-bottom: 32px;
  }
}
.page-ir-governance-irpolicy .contents h3 {
  border-left: 9px solid #1e4292;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.32;
  margin-bottom: 31px;
  padding-left: 10px;
}
@media (min-width: 768px) {
  .page-ir-governance-irpolicy .contents h3 {
    font-size: 30px;
    line-height: 1.3333333333;
    padding-left: 15px;
  }
}
.page-ir-governance-irpolicy .contents .txt-ir-governance-irpolicy-s01 {
  font-size: 14px;
  line-height: 2.1428571429;
  margin-bottom: 70px;
}
@media (min-width: 768px) {
  .page-ir-governance-irpolicy .contents .txt-ir-governance-irpolicy-s01 {
    font-size: 16px;
    line-height: 1.875;
    margin-bottom: 97px;
  }
}
.page-ir-governance-irpolicy .contents .txt-ir-governance-irpolicy-s01.pat01 {
  margin-bottom: 41px;
}
.page-ir-governance-irpolicy .contents .list-ir-governance-irpolicy-s01 {
  margin-bottom: 41px;
}
.page-ir-governance-irpolicy .contents .list-ir-governance-irpolicy-s01.pat01 {
  margin-bottom: 70px;
}
@media (min-width: 768px) {
  .page-ir-governance-irpolicy .contents .list-ir-governance-irpolicy-s01.pat01 {
    margin-bottom: 97px;
  }
}
.page-ir-governance-irpolicy .contents .list-ir-governance-irpolicy-s01 li {
  font-size: 14px;
  line-height: 2.1428571429;
}
@media (min-width: 768px) {
  .page-ir-governance-irpolicy .contents .list-ir-governance-irpolicy-s01 li {
    font-size: 16px;
    line-height: 1.875;
  }
}
.page-ir-governance-irpolicy .contents .list-ir-governance-irpolicy-s01 li + li {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .page-ir-governance-irpolicy .contents .list-ir-governance-irpolicy-s01 li + li {
    margin-top: 30px;
  }
}
.page-ir-governance-irpolicy .contents .list-ir-governance-irpolicy-s01 li p:first-child {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .page-ir-governance-irpolicy .contents .list-ir-governance-irpolicy-s01 li p:first-child {
    font-size: 20px;
    line-height: 1.5;
  }
}
.page-ir-governance-irpolicy .contents .list-ir-governance-irpolicy-s01 li p:first-child a {
  color: #4791F7;
  text-decoration: underline;
}
.page-ir-governance-irpolicy .contents .list-ir-governance-irpolicy-s01 li p:nth-of-type(2) {
  padding-left: 1em;
}

/*--------------------------
	/ir/governance/officer-compensation/
--------------------------*/
.page-ir-governance-officer-compensation .contents {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-governance-officer-compensation .contents {
    margin: 0 auto;
    max-width: 920px;
    padding: 0;
  }
}
.page-ir-governance-officer-compensation .contents .txt-ir-governance-officer-compensation-s01 {
  font-size: 14px;
  line-height: 2.1428571429;
  margin-bottom: 42px;
}
@media (min-width: 768px) {
  .page-ir-governance-officer-compensation .contents .txt-ir-governance-officer-compensation-s01 {
    font-size: 16px;
    line-height: 1.875;
  }
}
.page-ir-governance-officer-compensation .contents .txt-ir-governance-officer-compensation-s01.pat01 {
  margin-bottom: 15px;
}
.page-ir-governance-officer-compensation .contents .txt-ir-governance-officer-compensation-s01.pat02 {
  margin-bottom: 55px;
}
.page-ir-governance-officer-compensation .contents .txt-ir-governance-officer-compensation-s01.pat03 {
  margin-bottom: 75px;
}
.page-ir-governance-officer-compensation .contents .txt-ir-governance-officer-compensation-s01.pat04 {
  margin-bottom: 18px;
}
.page-ir-governance-officer-compensation .contents h2 {
  border-left: 9px solid #1e4292;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.32;
  margin-bottom: 31px;
  padding-left: 10px;
}
@media (min-width: 768px) {
  .page-ir-governance-officer-compensation .contents h2 {
    font-size: 30px;
    line-height: 1.3333333333;
    padding-left: 15px;
  }
}
.page-ir-governance-officer-compensation .contents .list-ir-governance-officer-compensation-s01 {
  font-size: 14px;
  line-height: 2.1428571429;
  margin-bottom: 42px;
}
@media (min-width: 768px) {
  .page-ir-governance-officer-compensation .contents .list-ir-governance-officer-compensation-s01 {
    font-size: 16px;
    line-height: 1.875;
  }
}
.page-ir-governance-officer-compensation .contents .list-ir-governance-officer-compensation-s01 li:nth-of-type(1) {
  padding-left: 25px;
  text-indent: -25px;
}
.page-ir-governance-officer-compensation .contents .list-ir-governance-officer-compensation-s01 li:not(:nth-of-type(1)) {
  padding-left: 27px;
}
@media (min-width: 768px) {
  .page-ir-governance-officer-compensation .contents .list-ir-governance-officer-compensation-s01 li:not(:nth-of-type(1)) {
    padding-left: 31px;
  }
}
.page-ir-governance-officer-compensation .contents .list-ir-governance-officer-compensation-s01.pat01 {
  margin-bottom: 15px;
}
.page-ir-governance-officer-compensation .contents .link-list li {
  background: url(../images/common/icon_link_arrow02.svg) no-repeat left center;
  background-size: 11px 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3333333333;
  padding-left: 25px;
}
@media (min-width: 768px) {
  .page-ir-governance-officer-compensation .contents .link-list li {
    font-size: 20px;
    line-height: 1.35;
  }
}
.page-ir-governance-officer-compensation .contents .link-list li p {
  position: relative;
}
.page-ir-governance-officer-compensation .contents .link-list li + li {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .page-ir-governance-officer-compensation .contents .link-list li + li {
    margin-top: 23px;
  }
}
.page-ir-governance-officer-compensation .tb-officer-compensation {
  margin: 0 0 47px 20px;
  overflow: auto;
  /*スクロールさせる*/
  width: calc(100% - 20px);
}
@media (min-width: 768px) {
  .page-ir-governance-officer-compensation .tb-officer-compensation {
    margin: 0 auto 47px;
    max-width: 920px;
    width: 100%;
  }
}
.page-ir-governance-officer-compensation .tb-officer-compensation table {
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll !important;
  width: 100%;
}
.page-ir-governance-officer-compensation .tb-officer-compensation table th {
  background: #1E4292;
  border: 1px solid #DCDDDD;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  height: 45px;
  line-height: 1.7142857143;
  padding: 0 24px;
  text-align: center;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .page-ir-governance-officer-compensation .tb-officer-compensation table th {
    font-size: 16px;
    height: 66px;
    line-height: 1.625;
    padding: 0;
  }
}
.page-ir-governance-officer-compensation .tb-officer-compensation table td {
  background: #fff;
  border: 1px solid #DCDDDD;
  font-size: 14px;
  line-height: 2.1428571429;
  min-height: 66px;
  padding: 16px;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .page-ir-governance-officer-compensation .tb-officer-compensation table td {
    font-size: 16px;
    line-height: 1.875;
  }
}
.page-ir-governance-officer-compensation .tb-officer-compensation table tr:not(:nth-of-type(1)) td:first-child {
  background: #EFF1F4;
  border-bottom: #fff;
  border-left: none;
  border-top: 1px solid #fff;
  min-width: 391px;
}
.page-ir-governance-officer-compensation .tb-officer-compensation table td:not(:nth-of-type(1)) {
  min-width: 175px;
}
.page-ir-governance-officer-compensation .tb-officer-compensation02 {
  margin: 0 0 20px 20px;
  overflow: auto;
  /*スクロールさせる*/
  width: calc(100% - 20px);
}
@media (min-width: 768px) {
  .page-ir-governance-officer-compensation .tb-officer-compensation02 {
    margin: 0 auto 20px;
    max-width: 920px;
    width: 100%;
  }
}
.page-ir-governance-officer-compensation .tb-officer-compensation02 table {
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll !important;
  width: 100%;
}
.page-ir-governance-officer-compensation .tb-officer-compensation02 table th {
  background: #1E4292;
  border: 1px solid #DCDDDD;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  height: 33px;
  line-height: 1.2;
  padding: 0 24px;
  text-align: center;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .page-ir-governance-officer-compensation .tb-officer-compensation02 table th {
    height: 33px;
    padding: 0;
  }
}
.page-ir-governance-officer-compensation .tb-officer-compensation02 table td {
  background: #fff;
  border: 1px solid #DCDDDD;
  font-size: 15px;
  line-height: 1.6666666667;
  min-height: 66px;
  padding: 16px;
  vertical-align: middle;
}
.page-ir-governance-officer-compensation .tb-officer-compensation02 table tr:not(:nth-of-type(1)) td:first-child {
  background: #EFF1F4;
  border-bottom: #fff;
  border-left: none;
  border-top: 1px solid #fff;
  min-width: 195px;
}
.page-ir-governance-officer-compensation .tb-officer-compensation02 table td:nth-of-type(2) {
  min-width: 105px;
  text-align: right;
}
.page-ir-governance-officer-compensation .tb-officer-compensation02 table td:nth-of-type(3),
.page-ir-governance-officer-compensation .tb-officer-compensation02 table td:nth-of-type(4),
.page-ir-governance-officer-compensation .tb-officer-compensation02 table td:nth-of-type(5),
.page-ir-governance-officer-compensation .tb-officer-compensation02 table td:nth-of-type(6),
.page-ir-governance-officer-compensation .tb-officer-compensation02 table td:nth-of-type(7) {
  min-width: 123px;
  text-align: right;
}
.page-ir-governance-officer-compensation .tb-officer-compensation03 {
  margin: 0 20px 35px;
  width: calc(100% - 40px);
}
@media (min-width: 768px) {
  .page-ir-governance-officer-compensation .tb-officer-compensation03 {
    margin: 0 auto 35px;
    max-width: 920px;
    width: 100%;
  }
}
.page-ir-governance-officer-compensation .tb-officer-compensation03 table {
  width: 100%;
}
@media (min-width: 768px) {
  .page-ir-governance-officer-compensation .tb-officer-compensation03 table {
    max-width: 555px;
  }
}
.page-ir-governance-officer-compensation .tb-officer-compensation03 table caption {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 18px;
  max-width: 555px;
}
.page-ir-governance-officer-compensation .tb-officer-compensation03 table th {
  background: #1E4292;
  border: 1px solid #DCDDDD;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  height: 66px;
  line-height: 1.2;
  padding: 0 24px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .page-ir-governance-officer-compensation .tb-officer-compensation03 table th {
    height: 66px;
    padding: 0;
  }
}
.page-ir-governance-officer-compensation .tb-officer-compensation03 table td {
  background: #fff;
  border: 1px solid #DCDDDD;
  font-size: 15px;
  line-height: 1.6666666667;
  min-height: 66px;
  padding: 16px;
  vertical-align: middle;
}
.page-ir-governance-officer-compensation .tb-officer-compensation03 table tr:not(:nth-of-type(1)) td:first-child {
  background: #EFF1F4;
  border-bottom: #fff;
  border-left: none;
  border-top: 1px solid #fff;
}
@media (min-width: 768px) {
  .page-ir-governance-officer-compensation .tb-officer-compensation03 table tr:not(:nth-of-type(1)) td:first-child {
    max-width: 335px;
    width: 100%;
  }
}
.page-ir-governance-officer-compensation .tb-officer-compensation03 table td:nth-of-type(2) {
  text-align: right;
}
@media (min-width: 768px) {
  .page-ir-governance-officer-compensation .tb-officer-compensation03 table td:nth-of-type(2) {
    min-width: 219px;
    width: 100%;
  }
}

/*--------------------------
	/ir/governance/corporate-governance/
--------------------------*/
.page-ir-governance-corporate-governance .contents {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-governance-corporate-governance .contents {
    margin: 0 auto;
    max-width: 920px;
    padding: 0;
  }
}
.page-ir-governance-corporate-governance .contents h2 {
  border-bottom: 1px solid #E4E4E4;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.32;
  margin-bottom: 25px;
  padding-bottom: 25px;
}
@media (min-width: 768px) {
  .page-ir-governance-corporate-governance .contents h2 {
    font-size: 32px;
    line-height: 1.34375;
    margin-bottom: 32px;
    padding-bottom: 32px;
  }
}
.page-ir-governance-corporate-governance .contents h3 {
  border-left: 9px solid #1e4292;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.32;
  margin-bottom: 31px;
  padding-left: 10px;
}
@media (min-width: 768px) {
  .page-ir-governance-corporate-governance .contents h3 {
    font-size: 30px;
    line-height: 1.3333333333;
    padding-left: 15px;
  }
}
.page-ir-governance-corporate-governance .contents h4 {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6875;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .page-ir-governance-corporate-governance .contents h4 {
    font-size: 24px;
    line-height: 1.3333333333;
    margin-bottom: 27px;
  }
}
.page-ir-governance-corporate-governance .contents .dl-ir-governance-corporate-governance-s01 {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .page-ir-governance-corporate-governance .contents .dl-ir-governance-corporate-governance-s01 {
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 35px;
  }
}
.page-ir-governance-corporate-governance .contents .dl-ir-governance-corporate-governance-s01 dt {
  align-items: center;
  background: #1E4292;
  border: 1px solid #fff;
  border-left: none;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  line-height: 1.3125;
  min-height: 47px;
  padding: 13px 24px;
  text-align: left;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .page-ir-governance-corporate-governance .contents .dl-ir-governance-corporate-governance-s01 dt {
    min-height: 66px;
    padding: 24px;
    width: 278px;
  }
}
.page-ir-governance-corporate-governance .contents .dl-ir-governance-corporate-governance-s01 dd {
  align-items: center;
  background: #EFF1F4;
  border: 1px solid #DCDDDD;
  display: flex;
  font-size: 16px;
  line-height: 1.3125;
  min-height: 47px;
  padding: 13px 24px;
}
@media (min-width: 768px) {
  .page-ir-governance-corporate-governance .contents .dl-ir-governance-corporate-governance-s01 dd {
    min-height: 66px;
    padding: 24px;
    width: calc(100% - 278px);
  }
}
.page-ir-governance-corporate-governance .contents .dl-ir-governance-corporate-governance-s02 {
  font-size: 14px;
  line-height: 2.1428571429;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .page-ir-governance-corporate-governance .contents .dl-ir-governance-corporate-governance-s02 {
    font-size: 16px;
    line-height: 1.875;
    margin-bottom: 82px;
  }
}
.page-ir-governance-corporate-governance .contents .dl-ir-governance-corporate-governance-s02 dt {
  font-weight: normal;
}
.page-ir-governance-corporate-governance .contents .dl-ir-governance-corporate-governance-s02 dd {
  padding-left: 2.125em;
}
.page-ir-governance-corporate-governance .contents .meeting-img {
  margin-bottom: 56px;
}
.page-ir-governance-corporate-governance .contents .txt-ir-governance-corporate-governance-s01 {
  font-size: 16px;
  line-height: 1.6875;
  margin-bottom: 100px;
}
@media (min-width: 768px) {
  .page-ir-governance-corporate-governance .contents .txt-ir-governance-corporate-governance-s01 {
    font-size: 17px;
    line-height: 1.7058823529;
    margin-bottom: 120px;
  }
}
.page-ir-governance-corporate-governance .contents .txt-ir-governance-corporate-governance-s01.pat01 {
  margin-bottom: 70px;
}
@media (min-width: 768px) {
  .page-ir-governance-corporate-governance .contents .txt-ir-governance-corporate-governance-s01.pat01 {
    margin-bottom: 90px;
  }
}
.page-ir-governance-corporate-governance .contents .txt-ir-governance-corporate-governance-s01.pat02 {
  margin-bottom: 24px;
}
.page-ir-governance-corporate-governance .contents .txt-ir-governance-corporate-governance-s01.pat03 {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .page-ir-governance-corporate-governance .contents .txt-ir-governance-corporate-governance-s01.pat03 {
    margin-bottom: 78px;
  }
}
.page-ir-governance-corporate-governance .contents .link-list {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-ir-governance-corporate-governance .contents .link-list {
    margin-bottom: 50px;
  }
}
.page-ir-governance-corporate-governance .contents .link-list li {
  background: url(../images/common/icon_link_arrow02.svg) no-repeat left center;
  background-size: 11px 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3333333333;
  padding-left: 25px;
}
@media (min-width: 768px) {
  .page-ir-governance-corporate-governance .contents .link-list li {
    font-size: 20px;
    line-height: 1.35;
  }
}
.page-ir-governance-corporate-governance .contents .link-list li p {
  position: relative;
}
.page-ir-governance-corporate-governance .contents .link-list li + li {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .page-ir-governance-corporate-governance .contents .link-list li + li {
    margin-top: 23px;
  }
}
.page-ir-governance-corporate-governance .tb-corporate-governance {
  margin: 0 0 57px 20px;
  overflow: auto;
  /*スクロールさせる*/
  width: calc(100% - 20px);
}
@media (min-width: 768px) {
  .page-ir-governance-corporate-governance .tb-corporate-governance {
    margin: 0 auto 57px;
    max-width: 920px;
    width: 100%;
  }
}
.page-ir-governance-corporate-governance .tb-corporate-governance table {
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll !important;
  width: 100%;
}
.page-ir-governance-corporate-governance .tb-corporate-governance table th {
  background: #1E4292;
  border: 1px solid #DCDDDD;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  height: 45px;
  line-height: 1.1428571429;
  padding: 0 24px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .page-ir-governance-corporate-governance .tb-corporate-governance table th {
    font-size: 14px;
    height: 66px;
    line-height: 1.1428571429;
    padding: 0;
  }
}
.page-ir-governance-corporate-governance .tb-corporate-governance table tr:nth-of-type(1) th:nth-of-type(1) {
  background: #fff;
  border: none;
}
.page-ir-governance-corporate-governance .tb-corporate-governance table td {
  background: #fff;
  border: 1px solid #DCDDDD;
  font-size: 14px;
  line-height: 1.5;
  min-height: 77px;
  padding: 16px;
  text-align: right;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .page-ir-governance-corporate-governance .tb-corporate-governance table td {
    font-size: 16px;
    line-height: 1.3125;
  }
}
.page-ir-governance-corporate-governance .tb-corporate-governance table tr:not(:nth-of-type(1)) th:first-child {
  background: #1E4292;
  border-bottom: #fff;
  border-left: none;
  border-top: 1px solid #fff;
  min-width: 150px;
  white-space: nowrap;
}
.page-ir-governance-corporate-governance .tb-corporate-governance table td:nth-of-type(1) {
  min-width: 130px;
  text-align: center;
}
.page-ir-governance-corporate-governance .tb-corporate-governance table td:nth-of-type(2) {
  min-width: 74px;
}
.page-ir-governance-corporate-governance .tb-corporate-governance table td:nth-of-type(3) {
  min-width: 85px;
}
.page-ir-governance-corporate-governance .tb-corporate-governance table td:nth-of-type(4) {
  min-width: 100px;
}
.page-ir-governance-corporate-governance .tb-corporate-governance table td:nth-of-type(5) {
  min-width: 100px;
}
.page-ir-governance-corporate-governance .tb-corporate-governance table td:nth-of-type(6) {
  min-width: 100px;
}
.page-ir-governance-corporate-governance .tb-corporate-governance table td:nth-of-type(7) {
  min-width: 64px;
}
.page-ir-governance-corporate-governance .tb-corporate-governance table td:nth-of-type(8) {
  min-width: 115px;
  text-align: center;
}
.page-ir-governance-corporate-governance .tb-corporate-governance02 {
  margin: 0 0 47px 20px;
  overflow: auto;
  /*スクロールさせる*/
  width: calc(100% - 20px);
}
@media (min-width: 768px) {
  .page-ir-governance-corporate-governance .tb-corporate-governance02 {
    margin: 0 auto 47px;
    max-width: 920px;
    width: 100%;
  }
}
.page-ir-governance-corporate-governance .tb-corporate-governance02 table {
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll !important;
  width: 100%;
}
.page-ir-governance-corporate-governance .tb-corporate-governance02 table th {
  background: #1E4292;
  border: 1px solid #DCDDDD;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  height: 45px;
  line-height: 1.5;
  padding: 0 24px;
  text-align: center;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .page-ir-governance-corporate-governance .tb-corporate-governance02 table th {
    font-size: 16px;
    height: 66px;
    line-height: 1.3125;
    padding: 0;
  }
}
.page-ir-governance-corporate-governance .tb-corporate-governance02 table td {
  background: #fff;
  border: 1px solid #DCDDDD;
  font-size: 14px;
  font-weight: bold;
  line-height: 2.1428571429;
  min-height: 66px;
  padding: 16px;
  text-align: center;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .page-ir-governance-corporate-governance .tb-corporate-governance02 table td {
    font-size: 16px;
    line-height: 1.875;
  }
}
.page-ir-governance-corporate-governance .tb-corporate-governance02 table tr:not(:nth-of-type(1)) td:first-child {
  background: #EFF1F4;
  border-bottom: #fff;
  border-left: none;
  border-top: 1px solid #fff;
  min-width: 169px;
}
.page-ir-governance-corporate-governance .tb-corporate-governance02 table td:not(:nth-of-type(1)) {
  min-width: 750px;
  text-align: left;
}

/*--------------------------
	/ir/lib/report/
--------------------------*/
.page-ir-lib-report .area-view-files h2 {
  border-left: 9px solid #1e4292;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.32;
  margin-bottom: 40px;
  padding-left: 10px;
}
@media (min-width: 768px) {
  .page-ir-lib-report .area-view-files h2 {
    font-size: 30px;
    line-height: 1.3333333333;
    margin-bottom: 31px;
    padding-left: 15px;
  }
}
@media (min-width: 768px) {
  .page-ir-lib-report .area-view-files .list-business-report {
    border-top: 1px solid #E4E4E4;
    padding-top: 36px;
  }
}
@media (min-width: 768px) {
  .page-ir-lib-report .area-view-files .list-business-report li {
    align-items: center;
    display: flex;
  }
}
.page-ir-lib-report .area-view-files .list-business-report li + li {
  margin-top: 35px;
}
@media (min-width: 768px) {
  .page-ir-lib-report .area-view-files .list-business-report li + li {
    margin-top: 50px;
  }
}
.page-ir-lib-report .area-view-files .list-business-report li .cover {
  margin-bottom: 27px;
}
@media (min-width: 768px) {
  .page-ir-lib-report .area-view-files .list-business-report li .cover {
    margin: 0 40px 0 0;
    width: 251px;
  }
}
.page-ir-lib-report .area-view-files .list-business-report li p:last-child {
  position: relative;
}
@media (min-width: 768px) {
  .page-ir-lib-report .area-view-files .list-business-report li p:last-child {
    width: calc(100% - 291px);
  }
}
.page-ir-lib-report .area-view-files .list-business-report li p:last-child a {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.875;
}
@media (min-width: 768px) {
  .page-ir-lib-report .area-view-files .list-business-report li p:last-child a {
    font-size: 20px;
    line-height: 1.35;
  }
}

/*--------------------------
	/ir/lib/calendar/
--------------------------*/
.page-ir-lib-calendar .img-calendar {
  margin: 0 0 60px auto;
  overflow: auto;
  overflow-y: hidden !important;
  /*スクロールさせる*/
  width: calc(100% - 20px);
}
@media (min-width: 768px) {
  .page-ir-lib-calendar .img-calendar {
    margin-bottom: 81px;
  }
}
.page-ir-lib-calendar .img-calendar img {
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll !important;
  max-width: 920px;
  width: 920px;
}
@media (min-width: 768px) {
  .page-ir-lib-calendar .img-calendar img {
    max-width: 100%;
    width: 100%;
  }
}
.page-ir-lib-calendar .list-calendar {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-lib-calendar .list-calendar {
    padding: 0;
    max-width: 920px;
    margin: 0 auto;
  }
}
.page-ir-lib-calendar .list-calendar h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .page-ir-lib-calendar .list-calendar h2 {
    border-bottom: 1px solid #E4E4E4;
    font-size: 32px;
    line-height: 1.34375;
    margin-bottom: 33px;
    padding-bottom: 32px;
  }
}
.page-ir-lib-calendar .list-calendar ul {
  margin-bottom: 46px;
}
@media (min-width: 768px) {
  .page-ir-lib-calendar .list-calendar ul {
    margin-bottom: 72px;
  }
}
@media (min-width: 768px) {
  .page-ir-lib-calendar .list-calendar ul li {
    display: flex;
    flex-wrap: wrap;
  }
}
.page-ir-lib-calendar .list-calendar ul li + li {
  margin-top: 22px;
}
@media (min-width: 768px) {
  .page-ir-lib-calendar .list-calendar ul li + li {
    margin-top: 28px;
  }
}
.page-ir-lib-calendar .list-calendar ul li p:first-child {
  border-bottom: 1px solid #000;
  color: #9D9D9D;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.7142857143;
  margin-bottom: 8px;
  padding-bottom: 9px;
}
@media (min-width: 768px) {
  .page-ir-lib-calendar .list-calendar ul li p:first-child {
    font-size: 17px;
    line-height: 1.7058823529;
    margin-bottom: 0;
    padding-bottom: 29px;
    width: 310px;
  }
}
.page-ir-lib-calendar .list-calendar ul li p:last-child {
  border-bottom: 1px solid #E4E4E4;
  font-size: 14px;
  line-height: 1.7142857143;
  padding-bottom: 9px;
}
@media (min-width: 768px) {
  .page-ir-lib-calendar .list-calendar ul li p:last-child {
    font-size: 17px;
    line-height: 1.7058823529;
    padding: 0 0 29px 10px;
    width: calc(100% - 310px);
  }
}

/*--------------------------
	/ir/stock_price/
--------------------------*/
.page-ir-stock-price .area-chart {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-stock-price .area-chart {
    padding: 0;
  }
}
.page-ir-stock-price .area-chart .ir-chart {
  height: 870px;
  margin-bottom: 33px;
  width: 100%;
}
@media (min-width: 768px) {
  .page-ir-stock-price .area-chart .ir-chart {
    height: 850px;
    margin-bottom: 43px;
  }
}

/*--------------------------
	/ir/management/midterm_plan_presentations/
--------------------------*/
.page-ir-management-midterm-plan-presentations .nav-plan {
  margin-bottom: 37px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .nav-plan {
    margin-bottom: 78px;
  }
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .nav-plan > ul {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: -30px;
  }
}
.page-ir-management-midterm-plan-presentations .nav-plan > ul > li {
  border: 2px solid #1E4292;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .nav-plan > ul > li {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    width: calc(50% - 15px);
  }
}
.page-ir-management-midterm-plan-presentations .nav-plan > ul > li + li {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .nav-plan > ul > li + li {
    margin-top: 30px;
  }
}
.page-ir-management-midterm-plan-presentations .nav-plan > ul > li a {
  align-items: center;
  background: #1E4292 url(../images/common/icon_arrow_bottom.svg) no-repeat right 10px center;
  background-size: 15px 9px;
  color: #fff;
  display: flex;
  min-height: 50px;
  padding: 0 30px 0 10px;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .nav-plan > ul > li a {
    min-height: unset;
  }
}
.page-ir-management-midterm-plan-presentations .nav-plan > ul > li a span {
  font-family: "Manrope", sans-serif;
  font-size: 50px;
  font-weight: bold;
  line-height: 1.34;
  margin-right: 18px;
}
.page-ir-management-midterm-plan-presentations .nav-plan > ul > li a p {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
}
.page-ir-management-midterm-plan-presentations .nav-plan > ul > li > ul {
  padding: 15px 10px;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .nav-plan > ul > li > ul {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    padding: 15px 25px;
  }
}
.page-ir-management-midterm-plan-presentations .nav-plan > ul > li > ul > li {
  font-size: 14px;
  line-height: 1.7857142857;
  padding-left: 1.15em;
  text-indent: -1.15em;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .nav-plan > ul > li > ul > li {
    font-size: 16px;
    line-height: 1.8125;
  }
}
.page-ir-management-midterm-plan-presentations .area-goal-graph {
  margin-bottom: 80px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .area-goal-graph {
    padding: 0;
    display: flex;
    gap: 0 30px;
  }
}
.page-ir-management-midterm-plan-presentations .area-goal-graph figure + figure {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .area-goal-graph figure + figure {
    margin-top: 0;
  }
}
.page-ir-management-midterm-plan-presentations .area-goal-graph figure figcaption {
  border-left: 9px solid #1e4292;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.32;
  margin: 0 0 28px 0;
  padding-left: 10px;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .area-goal-graph figure figcaption {
    border-left: 9px solid #1e4292;
    font-size: 30px;
    line-height: 1.3333333333;
    margin: 0 auto 39px;
    max-width: 920px;
    padding-left: 15px;
  }
}
.page-ir-management-midterm-plan-presentations .area-goal-graph figure p {
  border-top: 1px solid #E4E4E4;
  padding-top: 29px;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .area-goal-graph figure p {
    padding-top: 38px;
  }
}
.page-ir-management-midterm-plan-presentations h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
  margin-bottom: 41px;
  padding: 0 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations h2 {
    font-size: 32px;
    line-height: 1.34375;
    margin-bottom: 57px;
  }
}
.page-ir-management-midterm-plan-presentations h2 span {
  color: #BF2812;
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3076923077;
  padding-top: 7px;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations h2 span {
    font-size: 20px;
    line-height: 1.35;
    padding-top: 15px;
  }
}
.page-ir-management-midterm-plan-presentations .nav-action {
  margin-bottom: 50px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .nav-action {
    margin-bottom: 90px;
  }
}
.page-ir-management-midterm-plan-presentations .nav-action ul {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: -10px;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .nav-action ul {
    flex-wrap: nowrap;
  }
}
.page-ir-management-midterm-plan-presentations .nav-action ul li {
  align-items: stretch;
  display: flex;
  margin-top: 10px;
  width: calc(50% - 5px);
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .nav-action ul li {
    width: calc((100% - 45px) / 4);
  }
}
.page-ir-management-midterm-plan-presentations .nav-action ul li a {
  align-items: center;
  background: #1E4292 url(../images/common/icon_arrow_bottom02.svg) no-repeat center bottom 7px;
  background-size: 7px 4px;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: bold;
  justify-content: center;
  line-height: 1.3571428571;
  padding: 4px 13px 20px;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .nav-action ul li a {
    background: #1E4292 url(../images/common/icon_arrow_bottom02.svg) no-repeat center bottom 13px;
    background-size: 12px 5px;
    font-size: 20px;
    line-height: 1.35;
    padding: 8px 15px 36px;
  }
}
.page-ir-management-midterm-plan-presentations .nav-action ul li a span {
  display: inlinb-block;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  line-height: 1.4;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .nav-action ul li a span {
    font-size: 16px;
    line-height: 1.3125;
    margin-bottom: 6px;
  }
}
.page-ir-management-midterm-plan-presentations h3 {
  align-items: center;
  background: #F4F9FF;
  display: flex;
  flex-direction: column;
  font-size: 20px;
  font-weight: bold;
  justify-content: center;
  line-height: 1.35;
  margin-bottom: 40px;
  padding: 6px 0 13px;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations h3 {
    font-size: 30px;
    line-height: 1.3333333333;
    margin-bottom: 77px;
    padding: 21px 0 33px;
  }
}
.page-ir-management-midterm-plan-presentations h3 span {
  border-bottom: 1px solid #1E4292;
  color: #1E4292;
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.325;
  margin-bottom: 11px;
  padding-bottom: 10px;
  text-align: center;
  width: 132px;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations h3 span {
    font-size: 60px;
    line-height: 1.3333333333;
    margin-bottom: 15px;
    padding-bottom: 12px;
    width: 191px;
  }
}
.page-ir-management-midterm-plan-presentations .action-inner {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .action-inner {
    margin: 0 auto 110px;
    max-width: 1206px;
  }
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat01 {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
}
.page-ir-management-midterm-plan-presentations .action-inner.pat01 > p {
  margin-bottom: 38px;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat01 > p {
    margin: 0 52px 0 0;
    width: 398px;
  }
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat01 ul {
    width: calc(100% - 398px - 52px);
  }
}
.page-ir-management-midterm-plan-presentations .action-inner.pat01 ul li {
  padding-bottom: 53px;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat01 ul li {
    border-bottom: 1px solid #C4C4C4;
    padding-bottom: 23px;
  }
}
.page-ir-management-midterm-plan-presentations .action-inner.pat01 ul li + li {
  border-top: 1px solid #C4C4C4;
  padding-top: 23px;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat01 ul li + li {
    border-top: none;
    margin-top: 25px;
    padding-top: 0;
  }
}
.page-ir-management-midterm-plan-presentations .action-inner.pat01 ul li h4 {
  align-items: top;
  display: flex;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.375;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat01 ul li h4 {
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 12px;
  }
}
.page-ir-management-midterm-plan-presentations .action-inner.pat01 ul li h4 span {
  align-items: center;
  background: #1E4292;
  color: #fff;
  display: inline-flex;
  font-size: 11px;
  justify-content: center;
  height: 19px;
  line-height: 1.2727272727;
  margin-right: 5px;
  transform: translateY(1px);
  width: 19px;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat01 ul li h4 span {
    font-size: 12px;
    height: 23px;
    line-height: 1.3333333333;
    margin-right: 6px;
    width: 23px;
  }
}
.page-ir-management-midterm-plan-presentations .action-inner.pat01 ul li p {
  font-size: 14px;
  line-height: 2;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat01 ul li p {
    font-size: 16px;
    line-height: 2;
  }
}
.page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 {
  margin-bottom: 55px;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 {
    display: block;
    margin-bottom: 55px;
  }
}
.page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01:nth-of-type(even) > p {
  order: 1;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01:nth-of-type(even) > p {
    margin: 0 0 0 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01:nth-of-type(even) > p {
    margin: 0 0 40px 0;
  }
}
.page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 > p {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 > p {
    margin: 0 40px 0 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 > p {
    margin: 0 0 40px;
  }
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 .txt-contents {
    width: calc(100% - 496px - 40px);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 .txt-contents {
    width: 100%;
  }
}
.page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 .txt-contents h4 {
  align-items: top;
  display: flex;
  font-size: 19px;
  font-weight: bold;
  line-height: 1.4210526316;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 .txt-contents h4 {
    font-size: 28px;
    line-height: 1.2857142857;
    margin-bottom: 30px;
  }
}
.page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 .txt-contents h4 > span:first-child {
  align-items: center;
  background: #1E4292;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  justify-content: center;
  height: 24px;
  line-height: 1;
  margin-right: 5px;
  transform: translateY(2px);
  width: 24px;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 .txt-contents h4 > span:first-child {
    font-size: 12px;
    height: 29px;
    line-height: 1.3333333333;
    margin-right: 6px;
    width: 29px;
  }
}
.page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 .txt-contents h4 .ttl {
  width: calc(100% - 24px - 5px);
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 .txt-contents h4 .ttl {
    width: calc(100% - 29px - 6px);
  }
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 .txt-contents h4 .note-icon {
    font-size: 16px;
  }
}
.page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 .txt-contents .list li {
  display: flex;
  font-size: 14px;
  line-height: 1.4285714286;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 .txt-contents .list li {
    font-size: 16px;
    line-height: 1.625;
  }
}
.page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 .txt-contents .list li + li {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 .txt-contents .list li + li {
    margin-top: 17px;
  }
}
.page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 .txt-contents .list li span {
  color: #1E4292;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
  margin-right: 6px;
  vertical-align: top;
}
.page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 .txt-contents .btns {
  margin: 15px 0 0;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 .txt-contents .btns {
    display: flex;
    margin: 26px 0 0;
  }
}
.page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 .txt-contents .btns li + li {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 .txt-contents .btns li + li {
    margin: 0 0 0 24px;
  }
}
.page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 .txt-contents .btns li.btn-pamphlet a {
  padding-left: 48px;
  position: relative;
}
.page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 .txt-contents .btns li.btn-pamphlet a::before {
  background: url(../images/common/icon_pdf02.svg) no-repeat 0 0;
  background-size: 20px 20px;
  content: "";
  height: 20px;
  left: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}
.page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 .txt-contents .btns li.btn-movie a {
  padding-left: 53px;
  position: relative;
}
.page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 .txt-contents .btns li.btn-movie a::before {
  background: url(../images/common/icon_movie.svg) no-repeat 0 0;
  background-size: 25px 20px;
  content: "";
  height: 20px;
  left: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}
.page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 .txt-contents .note {
  color: #7B7B7B;
  font-size: 9px;
  line-height: 1.6666666667;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 .txt-contents .note {
    font-size: 12px;
    line-height: 1.5;
    padding-top: 24px;
  }
}
.page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 .txt-contents .btn-sustainability {
  margin-top: 25px;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 .txt-contents .btn-sustainability {
    margin-top: 36px;
  }
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 .txt-contents .btn-sustainability a {
    width: 315px !important;
  }
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01 .txt-contents .btn-action a {
    width: 315px !important;
  }
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01.pat01 > p {
    padding-right: 33px;
  }
}
@media (min-width: 768px) and (max-width: 1205px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01.pat01 > p {
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01.pat01 .txt-contents {
    width: calc(100% - 358px - 33px - 121px);
  }
}
@media (min-width: 992px) and (max-width: 1205px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01.pat01 .txt-contents {
    width: calc(100% - 358px - 40px);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01.pat01 .txt-contents {
    width: 100%;
  }
}
@media (min-width: 1206px) {
  .page-ir-management-midterm-plan-presentations .action-inner.pat02 .action-box01.pat01 .txt-contents {
    width: calc(100% - 358px - 110px);
  }
}
.page-ir-management-midterm-plan-presentations .f-vision {
  align-items: center;
  background: url(../images/ir/management/midterm_plan_presentations/bg_f_vision_sp.jpg) no-repeat center 0;
  background-size: cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 405px;
  justify-content: center;
}
@media (min-width: 768px) {
  .page-ir-management-midterm-plan-presentations .f-vision {
    background: url(../images/ir/management/midterm_plan_presentations/bg_f_vision.jpg) no-repeat center 0;
    background-size: cover;
    height: 405px;
  }
}
.page-ir-management-midterm-plan-presentations .f-vision p:nth-of-type(1) {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3571428571;
}
.page-ir-management-midterm-plan-presentations .f-vision p:nth-of-type(2) {
  border-bottom: 1px solid #fff;
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.021em;
  padding: 0 10px;
}
.page-ir-management-midterm-plan-presentations .f-vision p:nth-of-type(3) {
  font-family: "Manrope", sans-serif;
  font-size: 99px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}
.page-ir-management-midterm-plan-presentations .f-vision a {
  width: 225px;
}

/*--------------------------
	/ir/management/vision/
--------------------------*/
.page-ir-management-vision {
  overflow-x: hidden;
  position: relative;
}
.page-ir-management-vision .breadcrumbs-ttl-wrapper {
  margin-top: 50px;
}
.page-ir-management-vision .breadcrumbs-ttl-wrapper .breadcrumbs {
  padding: 0;
}
.page-ir-management-vision .top-mv {
  background: url(../images/ir/management/vision/ir_management_vision_mv_sp.jpg) no-repeat center 0;
  background-size: cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 4.6153846154vw;
  font-weight: bold;
  height: 390px;
  justify-content: flex-end;
  letter-spacing: -0.05em;
  line-height: 1.3513513514;
  margin: 0 0 28px 0;
  padding: 0 20px 38px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .top-mv {
    background: url(../images/ir/management/vision/ir_management_vision_mv.jpg) no-repeat center 0;
    background-size: cover;
    font-size: 35px;
    height: 542px;
    letter-spacing: 0;
    line-height: 1.2857142857;
    margin: 0 0 0 auto;
    padding: 0 0 50px 50px;
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-ir-management-vision .top-mv {
    font-size: 3.3333333333vw;
  }
}
.page-ir-management-vision .top-mv::before {
  background: #fff;
  content: "";
  display: block;
  height: 3px;
  margin-bottom: 15px;
  width: 38px;
}
.page-ir-management-vision .top-mv span {
  display: block;
  margin-bottom: 11px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .top-mv span {
    margin-bottom: 0;
  }
}
.page-ir-management-vision .top-mv span:first-child {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.3333333333;
}
@media (min-width: 768px) {
  .page-ir-management-vision .top-mv span:first-child {
    font-size: 20px;
    line-height: 1.35;
    margin-bottom: 11px;
  }
}
.page-ir-management-vision .top-mv span:last-child {
  font-size: 14px;
  line-height: 1.2857142857;
}
@media (min-width: 768px) {
  .page-ir-management-vision .top-mv span:last-child {
    font-size: 17px;
    line-height: 1.2941176471;
    margin-top: 25px;
  }
}
.page-ir-management-vision .back-txt-vision {
  margin: 0 auto;
  position: relative;
  width: 390px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .back-txt-vision {
    width: 1166px;
  }
}
.page-ir-management-vision .back-txt-vision span {
  color: #EFF1F4;
  font-family: "Manrope", sans-serif;
  font-size: 100px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.33;
  position: absolute;
  right: -115px;
  top: -5px;
  white-space: nowrap;
  z-index: -1;
}
@media (min-width: 768px) {
  .page-ir-management-vision .back-txt-vision span {
    font-size: 250px;
    line-height: 1.332;
    right: -325px;
    top: -105px;
  }
}
.page-ir-management-vision .main-container {
  padding: 0 20px;
  position: relative;
}
@media (min-width: 768px) {
  .page-ir-management-vision .main-container {
    padding: 0 20px;
    position: relative;
  }
}
.page-ir-management-vision .main-container .breadcrumbs {
  margin-bottom: 76px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .main-container .breadcrumbs {
    margin-bottom: 0;
  }
}
.page-ir-management-vision .main-container h1::after {
  content: "採用情報";
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3333333333;
  order: 1;
  position: absolute;
  right: 20px;
  top: 82px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .main-container h1::after {
    font-size: 46px;
    line-height: 1.347826087;
    right: 0;
    top: 225px;
  }
}
@media (min-width: 768px) and (max-width: 1285px) {
  .page-ir-management-vision .main-container h1::after {
    margin-right: 10px;
  }
}
.page-ir-management-vision .main-container h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
  margin-bottom: 41px;
  padding: 0 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-ir-management-vision .main-container h2 {
    font-size: 32px;
    line-height: 1.34375;
    margin-bottom: 57px;
    padding: 0 20px;
  }
}
.page-ir-management-vision .main-container h2 span {
  color: #BF2812;
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3076923077;
  padding-top: 7px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .main-container h2 span {
    font-size: 20px;
    line-height: 1.35;
    padding-top: 15px;
  }
}
@media (min-width: 768px) {
  .page-ir-management-vision .main-container h2.ttl-ir-management-vision-s01 {
    padding-top: 147px;
  }
}
.page-ir-management-vision .main-container .txt-ir-management-vision-s01 {
  font-size: 14px;
  line-height: 1.7142857143;
  margin-bottom: 45px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-ir-management-vision .main-container .txt-ir-management-vision-s01 {
    font-size: 18px;
    line-height: 1.6666666667;
    margin-bottom: 74px;
  }
}
.page-ir-management-vision .main-container .area-goal-graph {
  margin-bottom: 76px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .main-container .area-goal-graph {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto 140px;
  }
}
@media (min-width: 768px) {
  .page-ir-management-vision .main-container .area-goal-graph figure {
    width: calc((100% - 60px) / 2);
  }
}
.page-ir-management-vision .main-container .area-goal-graph figure + figure {
  margin-top: 47px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .main-container .area-goal-graph figure + figure {
    margin-top: 0;
  }
}
.page-ir-management-vision .main-container .area-goal-graph figure figcaption {
  border-left: 9px solid #1e4292;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
  margin: 0 0 28px 0;
  padding-left: 10px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .main-container .area-goal-graph figure figcaption {
    border-left: 9px solid #1e4292;
    font-size: 28px;
    line-height: 1.3214285714;
    margin: 0 auto 39px;
    padding-left: 15px;
  }
}
.page-ir-management-vision .main-container .area-goal-graph figure p {
  border-top: 1px solid #E4E4E4;
  padding-top: 29px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .main-container .area-goal-graph figure p {
    padding-top: 38px;
    max-width: 550px;
  }
}
.page-ir-management-vision .img-ir-management-vision-s01 {
  margin-bottom: 49px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .img-ir-management-vision-s01 {
    margin: 0 auto 101px;
    max-width: 1256px;
    padding: 0 20px;
  }
}
.page-ir-management-vision .nav-action {
  margin-bottom: 43px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .nav-action {
    margin-bottom: 68px;
  }
}
.page-ir-management-vision .nav-action ul {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: -10px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .nav-action ul {
    flex-wrap: nowrap;
  }
}
.page-ir-management-vision .nav-action ul li {
  align-items: stretch;
  display: flex;
  margin-top: 10px;
  width: calc(50% - 5px);
}
@media (min-width: 768px) {
  .page-ir-management-vision .nav-action ul li {
    width: calc((100% - 45px) / 4);
  }
}
.page-ir-management-vision .nav-action ul li a {
  align-items: center;
  background: #1E4292 url(../images/common/icon_arrow_bottom02.svg) no-repeat center bottom 7px;
  background-size: 7px 4px;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: bold;
  justify-content: center;
  line-height: 1.3571428571;
  padding: 4px 13px 20px;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  .page-ir-management-vision .nav-action ul li a {
    background: #1E4292 url(../images/common/icon_arrow_bottom02.svg) no-repeat center bottom 13px;
    background-size: 12px 5px;
    font-size: 20px;
    line-height: 1.35;
    padding: 8px 15px 36px;
  }
}
.page-ir-management-vision .nav-action ul li a span {
  display: inlinb-block;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  line-height: 1.4;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .nav-action ul li a span {
    font-size: 16px;
    line-height: 1.3125;
    margin-bottom: 6px;
  }
}
.page-ir-management-vision .area-ttl {
  margin-bottom: 37px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .area-ttl {
    margin-bottom: 61px;
    padding: 0;
  }
}
.page-ir-management-vision .area-ttl h3 {
  font-size: 25px;
  font-weight: bold;
  line-height: 1.32;
  margin-bottom: 19px;
  padding-top: 22.4226804124vw;
}
@media (min-width: 768px) {
  .page-ir-management-vision .area-ttl h3 {
    font-size: 34px;
    line-height: 1.3529411765;
    margin: 0 auto 15px;
    max-width: 1206px;
    padding: 142px 20px 0;
  }
}
.page-ir-management-vision .area-ttl h3 span {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  line-height: 1.3333333333;
  margin-right: 9px;
  vertical-align: 12px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .area-ttl h3 span {
    font-size: 16px;
    line-height: 1.3125;
    margin-right: 7px;
    vertical-align: 15px;
  }
}
.page-ir-management-vision .area-ttl h3 + p {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.7142857143;
}
@media (min-width: 768px) {
  .page-ir-management-vision .area-ttl h3 + p {
    font-size: 18px;
    line-height: 1.6666666667;
    margin: 0 auto;
    max-width: 1206px;
    padding: 0 20px;
  }
}
@media (min-width: 768px) {
  .page-ir-management-vision .area-ttl h3 + p + p {
    font-size: 12px;
    line-height: 1.6666666667;
    margin: 0 auto;
    max-width: 1206px;
    padding: 0 20px;
  }
}
.page-ir-management-vision .area-ttl.action01 {
  background: url(../images/ir/management/vision/bg_action01_sp.jpg) no-repeat center 0;
  background-size: cover;
  color: #fff;
  height: 296px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .area-ttl.action01 {
    background: url(../images/ir/management/vision/bg_action01.jpg) no-repeat center 0;
    background-size: cover;
    height: 325px;
  }
}
.page-ir-management-vision .area-ttl.action02 {
  background: url(../images/ir/management/vision/bg_action02_sp.jpg) no-repeat center 0;
  background-size: cover;
  color: #fff;
  height: 296px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .area-ttl.action02 {
    background: url(../images/ir/management/vision/bg_action02.jpg) no-repeat center 0;
    background-size: cover;
    height: 325px;
  }
}
.page-ir-management-vision .area-ttl.action03 {
  background: url(../images/ir/management/vision/bg_action03_sp.jpg) no-repeat center 0;
  background-size: cover;
  color: #fff;
  height: 296px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .area-ttl.action03 {
    background: url(../images/ir/management/vision/bg_action03.jpg) no-repeat center 0;
    background-size: cover;
    height: 369px;
  }
}
@media (max-width: 767px) {
  .page-ir-management-vision .area-ttl.action03 {
    margin-bottom: 20px;
  }
}
.page-ir-management-vision .area-ttl.action03 h3 {
  padding-top: 30.9278350515vw;
}
@media (min-width: 768px) {
  .page-ir-management-vision .area-ttl.action03 h3 {
    padding: 122px 20px 0;
  }
}
@media (min-width: 768px) {
  .page-ir-management-vision .area-ttl.action03 h3 + p {
    margin-bottom: 18px;
  }
}
.page-ir-management-vision .area-ttl.action03 h3 + p + p {
  display: none;
}
@media (min-width: 768px) {
  .page-ir-management-vision .area-ttl.action03 h3 + p + p {
    display: block;
  }
}
.page-ir-management-vision .area-ttl.action04 {
  background: url(../images/ir/management/vision/bg_action04_sp.jpg) no-repeat center 0;
  background-size: cover;
  color: #fff;
  height: 296px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .area-ttl.action04 {
    background: url(../images/ir/management/vision/bg_action04.jpg) no-repeat center 0;
    background-size: cover;
    height: 369px;
  }
}
@media (max-width: 767px) {
  .page-ir-management-vision .area-ttl.action04 {
    margin-bottom: 20px;
  }
}
.page-ir-management-vision .area-ttl.action04 h3 {
  padding-top: 17.7835051546vw;
}
@media (min-width: 768px) {
  .page-ir-management-vision .area-ttl.action04 h3 {
    padding: 138px 20px 0;
  }
}
@media (min-width: 768px) {
  .page-ir-management-vision .area-ttl.action04 h3 + p {
    margin-bottom: 18px;
  }
}
.page-ir-management-vision .area-ttl.action04 h3 + p + p {
  display: none;
}
@media (min-width: 768px) {
  .page-ir-management-vision .area-ttl.action04 h3 + p + p {
    display: block;
  }
}
.page-ir-management-vision .action-inner {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner {
    margin: 0 auto;
    max-width: 1206px;
    padding: 0 20px;
  }
}
.page-ir-management-vision .action-inner h3 {
  border-left: 9px solid #1e4292;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
  margin: 0 0 28px;
  padding-left: 10px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner h3 {
    border-left: 9px solid #1e4292;
    font-size: 30px;
    line-height: 1.3333333333;
    margin: 0 auto 39px;
    padding-left: 15px;
  }
}
.page-ir-management-vision .action-inner .img-ir-management-vision-s02 {
  margin-bottom: 36px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner .img-ir-management-vision-s02 {
    margin: 0 auto 47px;
    max-width: 841px;
  }
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner .txt-ir-management-vision-s02 {
    font-size: 16px;
    line-height: 1.5;
  }
}
.page-ir-management-vision .action-inner.pat01 .list {
  margin-bottom: 62px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner.pat01 .list {
    align-items: top;
    display: flex;
    justify-content: space-between;
    margin-bottom: 105px;
  }
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner.pat01 .list li {
    padding-bottom: 20px;
    width: calc((100% - 98px) / 3);
  }
}
.page-ir-management-vision .action-inner.pat01 .list li + li {
  border-top: 1px solid #C4C4C4;
  margin-top: 20px;
  padding-top: 23px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner.pat01 .list li + li {
    border-left: 1px solid #C4C4C4;
    border-top: none;
    margin-top: 0;
    padding: 0 0 0 24px;
  }
}
.page-ir-management-vision .action-inner.pat01 .list li h4 {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.625;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner.pat01 .list li h4 {
    align-items: top;
    display: flex;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 21px;
  }
}
.page-ir-management-vision .action-inner.pat01 .list li h4 span {
  align-items: center;
  background: #1E4292;
  color: #fff;
  display: inline-flex;
  font-size: 11px;
  justify-content: center;
  height: 19px;
  line-height: 1;
  margin-right: 5px;
  transform: translateY(-1px);
  width: 19px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner.pat01 .list li h4 span {
    font-size: 12px;
    height: 23px;
    line-height: 1.3333333333;
    margin-right: 6px;
    transform: translateY(3px);
    width: 23px;
  }
}
.page-ir-management-vision .action-inner.pat01 .list li p {
  font-size: 14px;
  line-height: 1.7142857143;
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner.pat01 .list li p {
    font-size: 16px;
    line-height: 1.625;
  }
}
.page-ir-management-vision .action-inner.pat02 .action-box01 {
  margin-bottom: 55px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01 {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01 {
    display: block;
    margin-bottom: 55px;
  }
}
.page-ir-management-vision .action-inner.pat02 .action-box01:nth-of-type(even) > p {
  order: 1;
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01:nth-of-type(even) > p {
    margin: 0 0 0 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01:nth-of-type(even) > p {
    margin: 0 0 40px 0;
  }
}
.page-ir-management-vision .action-inner.pat02 .action-box01 > p {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01 > p {
    margin: 0 40px 0 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01 > p {
    margin: 0 0 40px;
  }
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01 .txt-contents {
    width: calc(100% - 496px - 40px);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01 .txt-contents {
    width: 100%;
  }
}
.page-ir-management-vision .action-inner.pat02 .action-box01 .txt-contents h4 {
  align-items: top;
  display: flex;
  font-size: 19px;
  font-weight: bold;
  line-height: 1.4210526316;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01 .txt-contents h4 {
    font-size: 28px;
    line-height: 1.2857142857;
    margin-bottom: 30px;
  }
}
.page-ir-management-vision .action-inner.pat02 .action-box01 .txt-contents h4 > span:first-child {
  align-items: center;
  background: #1E4292;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  justify-content: center;
  height: 24px;
  line-height: 1;
  margin-right: 5px;
  transform: translateY(2px);
  width: 24px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01 .txt-contents h4 > span:first-child {
    font-size: 12px;
    height: 29px;
    line-height: 1.3333333333;
    margin-right: 6px;
    transform: translateY(3px);
    width: 29px;
  }
}
.page-ir-management-vision .action-inner.pat02 .action-box01 .txt-contents h4 .ttl {
  width: calc(100% - 24px - 5px);
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01 .txt-contents h4 .ttl {
    width: calc(100% - 29px - 6px);
  }
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01 .txt-contents h4 .note-icon {
    font-size: 16px;
  }
}
.page-ir-management-vision .action-inner.pat02 .action-box01 .txt-contents .list li {
  display: flex;
  font-size: 14px;
  line-height: 1.4285714286;
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01 .txt-contents .list li {
    font-size: 16px;
    line-height: 1.625;
  }
}
.page-ir-management-vision .action-inner.pat02 .action-box01 .txt-contents .list li + li {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01 .txt-contents .list li + li {
    margin-top: 17px;
  }
}
.page-ir-management-vision .action-inner.pat02 .action-box01 .txt-contents .list li span {
  color: #1E4292;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
  margin-right: 6px;
  vertical-align: top;
}
.page-ir-management-vision .action-inner.pat02 .action-box01 .txt-contents .btns {
  margin: 15px 0 0;
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01 .txt-contents .btns {
    display: flex;
    margin: 26px 0 0;
  }
}
.page-ir-management-vision .action-inner.pat02 .action-box01 .txt-contents .btns li + li {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01 .txt-contents .btns li + li {
    margin: 0 0 0 24px;
  }
}
.page-ir-management-vision .action-inner.pat02 .action-box01 .txt-contents .btns li.btn-pamphlet a {
  padding-left: 48px;
  position: relative;
}
.page-ir-management-vision .action-inner.pat02 .action-box01 .txt-contents .btns li.btn-pamphlet a::before {
  background: url(../images/common/icon_pdf02.svg) no-repeat 0 0;
  background-size: 20px 20px;
  content: "";
  height: 20px;
  left: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}
.page-ir-management-vision .action-inner.pat02 .action-box01 .txt-contents .btns li.btn-movie a {
  padding-left: 53px;
  position: relative;
}
.page-ir-management-vision .action-inner.pat02 .action-box01 .txt-contents .btns li.btn-movie a::before {
  background: url(../images/common/icon_movie.svg) no-repeat 0 0;
  background-size: 25px 20px;
  content: "";
  height: 20px;
  left: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}
.page-ir-management-vision .action-inner.pat02 .action-box01 .txt-contents .note {
  color: #7B7B7B;
  font-size: 9px;
  line-height: 1.6666666667;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01 .txt-contents .note {
    font-size: 12px;
    line-height: 1.5;
    padding-top: 24px;
  }
}
.page-ir-management-vision .action-inner.pat02 .action-box01 .txt-contents .btn-sustainability {
  margin-top: 25px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01 .txt-contents .btn-sustainability {
    margin-top: 36px;
  }
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01 .txt-contents .btn-sustainability a {
    width: 315px !important;
  }
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01.pat01 > p {
    padding-left: 69px;
  }
}
@media (min-width: 768px) and (max-width: 1205px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01.pat01 > p {
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01.pat01 .txt-contents {
    width: calc(100% - 358px - 33px - 121px);
  }
}
@media (min-width: 992px) and (max-width: 1205px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01.pat01 .txt-contents {
    width: calc(100% - 368px - 40px);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01.pat01 .txt-contents {
    width: 100%;
  }
}
@media (min-width: 1206px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01.pat01 .txt-contents {
    width: calc(100% - 368px - 100px);
  }
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01.pat02 > p {
    padding-right: 39px;
  }
}
@media (min-width: 768px) and (max-width: 1205px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01.pat02 > p {
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01.pat02 .txt-contents {
    width: calc(100% - 400px - 33px - 97px);
  }
}
@media (min-width: 992px) and (max-width: 1205px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01.pat02 .txt-contents {
    width: calc(100% - 400px - 40px);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01.pat02 .txt-contents {
    width: 100%;
  }
}
@media (min-width: 1206px) {
  .page-ir-management-vision .action-inner.pat02 .action-box01.pat02 .txt-contents {
    width: calc(100% - 400px - 97px);
  }
}
.page-ir-management-vision .action-inner.pat03 h4 {
  align-items: top;
  display: flex;
  font-size: 19px;
  font-weight: bold;
  line-height: 1.4210526316;
  margin-bottom: 23px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner.pat03 h4 {
    font-size: 30px;
    line-height: 1.3333333333;
    margin-bottom: 42px;
  }
}
.page-ir-management-vision .action-inner.pat03 h4 > span:first-child {
  align-items: center;
  background: #1E4292;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  justify-content: center;
  height: 24px;
  line-height: 1;
  margin-right: 5px;
  transform: translateY(2px);
  width: 24px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner.pat03 h4 > span:first-child {
    font-size: 12px;
    height: 29px;
    line-height: 1.3333333333;
    margin-right: 6px;
    transform: translateY(3px);
    width: 29px;
  }
}
.page-ir-management-vision .action-inner.pat03 h4 .ttl {
  width: calc(100% - 24px - 5px);
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner.pat03 h4 .ttl {
    width: calc(100% - 29px - 6px);
  }
}
.page-ir-management-vision .action-inner.pat03 h4 + p {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner.pat03 h4 + p {
    margin: 0 auto 80px;
    max-width: 759px;
  }
}
.page-ir-management-vision .action-inner .btn-sustainability a {
  margin: -30px auto 80px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .action-inner .btn-sustainability a {
    margin: 0 auto 65px;
    width: 315px;
  }
}
.page-ir-management-vision .txt-ir-management-vision-s03 {
  font-size: 9px;
  line-height: 1.6666666667;
  margin-bottom: 37px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-management-vision .txt-ir-management-vision-s03 {
    display: none;
  }
}
.page-ir-management-vision .f-growth-plan {
  align-items: center;
  background: url(../images/ir/management/vision/bg_f_midterm_plan_presentations_sp.jpg) no-repeat center 0;
  background-size: cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 404px;
  justify-content: center;
}
@media (min-width: 768px) {
  .page-ir-management-vision .f-growth-plan {
    background: url(../images/ir/management/vision/bg_f_midterm_plan_presentations.jpg) no-repeat center 0;
    background-size: cover;
    height: 404px;
  }
}
.page-ir-management-vision .f-growth-plan p:nth-of-type(1) {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3571428571;
}
.page-ir-management-vision .f-growth-plan p:nth-of-type(2) {
  border-bottom: 1px solid #fff;
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.021em;
  padding: 0 10px;
}
.page-ir-management-vision .f-growth-plan p:nth-of-type(3) {
  font-family: "Manrope", sans-serif;
  font-size: 99px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}
.page-ir-management-vision .f-growth-plan a {
  width: 225px;
}

/*----------------------------------
	/ir/to_individual_investors
----------------------------------*/
.page-ir-to-individual-investors .common-hd2 {
  text-align: center;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .page-ir-to-individual-investors .common-hd2 {
    margin-bottom: 35px;
  }
}
.page-ir-to-individual-investors .common-hd2 .ja {
  display: block;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}
@media (min-width: 768px) {
  .page-ir-to-individual-investors .common-hd2 .ja {
    margin-bottom: 18px;
    font-size: 30px;
  }
}
.page-ir-to-individual-investors .common-hd2 .en {
  display: block;
  color: #BF2812;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}
@media (min-width: 768px) {
  .page-ir-to-individual-investors .common-hd2 .en {
    font-size: 15px;
  }
}
.page-ir-to-individual-investors .shareholders {
  margin-top: 60px;
}
@media (min-width: 768px) {
  .page-ir-to-individual-investors .shareholders {
    margin-top: 75px;
  }
}
.page-ir-to-individual-investors .shareholders-top {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin: 24px 20px 0;
  gap: 20px;
}
@media (min-width: 768px) {
  .page-ir-to-individual-investors .shareholders-top {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
    margin: 35px 0 0;
  }
}
.page-ir-to-individual-investors .shareholders-top .shareholders-top-item {
  width: auto;
}
@media (min-width: 768px) {
  .page-ir-to-individual-investors .shareholders-top .shareholders-top-item {
    width: calc((100% - 32px) / 2);
  }
}
.page-ir-to-individual-investors .shareholders-top .shareholders-top-item a img {
  display: block;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .page-ir-to-individual-investors .shareholders-top .shareholders-top-item a img {
    margin-bottom: 25px;
  }
}
.page-ir-to-individual-investors .shareholders-top .shareholders-top-item a .shareholders-top-txt {
  text-align: center;
  font-weight: 700;
  line-height: 1;
  font-size: 15px;
}
@media (min-width: 768px) {
  .page-ir-to-individual-investors .shareholders-top .shareholders-top-item a .shareholders-top-txt {
    font-size: 20px;
  }
}
.page-ir-to-individual-investors .learn-more {
  margin: 50px 20px 0;
}
@media (min-width: 768px) {
  .page-ir-to-individual-investors .learn-more {
    max-width: 920px;
    margin: 80px auto 0;
  }
}
.page-ir-to-individual-investors .learn-more .mv {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 110px;
  margin: 24px 20px 0;
  background-image: url(/assets/images/ir/to_individual_investors/mv_sp.jpg);
  background-position: 0 0;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .page-ir-to-individual-investors .learn-more .mv {
    height: 295px;
    margin: 35px 0 0;
    background-image: url(/assets/images/ir/to_individual_investors/mv_pc.jpg);
  }
}
.page-ir-to-individual-investors .learn-more .mv .mv-txt {
  width: 148px;
  margin-right: 8px;
}
@media (min-width: 391px) {
  .page-ir-to-individual-investors .learn-more .mv .mv-txt {
    width: 164px;
    margin-right: 10px;
  }
}
@media (min-width: 768px) {
  .page-ir-to-individual-investors .learn-more .mv .mv-txt {
    width: auto;
    margin-right: 32px;
  }
}
.page-ir-to-individual-investors .learn-more .mv .mv-txt .mv-txt-hd {
  color: #fff;
  font-weight: 700;
  font-feature-settings: "palt";
  font-size: 14px;
  line-height: 1.2857142857;
  margin-bottom: 10px;
}
@media (min-width: 391px) {
  .page-ir-to-individual-investors .learn-more .mv .mv-txt .mv-txt-hd {
    font-size: 17px;
    line-height: 1.3529411765;
    margin-bottom: 12px;
  }
}
@media (min-width: 768px) {
  .page-ir-to-individual-investors .learn-more .mv .mv-txt .mv-txt-hd {
    margin-bottom: 28px;
    font-size: 38px;
    line-height: 1.4473684211;
  }
}
.page-ir-to-individual-investors .learn-more .mv .mv-txt .mv-txt-btn {
  display: block;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22%E3%83%9C%E3%82%BF%E3%83%B3%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22225%22%20height%3D%2261%22%20viewBox%3D%220%200%20225%2061%22%3E%20%3Cdefs%3E%20%3Cfilter%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_1%22%3E%20%3CfeOffset%20dy%3D%225%22%20input%3D%22SourceAlpha%22%2F%3E%20%3CfeGaussianBlur%20stdDeviation%3D%222.5%22%20result%3D%22blur%22%2F%3E%20%3CfeFlood%20flood-opacity%3D%220.161%22%20result%3D%22color%22%2F%3E%20%3CfeComposite%20operator%3D%22out%22%20in%3D%22SourceGraphic%22%20in2%3D%22blur%22%2F%3E%20%3CfeComposite%20operator%3D%22in%22%20in%3D%22color%22%2F%3E%20%3CfeComposite%20operator%3D%22in%22%20in2%3D%22SourceGraphic%22%2F%3E%20%3C%2Ffilter%3E%20%3C%2Fdefs%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_48%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2048%22%20width%3D%22225%22%20height%3D%2261%22%20rx%3D%2230.5%22%20fill%3D%22%23bf2812%22%2F%3E%20%3Cg%20data-type%3D%22innerShadowGroup%22%3E%20%3Cg%20transform%3D%22matrix(1%2C%200%2C%200%2C%201%2C%200%2C%200)%22%20filter%3D%22url(%23%E6%A5%95%E5%86%86%E5%BD%A2_1)%22%20style%3D%22mix-blend-mode%3A%20hard-light%3Bisolation%3A%20isolate%22%3E%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_1-2%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%201%22%20cx%3D%2215%22%20cy%3D%2215%22%20r%3D%2215%22%20transform%3D%22translate(180%2016)%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%20%3Cg%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_1-3%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%201%22%20transform%3D%22translate(180%2016)%22%20fill%3D%22none%22%20stroke%3D%22%237a859d%22%20stroke-width%3D%220.5%22%20style%3D%22mix-blend-mode%3A%20hard-light%3Bisolation%3A%20isolate%22%3E%20%3Ccircle%20cx%3D%2215%22%20cy%3D%2215%22%20r%3D%2215%22%20stroke%3D%22none%22%2F%3E%20%3Ccircle%20cx%3D%2215%22%20cy%3D%2215%22%20r%3D%2214.75%22%20fill%3D%22none%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_36%22%20data-name%3D%22%E3%83%91%E3%82%B9%2036%22%20d%3D%22M1753.533%2C2206.825l5.425%2C4.163-5.425%2C4.163%22%20transform%3D%22translate(-1560.327%20-2179.988)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%220.7%22%2F%3E%20%3Ctext%20id%3D%22%E8%A9%B3%E3%81%97%E3%81%8F%E8%A6%8B%E3%82%8B%22%20transform%3D%22translate(20%2036)%22%20fill%3D%22%23fff%22%20font-size%3D%2214%22%20font-family%3D%22YuGo-Bold%2C%20YuGothic%22%20font-weight%3D%22700%22%3E%3Ctspan%20x%3D%220%22%20y%3D%220%22%3E%E8%A9%B3%E3%81%97%E3%81%8F%E8%A6%8B%E3%82%8B%3C%2Ftspan%3E%3C%2Ftext%3E%3C%2Fsvg%3E");
  background-position: 0 0;
  background-size: cover;
  background-repeat: no-repeat;
  width: 102px;
  height: 28px;
}
@media (min-width: 391px) {
  .page-ir-to-individual-investors .learn-more .mv .mv-txt .mv-txt-btn {
    width: 127px;
    height: 34px;
  }
}
@media (min-width: 768px) {
  .page-ir-to-individual-investors .learn-more .mv .mv-txt .mv-txt-btn {
    width: 225px;
    height: 61px;
  }
}
.page-ir-to-individual-investors .learn-more .learn-more-link {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 50px 0 0;
}
@media (min-width: 768px) {
  .page-ir-to-individual-investors .learn-more .learn-more-link {
    gap: 20px;
    margin: 70px 0 0;
  }
}
.page-ir-to-individual-investors .learn-more .learn-more-link li {
  width: calc((100% - 15px) / 2);
}
@media (min-width: 768px) {
  .page-ir-to-individual-investors .learn-more .learn-more-link li {
    width: calc((100% - 60px) / 4);
  }
}
.page-ir-to-individual-investors .learn-more .learn-more-link li a img {
  display: block;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .page-ir-to-individual-investors .learn-more .learn-more-link li a img {
    margin-bottom: 25px;
  }
}
.page-ir-to-individual-investors .learn-more .learn-more-link li a .learn-more-txt {
  text-align: center;
  font-weight: 700;
  line-height: 1;
  font-size: 15px;
}
@media (min-width: 768px) {
  .page-ir-to-individual-investors .learn-more .learn-more-link li a .learn-more-txt {
    font-size: 20px;
  }
}
.page-ir-to-individual-investors .learn-more .area-about-rix {
  display: block;
  margin: 64px 0 0;
}
@media (min-width: 768px) {
  .page-ir-to-individual-investors .learn-more .area-about-rix {
    max-width: 800px;
    margin: 80px auto 0;
  }
}
.page-ir-to-individual-investors .learn-more .area-about-rix h3 {
  background: #1e4292;
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 16px;
  padding: 8px 0;
  line-height: 1;
}
@media (max-width: 375px) {
  .page-ir-to-individual-investors .learn-more .area-about-rix h3 {
    padding: 6px 0;
    font-size: 13px;
  }
}
@media (min-width: 768px) {
  .page-ir-to-individual-investors .learn-more .area-about-rix h3 {
    padding: 12px 0;
    font-size: 24px;
  }
}
.page-ir-to-individual-investors .learn-more .area-about-rix img {
  display: block;
}
.page-ir-to-individual-investors .shareholders-bottom {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin: 64px 20px 0;
  gap: 20px;
}
@media (min-width: 768px) {
  .page-ir-to-individual-investors .shareholders-bottom {
    flex-direction: row;
    gap: 20px;
    max-width: 920px;
    margin: 80px auto 0;
  }
}
.page-ir-to-individual-investors .shareholders-bottom .shareholders-bottom-item {
  width: 100%;
}
@media (min-width: 768px) {
  .page-ir-to-individual-investors .shareholders-bottom .shareholders-bottom-item {
    width: calc((100% - 20px) / 2);
  }
}
.page-ir-to-individual-investors .shareholders-bottom .shareholders-bottom-item a {
  display: block;
  background-color: #f0f0f0;
  background-repeat: no-repeat;
  background-size: 18.13% auto;
  background-position: left 7.71% center;
  padding: 33px 24px 24px 32.57%;
}
@media (min-width: 768px) {
  .page-ir-to-individual-investors .shareholders-bottom .shareholders-bottom-item a {
    background-size: 19.52% auto;
    background-position: left 7.14% center;
    padding: 40px 35px 35px 31.43%;
  }
}
.page-ir-to-individual-investors .shareholders-bottom .shareholders-bottom-item a .shareholders-bottom-hd {
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
  font-size: 16px;
}
@media (min-width: 768px) {
  .page-ir-to-individual-investors .shareholders-bottom .shareholders-bottom-item a .shareholders-bottom-hd {
    margin-bottom: 16px;
    font-size: 20px;
  }
}
.page-ir-to-individual-investors .shareholders-bottom .shareholders-bottom-item a .shareholders-bottom-txt {
  font-size: 14px;
  line-height: 1.7142857143;
}
@media (min-width: 768px) {
  .page-ir-to-individual-investors .shareholders-bottom .shareholders-bottom-item a .shareholders-bottom-txt {
    font-size: 16px;
    line-height: 1.6875;
  }
}
.page-ir-to-individual-investors .shareholders-bottom .shareholders-bottom-item:nth-of-type(1) a {
  background-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2082%2078%22%3E%20%3Cpath%20d%3D%22m23%2C5v4h-9.3c-7.8%2C0-9.7.3-11%2C1.8-1.5%2C1.6-1.7%2C5.4-1.7%2C32.5s.2%2C30.8%2C1.6%2C32.1c1.3%2C1.4%2C6.2%2C1.6%2C38.4%2C1.6s37.1-.2%2C38.4-1.6c1.4-1.3%2C1.6-5.7%2C1.6-32.3%2C0-28.9-.1-30.9-1.9-32.5-2.5-2.2-11.6-1.9-11.6.4%2C0%2C1.1%2C1.3%2C1.6%2C4.8%2C1.8l4.7.3v59.9H5V13h17.9l.3%2C3.7c.2%2C2.6.8%2C3.8%2C1.8%2C3.8%2C1.2%2C0%2C1.6-1.9%2C1.8-9.8.3-9.2.2-9.7-1.8-9.7-1.7%2C0-2%2C.6-2%2C4Z%22%2F%3E%20%3Cpath%20d%3D%22m55.7%2C1.7c-.4.3-.7%2C2.1-.7%2C4v3.3h-10.1c-9%2C0-10%2C.2-9.7%2C1.7s1.7%2C1.8%2C10%2C2.1l9.7.3.3%2C3.7c.2%2C2.5.8%2C3.7%2C1.8%2C3.7%2C1.2%2C0%2C1.6-1.9%2C1.8-9.8.2-7.7%2C0-9.7-1.1-9.7-.8%2C0-1.7.3-2%2C.7Z%22%2F%3E%20%3Cpath%20d%3D%22m13.5%2C30c-1.1%2C1.8%2C1%2C3.2%2C4.1%2C2.8%2C4-.4%2C3.8-3.2-.3-3.6-1.7-.2-3.4.2-3.8.8Z%22%2F%3E%20%3Cpath%20d%3D%22m29.5%2C30c-1.1%2C1.8%2C1%2C3.2%2C4.1%2C2.8%2C4-.4%2C3.8-3.2-.3-3.6-1.7-.2-3.4.2-3.8.8Z%22%2F%3E%20%3Cpath%20d%3D%22m45.5%2C30c-1.1%2C1.8%2C1%2C3.2%2C4.1%2C2.8%2C4-.4%2C3.8-3.2-.3-3.6-1.7-.2-3.4.2-3.8.8Z%22%2F%3E%20%3Cpath%20d%3D%22m61.5%2C30c-1.1%2C1.8%2C1%2C3.2%2C4.1%2C2.8%2C4-.4%2C3.8-3.2-.3-3.6-1.7-.2-3.4.2-3.8.8Z%22%2F%3E%20%3Cpath%20d%3D%22m13.5%2C42c-1.1%2C1.8%2C1%2C3.2%2C4.1%2C2.8%2C4-.4%2C3.8-3.2-.3-3.6-1.7-.2-3.4.2-3.8.8Z%22%2F%3E%20%3Cpath%20d%3D%22m29.5%2C42c-1.1%2C1.8%2C1%2C3.2%2C4.1%2C2.8%2C4-.4%2C3.8-3.2-.3-3.6-1.7-.2-3.4.2-3.8.8Z%22%2F%3E%20%3Cpath%20d%3D%22m45.5%2C41.9c-1.1%2C1.9.5%2C3.1%2C4.1%2C3.1%2C2.8%2C0%2C3.5-.4%2C3.2-1.8-.4-1.9-6.2-3-7.3-1.3Z%22%2F%3E%20%3Cpath%20d%3D%22m61.5%2C41.9c-1.1%2C1.9.5%2C3.1%2C4.1%2C3.1%2C2.8%2C0%2C3.5-.4%2C3.2-1.8-.4-1.9-6.2-3-7.3-1.3Z%22%2F%3E%20%3Cpath%20d%3D%22m13.7%2C53.6c-2%2C2-.6%2C3.5%2C3.1%2C3.2%2C4.7-.4%2C5.2-3.2.7-3.6-1.7-.2-3.4%2C0-3.8.4Z%22%2F%3E%20%3Cpath%20d%3D%22m29.7%2C53.6c-1.9%2C2-.5%2C3.4%2C3.4%2C3.4%2C3.3%2C0%2C4-.3%2C3.7-1.8-.3-1.7-5.7-3-7.1-1.6Z%22%2F%3E%20%3Cpath%20d%3D%22m45.7%2C53.6c-1.9%2C2-.5%2C3.4%2C3.4%2C3.4%2C3.3%2C0%2C4-.3%2C3.7-1.8-.3-1.7-5.7-3-7.1-1.6Z%22%2F%3E%3C%2Fsvg%3E");
}
.page-ir-to-individual-investors .shareholders-bottom .shareholders-bottom-item:nth-of-type(2) a {
  background-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2082%2084%22%3E%20%3Cpath%20d%3D%22m20.2%2C2.9c-7%2C2.4-12.1%2C6.7-15.2%2C12.7-2%2C3.9-2.5%2C6.3-2.5%2C12.4%2C0%2C6.4.5%2C8.3%2C2.8%2C12.2%2C2.2%2C3.8%2C2.7%2C5.9%2C2.7%2C11.3%2C0%2C4.7.4%2C6.7%2C1.4%2C7.1.8.3%2C4-.8%2C7.2-2.4%2C4.5-2.2%2C6.9-2.8%2C10.1-2.4%2C9.8%2C1%2C22.2-6.2%2C25.7-14.9%2C2.4-6%2C2.3-16.5-.1-22-2.8-6.2-9.9-12.4-16.4-14.3-6.7-2-9.1-2-15.7.3Zm17.9%2C6.4c9.6%2C5.1%2C13.7%2C17.6%2C9.1%2C28-3.3%2C7.4-13.7%2C12.6-22.2%2C11.2-2.8-.5-4.9-.1-7.9%2C1.4l-4.1%2C2.1v-4.6c0-3-.8-5.9-2.4-8.7-6.6-11.1-2.7-23.9%2C8.9-30%2C4.6-2.5%2C13.3-2.1%2C18.6.6Z%22%2F%3E%20%3Cpath%20d%3D%22m23%2C15c-2.1%2C2.1-2.7%2C6.4-1.1%2C7.4%2C1.5%2C1%2C3.9-.4%2C4.4-2.5.3-1%2C1.2-1.9%2C2-1.9%2C2.8%2C0%2C3%2C2.1.3%2C4.9-1.7%2C1.8-2.6%2C3.8-2.6%2C6%2C0%2C2.8.3%2C3.2%2C2.2%2C2.9%2C1.3-.2%2C2.4-1.1%2C2.7-2.3.2-1.1%2C1.4-3%2C2.7-4.2%2C2.9-2.7%2C3.1-6.2.3-9.7-2.6-3.3-7.9-3.6-10.9-.6Z%22%2F%3E%20%3Cpath%20d%3D%22m26%2C36.9c0%2C2.4%2C1.3%2C3.3%2C3.5%2C2.5%2C2.3-.9%2C1.4-3.8-1.3-4.2-1.6-.3-2.2.2-2.2%2C1.7Z%22%2F%3E%20%3Cpath%20d%3D%22m57.2%2C28c.2%2C1.7%2C1.4%2C2.7%2C4.3%2C3.7%2C4.6%2C1.6%2C9.8%2C6.3%2C12%2C10.9%2C2.4%2C5.1%2C1.9%2C14.1-1%2C19.3-1.6%2C2.8-2.5%2C5.8-2.5%2C8.7%2C0%2C4.8-.8%2C5.3-5%2C2.9-1.5-.8-5.3-1.4-9.3-1.5-4.7%2C0-8-.6-10.6-2-3.9-2-10.1-8.5-10.1-10.6%2C0-.6-.7-1.7-1.6-2.4-1.2-1.1-1.8-1.1-3%2C.2-1.4%2C1.4-1.4%2C1.9.5%2C5.6%2C4.7%2C9.2%2C13.1%2C14.4%2C24.1%2C14.7%2C4.9.1%2C7.8.8%2C11.8%2C2.9%2C6.9%2C3.5%2C8.2%2C2.6%2C8.2-5.8%2C0-4.5.7-7.4%2C2.5-10.9%2C3.4-6.8%2C4-12.4%2C2.1-18.9-2.9-10.2-10.2-17.4-18.7-18.5-3.8-.6-4.1-.4-3.7%2C1.7Z%22%2F%3E%3C%2Fsvg%3E");
}

/*--------------------------
	/ir/information/stock_overview/
--------------------------*/
.page-ir-information-stock-overview h2 {
  border-bottom: 1px solid #E4E4E4;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
  margin: 0 20px 20px;
  padding-bottom: 18px;
}
@media (min-width: 768px) {
  .page-ir-information-stock-overview h2 {
    font-size: 32px;
    line-height: 1.34375;
    margin: 0 auto 35px;
    padding-bottom: 32px;
    max-width: 920px;
  }
}
.page-ir-information-stock-overview .txt-ir-dividend-gift-s01 {
  font-size: 16px;
  line-height: 1.6875;
  margin-bottom: 60px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-information-stock-overview .txt-ir-dividend-gift-s01 {
    font-size: 17px;
    line-height: 1.7058823529;
    margin: 0 auto 67px;
    max-width: 920px;
    padding: 0;
  }
}
.page-ir-information-stock-overview .overview {
  font-size: 16px;
  line-height: 1.6875;
  padding: 0 20px;
  width: 100%;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .page-ir-information-stock-overview .overview {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    font-size: 17px;
    justify-content: space-between;
    line-height: 1.7058823529;
    margin: 0 auto 80px;
    max-width: 920px;
    padding: 0;
  }
}
.page-ir-information-stock-overview .overview dt {
  background: #1E4292;
  border: 1px solid #A2A2A2;
  color: #fff;
  font-weight: normal;
  padding: 13px 20px;
}
@media (min-width: 768px) {
  .page-ir-information-stock-overview .overview dt {
    padding: 17px 33px;
    width: 264px;
  }
}
.page-ir-information-stock-overview .overview dd {
  background: #F4F9FF;
  border: 1px solid #fff;
  padding: 13px 20px;
}
@media (min-width: 768px) {
  .page-ir-information-stock-overview .overview dd {
    padding: 17px 33px;
    width: calc(100% - 264px);
  }
}
.page-ir-information-stock-overview .pie-chart {
  margin: 0 20px 72px;
}
@media (min-width: 768px) {
  .page-ir-information-stock-overview .pie-chart {
    max-width: 834px;
    margin: 0 auto 90px;
  }
}
.page-ir-information-stock-overview .major-shareholder {
  margin: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-information-stock-overview .major-shareholder {
    width: 920px;
    margin: 0 auto;
  }
}
.page-ir-information-stock-overview .major-shareholder table {
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll !important;
  width: 920px;
}
.page-ir-information-stock-overview .major-shareholder table th {
  background: #1E4292;
  border: 1px solid #A2A2A2;
  text-align: center;
  color: #fff;
  font-weight: 700;
  padding: 13px 20px;
}
@media (min-width: 768px) {
  .page-ir-information-stock-overview .major-shareholder table th {
    padding: 17px 33px;
  }
}
.page-ir-information-stock-overview .major-shareholder table th:nth-of-type(1) {
  width: 62.39%;
}
.page-ir-information-stock-overview .major-shareholder table td {
  background: #F4F9FF;
  border: 1px solid #fff;
  text-align: center;
  padding: 13px 20px;
}
@media (min-width: 768px) {
  .page-ir-information-stock-overview .major-shareholder table td {
    padding: 17px 33px;
  }
}
.page-ir-information-stock-overview .major-shareholder table td:nth-of-type(1) {
  text-align: left;
}

.page-ir-information-shareholders_meeting h2 {
  border-left: 9px solid #1e4292;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.32;
  margin: 0 0 34px 20px;
  padding-left: 10px;
}
@media (min-width: 768px) {
  .page-ir-information-shareholders_meeting h2 {
    border-left: 9px solid #1e4292;
    font-size: 30px;
    line-height: 1.3333333333;
    margin: 0 auto 36px;
    max-width: 920px;
    padding-left: 15px;
  }
}
.page-ir-information-shareholders_meeting .shareholders-meeting-overview {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-information-shareholders_meeting .shareholders-meeting-overview {
    padding: 0;
    max-width: 920px;
    margin: 0 auto;
  }
}
.page-ir-information-shareholders_meeting .shareholders-meeting-overview .overview-list {
  margin-bottom: 46px;
}
@media (min-width: 768px) {
  .page-ir-information-shareholders_meeting .shareholders-meeting-overview .overview-list {
    margin-bottom: 72px;
  }
}
@media (min-width: 768px) {
  .page-ir-information-shareholders_meeting .shareholders-meeting-overview .overview-list > li {
    display: flex;
    flex-wrap: wrap;
  }
}
.page-ir-information-shareholders_meeting .shareholders-meeting-overview .overview-list > li + li {
  margin-top: 22px;
}
@media (min-width: 768px) {
  .page-ir-information-shareholders_meeting .shareholders-meeting-overview .overview-list > li + li {
    margin-top: 28px;
  }
}
.page-ir-information-shareholders_meeting .shareholders-meeting-overview .overview-list > li .label {
  border-bottom: 1px solid #000;
  color: #9D9D9D;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.7142857143;
  margin-bottom: 8px;
  padding-bottom: 9px;
}
@media (min-width: 768px) {
  .page-ir-information-shareholders_meeting .shareholders-meeting-overview .overview-list > li .label {
    font-size: 17px;
    line-height: 1.7058823529;
    margin-bottom: 0;
    padding-bottom: 29px;
    width: 310px;
  }
}
.page-ir-information-shareholders_meeting .shareholders-meeting-overview .overview-list > li .content {
  border-bottom: 1px solid #E4E4E4;
  font-size: 14px;
  line-height: 1.7142857143;
  padding-bottom: 9px;
}
@media (min-width: 768px) {
  .page-ir-information-shareholders_meeting .shareholders-meeting-overview .overview-list > li .content {
    font-size: 17px;
    line-height: 1.7058823529;
    padding: 0 0 29px 10px;
    width: calc(100% - 310px);
  }
}
.page-ir-information-shareholders_meeting .shareholders-meeting-overview .overview-list > li .content .txt {
  font-size: 14px;
  line-height: 1.7142857143;
}
@media (min-width: 768px) {
  .page-ir-information-shareholders_meeting .shareholders-meeting-overview .overview-list > li .content .txt {
    font-size: 17px;
    line-height: 1.7058823529;
  }
}
.page-ir-information-shareholders_meeting .shareholders-meeting-overview .overview-list > li .content .content-list {
  counter-reset: number 0;
}
.page-ir-information-shareholders_meeting .shareholders-meeting-overview .overview-list > li .content .content-list li {
  display: flex;
  font-size: 14px;
  line-height: 1.7142857143;
}
@media (min-width: 768px) {
  .page-ir-information-shareholders_meeting .shareholders-meeting-overview .overview-list > li .content .content-list li {
    font-size: 17px;
    line-height: 1.7058823529;
  }
}
.page-ir-information-shareholders_meeting .shareholders-meeting-overview .overview-list > li .content .content-list li:before {
  display: block;
  width: 4rem;
  counter-increment: number 1;
  content: counter(number) ". ";
}
@media (min-width: 768px) {
  .page-ir-information-shareholders_meeting .shareholders-meeting-overview .overview-list > li .content .content-list li:before {
    width: 3rem;
  }
}
.page-ir-information-shareholders_meeting .shareholders-meeting-overview .overview-list > li .content .content-list li span {
  width: calc(100% - 3rem);
}
.page-ir-information-shareholders_meeting .shareholders-meeting-overview .overview-list > li .content dl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.page-ir-information-shareholders_meeting .shareholders-meeting-overview .overview-list > li .content dl dt, .page-ir-information-shareholders_meeting .shareholders-meeting-overview .overview-list > li .content dl dd {
  font-size: 14px;
  line-height: 1.7142857143;
}
@media (min-width: 768px) {
  .page-ir-information-shareholders_meeting .shareholders-meeting-overview .overview-list > li .content dl dt, .page-ir-information-shareholders_meeting .shareholders-meeting-overview .overview-list > li .content dl dd {
    font-size: 17px;
    line-height: 1.7058823529;
  }
}
.page-ir-information-shareholders_meeting .shareholders-meeting-overview .overview-list > li .content dl dt {
  width: 22%;
}
@media (min-width: 768px) {
  .page-ir-information-shareholders_meeting .shareholders-meeting-overview .overview-list > li .content dl dt {
    width: 18%;
  }
}
.page-ir-information-shareholders_meeting .shareholders-meeting-overview .overview-list > li .content dl dd {
  width: 78%;
}
@media (min-width: 768px) {
  .page-ir-information-shareholders_meeting .shareholders-meeting-overview .overview-list > li .content dl dd {
    width: 82%;
  }
}
.page-ir-information-shareholders_meeting .area-document-download {
  margin: 0;
}
@media (min-width: 768px) {
  .page-ir-information-shareholders_meeting .area-document-download {
    max-width: 816px;
    margin: 0 auto 80px;
  }
}
.page-ir-information-shareholders_meeting .area-document-download .btn-download {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-information-shareholders_meeting .area-document-download .btn-download {
    padding: 0;
  }
}
.page-ir-information-shareholders_meeting .area-document-download .btn-download a {
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  display: block;
  font-size: 15px;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 28px;
  padding: 16px 0 25px;
  position: relative;
  text-align: center;
}
@media (min-width: 768px) {
  .page-ir-information-shareholders_meeting .area-document-download .btn-download a {
    margin-bottom: 37px;
    padding: 16px 0;
    width: 100%;
  }
}
.page-ir-information-shareholders_meeting .area-document-download .btn-download a span {
  background: url(../images/common/icon_download.svg) no-repeat center bottom;
  background-size: 18px 18px;
  display: block;
  height: 50px;
}
@media (min-width: 768px) {
  .page-ir-information-shareholders_meeting .area-document-download .btn-download a span {
    background: url(../images/common/icon_download.svg) no-repeat right center;
    background-size: 18px 18px;
    display: inline;
    height: auto;
    padding-right: 48px;
  }
}
.page-ir-information-shareholders_meeting .area-document-download ul {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-ir-information-shareholders_meeting .area-document-download ul {
    padding: 0;
  }
}
.page-ir-information-shareholders_meeting .area-document-download ul li + li {
  margin-top: 28px;
}
@media (min-width: 768px) {
  .page-ir-information-shareholders_meeting .area-document-download ul li + li {
    margin-top: 37px;
  }
}
.page-ir-information-shareholders_meeting .area-document-download ul li p {
  position: relative;
}
.page-ir-information-shareholders_meeting .area-document-download ul li p a {
  font-size: 14px;
  line-height: 1.4285714286;
  position: relative;
}
@media (min-width: 768px) {
  .page-ir-information-shareholders_meeting .area-document-download ul li p a {
    font-size: 16px;
    line-height: 1.875;
  }
}
.page-ir-information-shareholders_meeting .area-document-download ul li p a::before {
  background: #707070;
  content: "";
  height: 1px;
  display: inline-block;
  margin-right: 15px;
  width: 20px;
}

/*--------------------------
	/recruit/
--------------------------*/
.page-recruit {
  overflow-x: hidden;
  position: relative;
}
.page-recruit .top-mv {
  background: url(../images/recruit/recruit_mv_sp.jpg) no-repeat center center;
  background-size: cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 9.4871794872vw;
  font-weight: bold;
  height: 420px;
  justify-content: flex-end;
  letter-spacing: -0.05em;
  line-height: 1.3513513514;
  margin: 0 0 37px 0;
  padding: 0 0 20px 20px;
}
@media (min-width: 768px) {
  .page-recruit .top-mv {
    background: url(../images/recruit/recruit_mv.jpg) no-repeat center center;
    background-size: cover;
    font-size: 45px;
    height: 544px;
    letter-spacing: 0;
    line-height: 1.3333333333;
    margin: 0 0 0 auto;
    padding: 0 0 44px 50px;
    width: 100%;
  }
}
.page-recruit .back-txt-recruit {
  margin: 0 auto;
  position: relative;
  width: 390px;
}
@media (min-width: 768px) {
  .page-recruit .back-txt-recruit {
    width: 1166px;
  }
}
.page-recruit .back-txt-recruit span {
  color: #EFF1F4;
  font-family: "Manrope", sans-serif;
  font-size: 100px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.33;
  position: absolute;
  right: 30px;
  top: 35px;
  white-space: nowrap;
  z-index: -1;
}
@media (min-width: 768px) {
  .page-recruit .back-txt-recruit span {
    font-size: 250px;
    line-height: 1.332;
    right: -86px;
    top: -5px;
  }
}
.page-recruit .main-container {
  position: relative;
}
@media (min-width: 768px) {
  .page-recruit .main-container {
    margin-top: -40px;
    position: relative;
  }
}
.page-recruit .main-container h1::after {
  content: "採用情報";
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3333333333;
  order: 1;
  position: absolute;
  right: 20px;
  top: 82px;
}
@media (min-width: 768px) {
  .page-recruit .main-container h1::after {
    font-size: 46px;
    line-height: 1.347826087;
    right: 0;
    top: 225px;
  }
}
@media (min-width: 768px) and (max-width: 1285px) {
  .page-recruit .main-container h1::after {
    margin-right: 10px;
  }
}
.page-recruit .main-container .link-recruit {
  margin-bottom: 48px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-recruit .main-container .link-recruit {
    margin-bottom: 84px;
    padding: 0;
  }
}
.page-recruit .main-container .link-recruit ul {
  margin-top: -38px;
}
@media (min-width: 768px) {
  .page-recruit .main-container .link-recruit ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: -47px;
  }
}
.page-recruit .main-container .link-recruit ul li {
  margin-top: 38px;
}
@media (min-width: 768px) {
  .page-recruit .main-container .link-recruit ul li {
    margin-top: 47px;
    width: calc(50% - 30px);
  }
}
.page-recruit .main-container .link-recruit ul li a {
  display: block;
  margin-bottom: 22px;
}
@media (min-width: 768px) {
  .page-recruit .main-container .link-recruit ul li a {
    margin-bottom: 25px;
  }
}
.page-recruit .main-container .link-recruit ul li p {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.3333333333;
  text-align: center;
}
@media (min-width: 768px) {
  .page-recruit .main-container .link-recruit ul li p {
    font-size: 24px;
    line-height: 1.3333333333;
  }
}
.page-recruit .know-rix {
  background: #F4F9FF;
  padding: 50px 20px 45px;
}
@media (min-width: 768px) {
  .page-recruit .know-rix {
    padding: 65px 0 70px;
  }
}
.page-recruit .know-rix h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
  margin-bottom: 23px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-recruit .know-rix h2 {
    font-size: 32px;
    line-height: 1.34375;
    margin-bottom: 61px;
  }
}
.page-recruit .know-rix h2 span {
  color: #BF2812;
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3076923077;
  padding-top: 7px;
}
@media (min-width: 768px) {
  .page-recruit .know-rix h2 span {
    font-size: 20px;
    line-height: 1.35;
    padding-top: 15px;
  }
}
@media (min-width: 768px) {
  .page-recruit .know-rix ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: -20px auto 0;
    max-width: 1160px;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .page-recruit .know-rix ul li {
    margin-top: 20px;
    width: calc(50% - 20px);
  }
}
.page-recruit .know-rix ul li + li {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .page-recruit .know-rix ul li + li {
    margin-top: 20px;
  }
}
.page-recruit .know-rix ul li a {
  align-items: center;
  background: #1E4292;
  color: #fff;
  display: inline-flex;
  font-size: 17px;
  font-weight: bold;
  justify-content: center;
  height: 55px;
  line-height: 1.2941176471;
  width: 100%;
}
@media (min-width: 768px) {
  .page-recruit .know-rix ul li a {
    font-size: 18px;
    height: 83px;
    line-height: 1.3333333333;
  }
}
@media (min-width: 768px) {
  .page-recruit .know-rix ul li a:hover {
    background: #BF2812;
    opacity: 1;
  }
}

/*--------------------------
	/products_services/
--------------------------*/
.page-products-services {
  overflow-x: hidden;
  position: relative;
}
.page-products-services .back-txt-products-services {
  margin: 0 auto;
  position: relative;
  width: 390px;
}
@media (min-width: 768px) {
  .page-products-services .back-txt-products-services {
    width: 1166px;
  }
}
.page-products-services .back-txt-products-services span {
  color: #EFF1F4;
  font-family: "Manrope", sans-serif;
  font-size: 100px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.33;
  position: absolute;
  left: 10px;
  top: 72px;
  white-space: nowrap;
  z-index: -1;
}
@media (min-width: 768px) {
  .page-products-services .back-txt-products-services span {
    font-size: 250px;
    left: unset;
    line-height: 1.332;
    right: -207px;
    top: 31px;
  }
}
.page-products-services .main-container {
  position: relative;
}
@media (min-width: 768px) {
  .page-products-services .main-container {
    margin-top: -40px;
    position: relative;
  }
}
.page-products-services .main-container h1::after {
  content: "製品・サービス";
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3333333333;
  order: 1;
  position: absolute;
  right: 20px;
  top: 82px;
  top: 119px;
}
@media (min-width: 768px) {
  .page-products-services .main-container h1::after {
    font-size: 46px;
    line-height: 1.347826087;
    right: 0;
    top: 225px;
  }
}
@media (min-width: 768px) and (max-width: 1285px) {
  .page-products-services .main-container h1::after {
    margin-right: 10px;
  }
}
.page-products-services .main-container .area-search {
  padding: 60px 20px 110px;
  position: relative;
}
@media (min-width: 768px) {
  .page-products-services .main-container .area-search {
    padding: 70px 0 136px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-products-services .main-container .area-search {
    padding: 70px 20px 136px;
  }
}
.page-products-services .main-container .area-search::before {
  background: #E9ECF0;
  content: "";
  height: 100%;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50vw);
  width: 100vw;
  z-index: -1;
}
.page-products-services .main-container .area-search::after {
  bottom: -60px;
  color: #f6f7f9;
  content: "Search";
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 100px;
  font-weight: 800;
  letter-spacing: -0.03em;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 1;
}
@media (min-width: 768px) {
  .page-products-services .main-container .area-search::after {
    bottom: -155px;
    font-size: 250px;
    transform: translateX(-668px);
  }
}
@media (min-width: 768px) and (max-width: 1365px) {
  .page-products-services .main-container .area-search::after {
    left: -45px;
    transform: translateX(0);
  }
}
@media (min-width: 768px) {
  .page-products-services .main-container .area-search .search-type-word form {
    align-items: center;
    display: flex;
  }
}
.page-products-services .main-container .area-search .search-type-word form .search-word {
  align-items: center;
  background: #fff url(../images/common/icon_search.svg) no-repeat 18.3px 16.1px;
  background-size: 18px;
  border-radius: 5px;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  height: 50px;
  padding-left: 47px;
  width: 100%;
}
@media (min-width: 768px) {
  .page-products-services .main-container .area-search .search-type-word form .search-word {
    background: #fff url(../images/common/icon_search.svg) no-repeat 23.6px 22.1px;
    background-size: 23px;
    border-radius: 5px 0 0 5px;
    height: 67px;
    padding-left: 54px;
    width: calc(100% - 135px);
  }
}
.page-products-services .main-container .area-search .search-type-word form .btn-search {
  align-items: center;
  background: #1E4292;
  border-radius: 5px;
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  height: 39px;
  justify-content: center;
  margin: 15px auto 0;
  width: 135px;
}
@media (min-width: 768px) {
  .page-products-services .main-container .area-search .search-type-word form .btn-search {
    border-radius: 0 5px 5px 0;
    height: 67px;
    margin-top: 0;
  }
}
.page-products-services .main-container .area-search .search-type-word form .btn-search:hover {
  opacity: 0.7;
}
.page-products-services .main-container .area-search h2 {
  color: #294B97;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 46px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-products-services .main-container .area-search h2 {
    font-size: 28px;
    line-height: 1.3214285714;
    margin-top: 60px;
  }
}
.page-products-services .main-container .area-search .search-type-business {
  margin-top: 27px;
}
@media (min-width: 768px) {
  .page-products-services .main-container .area-search .search-type-business {
    margin-top: 36px;
  }
}
.page-products-services .main-container .area-search .search-type-business ul {
  display: flex;
  flex-wrap: wrap;
}
.page-products-services .main-container .area-search .search-type-business ul li {
  width: 50%;
}
@media (min-width: 768px) {
  .page-products-services .main-container .area-search .search-type-business ul li {
    width: 25%;
  }
}
.page-products-services .main-container .area-search .search-type-business ul li a {
  align-items: center;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 10px 12px;
  background-size: 35px;
  border: 1px solid #E9ECF0;
  color: #000;
  display: flex;
  font-size: 15px;
  font-weight: 500;
  height: 59px;
  line-height: 1.3333333333;
  padding: 0 15px 0 55px;
}
@media (min-width: 768px) {
  .page-products-services .main-container .area-search .search-type-business ul li a {
    background-position: 15px 23px;
    background-size: 48px;
    height: 93px;
    padding-left: 73px;
  }
}
.page-products-services .main-container .area-search .search-type-business ul li a.type01 {
  background-image: url(../images/products_services/type_business_01.png);
}
.page-products-services .main-container .area-search .search-type-business ul li a.type02 {
  background-image: url(../images/products_services/type_business_02.png);
}
.page-products-services .main-container .area-search .search-type-business ul li a.type03 {
  background-image: url(../images/products_services/type_business_03.png);
}
.page-products-services .main-container .area-search .search-type-business ul li a.type04 {
  background-image: url(../images/products_services/type_business_04.png);
}
.page-products-services .main-container .area-search .search-type-business ul li a.type05 {
  background-image: url(../images/products_services/type_business_05.png);
}
.page-products-services .main-container .area-search .search-type-business ul li a.type06 {
  background-image: url(../images/products_services/type_business_06.png);
}
.page-products-services .main-container .area-search .search-type-business ul li a.type07 {
  background-image: url(../images/products_services/type_business_07.png);
}
.page-products-services .main-container .area-search .search-type-business ul li a.type08 {
  background-image: url(../images/products_services/type_business_08.png);
}
.page-products-services .main-container .area-search .search-type-business ul li a.type09 {
  background-image: url(../images/products_services/type_business_09.png);
}
.page-products-services .main-container .area-search .search-type-business ul li a.type10 {
  background-image: url(../images/products_services/type_business_10.png);
}
.page-products-services .main-container .area-search .search-type-business ul li a.type11 {
  background-image: url(../images/products_services/type_business_11.png);
}
.page-products-services .main-container .area-search .search-type-business ul li a:hover {
  background-color: #BF2812;
  color: #fff;
  opacity: 1;
}
.page-products-services .main-container .area-search .search-type-category {
  margin-top: 27px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .page-products-services .main-container .area-search .search-type-category {
    margin-top: 36px;
  }
}
.page-products-services .main-container .area-search .search-type-category .select-category {
  align-items: center;
  background: #fff url(../images/common/icon_select02.svg) no-repeat right 21px center;
  background-size: 18px 28px;
  border-radius: 3px;
  color: #6F7070;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  height: 44px;
  line-height: 1.3125;
  padding: 0 15px;
  width: 100%;
}
.page-products-services .main-container .area-search .search-type-category .select-category option {
  color: #000;
}
.page-products-services .main-container .area-search .search-type-category ul {
  display: flex;
  flex-wrap: wrap;
}
.page-products-services .main-container .area-search .search-type-category ul li {
  width: 50%;
}
@media (min-width: 768px) {
  .page-products-services .main-container .area-search .search-type-category ul li {
    width: 25%;
  }
}
.page-products-services .main-container .area-search .search-type-category ul li a {
  align-items: center;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 10px 12px;
  background-size: 35px;
  border: 1px solid #E9ECF0;
  color: #000;
  display: flex;
  font-size: 15px;
  font-weight: 500;
  height: 59px;
  line-height: 1.3333333333;
  padding: 0 15px 0 55px;
}
@media (min-width: 768px) {
  .page-products-services .main-container .area-search .search-type-category ul li a {
    background-position: 15px 23px;
    background-size: 48px;
    height: 93px;
    padding-left: 73px;
  }
}
.page-products-services .main-container .area-search .search-type-category ul li a.category01 {
  background-image: url(../images/products_services/type_category_01.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category02 {
  background-image: url(../images/products_services/type_category_02.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category03 {
  background-image: url(../images/products_services/type_category_03.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category04 {
  background-image: url(../images/products_services/type_category_04.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category05 {
  background-image: url(../images/products_services/type_category_05.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category06 {
  background-image: url(../images/products_services/type_category_06.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category07 {
  background-image: url(../images/products_services/type_category_07.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category08 {
  background-image: url(../images/products_services/type_category_08.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category09 {
  background-image: url(../images/products_services/type_category_09.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category10 {
  background-image: url(../images/products_services/type_category_10.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category11 {
  background-image: url(../images/products_services/type_category_11.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category12 {
  background-image: url(../images/products_services/type_category_12.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category13 {
  background-image: url(../images/products_services/type_category_13.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category14 {
  background-image: url(../images/products_services/type_category_14.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category15 {
  background-image: url(../images/products_services/type_category_15.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category16 {
  background-image: url(../images/products_services/type_category_16.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category17 {
  background-image: url(../images/products_services/type_category_17.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category18 {
  background-image: url(../images/products_services/type_category_18.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category19 {
  background-image: url(../images/products_services/type_category_19.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category20 {
  background-image: url(../images/products_services/type_category_20.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category21 {
  background-image: url(../images/products_services/type_category_21.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category22 {
  background-image: url(../images/products_services/type_category_22.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category23 {
  background-image: url(../images/products_services/type_category_23.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category24 {
  background-image: url(../images/products_services/type_category_24.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category25 {
  background-image: url(../images/products_services/type_category_25.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category26 {
  background-image: url(../images/products_services/type_category_26.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category27 {
  background-image: url(../images/products_services/type_category_27.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category28 {
  background-image: url(../images/products_services/type_category_28.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category29 {
  background-image: url(../images/products_services/type_category_29.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category30 {
  background-image: url(../images/products_services/type_category_30.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category31 {
  background-image: url(../images/products_services/type_category_31.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category32 {
  background-image: url(../images/products_services/type_category_32.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category33 {
  background-image: url(../images/products_services/type_category_33.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category34 {
  background-image: url(../images/products_services/type_category_34.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category35 {
  background-image: url(../images/products_services/type_category_35.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a.category36 {
  background-image: url(../images/products_services/type_category_36.png);
}
.page-products-services .main-container .area-search .search-type-category ul li a:hover {
  background-color: #BF2812;
  color: #fff;
  opacity: 1;
}

/*--------------------------
	/products_services/products/
--------------------------*/
.page-products-services-products .area-products-category-detail h1 {
  border-bottom: 1px solid #E4E4E4;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 20px;
  padding-bottom: 12px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail h1 {
    border-bottom: 2px solid #E4E4E4;
    font-size: 32px;
    margin: 0;
    padding-bottom: 10px;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper {
  margin-top: 25px;
  padding: 0 20px;
}
@media (min-width: 1266px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding: 0;
  }
}
@media (min-width: 1266px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents {
    margin-right: 20px;
    width: 816px;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .txt-s01 {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6666666667;
  margin-top: 25px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .txt-s01 {
    font-size: 17px;
    line-height: 1.1764705882;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .txt-s01 a {
  color: #1E4292;
  font-weight: 700;
  text-decoration: underline;
  vertical-align: baseline;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .txt-s01 a:hover {
  text-decoration: none;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich * {
  vertical-align: baseline;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich h3 {
  color: #1E4292;
  font-size: 22px;
  font-weight: 700;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich h3 {
    font-size: 26px;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich a {
  color: #3366ff;
  text-decoration: underline;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich a:hover {
  text-decoration: none;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6666666667;
  margin-top: 25px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich p {
    font-size: 17px;
    line-height: 1.5882352941;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich ul {
  margin-top: 30px;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich ul li {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6666666667;
  padding-left: 1em;
  position: relative;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich ul li {
    font-size: 18px;
    line-height: 1.5;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich ul li::before {
  width: 0;
  height: 0;
  border-left: 8px solid #1E4292;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-txt-link {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6666666667;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-txt-link {
    font-size: 18px;
    line-height: 1.5;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-lr-img-txt-block {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-lr-img-txt-block ul li {
    display: flex;
    justify-content: space-between;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-lr-img-txt-block ul li + li {
  margin-top: 25px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-lr-img-txt-block ul li + li {
    margin-top: 30px;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-lr-img-txt-block ul li.product-detail-left-right-img-txt-block figure {
  order: -1;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-lr-img-txt-block ul li.product-detail-left-right-txt-img-block figure {
  order: 1;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-lr-img-txt-block ul li figure {
    width: 398px;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-lr-img-txt-block ul li p {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6666666667;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-lr-img-txt-block ul li p {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 0;
    width: calc(100% - 398px - 20px);
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-left-right-txt-block {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-left-right-txt-block ul {
    align-items: top;
    display: flex;
    justify-content: space-between;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-left-right-txt-block ul li {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6666666667;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-left-right-txt-block ul li {
    font-size: 18px;
    line-height: 1.5;
    width: calc((100% - 20px) / 2);
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-left-right-txt-block ul li + li {
  margin-top: 25px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-left-right-txt-block ul li + li {
    margin-top: 0;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-left-right-img-block {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-left-right-img-block ul {
    align-items: top;
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-left-right-img-block ul li {
    width: calc((100% - 20px) / 2);
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-left-right-img-block ul li + li {
  margin-top: 25px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-left-right-img-block ul li + li {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-left-right-img-block ul li img {
    height: 235px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-img-txt-block {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-img-txt-block.col2 ul li {
    width: calc((100% - 20px) / 2);
  }
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-img-txt-block.col2 ul li img {
    height: 235px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-img-txt-block.col3 ul li {
    width: calc((100% - 26px) / 3);
  }
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-img-txt-block.col3 ul li img {
    height: 174px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-img-txt-block.col4 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-img-txt-block.col4 ul li {
  width: calc((100% - 15px) / 2);
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-img-txt-block.col4 ul li {
    width: calc((100% - 27px) / 4);
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-img-txt-block.col4 ul li img {
  height: 27.6461295419vw;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-img-txt-block.col4 ul li img {
    height: 124px;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-img-txt-block ul {
  margin-top: -25px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-img-txt-block ul {
    display: flex;
    justify-content: space-between;
    margin-top: 0;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-img-txt-block ul li {
  margin-top: 25px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-img-txt-block ul li {
    margin-top: 0;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-img-txt-block ul li p {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6666666667;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-img-txt-block ul li p {
    font-size: 18px;
    line-height: 1.5;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-tb {
  margin-top: 40px;
  overflow: auto;
  /*スクロールさせる*/
  width: 100%;
}
@media (min-width: 1266px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-tb {
    max-width: 815px;
    width: 100%;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-tb table {
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll !important;
  width: 100%;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-tb table td {
  background: #fff;
  border: 1px solid #DCDDDD;
  color: #000;
  font-size: 14px;
  line-height: 1.6428571429;
  min-height: 66px;
  min-width: 140px;
  padding: 20px;
  vertical-align: middle;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .product-detail-tb table td:nth-child(1) {
  background: #EFF1F4;
  border-bottom: #fff;
  border-left: none;
  border-top: 1px solid #fff;
  font-size: 16px;
  font-weight: 700;
  min-width: 110px;
  width: 160px;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .iframe-wrap {
  position: relative;
  padding-top: 56.25%;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .rich .iframe-wrap iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents h2 {
  border-left: 6px solid #1E4292;
  font-size: 25px;
  font-weight: 700;
  margin-top: 22px;
  padding-left: 10px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents h2 {
    border-left: 9px solid #1E4292;
    font-size: 30px;
    margin-top: 33px;
    padding-left: 15px;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .list-products {
  margin-top: -20px;
  padding-top: 30px;
  position: relative;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .list-products {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: -18px;
    padding-top: 35px;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .list-products::before, .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .list-products::after {
  content: "";
  order: 1;
  width: calc((100% - 60px) / 4);
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .list-products::before, .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .list-products::after {
    width: calc((100% - 36px) / 3);
  }
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .list-products li {
    align-items: stretch;
    display: flex;
    width: calc((100% - 36px) / 3);
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .list-products li a {
  background: #F7F7F7;
  display: block;
  margin-top: 20px;
  padding: 15px 15px 30px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .list-products li a {
    width: 100%;
    margin-top: 18px;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .list-products li a .product-name {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5555555556;
  margin-top: 13px;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-contents .list-products li a .product-disc {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4666666667;
  margin-top: 6px;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents {
  /* cms output */
  /* /cms output */
}
@media (min-width: 1266px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents {
    margin-right: 20px;
    width: 816px;
  }
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents img {
    max-width: 100%;
    width: auto;
  }
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .product-head {
    display: flex;
  }
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .product-head .product-mv {
    max-width: 398px;
    width: 398px;
  }
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .product-head .product-mv img {
    max-width: 100%;
    width: 100%;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .product-head .product-head-contents {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .product-head .product-head-contents {
    margin-left: 20px;
    margin-top: 0;
    width: calc(100% - 398px - 20px);
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .product-head .product-head-contents .ttl-category {
  color: #000;
  font-size: 16px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .product-head .product-head-contents .ttl-category {
    font-size: 20px;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .product-head .product-head-contents .list-category {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .product-head .product-head-contents .list-category li {
  background: #F3F8FC;
  border-radius: 5px;
  color: #1E4292;
  font-size: 14px;
  font-weight: 700;
  padding: 5px 10px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .product-head .product-head-contents .list-category li {
    font-size: 15px;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .product-head .product-head-contents .link-catalog-download {
  margin-top: 15px;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .product-head .product-head-contents .link-catalog-download a {
  align-items: center;
  background: #43A649;
  color: #fff;
  display: flex;
  font-size: 15px;
  font-weight: 700;
  height: 50px;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .product-head .product-head-contents .link-catalog-download a {
    font-size: 20px;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .product-head .product-head-contents .link-contact {
  margin-top: 15px;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .product-head .product-head-contents .link-contact a {
  align-items: center;
  background: #BF2812;
  color: #fff;
  display: flex;
  font-size: 15px;
  font-weight: 700;
  height: 50px;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .product-head .product-head-contents .link-contact a {
    font-size: 20px;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents h2 {
  border-left: 6px solid #1E4292;
  font-size: 25px;
  font-weight: 700;
  margin-top: 30px;
  padding-left: 10px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents h2 {
    border-left: 9px solid #1E4292;
    font-size: 30px;
    padding-left: 15px;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents h3 {
  color: #1E4292;
  font-size: 22px;
  font-weight: 700;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents h3 {
    font-size: 26px;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .txt-s01 {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6666666667;
  margin-top: 25px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .txt-s01 {
    font-size: 17px;
    line-height: 1.5882352941;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-mv {
  margin-top: 25px;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block a {
  color: #00ACBA;
  text-decoration: underline;
  vertical-align: baseline;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block a:hover {
  text-decoration: none;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block h3 a {
  display: block;
  margin-top: -70x;
  padding-top: 70px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block h3 a {
    margin-top: -100px;
    padding-top: 100px;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-list-num {
  margin-top: 30px;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-list-num ol li {
  counter-increment: num;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6666666667;
  position: relative;
  padding-left: 2em;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-list-num ol li {
    font-size: 18px;
    line-height: 1.5;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-list-num ol li::before {
  content: counter(num) ". ";
  left: 0;
  position: absolute;
  top: calc(50% - 1px);
  transform: translateY(-50%);
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-list-num ol li span:first-child {
  width: 2em;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-list-num ol li span:last-child {
  width: calc(100% - 2em);
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-list-mark {
  margin-top: 30px;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-list-mark ul li {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6666666667;
  padding-left: 2em;
  position: relative;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-list-mark ul li {
    font-size: 18px;
    line-height: 1.5;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-list-mark ul li::before {
  background: #1E4292;
  border-radius: 50%;
  content: "";
  display: block;
  height: 11px;
  left: 0;
  position: absolute;
  top: 15px;
  transform: translateY(-50%);
  width: 11px;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-txt-link {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6666666667;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-txt-link {
    font-size: 18px;
    line-height: 1.5;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-lr-img-txt-block {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-lr-img-txt-block ul li {
    display: flex;
    justify-content: space-between;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-lr-img-txt-block ul li + li {
  margin-top: 25px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-lr-img-txt-block ul li + li {
    margin-top: 30px;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-lr-img-txt-block ul li.product-detail-left-right-img-txt-block figure {
  order: -1;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-lr-img-txt-block ul li.product-detail-left-right-txt-img-block figure {
  order: 1;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-lr-img-txt-block ul li figure {
    width: 398px;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-lr-img-txt-block ul li p {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6666666667;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-lr-img-txt-block ul li p {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 0;
    width: calc(100% - 398px - 20px);
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-left-right-txt-block {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-left-right-txt-block ul {
    align-items: top;
    display: flex;
    justify-content: space-between;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-left-right-txt-block ul li {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6666666667;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-left-right-txt-block ul li {
    font-size: 18px;
    line-height: 1.5;
    width: calc((100% - 20px) / 2);
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-left-right-txt-block ul li + li {
  margin-top: 25px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-left-right-txt-block ul li + li {
    margin-top: 0;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-left-right-img-block {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-left-right-img-block ul {
    align-items: top;
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-left-right-img-block ul li {
    width: calc((100% - 20px) / 2);
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-left-right-img-block ul li + li {
  margin-top: 25px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-left-right-img-block ul li + li {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-left-right-img-block ul li img {
    height: 235px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-img-txt-block {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-img-txt-block.col2 ul li {
    width: calc((100% - 20px) / 2);
  }
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-img-txt-block.col2 ul li img {
    height: 235px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-img-txt-block.col3 ul li {
    width: calc((100% - 26px) / 3);
  }
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-img-txt-block.col3 ul li img {
    height: calc((92.1011058452vw - 40px - 26px) / 3 * 0.66076);
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
}
@media (min-width: 1266px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-img-txt-block.col3 ul li img {
    height: 174px;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-img-txt-block.col4 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-img-txt-block.col4 ul li {
  width: calc((100% - 15px) / 2);
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-img-txt-block.col4 ul li {
    width: calc((100% - 27px) / 4);
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-img-txt-block.col4 ul li img {
  height: 27.6461295419vw;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-img-txt-block.col4 ul li img {
    height: calc((92.1011058452vw - 40px - 27px) / 4 * 0.66076);
  }
}
@media (min-width: 1266px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-img-txt-block.col4 ul li img {
    height: 124px;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-img-txt-block ul {
  margin-top: -25px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-img-txt-block ul {
    display: flex;
    justify-content: space-between;
    margin-top: 0;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-img-txt-block ul li {
  margin-top: 25px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-img-txt-block ul li {
    margin-top: 0;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-img-txt-block ul li p {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6666666667;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-img-txt-block ul li p {
    font-size: 18px;
    line-height: 1.5;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-tb {
  margin-top: 40px;
  overflow: auto;
  /*スクロールさせる*/
  width: 100%;
}
@media (min-width: 1266px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-tb {
    max-width: 815px;
    width: 100%;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-tb table {
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll !important;
  width: 100%;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .detail-block .product-detail-tb table td {
  background: #fff;
  border: 1px solid #DCDDDD;
  color: #000;
  font-size: 14px;
  line-height: 1.6428571429;
  min-height: 66px;
  padding: 20px;
  vertical-align: middle;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download {
    margin-top: 60px;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: -28px;
  padding-top: 28px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul {
    margin-top: -30px;
    padding-top: 30px;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul > li {
  align-items: flex-start;
  background: #F7F7F7;
  color: #000;
  display: flex;
  flex-direction: column;
  font-size: 15px;
  font-weight: 500;
  justify-content: center;
  line-height: 1.3333333333;
  margin-top: 28px;
  padding: 15px;
  width: calc((100% - 20px) / 2);
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul > li {
    margin-top: 30px;
    padding: 20px;
    width: calc((100% - 38px) / 2);
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul > li .file-title {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4375;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul > li .file-title {
    font-size: 18px;
    line-height: 1.3888888889;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul > li .type {
  align-items: center;
  background: #262833;
  color: #fff;
  display: flex;
  height: 25px;
  justify-content: center;
  margin: 10px 0 20px;
  padding: 0 10px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul > li .type {
    min-width: 116px;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul > li .btn-box {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: auto;
  width: 100%;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul > li .btn-box {
    flex-direction: row;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul > li .btn-box li {
  width: 100%;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul > li .btn-box li {
    width: calc((100% - 10px) / 2);
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul > li .btn-box li + li {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul > li .btn-box li + li {
    margin-top: 0;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul > li .btn-box li.btn-download a {
  background: #BF2812;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul > li .btn-box li.btn-pack-download {
  position: relative;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul > li .btn-box li.btn-pack-download:hover {
  opacity: 0.7;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul > li .btn-box li.btn-pack-download.selected:hover {
  opacity: 1;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul > li .btn-box li.btn-pack-download.selected > a {
  background: #434343;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul > li .btn-box li.btn-pack-download > a {
  background: #EAA200;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1266px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul > li .btn-box li.btn-pack-download > a {
    flex-direction: row;
    justify-content: center;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul > li .btn-box li.btn-pack-download > a span {
  display: block;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul > li .btn-box li.btn-pack-download .popup-cart-in {
  background: #434343;
  bottom: calc(100% + 10px);
  color: #fff;
  cursor: auto;
  display: none;
  font-size: 12px;
  left: 50%;
  padding: 10px 5px;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  width: 160px;
}
@media (min-width: 768px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul > li .btn-box li.btn-pack-download .popup-cart-in {
    font-size: 14px;
    padding: 10px;
    width: 250px;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul > li .btn-box li.btn-pack-download .popup-cart-in::after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #434343;
  content: "";
  bottom: -10px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 2;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul > li .btn-box li.btn-pack-download .popup-cart-in a {
  background: #F5F5DC;
  color: #BF2812;
  display: inline-block;
  padding: 0 5px;
  text-decoration: underline;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul > li .btn-box li.btn-pack-download .popup-cart-in a:hover {
  text-decoration: none;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul > li .btn-box li.btn-pack-download .popup-cart-in span {
  align-items: center;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 50%;
  color: #000;
  cursor: pointer;
  display: flex;
  font-size: 15px;
  height: 25px;
  justify-content: center;
  position: absolute;
  right: -8px;
  top: -8px;
  transition: 0.3s;
  width: 25px;
  z-index: 2;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul > li .btn-box li.btn-pack-download .popup-cart-in span:hover {
  background: #434343;
  color: #fff;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul > li .btn-box li > a {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 15px;
  font-weight: 700;
  height: 50px;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents .list-catalog-download > ul > li .btn-box li > a {
    font-size: 13px;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-detail-contents #j-catalog-dl {
  scroll-margin-top: 130px;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .rich .iframe-wrap {
  position: relative;
  padding-top: 56.25%;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .rich .iframe-wrap iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-nav {
  margin-top: 24px;
}
@media (min-width: 1266px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-nav {
    margin-top: 0;
    width: calc(100% - 816px - 20px);
  }
}
@media (min-width: 1266px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-nav.accordion {
    display: none;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-nav p {
  align-items: center;
  background: #0A2E7B;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 18px;
  font-weight: 700;
  height: 55px;
  justify-content: flex-start;
  padding: 0 15px;
  position: relative;
}
@media (min-width: 1266px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-nav p {
    cursor: auto;
    height: 70px;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-nav p::before {
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
}
@media (min-width: 1266px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-nav p::before {
    display: none;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-nav p::after {
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: rotate(90deg);
  transform-origin: center center;
  transition: 0.5s;
  width: 13px;
}
@media (min-width: 1266px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-nav p::after {
    display: none;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-nav p.open {
  background: #0A2E7B;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-nav p.open::after {
  transform: rotate(0);
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-nav .category-menu {
  display: none;
}
@media (min-width: 1266px) {
  .page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-nav .category-menu {
    display: block;
  }
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-nav .category-menu li.active a {
  background: #F3F8FC url(../images/common/icon_link_arrow06.svg) no-repeat 15px 50%;
  background-size: 9px 7px;
  color: #1E4292;
  font-weight: 700;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-nav .category-menu li a {
  align-items: center;
  background: url(../images/common/icon_link_arrow05.svg) no-repeat 15px 50%;
  background-size: 9px 7px;
  border-bottom: 1px solid #E9ECF0;
  display: flex;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3333333333;
  min-height: 61px;
  padding: 10px 32px;
}
.page-products-services-products .area-products-category-detail .area-products-category-detail-wrapper .category-nav .category-menu li a:hover {
  background: #F3F8FC url(../images/common/icon_link_arrow06.svg) no-repeat 15px 50%;
  background-size: 9px 7px;
  color: #1E4292;
  font-weight: 700;
}
.page-products-services-products .link-catalog-download-bottom {
  width: auto;
  margin: 28px 20px 0;
}
@media (min-width: 768px) {
  .page-products-services-products .link-catalog-download-bottom {
    width: 488px;
    margin: 35px auto 0;
  }
}
.page-products-services-products .link-catalog-download-bottom a {
  align-items: center;
  background: #43A649;
  color: #fff;
  display: flex;
  font-size: 20px;
  font-weight: 700;
  height: 48px;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .page-products-services-products .link-catalog-download-bottom a {
    font-size: 24px;
    height: 60px;
  }
}

/*--------------------------
	/products_services/products/search-result
--------------------------*/
.page-products-services-products_search .area-search-result {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .page-products-services-products_search .area-search-result {
    padding-bottom: 70px;
  }
}
.page-products-services-products_search .area-search-result h1 {
  border-bottom: 1px solid #E4E4E4;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 20px;
  padding-bottom: 12px;
}
@media (min-width: 768px) {
  .page-products-services-products_search .area-search-result h1 {
    border-bottom: 2px solid #E4E4E4;
    font-size: 28px;
    margin: 0;
    padding-bottom: 10px;
  }
}
.page-products-services-products_search .area-search-result .txt-s01 {
  color: #000;
  font-size: 15px;
  line-height: 1.6666666667;
  margin-top: 15px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-products-services-products_search .area-search-result .txt-s01 {
    font-size: 18px;
    line-height: 1.3888888889;
    margin-top: 30px;
    padding: 0;
  }
}
.page-products-services-products_search .area-search-result .txt-s01 span {
  font-weight: 700;
  padding-right: 5px;
  vertical-align: baseline;
}
.page-products-services-products_search .area-search-result .list-products {
  margin-top: -20px;
  padding: 30px 20px 0;
  position: relative;
}
@media (min-width: 768px) {
  .page-products-services-products_search .area-search-result .list-products {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 30px 0 0;
  }
}
.page-products-services-products_search .area-search-result .list-products::before, .page-products-services-products_search .area-search-result .list-products::after {
  content: "";
  order: 1;
  width: calc((100% - 60px) / 4);
}
.page-products-services-products_search .area-search-result .list-products li {
  display: none;
}
@media (min-width: 768px) {
  .page-products-services-products_search .area-search-result .list-products li {
    align-items: stretch;
    width: calc((100% - 60px) / 4);
  }
}
.page-products-services-products_search .area-search-result .list-products li.active {
  display: block;
}
@media (min-width: 768px) {
  .page-products-services-products_search .area-search-result .list-products li.active {
    display: flex;
  }
}
.page-products-services-products_search .area-search-result .list-products li a {
  background: #F7F7F7;
  display: block;
  margin-top: 20px;
  padding: 15px 15px 30px;
}
.page-products-services-products_search .area-search-result .list-products li a .product-name {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5555555556;
  margin-top: 13px;
}
.page-products-services-products_search .area-search-result .list-products li a .product-disc {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4666666667;
  margin-top: 6px;
}

/*--------------------------
	/products_services/download/
--------------------------*/
.page-products-services-download {
  position: relative;
}
.page-products-services-download .main-container {
  position: relative;
}
.page-products-services-download .main-container .list-download {
  margin-top: 17px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-products-services-download .main-container .list-download {
    margin-top: 26px;
    padding: 0;
  }
}
.page-products-services-download .main-container .list-download .select-download {
  align-items: center;
  background: #fff url(../images/common/icon_select02.svg) no-repeat right 21px center;
  background-size: 18px 28px;
  border: 1px solid #E9ECF0;
  border-radius: 3px;
  color: #6F7070;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  height: 44px;
  line-height: 1.3125;
  padding: 0 15px;
  width: 100%;
}
.page-products-services-download .main-container .list-download .select-download option {
  color: #000;
}
.page-products-services-download .main-container .list-download ul {
  display: flex;
  flex-wrap: wrap;
}
.page-products-services-download .main-container .list-download ul li {
  width: 50%;
}
@media (min-width: 768px) {
  .page-products-services-download .main-container .list-download ul li {
    width: 25%;
  }
}
.page-products-services-download .main-container .list-download ul li a {
  align-items: center;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 10px 12px;
  background-size: 35px;
  border: 1px solid #E9ECF0;
  color: #000;
  display: flex;
  font-size: 15px;
  font-weight: 500;
  height: 59px;
  line-height: 1.3333333333;
  padding: 0 15px 0 55px;
}
@media (min-width: 768px) {
  .page-products-services-download .main-container .list-download ul li a {
    background-position: 15px 23px;
    background-size: 48px;
    height: 93px;
    padding-left: 73px;
  }
}
.page-products-services-download .main-container .list-download ul li a.category01 {
  background-image: url(../images/products_services/type_category_01.png);
}
.page-products-services-download .main-container .list-download ul li a.category02 {
  background-image: url(../images/products_services/type_category_02.png);
}
.page-products-services-download .main-container .list-download ul li a.category03 {
  background-image: url(../images/products_services/type_category_03.png);
}
.page-products-services-download .main-container .list-download ul li a.category04 {
  background-image: url(../images/products_services/type_category_04.png);
}
.page-products-services-download .main-container .list-download ul li a.category05 {
  background-image: url(../images/products_services/type_category_05.png);
}
.page-products-services-download .main-container .list-download ul li a.category06 {
  background-image: url(../images/products_services/type_category_06.png);
}
.page-products-services-download .main-container .list-download ul li a.category07 {
  background-image: url(../images/products_services/type_category_07.png);
}
.page-products-services-download .main-container .list-download ul li a.category08 {
  background-image: url(../images/products_services/type_category_08.png);
}
.page-products-services-download .main-container .list-download ul li a.category09 {
  background-image: url(../images/products_services/type_category_09.png);
}
.page-products-services-download .main-container .list-download ul li a.category10 {
  background-image: url(../images/products_services/type_category_10.png);
}
.page-products-services-download .main-container .list-download ul li a.category11 {
  background-image: url(../images/products_services/type_category_11.png);
}
.page-products-services-download .main-container .list-download ul li a.category12 {
  background-image: url(../images/products_services/type_category_12.png);
}
.page-products-services-download .main-container .list-download ul li a.category13 {
  background-image: url(../images/products_services/type_category_13.png);
}
.page-products-services-download .main-container .list-download ul li a.category14 {
  background-image: url(../images/products_services/type_category_14.png);
}
.page-products-services-download .main-container .list-download ul li a.category15 {
  background-image: url(../images/products_services/type_category_15.png);
}
.page-products-services-download .main-container .list-download ul li a.category16 {
  background-image: url(../images/products_services/type_category_16.png);
}
.page-products-services-download .main-container .list-download ul li a.category17 {
  background-image: url(../images/products_services/type_category_17.png);
}
.page-products-services-download .main-container .list-download ul li a.category18 {
  background-image: url(../images/products_services/type_category_18.png);
}
.page-products-services-download .main-container .list-download ul li a.category19 {
  background-image: url(../images/products_services/type_category_19.png);
}
.page-products-services-download .main-container .list-download ul li a.category20 {
  background-image: url(../images/products_services/type_category_20.png);
}
.page-products-services-download .main-container .list-download ul li a.category21 {
  background-image: url(../images/products_services/type_category_21.png);
}
.page-products-services-download .main-container .list-download ul li a.category22 {
  background-image: url(../images/products_services/type_category_22.png);
}
.page-products-services-download .main-container .list-download ul li a.category23 {
  background-image: url(../images/products_services/type_category_23.png);
}
.page-products-services-download .main-container .list-download ul li a.category24 {
  background-image: url(../images/products_services/type_category_24.png);
}
.page-products-services-download .main-container .list-download ul li a.category25 {
  background-image: url(../images/products_services/type_category_25.png);
}
.page-products-services-download .main-container .list-download ul li a.category26 {
  background-image: url(../images/products_services/type_category_26.png);
}
.page-products-services-download .main-container .list-download ul li a.category27 {
  background-image: url(../images/products_services/type_category_27.png);
}
.page-products-services-download .main-container .list-download ul li a.category28 {
  background-image: url(../images/products_services/type_category_28.png);
}
.page-products-services-download .main-container .list-download ul li a.category29 {
  background-image: url(../images/products_services/type_category_29.png);
}
.page-products-services-download .main-container .list-download ul li a.category30 {
  background-image: url(../images/products_services/type_category_30.png);
}
.page-products-services-download .main-container .list-download ul li a.category31 {
  background-image: url(../images/products_services/type_category_31.png);
}
.page-products-services-download .main-container .list-download ul li a.category32 {
  background-image: url(../images/products_services/type_category_32.png);
}
.page-products-services-download .main-container .list-download ul li a.category33 {
  background-image: url(../images/products_services/type_category_33.png);
}
.page-products-services-download .main-container .list-download ul li a.category34 {
  background-image: url(../images/products_services/type_category_34.png);
}
.page-products-services-download .main-container .list-download ul li a.category35 {
  background-image: url(../images/products_services/type_category_35.png);
}
.page-products-services-download .main-container .list-download ul li a.category36 {
  background-image: url(../images/products_services/type_category_36.png);
}
.page-products-services-download .main-container .list-download ul li a:hover {
  background-color: #BF2812;
  color: #fff;
  opacity: 1;
}
.page-products-services-download .main-container .area-downlad-list h1 {
  border-bottom: 1px solid #E4E4E4;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 20px;
  padding-bottom: 12px;
}
@media (min-width: 768px) {
  .page-products-services-download .main-container .area-downlad-list h1 {
    border-bottom: 2px solid #E4E4E4;
    font-size: 32px;
    margin: 0;
    padding-bottom: 10px;
  }
}
.page-products-services-download .main-container .area-downlad-list .list-category-download {
  margin-top: 17px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-products-services-download .main-container .area-downlad-list .list-category-download {
    margin-top: 16px;
    padding: 0;
  }
}
.page-products-services-download .main-container .area-downlad-list .list-category-download > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-products-services-download .main-container .area-downlad-list .list-category-download > ul::before, .page-products-services-download .main-container .area-downlad-list .list-category-download > ul::after {
  content: "";
  order: 1;
  width: 50%;
}
@media (min-width: 768px) {
  .page-products-services-download .main-container .area-downlad-list .list-category-download > ul::before, .page-products-services-download .main-container .area-downlad-list .list-category-download > ul::after {
    width: calc((100% - 56px) / 3);
  }
}
.page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li {
  align-items: flex-start;
  background: #F7F7F7;
  color: #000;
  display: flex;
  flex-direction: column;
  font-size: 15px;
  font-weight: 500;
  justify-content: center;
  line-height: 1.3333333333;
  margin-top: 28px;
  padding: 15px;
  width: calc((100% - 10px) / 2);
}
@media (min-width: 768px) {
  .page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li {
    padding: 20px;
    width: calc((100% - 56px) / 3);
  }
}
.page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li .file-title {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4375;
}
@media (min-width: 768px) {
  .page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li .file-title {
    font-size: 18px;
    line-height: 1.3888888889;
  }
}
.page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li .type {
  align-items: center;
  background: #262833;
  color: #fff;
  display: flex;
  height: 25px;
  justify-content: center;
  margin-top: 10px;
  padding: 0 10px;
}
@media (min-width: 768px) {
  .page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li .type {
    min-width: 116px;
  }
}
.page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li .btn-box {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li .btn-box {
    flex-direction: row;
    padding-top: 20px;
  }
}
.page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li .btn-box li {
  margin-top: 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li .btn-box li {
    margin-top: 0;
    width: calc((100% - 10px) / 2);
  }
}
.page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li .btn-box li.btn-download a {
  background: #BF2812;
  text-align: center;
}
.page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li .btn-box li.btn-pack-download {
  position: relative;
}
.page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li .btn-box li.btn-pack-download:hover {
  opacity: 0.7;
}
.page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li .btn-box li.btn-pack-download.selected:hover {
  opacity: 1;
}
.page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li .btn-box li.btn-pack-download.selected > a {
  background: #434343;
}
.page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li .btn-box li.btn-pack-download > a {
  background: #EAA200;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1266px) {
  .page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li .btn-box li.btn-pack-download > a {
    flex-direction: row;
    justify-content: center;
  }
}
.page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li .btn-box li.btn-pack-download > a span {
  display: block;
}
.page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li .btn-box li.btn-pack-download .popup-cart-in {
  background: #434343;
  bottom: calc(100% + 10px);
  color: #fff;
  cursor: auto;
  display: none;
  font-size: 12px;
  left: 50%;
  padding: 10px 5px;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  width: 160px;
}
@media (min-width: 768px) {
  .page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li .btn-box li.btn-pack-download .popup-cart-in {
    font-size: 14px;
    padding: 10px;
    width: 250px;
  }
}
.page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li .btn-box li.btn-pack-download .popup-cart-in::after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #434343;
  content: "";
  bottom: -10px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 2;
}
.page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li .btn-box li.btn-pack-download .popup-cart-in a {
  background: #F5F5DC;
  color: #BF2812;
  display: inline-block;
  padding: 0 5px;
  text-decoration: underline;
}
.page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li .btn-box li.btn-pack-download .popup-cart-in a:hover {
  text-decoration: none;
}
.page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li .btn-box li.btn-pack-download .popup-cart-in span {
  align-items: center;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 50%;
  color: #000;
  cursor: pointer;
  display: flex;
  font-size: 15px;
  height: 25px;
  justify-content: center;
  position: absolute;
  right: -8px;
  top: -8px;
  transition: 0.3s;
  width: 25px;
  z-index: 2;
}
.page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li .btn-box li.btn-pack-download .popup-cart-in span:hover {
  background: #434343;
  color: #fff;
}
@media (min-width: 768px) {
  .page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li .btn-box li.btn-detail {
    margin-top: 10px;
    width: 100%;
  }
}
.page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li .btn-box li.btn-detail a {
  background: #1E4292;
}
.page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li .btn-box li > a {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 15px;
  font-weight: 700;
  height: 50px;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li .btn-box li > a {
    font-size: 13px;
  }
}
.page-products-services-download .main-container .area-downlad-list .list-category-download.pack > ul > li .product-name {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3333333333;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .page-products-services-download .main-container .area-downlad-list .list-category-download.pack > ul > li .btn-box .btn-detail {
    margin-top: 0;
    width: calc((100% - 10px) / 2);
  }
}
.page-products-services-download .main-container .area-downlad-list .list-category-download.pack > ul > li .btn-box .btn-cart-remove a {
  background: #AFAFAF;
}
.page-products-services-download .main-container .area-downlad-list .list-category-download.pack > ul > li .btn-box .btn-cart-remove a:hover {
  background: #595757;
  opacity: 1;
}
.page-products-services-download .main-container .note-download {
  background: #E9ECF0;
  font-size: 14px;
  line-height: 1.7142857143;
  margin: 0 20px 40px;
  min-height: 140px;
  padding: 30px 20px 33px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-products-services-download .main-container .note-download {
    font-size: 18px;
    line-height: 1.6666666667;
    margin: 0 0 60px;
    padding: 50px 50px 53px;
  }
}
.page-products-services-download .main-container .note-download .list-btn-download {
  margin-top: 15px;
  padding-top: 30px;
  background-image: url(../images/common/arrow_download.svg);
  background-position: center top;
  background-size: 45px auto;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .page-products-services-download .main-container .note-download .list-btn-download {
    padding-top: 70px;
    background-size: 106px auto;
  }
}
.page-products-services-download .main-container .note-download .list-btn-download li {
  margin-top: 15px;
}
.page-products-services-download .main-container .note-download .list-btn-download li a {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #BF2812;
  background-image: url(../images/common/icon_download02.svg);
  background-position: 20px 50%;
  background-size: 14px 14px;
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  min-height: 77px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  padding: 10px 20px 10px 50px;
  text-align: left;
  text-decoration: none;
}
@media (min-width: 768px) {
  .page-products-services-download .main-container .note-download .list-btn-download li a {
    background-position: 30px 50%;
    background-size: 20px 20px;
    font-size: 20px;
    line-height: 1.5;
    margin: 0 auto;
    padding: 10px 30px 10px 65px;
    width: 381px;
  }
}
.page-products-services-download .main-container .note-download .list-btn-download li a span {
  display: block;
  margin-left: -30px;
}
@media (min-width: 768px) {
  .page-products-services-download .main-container .note-download .list-btn-download li a span {
    margin-left: -35px;
  }
}
.page-products-services-download .hd2 {
  background: #373582;
  margin-top: 40px;
  padding: 5px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}
@media (min-width: 768px) {
  .page-products-services-download .hd2 {
    margin-top: 50px;
    padding: 6px;
    font-size: 20px;
  }
}
.page-products-services-download .hd2 span {
  display: block;
  border-left: 1px solid #fff;
  padding: 8px 12px;
}
@media (min-width: 768px) {
  .page-products-services-download .hd2 span {
    padding: 10px 15px;
  }
}
.page-products-services-download .hd3 {
  background-image: url(../images/products_services/download/bg_hd3_sp.png);
  background-position: left bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-top: 20px;
  padding: 0 0 8px 6px;
  font-size: 16px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .page-products-services-download .hd3 {
    background-image: url(../images/products_services/download/bg_hd3_pc.png);
    margin-top: 25px;
    padding: 0 0 10px 7px;
    font-size: 20px;
  }
}

/*--------------------------
	/privacy/
--------------------------*/
.page-privacy .area-privacy {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-privacy .area-privacy {
    margin: 0 auto;
    max-width: 920px;
    padding: 0;
  }
}
.page-privacy .area-privacy h2 {
  border-bottom: 1px solid #E4E4E4;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
  margin: 0 0 20px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .page-privacy .area-privacy h2 {
    font-size: 32px;
    line-height: 1.34375;
    margin: 0 0 36px;
    padding-bottom: 32px;
  }
}
.page-privacy .area-privacy p {
  font-size: 14px;
  line-height: 1.7142857143;
}
@media (min-width: 768px) {
  .page-privacy .area-privacy p {
    font-size: 17px;
    line-height: 1.7058823529;
  }
}
.page-privacy .area-privacy p + h2 {
  padding-top: 80px;
}
@media (min-width: 768px) {
  .page-privacy .area-privacy p + h2 {
    padding-top: 167px;
  }
}
.page-privacy .area-privacy .area-privacy-inner {
  margin: 0 0 167px;
  max-width: 800px;
}
.page-privacy .area-privacy .area-privacy-inner p {
  font-size: 14px;
  margin: 0 0 24px;
}
@media (min-width: 768px) {
  .page-privacy .area-privacy .area-privacy-inner p {
    font-size: 17px;
    line-height: 1.7058823529;
  }
}
.page-privacy .area-privacy .area-privacy-inner ul li {
  font-size: 14px;
}
@media (min-width: 768px) {
  .page-privacy .area-privacy .area-privacy-inner ul li {
    font-size: 17px;
  }
}
.page-privacy .area-privacy .area-privacy-inner ul li .docs {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-privacy .area-privacy .area-privacy-inner ul li .docs p {
  padding-right: 15px;
  margin: 0;
  line-height: 2.5;
}
.page-privacy .area-privacy .area-privacy-inner ul li .docs .pdf-icon {
  color: #c42811;
  padding-top: 0;
  margin-top: 0;
  font-size: 15px;
  width: 80px;
  min-width: 80px;
  text-align: right;
  background: url(/xj/icon_pdf.svg) no-repeat top 2px left 0px;
  background-size: 22px;
  line-height: 2;
}

/*--------------------------
	/sitemap/
--------------------------*/
.page-sitemap .area-sitemap {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-sitemap .area-sitemap {
    margin: 0 auto;
    max-width: 920px;
    padding: 0;
  }
}
.page-sitemap .area-sitemap h2 {
  background: url(../images/sitemap/icon_link01.svg) no-repeat 0 7px;
  background-size: 20px 20px;
  border-bottom: 1px solid #E4E4E4;
  font-size: 23px;
  font-weight: bold;
  line-height: 1.347826087;
  margin-bottom: 24px;
  padding: 0 0 23px 31px;
}
@media (min-width: 768px) {
  .page-sitemap .area-sitemap h2 {
    background: url(../images/sitemap/icon_link01.svg) no-repeat 0 10px;
    background-size: 27px 27px;
    font-size: 32px;
    line-height: 1.34375;
    padding: 0 0 32px 42px;
  }
}
@media (min-width: 768px) {
  .page-sitemap .area-sitemap > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 17px;
    margin-top: -22px;
  }
}
.page-sitemap .area-sitemap > ul + h2 {
  margin-top: 46px;
}
@media (min-width: 768px) {
  .page-sitemap .area-sitemap > ul + h2 {
    margin-top: 68px;
  }
}
.page-sitemap .area-sitemap > ul > li {
  margin-top: 22px;
}
@media (min-width: 768px) {
  .page-sitemap .area-sitemap > ul > li {
    width: calc((100% - 34px) / 3);
  }
}
.page-sitemap .area-sitemap > ul > li > a {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3333333333;
  padding-left: 27px;
  text-indent: -27px;
}
@media (min-width: 768px) {
  .page-sitemap .area-sitemap > ul > li > a {
    font-size: 20px;
    line-height: 1.35;
  }
}
.page-sitemap .area-sitemap > ul > li > a::before {
  background: url(../images/sitemap/icon_link02.svg) no-repeat 0 0;
  content: "";
  display: inline-block;
  height: 17px;
  margin-right: 10px;
  transform: translateY(-2px);
  width: 17px;
}
.page-sitemap .area-sitemap > ul > li > a.external::after {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2215.997%22%20height%3D%2216%22%20viewBox%3D%220%200%2015.997%2016%22%3E%3Cg%20transform%3D%22translate(-4.001%20-4)%22%3E%3Cpath%20d%3D%22M11.706%2C13.707%2C18%2C7.414V11h2V4H13V6h3.586l-6.293%2C6.293Z%22%2F%3E%3Cpath%20d%3D%22M19%2C18V14H17v4H6V7h4V5H6A2%2C2%2C0%2C0%2C0%2C4%2C7V18a2%2C2%2C0%2C0%2C0%2C2%2C2H17A2%2C2%2C0%2C0%2C0%2C19%2C18Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 0 0;
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  margin-left: 10px;
}
.page-sitemap .area-sitemap > ul > li ul {
  margin-top: 19px;
}
@media (min-width: 768px) {
  .page-sitemap .area-sitemap > ul > li ul {
    margin-top: 10px;
  }
}
.page-sitemap .area-sitemap > ul > li ul li {
  padding-left: 10px;
}
@media (min-width: 768px) {
  .page-sitemap .area-sitemap > ul > li ul li {
    padding-left: 27px;
  }
}
.page-sitemap .area-sitemap > ul > li ul li a {
  font-size: 15px;
  line-height: 1.7333333333;
}
@media (min-width: 768px) {
  .page-sitemap .area-sitemap > ul > li ul li a {
    display: inline-block;
    font-size: 17px;
    line-height: 1.7058823529;
    padding-left: 14px;
    text-indent: -14px;
  }
}
.page-sitemap .area-sitemap > ul > li ul li a::before {
  background: url(../images/sitemap/icon_link03.svg) no-repeat 0 0;
  content: "";
  display: inline-block;
  height: 7px;
  margin-right: 10px;
  transform: translateY(-2px);
  width: 4px;
}
/*--------------------------
	/404/
--------------------------*/
.page-404 .area-404 h2 {
  color: #1E4292;
  font-family: "Manrope", sans-serif;
  font-size: 100px;
  font-weight: 800;
  line-height: 1.33;
  margin-bottom: 22px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-404 .area-404 h2 {
    font-size: 150px;
    line-height: 1.3333333333;
  }
}
.page-404 .area-404 h2 span {
  color: #BF2812;
  vertical-align: top;
}
.page-404 .area-404 h2 + p {
  font-size: 14px;
  line-height: 1.7142857143;
  margin-bottom: 60px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-404 .area-404 h2 + p {
    font-size: 17px;
    line-height: 1.7058823529;
    margin-bottom: 88px;
    padding: 0;
    text-align: center;
  }
}
.page-404 .area-404 .list-link {
  margin-bottom: 70px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-404 .area-404 .list-link {
    margin-bottom: 94px;
    padding: 0;
  }
}
.page-404 .area-404 .list-link ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: -15px;
}
@media (min-width: 768px) {
  .page-404 .area-404 .list-link ul {
    margin-top: -47px;
  }
}
.page-404 .area-404 .list-link ul li {
  margin-top: 15px;
  text-align: center;
  width: calc((100% - 20px) / 2);
}
@media (min-width: 768px) {
  .page-404 .area-404 .list-link ul li {
    margin-top: 47px;
    width: calc((100% - 66px) / 3);
  }
}
.page-404 .area-404 .list-link ul li a {
  display: block;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .page-404 .area-404 .list-link ul li a {
    margin-bottom: 35px;
  }
}
.page-404 .area-404 .list-link ul li p {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .page-404 .area-404 .list-link ul li p {
    font-size: 24px;
    line-height: 1.3333333333;
  }
}

/*--------------------------
	/action/
--------------------------*/
.page-action .mv {
  padding: 104px 20px 140px;
  background-color: #fff;
  background-color: #fff;
}
@media (min-width: 768px) {
  .page-action .mv {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1366px;
    height: auto;
    margin: 0 auto;
    padding: 0;
  }
}
.page-action .mv .left {
  width: 224px;
  margin: 0 auto 45px;
}
@media (min-width: 768px) {
  .page-action .mv .left {
    width: 45.5%;
    margin: 0;
  }
}
.page-action .mv .left img {
  display: block;
}
@media (min-width: 768px) {
  .page-action .mv .right {
    width: 54.5%;
  }
}
.page-action .mv .right .ttl {
  border-bottom: 1px solid #adadad;
  margin-bottom: 20px;
  padding-bottom: 14px;
}
@media (min-width: 768px) {
  .page-action .mv .right .ttl {
    margin-bottom: 35px;
    padding-bottom: 20px;
  }
}
.page-action .mv .right .ttl span {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 11px;
  line-height: 1.7272727273;
}
@media (min-width: 768px) {
  .page-action .mv .right .ttl span {
    font-size: 20px;
    line-height: 1.7;
  }
}
.page-action .mv .right .ttl img {
  display: block;
}
@media (min-width: 768px) {
  .page-action .mv .right .ttl img {
    width: 582px;
    margin: 0 auto;
  }
}
.page-action .mv .right .fun3 {
  width: 144px;
  margin: 0 auto 10px;
}
@media (min-width: 768px) {
  .page-action .mv .right .fun3 {
    width: 250px;
    margin: 0 auto 20px;
  }
}
.page-action .mv .right p {
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.6666666667;
}
@media (min-width: 768px) {
  .page-action .mv .right p {
    font-size: 20px;
    line-height: 1.7;
  }
}
.page-action .message {
  padding: 32px 0 115px;
  background-color: #313D7E;
}
@media (min-width: 768px) {
  .page-action .message {
    padding: 28px 0 140px;
    background-color: #1E4292;
  }
}
.page-action .message h2 {
  max-width: calc(100vw + 40px);
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  .page-action .message h2 {
    max-width: 1450px;
    margin: 0 auto 50px;
  }
}
.page-action .message h2 img {
  width: 100%;
}
.page-action .message .container {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-action .message .container {
    display: flex;
    flex-direction: row-reverse;
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 100px;
  }
}
@media (min-width: 768px) {
  .page-action .message .container .text {
    width: calc(64.8% - 80px);
    margin-right: 80px;
  }
}
.page-action .message .container .text h3 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .page-action .message .container .text h3 {
    margin-bottom: 30px;
    font-size: 30px;
    line-height: 1.7;
  }
}
.page-action .message .container .text p {
  color: #fff;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 2.5;
}
@media (min-width: 768px) {
  .page-action .message .container .text p {
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 2.3333333333;
  }
}
.page-action .message .container .text p.name {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .page-action .message .container .text p.name {
    margin-bottom: 10px;
  }
}
.page-action .message .container .text p.name .big {
  margin-left: 25px;
  font-weight: 700;
  font-size: 18px;
}
@media (min-width: 768px) {
  .page-action .message .container .text p.name .big {
    margin-left: 20px;
    font-size: 20px;
    line-height: 1;
  }
}
.page-action .message .container .text p.notice-pc {
  display: none;
}
@media (min-width: 768px) {
  .page-action .message .container .text p.notice-pc {
    display: block;
    margin-bottom: 0;
    font-size: 10px;
    line-height: 3.5;
  }
}
.page-action .message .container .text p.notice-sp {
  display: block;
  margin-bottom: 15px;
  font-size: 11px;
  line-height: 3.5;
}
@media (min-width: 768px) {
  .page-action .message .container .text p.notice-sp {
    display: none;
    margin-bottom: 0;
  }
}
.page-action .message .container .img {
  margin: 0 30px 15px;
}
@media (min-width: 768px) {
  .page-action .message .container .img {
    width: 31.75%;
  }
}
.page-action .interview-banner {
  width: auto;
  margin: 0 20px 40px;
}
@media (min-width: 768px) {
  .page-action .interview-banner {
    width: 780px;
    margin: 78px auto 0;
  }
}
@media (min-width: 768px) {
  .page-action .interview-banner a {
    transition: opacity 0.3s ease;
  }
}
@media (min-width: 768px) {
  .page-action .interview-banner a:hover {
    opacity: 0.8;
  }
}
.page-action .action {
  height: calc(100% - 70px);
  padding: 20px;
  background-color: #313D7E;
  width: 100%;
}
@media (max-width: 375px) {
  .page-action .action {
    padding: 16px;
  }
}
@media (min-width: 768px) {
  .page-action .action {
    height: calc(100% - 100px);
  }
}
.page-action .action.red {
  background-color: #BF2812;
}
.page-action .action.scrollify {
  position: relative;
  width: 100%;
  height: 100vh;
}
.page-action .action.scrollify .page-num {
  position: absolute;
  top: calc(50% - 25px);
  right: 30px;
  width: 28px;
}
.page-action .action.scrollify .page-num li {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}
.page-action .action.scrollify .page-num li:first-of-type::after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  margin: 10px 0;
  background: #000;
}
.page-action .action .inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  background-color: #fff;
  background-image: url(../images/action/section_bg.svg);
  background-position: center bottom;
  background-size: auto 129.38vw;
  background-repeat: no-repeat;
  padding: 40px 16px;
}
@media (max-width: 375px) {
  .page-action .action .inner {
    padding: 20px 13px;
  }
}
@media (max-width: 350px) {
  .page-action .action .inner {
    padding: 15px 10px;
  }
}
@media (min-width: 768px) {
  .page-action .action .inner {
    padding: 5.8565153734vw 7.3206442167vw;
    background-position: left center;
    background-size: auto 100%;
    justify-content: center;
  }
}
.page-action .action .inner h2 {
  margin-bottom: 30px;
}
@media (max-width: 375px) {
  .page-action .action .inner h2 {
    margin-bottom: 24px;
  }
}
@media (max-width: 350px) {
  .page-action .action .inner h2 {
    margin-bottom: 18px;
  }
}
@media (min-width: 768px) {
  .page-action .action .inner h2 {
    margin-bottom: 34px;
  }
}
.page-action .action .inner h2 img {
  display: block;
  width: auto;
  max-height: 60px;
  height: 10.6666666667vw;
}
@media (max-width: 375px) {
  .page-action .action .inner h2 img {
    max-height: 48px;
  }
}
@media (max-width: 350px) {
  .page-action .action .inner h2 img {
    min-height: 36px;
  }
}
@media (min-width: 768px) {
  .page-action .action .inner h2 img {
    height: 8.78477306vh;
  }
}
.page-action .action .inner .img {
  margin-bottom: 20px;
}
@media (max-width: 375px) {
  .page-action .action .inner .img {
    margin-bottom: 16px;
  }
}
@media (max-width: 350px) {
  .page-action .action .inner .img {
    margin-bottom: 12px;
  }
}
@media (min-width: 768px) {
  .page-action .action .inner .img {
    margin: 0 0 3.513909224vw;
  }
}
.page-action .action .inner h3 {
  text-align: center;
  color: #1B2870;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.75;
}
@media (max-width: 390px) {
  .page-action .action .inner h3 {
    margin-bottom: 18px;
    font-size: 18px;
  }
}
@media (max-width: 375px) {
  .page-action .action .inner h3 {
    margin-bottom: 13px;
    font-size: 13px;
  }
}
@media (max-width: 350px) {
  .page-action .action .inner h3 {
    margin-bottom: 12px;
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .page-action .action .inner h3 {
    margin: 0 auto 24px;
    font-size: 2.196193265vw;
    line-height: 1.7;
  }
}
.page-action .action .inner p {
  font-size: 16px;
  line-height: 1.75;
}
@media (max-width: 390px) {
  .page-action .action .inner p {
    font-size: 15px;
  }
}
@media (max-width: 375px) {
  .page-action .action .inner p {
    font-size: 13px;
  }
}
@media (max-width: 350px) {
  .page-action .action .inner p {
    font-size: 11px;
  }
}
@media (min-width: 768px) {
  .page-action .action .inner p {
    font-size: 16px;
    line-height: 2;
  }
}
.page-action .action#action01 .inner .img {
  max-width: 278px;
  width: 49.4222222222vw;
}
@media (min-width: 768px) {
  .page-action .action#action01 .inner .img {
    max-width: 395px;
    width: 28.9165446559vh;
  }
}
.page-action .action#action02 .inner .img {
  max-width: 255px;
  width: 45.3333333333vw;
}
@media (min-width: 768px) {
  .page-action .action#action02 .inner .img {
    width: 26.6471449488vh;
  }
}
.page-action .action#action03 .inner .img {
  max-width: 189px;
  width: 33.6vw;
}
@media (min-width: 768px) {
  .page-action .action#action03 .inner .img {
    width: 19.7657393851vh;
  }
}
.page-action .action#action04 .inner .img {
  max-width: 234px;
  width: 41.6vw;
}
@media (min-width: 768px) {
  .page-action .action#action04 .inner .img {
    width: 24.4509516837vh;
  }
}
.page-action .action#action05 .inner .img {
  max-width: 220px;
  width: 39.1111111111vw;
}
@media (min-width: 768px) {
  .page-action .action#action05 .inner .img {
    width: 24.9633967789vh;
  }
}
.page-action .action#action06 .inner .img {
  max-width: 333px;
  width: 59.2vw;
}
@media (min-width: 768px) {
  .page-action .action#action06 .inner .img {
    width: 34.8462664714vh;
  }
}
.page-action .action#action07 .inner .img {
  max-width: 239px;
  width: 42.4888888889vw;
}
@media (min-width: 768px) {
  .page-action .action#action07 .inner .img {
    width: 25.0366032211vh;
  }
}
.page-action .action#action08 .inner .img {
  max-width: 154px;
  width: 27.3777777778vw;
}
@media (min-width: 768px) {
  .page-action .action#action08 .inner .img {
    width: 16.1054172767vh;
  }
}
.page-action .action#action09 .inner .img {
  max-width: 228px;
  width: 40.5333333333vw;
}
@media (min-width: 768px) {
  .page-action .action#action09 .inner .img {
    width: 23.7920937042vh;
  }
}
.page-action .page_wrap {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.page-action .page_wrap li {
  margin-bottom: 20px;
}
.page-action .page_wrap li a {
  border: 1px solid #000;
  border-radius: 50%;
  display: block;
  width: 10px;
  height: 10px;
}
.page-action .page_wrap li a.active {
  background: #000;
}

.scrollify-pager {
  display: none;
  font-size: 15px;
  font-weight: 700;
  position: fixed;
  right: 60px;
  text-align: center;
  top: 50%;
  transform: translate(0, -50%);
  width: 28px;
  z-index: 2;
}
@media (max-width: 767px) {
  .scrollify-pager {
    display: none !important;
  }
}
.scrollify-pager > div:nth-child(1) {
  margin-bottom: 6px;
}
.scrollify-pager > div:nth-child(2) {
  border-top: 1px solid #000;
  margin-top: 6px;
}

.fullpage-footer {
  position: relative;
}
.fullpage-footer .footer {
  bottom: 70px;
  position: absolute;
  width: 100%;
}
@media (min-width: 768px) {
  .fullpage-footer .footer {
    bottom: 100px;
  }
}

/*--------------------------
	/company/iso/
--------------------------*/
.page-company-iso .c-company-iso {
  max-width: 960px;
  margin: auto;
  padding: 0 20px;
}
.page-company-iso .c-company-iso .box-company-iso {
  margin-bottom: 60px;
}
.page-company-iso .c-company-iso .box-company-iso .ttl-bg_b {
  background-color: #1e4292;
  color: #fff;
  font-size: 18px;
  padding: 20px 10px;
  text-align: center;
  font-weight: bold;
}
@media (min-width: 768px) {
  .page-company-iso .c-company-iso .box-company-iso .ttl-bg_b {
    font-size: 25px;
  }
}
.page-company-iso .c-company-iso .box-company-iso .txt-company-iso {
  background-color: #EFF1F4;
  padding: 20px 15px;
}
@media (min-width: 768px) {
  .page-company-iso .c-company-iso .box-company-iso .txt-company-iso {
    padding: 40px 30px;
    font-size: 16px;
  }
}
.page-company-iso .c-company-iso .flex {
  display: flex;
  flex-wrap: wrap;
}
.page-company-iso .c-company-iso .area-company-iso {
  margin-bottom: 60px;
}
.page-company-iso .c-company-iso .area-company-iso h2 {
  font-size: 20px;
  margin-bottom: 30px;
  border-left: 9px solid #1e4292;
  padding-left: 15px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .page-company-iso .c-company-iso .area-company-iso h2 {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) {
  .page-company-iso .c-company-iso .area-company-iso .clm2 {
    justify-content: space-between;
    align-items: center;
  }
}
.page-company-iso .c-company-iso .area-company-iso .clm2 .company-iso-photo {
  width: 100%;
}
@media (min-width: 768px) {
  .page-company-iso .c-company-iso .area-company-iso .clm2 .company-iso-photo {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .page-company-iso .c-company-iso .area-company-iso .clm2 .company-iso-photo {
    margin-bottom: 20px;
  }
}
.page-company-iso .c-company-iso .area-company-iso .clm2 .company-iso-list {
  width: 100%;
}
@media (min-width: 768px) {
  .page-company-iso .c-company-iso .area-company-iso .clm2 .company-iso-list {
    width: 50%;
  }
}
.page-company-iso .c-company-iso .area-company-iso .clm2 .company-iso-list > li {
  margin-bottom: 20px;
  align-items: center;
}
.page-company-iso .c-company-iso .area-company-iso .clm2 .company-iso-list > li:last-child {
  margin-bottom: 0;
}
.page-company-iso .c-company-iso .area-company-iso .clm2 .company-iso-list .list-ttl {
  background-color: #1e4292;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  margin-right: 20px;
  padding: 10px;
  width: 140px;
  text-align: center;
  font-weight: bold;
}
@media (min-width: 768px) {
  .page-company-iso .c-company-iso .area-company-iso .clm2 .company-iso-list .list-ttl {
    font-size: 18px;
  }
}
.page-company-iso .c-company-iso .area-company-iso .clm3 {
  justify-content: space-between;
}
@media (max-width: 390px) {
  .page-company-iso .c-company-iso .area-company-iso .clm3 {
    justify-content: center;
  }
}
.page-company-iso .c-company-iso .area-company-iso .clm3 > li {
  text-align: center;
  max-width: 300px;
}
@media (min-width: 768px) {
  .page-company-iso .c-company-iso .area-company-iso .clm3 > li {
    width: calc(33.3333333333% - 5px);
  }
}
@media (max-width: 767px) {
  .page-company-iso .c-company-iso .area-company-iso .clm3 > li {
    margin-bottom: 20px;
    width: calc(50% - 5px);
  }
}
@media (max-width: 390px) {
  .page-company-iso .c-company-iso .area-company-iso .clm3 > li {
    width: 100%;
  }
}
.page-company-iso .c-company-iso .area-company-iso .clm3 .list-ttl-pro {
  background-color: #1e4292;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 10px;
}
@media (min-width: 768px) {
  .page-company-iso .c-company-iso .area-company-iso .clm3 .list-ttl-pro {
    font-size: 20px;
  }
}
.page-company-iso .c-company-iso .area-company-iso .ttl-s02 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .page-company-iso .c-company-iso .area-company-iso .ttl-s02 {
    font-size: 25px;
  }
}
.page-company-iso .c-company-iso .area-company-iso .dl-company-iso {
  margin-bottom: 40px;
}
.page-company-iso .c-company-iso .area-company-iso .dl-company-iso .dl-company-iso-s01 {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
}
@media (min-width: 768px) {
  .page-company-iso .c-company-iso .area-company-iso .dl-company-iso .dl-company-iso-s01 {
    font-size: 17px;
  }
}
.page-company-iso .c-company-iso .area-company-iso .dl-company-iso .dl-company-iso-s01 dt {
  background-color: #1e4292;
  color: #fff;
  padding: 20px 30px;
  border: 0.5px solid #A2A2A2;
  width: 100%;
  font-weight: 500;
}
@media (min-width: 768px) {
  .page-company-iso .c-company-iso .area-company-iso .dl-company-iso .dl-company-iso-s01 dt {
    width: 190px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
.page-company-iso .c-company-iso .area-company-iso .dl-company-iso .dl-company-iso-s01 dd {
  background-color: #F4F9FF;
  padding: 20px;
  border: 1px solid #fff;
  width: 100%;
}
@media (min-width: 768px) {
  .page-company-iso .c-company-iso .area-company-iso .dl-company-iso .dl-company-iso-s01 dd {
    width: calc(100% - 190px);
  }
}
.page-company-iso .c-company-iso .area-company-iso .dl-company-iso .dl-company-iso-photo {
  width: 100%;
  max-width: 505px;
}
.page-company-iso .c-company-iso .area-company-iso .dl-company-iso .dl-bottom {
  margin-bottom: 60px;
}

/*--------------------------
	/English pages/
--------------------------*/
.en, .zh {
  /* ------------------------------
    COMMON
  ------------------------------ */
  /* ------------------------------
    HOME
  ------------------------------ */
  /* ------------------------------
    IR
  ------------------------------ */
  /* ------------------------------
    Company
  ------------------------------ */
}
.en .color-red, .zh .color-red {
  color: #BF2812;
}
.en .font-en, .zh .font-en {
  font-family: "Manrope", sans-serif;
}
.en .c-link, .zh .c-link {
  color: #1E4292;
  text-decoration: underline;
}
.en .c-link:hover, .zh .c-link:hover {
  text-decoration: none;
}
@media (min-width: 768px) {
  .en .slide-menu .btn-s01, .zh .slide-menu .btn-s01 {
    width: 250px;
  }
}
.en .top-mv, .zh .top-mv {
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .en .c-banner-links__item, .zh .c-banner-links__item {
    padding: 44px 20px;
  }
}
@media (min-width: 851px) {
  .en .c-banner-links__item, .zh .c-banner-links__item {
    padding: 44px;
  }
}
.en #sec-top-company-information .company-information-link-list ul, .zh #sec-top-company-information .company-information-link-list ul {
  margin-top: 0;
}
@media (min-width: 768px) {
  .en #sec-top-company-information .company-information-link-list ul, .zh #sec-top-company-information .company-information-link-list ul {
    margin-top: -53px;
  }
}
@media (min-width: 768px) {
  .en .top-mv span, .zh .top-mv span {
    font-size: 40px;
  }
}
@media (min-width: 768px) {
  .en .area-company-information.top .btn-s01, .zh .area-company-information.top .btn-s01 {
    width: 330px;
  }
}
@media (min-width: 768px) {
  .en .area-business-inner h2, .zh .area-business-inner h2 {
    font-size: 30px;
  }
}
.en #sec-top-banner, .zh #sec-top-banner {
  margin: 0 auto 160px;
  max-width: 1366px;
}
@media (max-width: 767px) {
  .en #sec-top-banner, .zh #sec-top-banner {
    margin-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .en #sec-top-company-information .company-information-link-list, .zh #sec-top-company-information .company-information-link-list {
    padding: 0 0 40px;
  }
}
@media (min-width: 768px) {
  .en #sec-top-company-information .company-information-link-list ul, .zh #sec-top-company-information .company-information-link-list ul {
    gap: 0.8620689655%;
    justify-content: flex-start;
  }
}
.en #sec-top-company-information .company-information-link-list ul li p, .zh #sec-top-company-information .company-information-link-list ul li p {
  line-height: 1.5;
}
.en.page-ir-lib-report .area-view-files .list-business-report li p:last-child, .zh.page-ir-lib-report .area-view-files .list-business-report li p:last-child {
  width: 100%;
}
@media (min-width: 768px) {
  .en .other-contents-company ul li a, .zh .other-contents-company ul li a {
    font-size: 15px;
  }
}
@media (min-width: 1000px) {
  .en .other-contents-company ul li a, .zh .other-contents-company ul li a {
    font-size: 19px;
  }
}
.en.page-company .ttl-s02.company-topics, .zh.page-company .ttl-s02.company-topics {
  letter-spacing: initial;
}
.en.page-company .main-container h1::after, .zh.page-company .main-container h1::after {
  content: "Company Profile";
}
.en .management-philosophy h2, .en .behavioral-guidelines h2, .zh .management-philosophy h2, .zh .behavioral-guidelines h2 {
  color: #C94B39;
}
.en .management-philosophy-container-inner h3, .en .behavioral-guidelines-container-inner h3, .zh .management-philosophy-container-inner h3, .zh .behavioral-guidelines-container-inner h3 {
  display: flex;
}
.en .management-philosophy-container-inner h3 span, .en .behavioral-guidelines-container-inner h3 span, .zh .management-philosophy-container-inner h3 span, .zh .behavioral-guidelines-container-inner h3 span {
  margin-top: 0.1em;
}
@media (min-width: 768px) {
  .en .management-philosophy-container-inner p, .en .behavioral-guidelines-container-inner p, .zh .management-philosophy-container-inner p, .zh .behavioral-guidelines-container-inner p {
    padding-bottom: 30px;
  }
}
.en.page-company-outline .main-container h2, .zh.page-company-outline .main-container h2 {
  color: #C94B39;
}
.en.page-company-outline .list-company-outline dl dd .list-name.m-type2, .zh.page-company-outline .list-company-outline dl dd .list-name.m-type2 {
  display: block;
}
@media (min-width: 768px) {
  .en.page-company-outline .list-company-outline dl dd .list-name.m-type2, .zh.page-company-outline .list-company-outline dl dd .list-name.m-type2 {
    display: flex;
  }
  .en.page-company-outline .list-company-outline dl dd .list-name.m-type2 p:nth-child(1), .zh.page-company-outline .list-company-outline dl dd .list-name.m-type2 p:nth-child(1) {
    min-width: 120px;
  }
  .en.page-company-outline .list-company-outline dl dd .list-name.m-type2 p:nth-child(2), .zh.page-company-outline .list-company-outline dl dd .list-name.m-type2 p:nth-child(2) {
    flex: 1;
    width: 100%;
  }
}
.en.page-company-outline .list-company-outline dl dd .list-name.m-type2 + .m-type2, .zh.page-company-outline .list-company-outline dl dd .list-name.m-type2 + .m-type2 {
  margin-top: 1em;
}
@media (min-width: 768px) {
  .en.page-company-outline .list-company-outline dl dd .list-name.m-type2 + .m-type2, .zh.page-company-outline .list-company-outline dl dd .list-name.m-type2 + .m-type2 {
    margin-top: 0;
  }
}
.en.page-company-business .area-business-contents-inner h3, .zh.page-company-business .area-business-contents-inner h3 {
  line-height: 1.8;
}
.en.page-company-business .contents-box01 .contents-box01-txt p:first-child, .zh.page-company-business .contents-box01 .contents-box01-txt p:first-child {
  line-height: 1.5;
  text-align: center;
}
.en.page-company-business .contents-box01 .contents-box01-txt p:nth-child(2), .zh.page-company-business .contents-box01 .contents-box01-txt p:nth-child(2) {
  line-height: 2;
}
.en.page-company-group .breadcrumbs, .zh.page-company-group .breadcrumbs {
  margin-bottom: 4em;
}
.en.page-company-group .list-all, .zh.page-company-group .list-all {
  margin-bottom: 5em;
}
@media (min-width: 768px) {
  .en.page-company-group .list-all ul, .zh.page-company-group .list-all ul {
    justify-content: flex-start;
  }
}
.en.page-company-group main h2, .zh.page-company-group main h2 {
  color: #BF2812;
}
.en.page-company-office .breadcrumbs, .zh.page-company-office .breadcrumbs {
  margin-bottom: 4em;
}
.en.page-company-office .nav-business-offices > ul > li > a, .zh.page-company-office .nav-business-offices > ul > li > a {
  text-align: center;
}
.en.page-company-office .nav-business-offices > ul > li ul li:not(:first-child) a, .zh.page-company-office .nav-business-offices > ul > li ul li:not(:first-child) a {
  text-align: center;
}
.en.page-company-office .list-business-offices ul li .info .address-map .address, .zh.page-company-office .list-business-offices ul li .info .address-map .address {
  line-height: 1.65;
}
.en .topics-detail, .zh .topics-detail {
  margin-top: 4em;
}
.en.page-products-services .main-container h1::after, .zh.page-products-services .main-container h1::after {
  content: "Products & Services";
}
.en.page-products-services .main-container .area-search .search-type-word form .search-word, .zh.page-products-services .main-container .area-search .search-type-word form .search-word {
  font-size: 13px;
}
@media (min-width: 768px) {
  .en.page-products-services .main-container .area-search .search-type-word form .search-word, .zh.page-products-services .main-container .area-search .search-type-word form .search-word {
    font-size: 16px;
  }
}
.en .note-contact .required, .zh .note-contact .required {
  width: auto;
  margin-left: 10px;
}
.en .about-privacy, .zh .about-privacy {
  padding: 40px 15px 40px;
  min-height: initial;
}
@media (min-width: 768px) {
  .en .about-privacy, .zh .about-privacy {
    padding: 40px 35px 40px;
  }
}
.en .about-privacy > p, .zh .about-privacy > p {
  margin-bottom: 0;
}
.en.page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li .btn-box li.btn-detail a, .zh.page-products-services-download .main-container .area-downlad-list .list-category-download > ul > li .btn-box li.btn-detail a {
  text-align: center;
}
.en.page-products-services-download .main-container .area-downlad-list .list-category-download.pack > ul > li .btn-box .btn-cart-remove a, .zh.page-products-services-download .main-container .area-downlad-list .list-category-download.pack > ul > li .btn-box .btn-cart-remove a {
  text-align: center;
}

.en .about-privacy {
  text-align: left;
}
@media (min-width: 768px) {
  .en .topics-detail .btn-back a {
    width: 510px;
  }
}
.en .form-contact dt .required {
  width: 63px;
}
@media (min-width: 768px) {
  .en .form-contact dt .required {
    width: auto;
  }
}

.zh.page-company .back-txt-corporation span {
  right: -20px;
}
@media (min-width: 768px) {
  .zh.page-company .back-txt-corporation span {
    right: -140px;
  }
}
.zh.page-company .main-container h1::after {
  content: "公司概要";
}
.zh.page-company-business .area-business-contents .list-business-field li a {
  pointer-events: none;
}
.zh.page-products-services .main-container h1::after {
  content: "产品与服务";
}
.zh.page-products-services .txt-preparation {
  text-align: center;
  font-size: 27px;
}
@media (min-width: 768px) {
  .zh.page-products-services .txt-preparation {
    font-size: 36px;
  }
}
.zh .form-contact dt .required {
  width: 63px;
}
@media (min-width: 768px) {
  .zh .form-contact dt .required {
    width: auto;
  }
}
.zh.page-products-services-download .txt-preparation {
  text-align: center;
  font-size: 27px;
}
@media (min-width: 768px) {
  .zh.page-products-services-download .txt-preparation {
    font-size: 36px;
  }
}

/*--------------------------
	/about_rix/
--------------------------*/
.page-about-rix {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.page-about-rix .f-inter {
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Segoe UI", sans-serif;
}
.page-about-rix .c-orange {
  color: #ff6b37;
  vertical-align: top;
}
.page-about-rix .main {
  margin: 0;
}
.page-about-rix .mv {
  display: flex;
  flex-direction: column-reverse;
  background: #fff;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  padding: 30px 20px;
}
@media (min-width: 768px) {
  .page-about-rix .mv {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 93%, rgba(255, 255, 255, 0) 93%, rgba(255, 255, 255, 0) 100%);
  }
}
.page-about-rix .mv-ttl-jp {
  display: block;
  color: #1f419b;
  font-weight: 700;
  font-size: 29px;
  line-height: 1.0862068966;
}
@media (min-width: 768px) {
  .page-about-rix .mv-ttl-jp {
    font-size: 58px;
    line-height: 1.0862068966;
  }
}
.page-about-rix .mv-ttl-en {
  display: block;
  font-weight: 700;
  margin-block-start: 13px;
  font-size: 10px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .page-about-rix .mv-ttl-en {
    margin-block-start: 26px;
    font-size: 14px;
    line-height: 1.5714285714;
  }
}
.page-about-rix .mv-img {
  width: auto;
}
@media (min-width: 768px) {
  .page-about-rix .mv-img {
    width: 784px;
  }
}
.page-about-rix .sec {
  position: relative;
  z-index: 0;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .page-about-rix .sec {
    padding: 0;
  }
}
.page-about-rix .sec-hd2 {
  position: relative;
  margin: 0 auto;
  background-image: url(../images/about_rix/sec_ttl_bg.webp);
  background-position: top center;
  background-size: auto 100%;
  background-repeat: no-repeat;
  width: 100%;
  height: 69px;
  padding-block-start: 16px;
}
@media (min-width: 768px) {
  .page-about-rix .sec-hd2 {
    height: 110px;
    padding-block-start: 26px;
  }
}
.page-about-rix .sec-hd2-en {
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  top: -26px;
  font-size: 37px;
}
@media (min-width: 768px) {
  .page-about-rix .sec-hd2-en {
    top: -52px;
    font-size: 68px;
  }
}
.page-about-rix .sec-hd2-jp {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  font-size: 23px;
}
@media (min-width: 768px) {
  .page-about-rix .sec-hd2-jp {
    font-size: 36px;
  }
}
.page-about-rix .sec-hd3 {
  text-align: center;
  color: #2889e4;
  font-weight: 700;
  margin-block-start: 18px;
  font-size: 21px;
  line-height: 1.2857142857;
}
@media (min-width: 768px) {
  .page-about-rix .sec-hd3 {
    margin-block-start: 36px;
    font-size: 34px;
    line-height: 1.2941176471;
  }
}
.page-about-rix .sec-hd3 .sec-hd3-sml {
  display: block;
  color: #050505;
  font-size: 13px;
  line-height: 1.5384615385;
}
@media (min-width: 768px) {
  .page-about-rix .sec-hd3 .sec-hd3-sml {
    font-size: 20px;
    line-height: 1.5;
  }
}
.page-about-rix .sec-hd3 .sec-hd3-big {
  display: block;
}
.page-about-rix .sec-txt {
  text-align: center;
  font-weight: 700;
  margin-block-start: 8px;
  font-size: 13px;
  line-height: 2;
}
@media (min-width: 768px) {
  .page-about-rix .sec-txt {
    margin-block-start: 16px;
    font-size: 20px;
    line-height: 1.55;
  }
}
.page-about-rix .sec01 {
  background-color: #1f419b;
  background-image: url(../images/about_rix/sec01_bg.webp);
  background-position: bottom center;
  background-size: auto 100%;
  margin-block-start: -25px;
  padding-block: 89px 98px;
}
@media (min-width: 768px) {
  .page-about-rix .sec01 {
    margin-block-start: -50px;
    padding-block: 178px 196px;
  }
}
.page-about-rix .sec01 .sec-hd2-jp {
  color: #1f419b;
}
.page-about-rix .sec01 .sec-hd2-en {
  color: #4b66af;
}
.page-about-rix .sec01-txt01 {
  text-align: center;
  color: #fff;
  font-weight: 700;
  margin-block-start: 15px;
  font-size: 28px;
  line-height: 1.1538461538;
}
@media (min-width: 768px) {
  .page-about-rix .sec01-txt01 {
    margin-block-start: 30px;
    font-size: 51px;
    line-height: 1.1764705882;
  }
}
.page-about-rix .sec01-img {
  width: auto;
  margin-block: 8px 0;
  margin-inline: 0;
}
@media (min-width: 768px) {
  .page-about-rix .sec01-img {
    max-width: 936px;
    margin-block: 16px 0;
    margin-inline: auto;
  }
}
.page-about-rix .sec-01-txt02 {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4545454545;
}
@media (min-width: 768px) {
  .page-about-rix .sec-01-txt02 {
    font-size: 22px;
    line-height: 1.4545454545;
  }
}
.page-about-rix .sec02 {
  padding-block: 61px 72px;
}
@media (min-width: 768px) {
  .page-about-rix .sec02 {
    padding-block: 122px 145px;
  }
}
.page-about-rix .sec02 .sec-hd2-jp {
  color: #2889e4;
}
.page-about-rix .sec02 .sec-hd2-en {
  color: #e5e5e5;
}
.page-about-rix .sec02-img01 {
  width: auto;
  margin-block: 25px 0;
  margin-inline: 0;
}
@media (min-width: 768px) {
  .page-about-rix .sec02-img01 {
    width: 904px;
    margin-block: 50px 0;
    margin-inline: auto;
  }
}
.page-about-rix .sec02-img02 {
  width: auto;
  margin-block: 20px 64px;
  margin-inline: 0;
}
@media (min-width: 768px) {
  .page-about-rix .sec02-img02 {
    width: 904px;
    margin-block: 40px 124px;
    margin-inline: auto;
  }
}
.page-about-rix .sec02-img03 {
  width: auto;
  margin-block: 24px 0;
  margin-inline: 0;
}
@media (min-width: 768px) {
  .page-about-rix .sec02-img03 {
    width: 978px;
    margin-block: 48px 0;
    margin-inline: auto;
  }
}
.page-about-rix .sec03 {
  background-color: #1f419b;
  padding-block: 66px 0;
}
@media (min-width: 768px) {
  .page-about-rix .sec03 {
    padding-block: 132px 0;
  }
}
.page-about-rix .sec03 .sec-hd2-jp {
  color: #1f419b;
}
.page-about-rix .sec03 .sec-hd2-en {
  color: #4b66af;
}
.page-about-rix .sec03-txt01 {
  text-align: center;
  color: #fff;
  font-weight: 700;
  margin-block-start: 22px;
  font-size: 21px;
  line-height: 27px;
}
@media (min-width: 768px) {
  .page-about-rix .sec03-txt01 {
    margin-block-start: 44px;
    font-size: 34px;
    line-height: 44px;
  }
}
.page-about-rix .sec03-txt02 {
  text-align: center;
  color: #fff;
  margin-block-start: 15px;
  font-size: 13px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .page-about-rix .sec03-txt02 {
    margin-block-start: 30px;
    font-size: 18px;
    line-height: 33px;
  }
}
.page-about-rix .sec03-img {
  width: auto;
  margin-block-start: 20px;
  margin-inline: 0;
}
@media (min-width: 768px) {
  .page-about-rix .sec03-img {
    width: 814px;
    margin-block-start: 40px;
    margin-inline: auto;
  }
}
.page-about-rix .sec04 {
  padding-block: 87px 66px;
}
@media (min-width: 768px) {
  .page-about-rix .sec04 {
    padding-block: 174px 132px;
  }
}
.page-about-rix .sec04 .sec-hd2 {
  position: relative;
  margin: 0 auto;
  height: 69px;
  padding-block-start: 16px;
}
@media (min-width: 768px) {
  .page-about-rix .sec04 .sec-hd2 {
    height: 109px;
    padding-top: 24px;
    background-image: url(../images/about_rix/sec_ttl_bg_long.webp);
  }
}
.page-about-rix .sec04 .sec-hd2-jp {
  color: #2889e4;
}
@media (max-width: 767px) {
  .page-about-rix .sec04 .sec-hd2-jp {
    font-size: 20px;
  }
}
.page-about-rix .sec04 .sec-hd2-en {
  color: #e5e5e5;
}
.page-about-rix .sec04-img01 {
  width: auto;
  margin-block: 20px 55px;
  margin-inline: 0;
}
@media (min-width: 768px) {
  .page-about-rix .sec04-img01 {
    width: 880px;
    margin-block: 34px 110px;
    margin-inline: auto;
  }
}
.page-about-rix .sec04-pics {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  width: auto;
  margin: 21px auto 0;
}
@media (min-width: 768px) {
  .page-about-rix .sec04-pics {
    gap: 4px;
    width: 952px;
    margin: 42px auto 0;
  }
}
.page-about-rix .sec04-pics-item {
  width: calc((100% - 6px) / 4);
}
@media (min-width: 768px) {
  .page-about-rix .sec04-pics-item {
    width: calc((100% - 12px) / 4);
  }
}
.page-about-rix .sec04-btn {
  margin: 22px auto 60px;
}
@media (min-width: 768px) {
  .page-about-rix .sec04-btn {
    margin: 44px auto 120px;
  }
}
.page-about-rix .sec04-img02 {
  position: relative;
  z-index: 0;
  width: auto;
  margin-inline: 0;
}
@media (min-width: 768px) {
  .page-about-rix .sec04-img02 {
    width: 708px;
    margin-inline: auto;
  }
}
.page-about-rix .sec04-dl {
  display: flex;
  position: relative;
  z-index: 1;
  border: 1px solid #2889e4;
  width: auto;
  margin-block: -25px 74px;
}
@media (min-width: 768px) {
  .page-about-rix .sec04-dl {
    width: 680px;
    margin-block: -50px 148px;
    margin-inline: auto;
  }
}
.page-about-rix .sec04-dt {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2889e4;
  text-align: center;
  color: #fff;
  width: 178px;
  height: 49px;
  font-size: 11px;
}
@media (min-width: 768px) {
  .page-about-rix .sec04-dt {
    width: 356px;
    height: 98px;
    font-size: 22px;
  }
}
.page-about-rix .sec04-dd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  width: calc(100% - 178px);
  height: 49px;
}
@media (min-width: 768px) {
  .page-about-rix .sec04-dd {
    width: calc(100% - 356px);
    height: 98px;
  }
}
.page-about-rix .sec04-list {
  display: flex;
  flex-direction: column;
}
.page-about-rix .sec04-list-item {
  display: flex;
  align-items: center;
  color: #101b4b;
  gap: 4px;
  font-size: 10px;
  line-height: 18px;
}
@media (min-width: 768px) {
  .page-about-rix .sec04-list-item {
    gap: 8px;
    font-size: 17px;
    line-height: 29px;
  }
}
.page-about-rix .sec04-list-item::before {
  content: "";
  display: block;
  background: #2889e4;
  width: 4px;
  height: 4px;
}
@media (min-width: 768px) {
  .page-about-rix .sec04-list-item::before {
    width: 8px;
    height: 8px;
  }
}
.page-about-rix .sec04-img03 {
  width: auto;
  margin: 17px 0 0;
}
@media (min-width: 768px) {
  .page-about-rix .sec04-img03 {
    width: 680px;
    margin: 34px auto 0;
  }
}
.page-about-rix .sec04-img04 {
  width: auto;
  margin-inline: 0;
  margin-block: -13px 64px;
}
@media (min-width: 768px) {
  .page-about-rix .sec04-img04 {
    width: 796px;
    margin-inline: auto;
    margin-block: -26px 128px;
  }
}
.page-about-rix .sec04-graph {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0 50px;
}
@media (min-width: 768px) {
  .page-about-rix .sec04-graph {
    flex-direction: row;
    gap: 0 100px;
  }
}
.page-about-rix .sec04-graph-item {
  width: auto;
}
.page-about-rix .sec04-graph-item + .sec04-graph-item {
  margin-block-start: 18px;
}
@media (min-width: 768px) {
  .page-about-rix .sec04-graph-item + .sec04-graph-item {
    margin-block-start: 0;
  }
}
@media (min-width: 768px) {
  .page-about-rix .sec04-graph-item {
    width: 474px;
  }
}
.page-about-rix .sec04-graph-img {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .page-about-rix .sec04-graph-img {
    margin-top: 20px;
  }
}
.page-about-rix .bottom-link {
  display: flex;
  flex-wrap: wrap;
}
.page-about-rix .bottom-link-item {
  width: 50%;
}
.page-about-rix .bottom-link-item a {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-block: 68px 52px;
}
@media (min-width: 768px) {
  .page-about-rix .bottom-link-item a {
    padding-block: 136px 104px;
  }
}
.page-about-rix .bottom-link-item:nth-child(1) a {
  background-image: url(../images/about_rix/bottom_link_bg01.webp);
}
.page-about-rix .bottom-link-item:nth-child(2) a {
  background-image: url(../images/about_rix/bottom_link_bg02.webp);
}
.page-about-rix .bottom-link-hd-en {
  display: block;
  text-align: center;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  font-size: 23px;
}
@media (min-width: 768px) {
  .page-about-rix .bottom-link-hd-en {
    font-size: 46px;
  }
}
.page-about-rix .bottom-link-hd-ja {
  display: block;
  text-align: center;
  color: #fff;
  line-height: 1;
  margin-top: 8px;
  font-size: 10px;
}
@media (min-width: 768px) {
  .page-about-rix .bottom-link-hd-ja {
    margin-top: 15px;
    font-size: 13px;
  }
}
.page-about-rix .bottom-link-icon {
  border-radius: 50%;
  background: #fff;
  width: 30px;
  height: 30px;
  margin-top: 17px;
}
@media (min-width: 768px) {
  .page-about-rix .bottom-link-icon {
    width: 60px;
    height: 60px;
    margin-top: 34px;
  }
}

/*--------------------------
  Print Styles
--------------------------*/
@media print {
  *, *::before, *::after {
    background: transparent !important;
    box-shadow: none !important;
    color: #000 !important;
    text-shadow: none !important;
  }
  a, a:visited {
    text-decoration: underline;
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
}