@charset "UTF-8";
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, figure, form, fieldset, input, textarea, p, blockquote, th, td, a {
  font-feature-settings: "palt";
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  text-size-adjust: 100%;
  word-break: break-all;
  line-break: strict;
  hyphens: auto;
  text-align: justify;
  line-height: 1.8rem;
}

html {
  overflow-y: scroll;
  scroll-behavior: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

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

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

fieldset, img {
  border: 0;
}

img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

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

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

br {
  letter-spacing: 0;
}

body, div, dl, dt, dd, ul, ol, li, h3, h4, h5, h6, pre, figure, form, fieldset, input, textarea, p, blockquote, th, td, a {
  font-family: "Noto Sans JP", "Yu Gothic", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* ------------------------------------- 
  header
------------------------------------- */
header {
  position: fixed;
  z-index: 8999;
  background: #FFFFFF;
  width: 100%;
  transform: translateZ(0);
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  width: 95%;
  height: 70px;
  margin: 0 auto;
  padding: 15px 0;
}
.header-top a {
  display: block;
  text-decoration: none;
}
.header-top .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 8001;
  width: 267px;
}
.header-top .recruit {
  background: #DFEBEA;
  border-radius: 5px;
  width: 240px;
  color: #002A81;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
}
.header-top .recruit:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1024px) {
  .header-top {
    width: 100%;
    height: 50px;
    padding: 0 65px 0 15px;
  }
  .header-top .logo {
    width: 170px;
  }
  .header-top .recruit {
    font-size: 0.875rem;
    width: 100px;
    line-height: 30px;
  }
}
/* ------------------------------------- 
  header-menu_pc
------------------------------------- */
.header-menu_pc {
  position: relative;
  background: #002A81;
  padding: 0;
}
.header-menu_pc .menu-list {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(6, 1fr);
  max-width: 1440px;
  width: 95%;
  margin: 0 auto;
}
.header-menu_pc .menu-parent {
  position: relative;
  height: 60px;
  color: #FFFFFF;
  text-align: center;
}
.header-menu_pc .menu-parent::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  background: #FFFFFF;
  width: 1px;
  height: 40px;
}
.header-menu_pc .menu-parent:last-child::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  background: #FFFFFF;
  width: 1px;
  height: 40px;
}
.header-menu_pc .menu-parent .menu-parent_a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #FFFFFF;
}
.header-menu_pc .menu-parent:hover .menu-parent_a {
  transition: all 0.3s;
}
.header-menu_pc .menu-child {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 120%;
  height: auto;
}
.header-menu_pc .menu-child li {
  border-bottom: 1px solid #FFFFFF;
  background-color: #DFEBEA;
}
.header-menu_pc .menu-child li:last-child {
  border-bottom: none;
}
.header-menu_pc .menu-child li a {
  position: relative;
  display: block;
  padding: 10px 10px 10px 20%;
  color: #002A81;
  text-align: left;
  font-weight: 700;
}
.header-menu_pc .menu-child li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  transition: all 0.3s;
  border-width: calc(10px / 2) 0 calc(10px / 2) 8px;
  border-color: transparent transparent transparent #002A81;
}
.header-menu_pc .menu-child li a:hover {
  background: #002A81;
  color: #FFFFFF;
}
.header-menu_pc .menu-child li a:hover::before {
  border-left-color: #FFFFFF;
}

/* ------------------------------------- 
  header-menu_sp ／1024px～
------------------------------------- */
.hamburger {
  display: block;
  position: fixed;
  z-index: 8001;
  right: 0;
  top: 0;
  background: #002A81;
  width: 50px;
  height: 50px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 1px;
  left: 10px;
  background: #FFFFFF;
  transition: 0.3s all;
}
.hamburger span:nth-child(1) {
  top: 15px;
}
.hamburger span:nth-child(2) {
  top: 25px;
}
.hamburger span:nth-child(3) {
  top: 35px;
}
.hamburger {
  /* スマホメニューを開いてる時のボタン */
}
.hamburger.active span:nth-child(1) {
  top: 25px;
  left: 10px;
  transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
  top: 25px;
  transform: rotate(45deg);
}

.globalMenuSp {
  position: fixed;
  top: 0;
  right: 0;
  background-color: #FFFFFF;
  opacity: 0;
  pointer-events: none;
  transition: all 0.6s;
  height: 100vh;
  width: 100%;
}
.globalMenuSp .detail {
  display: grid;
  justify-content: center;
  align-items: flex-start;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  width: 90%;
  margin: 100px auto 0;
}
.globalMenuSp .detail .box {
  max-width: 230px;
}
.globalMenuSp .detail .box a {
  position: relative;
  left: 0;
  color: #002A81;
}
.globalMenuSp .detail .box a:hover {
  left: 5px;
}
.globalMenuSp .detail h3 {
  border-bottom: 1px solid #002A81;
  padding-bottom: 10px;
}
.globalMenuSp .detail ul {
  margin-top: 10px;
}
.globalMenuSp .detail li {
  line-height: 2rem;
}
.globalMenuSp .detail ul.sp-menu_list li {
  position: relative;
  padding-left: 20px;
}
.globalMenuSp .detail ul.sp-menu_list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
  background: #002A81;
  width: 10px;
  height: 1px;
}
.globalMenuSp.active {
  opacity: 100;
  pointer-events: auto;
  display: block;
  overflow-y: scroll;
}
@media screen and (max-width: 960px) {
  .globalMenuSp .detail {
    gap: 30px;
    margin-top: 60px;
  }
  .globalMenuSp .detail h3 {
    padding-bottom: 5px;
  }
  .globalMenuSp .detail ul {
    margin-top: 5px;
  }
  .globalMenuSp .detail li {
    line-height: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .globalMenuSp .detail {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    width: 100%;
    margin-top: 70px;
  }
  .globalMenuSp .detail .box {
    max-width: 100%;
  }
  .globalMenuSp .detail .accordion_title {
    padding: 10px;
    color: #002A81;
  }
  .globalMenuSp .detail .sp-menu_list2 {
    padding-left: 10px;
  }
}

/* ------------------------------------- 
  font・text
------------------------------------- */
/* font ******/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, figure, form, fieldset, input, textarea, p, blockquote, th, td, a {
  color: #000000;
  font-weight: 500;
}

h1, h2 {
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1rem;
}

h1 {
  font-size: 2.75rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 2.25rem;
}

p, dl, dt, li, th, td, a {
  font-size: 1rem;
}

@media screen and (max-width: 1024px) {
  h1 {
    font-size: 2.1875rem;
  }
  h2 {
    font-size: 1.875rem;
  }
  h3 {
    font-size: 1.875rem;
  }
  p, dl, dt, li, th, td, a {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 1.875rem;
  }
  h2 {
    font-size: 1.5625rem;
  }
  h3 {
    font-size: 1.5625rem;
  }
  p, dl, dt, li, th, td, a {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  h1 {
    font-size: 1.5625rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  h3 {
    font-size: 1.25rem;
  }
}
/* text ******/
.txt_font12 {
  font-size: 0.75rem;
}

.txt_bold {
  font-weight: bold;
}

.txt_normal {
  font-weight: normal;
}

.txt_purple {
  color: #B873C2;
}

.txt_red {
  color: #D20C42;
}

.txt_center {
  text-align: center;
}

.txt_left {
  text-align: left;
}

.txt_right {
  text-align: right;
}

.lt_circle {
  list-style-type: circle !important;
}

.lt_decimal {
  list-style-type: decimal !important;
}

.lt_number-maru {
  counter-reset: number-maru;
}
.lt_number-maru li {
  position: relative;
}
.lt_number-maru li:before {
  content: counter(number-maru);
  counter-increment: number-maru;
  position: absolute;
  top: 5px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid;
  border-radius: 50%;
  box-sizing: border-box;
  height: 25px;
  width: 25px;
  font-size: 1rem;
}

.lt_number-par {
  counter-reset: number-par;
  margin-left: 40px;
}
.lt_number-par li {
  counter-increment: num;
  position: relative;
}
.lt_number-par li:before {
  content: "(" counter(num) ") ";
  position: absolute;
  left: -40px;
}

@media screen and (max-width: 1024px) {
  .lt_number-maru li:before {
    height: 20px;
    width: 20px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  .txt_font12 {
    font-size: 0.625rem;
  }
}
@media screen and (max-width: 480px) {
  .lt_number-maru li:before {
    top: 4px;
    height: 15px;
    width: 15px;
    font-size: 0.75rem;
  }
  .lt_number-par {
    margin-left: 25px;
  }
  .lt_number-par li:before {
    left: -25px;
  }
}
/* ------------------------------------- 
  a
------------------------------------- */
a {
  color: #000000;
  transition: all 0.3s;
}
a:hover {
  text-decoration: none;
}

/* ------------------------------------- 
  layout
------------------------------------- */
.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

/* PC SP ******/
.sp-375, .sp-480, .sp-768, .sp-960, .sp-1024, .sp-1280, .sp-1440, .sp-1536, .sp-1920 {
  display: none !important;
}

@media (max-width: 1920px) {
  .sp-1920 {
    display: block !important;
  }
  .pc-1920 {
    display: none !important;
  }
}
@media (max-width: 1536px) {
  .sp-1536 {
    display: block !important;
  }
  .pc-1536 {
    display: none !important;
  }
}
@media (max-width: 1440px) {
  .sp-1440 {
    display: block !important;
  }
  .pc-1440 {
    display: none !important;
  }
}
@media (max-width: 1280px) {
  .sp-1280 {
    display: block !important;
  }
  .pc-1280 {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .sp-1024 {
    display: block !important;
  }
  .pc-1024 {
    display: none !important;
  }
}
@media (max-width: 960px) {
  .sp-960 {
    display: block !important;
  }
  .pc-960 {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .sp-768 {
    display: block !important;
  }
  .pc-768 {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .sp-480 {
    display: block !important;
  }
  .pc-480 {
    display: none !important;
  }
}
@media (max-width: 375px) {
  .sp-375 {
    display: block !important;
  }
  .pc-375 {
    display: none !important;
  }
}
/* ------------------------------------- 
  link_list
------------------------------------- */
.link_list {
  max-width: 1440px;
  width: 90%;
  margin: 0 auto;
}
.link_list ul {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}
.link_list ul li {
  max-width: 270px;
  width: 18.75%;
  background: #FFFFFF;
}
.link_list ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
.link_list ul li a p {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 10px 35px 10px 15px;
  font-size: 1.25rem;
}
.link_list ul li a p::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  transition: all 0.3s;
  width: 0;
  height: 0;
  border-style: solid;
  transition: all 0.3s;
  border-width: calc(12px / 2) 0 calc(12px / 2) 10px;
  border-color: transparent transparent transparent #73C2BA;
}
.link_list ul li a:hover {
  opacity: 0.7;
}
.link_list ul li a:hover p::before {
  right: 10px;
}
.link_list ul.link_list_footer li {
  border-bottom: 1px solid #707070;
}

@media screen and (max-width: 1024px) {
  .link_list ul li a p {
    padding: 5px 35px 5px 10px;
    font-size: 0.875rem;
    line-height: 1.5em;
  }
  .link_list-cement ul {
    flex-wrap: wrap;
    max-width: 570px;
    margin: 0 auto;
  }
  .link_list-cement ul li {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .link_list ul {
    flex-wrap: wrap;
    max-width: 570px;
    width: 100%;
    margin: 0 auto;
  }
  .link_list ul li {
    width: 45%;
  }
  .link_list ul li a p {
    font-size: 0.75rem;
    line-height: 1.3em;
  }
  .link_list-cement ul {
    max-width: 100%;
    margin: 0 auto;
  }
  .link_list-cement ul li {
    width: 30%;
  }
}
@media screen and (max-width: 480px) {
  .link_list ul {
    gap: 10px;
  }
  .link_list ul li a p {
    padding-right: 20px;
    padding-left: 5px;
  }
  .link_list ul li a p::before {
    right: 5px;
    width: 0;
    height: 0;
    border-style: solid;
    transition: all 0.3s;
    border-width: calc(10px / 2) 0 calc(10px / 2) 8px;
    border-color: transparent transparent transparent #73C2BA;
  }
  .link_list-cement ul li {
    width: 45%;
  }
}
/* ------------------------------------- 
  button
------------------------------------- */
.button {
  position: relative;
  display: block;
  border-radius: 1000px;
  margin: 0 auto;
  text-align: center;
  font-weight: 600;
}
.button:hover {
  text-decoration: none;
}

/* ------------------------------------- 
  phone
------------------------------------- */
@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* ------------------------------------- 
  tag
------------------------------------- */
.tag {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  text-align: center;
  color: #FFFFFF;
}

.tag-factory {
  background: #CF5B7A;
}

.tag-product {
  background: #73A5C7;
}

.tag-update {
  background: #C2B573;
}

.tag-csr {
  background: #B873C2;
}

.tag-other {
  background: #73C2BA;
}

/* ------------------------------------- 
  accordion menu（SP-768以降）
------------------------------------- */
@media screen and (max-width: 768px) {
  .accordion_container {
    width: 100%;
    margin: 0 auto;
  }
  .accordion_title {
    color: #002A81;
    padding: 15px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .icon_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -10px;
    transform: rotate(45deg);
    transition-duration: 0.2s;
    box-sizing: border-box;
  }
  .icon_wrap .icon {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
    transform: rotate(45deg);
    transition-duration: 0.2s;
  }
  .icon_wrap .icon::before, .icon_wrap .icon::after {
    display: flex;
    content: "";
    background-color: #002A81;
    width: 18px;
    height: 1px;
    position: absolute;
    top: 8px;
    left: 0;
    transform: rotate(0deg);
  }
  .icon_wrap .icon::before {
    width: 1px;
    height: 18px;
    top: 0;
    left: 8px;
  }
  .accordion_title.open .icon_wrap {
    transform: rotate(0deg);
  }
  .accordion_title.open .icon_wrap .icon::before {
    content: none;
  }
  .accordion_title.open .icon_wrap .icon::after {
    transform: rotate(-45deg);
  }
  .accordion_inner {
    display: none;
    padding: 0 20px 20px;
    box-sizing: border-box;
  }
  .ac_inner_wraper {
    height: auto;
  }
}
/* ------------------------------------- 
  scroll-wrapper
------------------------------------- */
.scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.screen-reader-response {
  display: none !important;
}
.screen-reader-response p {
  color: #D20C42;
}
.screen-reader-response ul {
  display: none;
}

.wpcf7-not-valid-tip {
  color: #D20C42;
}

.wpcf7-response-output {
  display: none !important;
}

.wpcf7-spinner {
  display: none !important;
}

input[type=text], input[type=tel], input[type=email] {
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  width: 100%;
  height: 50px;
  padding: 10px;
  box-sizing: border-box;
  font-size: 1rem;
}
input[type=radio] {
  display: inline-block;
  transform: scale(1.4);
  margin-right: 10px;
}
input[type=checkbox] {
  transform: scale(1.3);
  margin-right: 0.5em;
}

textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
}

.radio {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px 30px;
}
.radio label {
  display: inline-flex;
  align-items: center;
  column-gap: 5px;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
}
.radio label::not(:last-of-type) {
  margin-bottom: 16px;
}
.radio input {
  appearance: none;
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid #707070;
  border-radius: 9999px;
  cursor: pointer;
}
.radio input:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  border-radius: 9999px;
  background-color: #73C2BA;
}

.checkbox label {
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  line-height: 1;
  cursor: pointer;
}
.checkbox label:not(:last-of-type) {
  margin-right: 10px;
}
.checkbox input {
  appearance: none;
  position: relative;
  width: 22px;
  height: 22px;
  border: 1px solid #707070;
  border-radius: 1px;
  cursor: pointer;
}
.checkbox input:checked {
  border-color: #73C2BA;
  background-color: #73C2BA;
}
.checkbox input:checked::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 3px;
  width: 12px;
  height: 6px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.submitbtn {
  cursor: pointer;
  position: relative;
  max-width: 540px;
  width: 90%;
  margin: 70px auto 0;
}
.submitbtn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  transition: all 0.3s;
  border-width: calc(12px / 2) 0 calc(12px / 2) 10px;
  border-color: transparent transparent transparent #FFFFFF;
}
.submitbtn input[type=submit] {
  cursor: pointer;
  position: relative;
  display: block;
  background: #73C2BA;
  border: 1px solid #73C2BA;
  width: 100%;
  line-height: 90px;
  font-size: 1.75rem;
  color: #FFFFFF;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-align: center;
  transition: all 0.3s;
}
.submitbtn:hover::after {
  border-color: transparent transparent transparent #73C2BA;
}
.submitbtn:hover input[type=submit] {
  background: #FFFFFF;
  color: #73C2BA;
}

.button-flex {
  display: grid;
  justify-content: center;
  align-items: flex-start;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 600px;
  width: 90%;
  margin: 70px auto 0;
}
.button-flex div {
  width: 100%;
}
.button-flex div input {
  cursor: pointer;
  position: relative;
  display: block;
  width: 100%;
  line-height: 90px;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-align: center;
  transition: all 0.3s;
}
.button-flex .return input {
  background: #CCCCCC;
  border: 1px solid #CCCCCC;
  color: #FFFFFF;
}
.button-flex .return:hover input {
  background: #FFFFFF;
  color: #707070;
}
.button-flex .submit input {
  background: #73C2BA;
  border: 1px solid #73C2BA;
  color: #FFFFFF;
}
.button-flex .submit:hover input {
  background: #FFFFFF;
  color: #73C2BA;
}

@media screen and (max-width: 1024px) {
  .radio input {
    width: 20px;
    height: 20px;
  }
  .radio input:checked::after {
    width: 10px;
    height: 10px;
  }
  .checkbox input {
    width: 20px;
    height: 20px;
  }
  .checkbox input:checked::after {
    top: 3px;
    width: 10px;
  }
  .submitbtn {
    max-width: 450px;
    margin-top: 50px;
  }
  .submitbtn input[type=submit] {
    font-size: 1.375rem;
    line-height: 60px;
  }
  .button-flex {
    gap: 15px;
    margin-top: 50px;
  }
  .button-flex div input {
    font-size: 1.375rem;
    line-height: 60px;
  }
}
@media screen and (max-width: 960px) {
  .radio {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  input[type=radio], input[type=checkbox] {
    margin-left: 5px;
  }
  .submitbtn {
    margin-top: 30px;
  }
  .submitbtn input[type=submit] {
    font-size: 1.125rem;
    line-height: 50px;
  }
  .button-flex {
    margin-top: 30px;
  }
  .button-flex div input {
    font-size: 1.125rem;
    line-height: 50px;
  }
}
#page_top {
  display: block;
  position: fixed;
  background: #01506E;
  border: 1px solid #FFFFFF;
  width: 50px;
  height: 50px;
  right: 35px;
  bottom: -100px;
  z-index: 7779;
  transition: bottom 0.3s ease;
}
#page_top p {
  color: #FFFFFF;
  text-align: center;
  font-size: 0.75rem;
  line-height: 50px;
}
#page_top:hover {
  cursor: pointer;
  text-decoration: none;
}
#page_top.is-show {
  bottom: 90px;
}
@media screen and (max-width: 960px) {
  #page_top {
    width: 30px;
    height: 30px;
    right: 20px;
  }
  #page_top p {
    line-height: 30px;
  }
  #page_top.is-show {
    bottom: 20px;
  }
}

/* ------------------------------------- 
  footer
------------------------------------- */
footer, footer section {
  position: relative;
}

.footer-wrap {
  position: relative;
  padding: 200px 0 50px;
  overflow: hidden;
}
.footer-wrap::before {
  content: "";
  position: absolute;
  top: 110px;
  left: 0;
  bottom: 0px;
  transform: skewY(-5deg);
  background: linear-gradient(180deg, #000000 0%, #01506E 100%);
  width: 100%;
  height: 110%;
  z-index: -1;
}
.footer-wrap hr {
  border: none;
  background: #FFFFFF;
  width: 100%;
  height: 1px;
  margin: 50px auto;
}

.footer-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1050px;
  width: 80%;
  margin: 0 auto;
}
.footer-contact .title {
  max-width: 366px;
  width: 32%;
}
.footer-contact .title h2 {
  font-size: 1.875rem;
  color: #FFFFFF;
}
.footer-contact .title h2 img {
  margin-bottom: 30px;
}
.footer-contact .detail {
  max-width: 500px;
  width: 47.6%;
}
.footer-contact .detail p, .footer-contact .detail p a {
  color: #FFFFFF;
  text-align: center;
}
.footer-contact .detail .tel, .footer-contact .detail .tel a {
  font-family: "Roboto", sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
}
.footer-contact .detail .tel-sub {
  margin-top: 10px;
  font-family: "Noto Sans JP", "Yu Gothic", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.125rem;
}
.footer-contact .detail .button-wrap {
  margin-top: 30px;
}
.footer-contact .detail .button {
  border: 1px solid #73C2BA;
  margin-top: 20px;
  color: #73C2BA;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 80px;
}
.footer-contact .detail .button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  transition: all 0.3s;
  border-width: calc(12px / 2) 0 calc(12px / 2) 10px;
  border-color: transparent transparent transparent #73C2BA;
}
.footer-contact .detail .button:hover {
  background: #FFFFFF;
}

.footer-sitemap {
  display: grid;
  justify-content: flex-start;
  align-items: flex-start;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1440px;
  width: 90%;
  margin: 0 auto;
}
.footer-sitemap .sitemap_box h3 a {
  position: relative;
  left: 0;
  color: #FFFFFF;
}
.footer-sitemap .sitemap_box h3 a:hover {
  left: 5px;
}
.footer-sitemap .sitemap_box ul.sitemap-list li {
  position: relative;
  padding-left: 20px;
}
.footer-sitemap .sitemap_box ul.sitemap-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
  background: #FFFFFF;
  width: 10px;
  height: 1px;
}
.footer-sitemap .sitemap_box ul.sitemap-list li,
.footer-sitemap .sitemap_box ul.sitemap-list2 li {
  line-height: 1.5rem;
  margin-top: 10px;
}
.footer-sitemap .sitemap_box ul.sitemap-list li a,
.footer-sitemap .sitemap_box ul.sitemap-list2 li a {
  position: relative;
  left: 0;
  color: #FFFFFF;
}
.footer-sitemap .sitemap_box ul.sitemap-list li a:hover,
.footer-sitemap .sitemap_box ul.sitemap-list2 li a:hover {
  left: 5px;
}

.footer-sitemap .accordion_container {
  border-bottom-color: #FFFFFF;
}
.footer-sitemap .accordion_title {
  color: #FFFFFF;
}
.footer-sitemap .icon_wrap .icon::before, .footer-sitemap .icon_wrap .icon::after {
  background-color: #FFFFFF;
}

.footer-company {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  max-width: 1440px;
  width: 90%;
  margin: 0 auto;
}
.footer-company .box img {
  max-width: 392px;
}
.footer-company .box p {
  color: #FFFFFF;
  margin-left: 30px;
}
.footer-company .jma {
  width: 208px;
}

.copyright {
  margin: 40px 20px 0;
  font-size: 0.75rem;
  color: #FFFFFF;
  text-align: right;
}

@media screen and (max-width: 1024px) {
  .footer-contact .title h2 {
    font-size: 1.5625rem;
  }
  .footer-contact .title h2 img {
    margin-bottom: 20px;
  }
  .footer-contact .detail .tel, .footer-contact .detail .tel a {
    font-size: 2.5rem;
  }
  .footer-contact .detail .tel-sub {
    font-size: 1rem;
  }
  .footer-contact .detail .button {
    font-size: 1.25rem;
    line-height: 60px;
  }
  .footer-sitemap {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
  }
}
@media screen and (max-width: 960px) {
  .footer-contact {
    flex-direction: column;
    gap: 50px;
  }
  .footer-contact .title, .footer-contact .detail {
    max-width: 100%;
    width: 100%;
  }
  .footer-contact .title img {
    display: block;
    max-width: 366px;
    width: 70%;
    margin: 0 auto 30px;
  }
  .footer-contact .detail .button {
    max-width: 450px;
  }
}
@media screen and (max-width: 768px) {
  .footer-wrap {
    padding-bottom: 30px;
  }
  .footer-wrap hr {
    margin-bottom: 0;
  }
  .footer-contact .title h2 {
    font-size: 1.25rem;
  }
  .footer-contact .title h2 img {
    margin-bottom: 10px;
  }
  .footer-contact .detail .tel, .footer-contact .detail .tel a {
    font-size: 1.875rem;
  }
  .footer-contact .detail .tel-sub {
    font-size: 0.75rem;
  }
  .footer-contact .detail .button {
    font-size: 1rem;
    line-height: 50px;
  }
  .footer-sitemap {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    width: 100%;
    margin-top: 10px;
  }
  .sitemap_box ul.sitemap-list2 {
    width: 95%;
    margin: 0 auto;
  }
  .footer-company {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
  }
  .footer-company .box img {
    display: block;
    width: 70%;
    margin: 0 auto 20px;
  }
  .footer-company .box p {
    text-align: center;
    margin-left: 0;
  }
  .footer-company .jma {
    width: 100px;
  }
  .copyright {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .footer-contact .detail .button {
    max-width: 300px;
  }
}
/* ------------------------------------- 
  top-footer
------------------------------------- */
.top-footer {
  position: relative;
}
.top-footer::before {
  content: "";
  position: absolute;
  z-index: -2;
  background: url(../images/top/recruit_bg.jpg) no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 960px) {
  .top-footer::before {
    background-size: 120%;
  }
}
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 0.5s;
  animation-timing-function: ease-out;
  opacity: 0;
}
.animated.infinite {
  animation-iteration-count: infinite;
}

/* ------------------------------------- 
  animation
------------------------------------- */
/* fadeIn **************************/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

/* fadeInLeft **************************/
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-50%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

/* fadeInRight **************************/
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(50%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

/* fadeInUp **************************/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes rote {
  0%, 100% {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(-3deg);
  }
}
/* fluffy **************************/
@keyframes fluffy1 {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-10px);
  }
  25% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fluffy2 {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-5px);
  }
  25% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
/* zoomIn **************************/
@keyframes zoomIn {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}
@keyframes zoomInFade {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.zoomInFade {
  animation-name: zoomInFade;
}

/* blurIn **************************/
@keyframes blurIn {
  from {
    opacity: 0;
    filter: blur(20px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}
.blurIn {
  animation-name: blurIn;
}

/* noFilter **************************/
@keyframes noFilter {
  100% {
    opacity: 1;
    filter: none;
  }
}
.noFilter {
  animation-name: noFilter;
}

@keyframes noTransform {
  100% {
    opacity: 1;
    transform: none;
  }
}
.noTransform {
  animation-name: noTransform;
}

/* lineanime **************************/
.lineanime {
  fill: none;
  stroke: #ffffff;
  stroke-width: 19;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 1800px;
  stroke-dashoffset: 1800px;
  animation: line 2.5s 0.1s forwards;
}
.lineanime.st2 {
  animation-delay: 0.3s;
}
.lineanime.st3 {
  animation-delay: 0.6s;
}
.lineanime.st4 {
  animation-delay: 0.9s;
}
.lineanime.st5 {
  animation-delay: 1.2s;
}
.lineanime.st6 {
  animation-delay: 1.5s;
}
.lineanime.st7 {
  animation-delay: 1.8s;
}

@keyframes line {
  0% {
    stroke-dashoffset: 1800px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
/* scaleDown **************************/
@keyframes scaleDown {
  0% {
    transform: scale(1.2);
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.scaleDown {
  animation-name: scaleDown;
  transform: scale(1.2);
  opacity: 1 !important;
}

/* scaleUP **************************/
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.scaleUp {
  animation-name: scaleUp;
  transform: scale(1);
  opacity: 1 !important;
}

/* passing **************************/
.passing {
  display: block;
}

.passing .passing-bar {
  position: relative;
  display: inline-block;
  transform: translate3d(0, 0, 0);
}

.passing .passing-bar:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
}

.passing .passing-txt {
  opacity: 0;
  transform: translate3d(0, 0, 0);
}

.passing.move .passing-txt {
  animation: passing-txt 0s ease 0.5s 1 normal forwards;
}

@keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*passingLeft*/
.passingL.passing-bar:before {
  left: 0;
}

.passingL.move .passing-bar:before {
  animation: passing-barL 1s ease 0s 1 normal forwards;
}

@keyframes passing-barL {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
/*passingRight*/
.passingR.passing-bar:before {
  right: 0;
}

.passingR.move .passing-bar:before {
  animation: passing-barR 1s ease 0s 1 normal forwards;
}

@keyframes passing-barR {
  0% {
    right: 0;
    width: 0;
  }
  50% {
    right: 0;
    width: 100%;
  }
  51% {
    right: 0;
    width: 100%;
  }
  100% {
    right: 100%;
    width: 0;
  }
}
/* txt_popout **************************/
.txt_popout {
  overflow: hidden;
}

.txt_popout.move p {
  transform: translateY(2em);
  animation: textanimation 1s forwards;
}

.txt_popout p:nth-child(1) {
  animation-delay: 0.05s;
}

.txt_popout p:nth-child(2) {
  animation-delay: 0.1s;
}

.txt_popout p:nth-child(3) {
  animation-delay: 0.15s;
}

.txt_popout p:nth-child(4) {
  animation-delay: 0.2s;
}

.txt_popout p:nth-child(5) {
  animation-delay: 0.25s;
}

.txt_popout p:nth-child(6) {
  animation-delay: 0.3s;
}

.txt_popout p:nth-child(7) {
  animation-delay: 0.35s;
}

.txt_popout p:nth-child(8) {
  animation-delay: 0.4s;
}

.txt_popout p:nth-child(9) {
  animation-delay: 0.45s;
}

.txt_popout p:nth-child(10) {
  animation-delay: 0.5s;
}

.txt_popout p:nth-child(11) {
  animation-delay: 0.55s;
}

.txt_popout p:nth-child(12) {
  animation-delay: 0.6s;
}

@keyframes textanimation {
  0% {
    transform: translateY(2em);
  }
  100% {
    transform: translateY(0);
  }
}
/* txt_popout2_out **************************/
.txt_popout2_out {
  display: block;
}

.txt_popout2_out span.l {
  display: inline-block;
  line-height: 1;
  vertical-align: top;
}
.txt_popout2_out.move span.l {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 0.15s linear, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.txt_popout2_out.move span.l_0 {
  transition-delay: 0s;
}
.txt_popout2_out.move span.l_1 {
  transition-delay: 0.02s;
}
.txt_popout2_out.move span.l_2 {
  transition-delay: 0.04s;
}
.txt_popout2_out.move span.l_3 {
  transition-delay: 0.06s;
}
.txt_popout2_out.move span.l_4 {
  transition-delay: 0.08s;
}
.txt_popout2_out.move span.l_5 {
  transition-delay: 0.1s;
}
.txt_popout2_out.move span.l_6 {
  transition-delay: 0.12s;
}
.txt_popout2_out.move span.l_7 {
  transition-delay: 0.14s;
}
.txt_popout2_out.move span.l_8 {
  transition-delay: 0.16s;
}
.txt_popout2_out.move span.l_9 {
  transition-delay: 0.18s;
}
.txt_popout2_out.move span.l_10 {
  transition-delay: 0.2s;
}
.txt_popout2_out.move span.l_11 {
  transition-delay: 0.22s;
}

/* txt_popout2_in **************************/
.txt_popout2_in {
  display: block;
}

.txt_popout2_in span.l {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 0.15s linear, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.txt_popout2_in.move span.l {
  display: inline-block;
  line-height: 1;
  vertical-align: top;
  opacity: 1;
  transform: none;
  transition: opacity 0.2s linear, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.txt_popout2_in.move span.l_0 {
  transition-delay: 0.5s;
}
.txt_popout2_in.move span.l_1 {
  transition-delay: 0.52s;
}
.txt_popout2_in.move span.l_2 {
  transition-delay: 0.54s;
}
.txt_popout2_in.move span.l_3 {
  transition-delay: 0.56s;
}
.txt_popout2_in.move span.l_4 {
  transition-delay: 0.58s;
}
.txt_popout2_in.move span.l_5 {
  transition-delay: 0.6s;
}
.txt_popout2_in.move span.l_6 {
  transition-delay: 0.62s;
}
.txt_popout2_in.move span.l_7 {
  transition-delay: 0.64s;
}
.txt_popout2_in.move span.l_8 {
  transition-delay: 0.66s;
}
.txt_popout2_in.move span.l_9 {
  transition-delay: 0.68s;
}
.txt_popout2_in.move span.l_10 {
  transition-delay: 0.7s;
}
.txt_popout2_in.move span.l_11 {
  transition-delay: 0.72s;
}

/* txt_marker **************************/
.txt_marker {
  display: inline;
  position: relative;
}

.txt_marker::before {
  content: "";
  width: 0;
  display: block;
  position: absolute;
  top: -7px;
  left: 0;
  z-index: -2;
}

.txt_marker.move::before {
  animation: markerAnime 1s forwards ease;
}

@keyframes markerAnime {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
/* img-slide **************************/
.img-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  line-height: 0;
}

.img-slide:before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 100%;
  z-index: 1;
  transform-origin: right center;
  transform: scaleX(1);
  transition: width 1s cubic-bezier(0.19, 1, 0.22, 1) 0s, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

.img-slide img {
  position: relative;
  width: 100%;
  height: auto;
  opacity: 0;
  top: -50%;
  left: -100%;
  transition: 0.7s;
}

.img-slide--move img {
  opacity: 1;
  left: 0;
}

.img-slide--move.img-slide:before {
  transform: scaleX(0);
  width: 100%;
}

/* slideIn **************************/
/*slideInL*/
.slideInL {
  position: relative;
  overflow: hidden;
}

.slideInL::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.slideInL--move::after {
  animation: slideInL 1.5s ease-in-out forwards;
}

@keyframes slideInL {
  0% {
    left: 0;
  }
  70% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
/*slideInR*/
.slideInR {
  position: relative;
  overflow: hidden;
}

.slideInR::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1;
}

.slideInR--move::after {
  animation: slideInR 1.5s ease-in-out forwards;
}

@keyframes slideInR {
  0% {
    right: 0;
  }
  70% {
    right: 100%;
  }
  100% {
    right: 100%;
  }
}
/*slideInT*/
.slideInT {
  position: relative;
  overflow: hidden;
}

.slideInT::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.slideInT--move::after {
  animation: slideInT 1.5s ease-in-out forwards;
}

@keyframes slideInT {
  0% {
    top: 0;
  }
  70% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}
/*slideInB*/
.slideInB {
  position: relative;
  overflow: hidden;
}

.slideInB::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.slideInB--move::after {
  animation: slideInB 1.5s ease-in-out forwards;
}

@keyframes slideInB {
  0% {
    bottom: 0%;
  }
  70% {
    bottom: 100%;
  }
  100% {
    bottom: 100%;
  }
}
/* slideOut **************************/
/*slideOutL*/
.slideOutL {
  position: relative;
  overflow: hidden;
}

.slideOutL::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 100%;
  z-index: 1;
}

.slideOutL--move::after {
  animation: slideOutL 1.5s ease-in-out forwards;
}

@keyframes slideOutL {
  0% {
    right: 100%;
  }
  70% {
    right: 0;
  }
  100% {
    right: 0;
  }
}
/*slideOutR*/
.slideOutR {
  position: relative;
  overflow: hidden;
}

.slideOutR::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 100%;
  z-index: 1;
}

.slideOutR--move::after {
  animation: slideOutR 1.5s ease-in-out forwards;
}

@keyframes slideOutR {
  0% {
    left: 100%;
  }
  70% {
    left: 0;
  }
  100% {
    left: 0;
  }
}
/*slideOutT*/
.slideOutT {
  position: relative;
  overflow: hidden;
}

.slideOutT::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 100%;
  left: 0;
  z-index: 1;
}

.slideOutT--move::after {
  animation: slideOutT 1.5s ease-in-out forwards;
}

@keyframes slideOutT {
  0% {
    bottom: 100%;
  }
  70% {
    bottom: 0;
  }
  100% {
    bottom: 0;
  }
}
/*slideOutB*/
.slideOutB {
  position: relative;
  overflow: hidden;
}

.slideOutB::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 100%;
  left: 0;
  z-index: 1;
}

.slideOutB--move::after {
  animation: slideOutB 1.5s ease-in-out forwards;
}

@keyframes slideOutB {
  0% {
    top: 100%;
  }
  70% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
/* liner **************************/
/*linerLeft*/
.linerLeft:before {
  content: "";
  position: absolute;
  left: 0;
}

.linerLeft:before {
  animation: linerLeft 1s ease-in-out forwards;
}

@keyframes linerLeft {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
/*linerRight*/
.linerRight:before {
  content: "";
  position: absolute;
  left: 100%;
  transform: translateX(-100%);
  animation: linerRight 1s ease-in-out forwards;
}

@keyframes linerRight {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
/*linerTop*/
.linerTop:before {
  content: "";
  position: absolute;
  top: 0;
  animation: linerTop 1s ease-in-out forwards;
}

@keyframes linerTop {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
/*linerBottom*/
.linerBottom:before {
  content: "";
  position: absolute;
  top: 100%;
  transform: translateY(-100%);
  animation: linerBottom 1s ease-in-out forwards;
}

@keyframes linerBottom {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
/* ------------------------------------- 
  delay
------------------------------------- */
.delay1 {
  animation-delay: 0.1s !important;
}

.delay2 {
  animation-delay: 0.2s !important;
}

.delay3 {
  animation-delay: 0.3s !important;
}

.delay4 {
  animation-delay: 0.4s !important;
}

.delay5 {
  animation-delay: 0.5s !important;
}

.delay6 {
  animation-delay: 0.6s !important;
}

.delay7 {
  animation-delay: 0.7s !important;
}

.delay8 {
  animation-delay: 0.8s !important;
}

.delay9 {
  animation-delay: 0.9s !important;
}

.delay10 {
  animation-delay: 1s !important;
}

.delay11 {
  animation-delay: 1.1s !important;
}

a {
  transition-duration: 0.3s;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.modal-container {
  position: relative;
  z-index: 2;
  width: min(92vw, 640px);
  max-height: 85vh;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  overflow: auto;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.modal-container p {
  margin-top: 5px;
  text-align: center;
}

.modal.is-open .modal-container {
  transform: translateY(0);
  opacity: 1;
}

.modal-close {
  display: block;
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 22;
  color: #000000;
}

/* bodyスクロールロック */
.modal-lock {
  overflow: hidden;
}

/* 拡大図 */
.modal-enlarge {
  position: relative;
}
.modal-enlarge .more {
  cursor: pointer;
  appearance: none;
  border: none;
  padding: 0;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  transition: all 0.3s;
}
.modal-enlarge .more:hover {
  opacity: 0.7;
}
.modal-enlarge .modal-container {
  width: 84%;
  max-height: 90vh;
}

@media screen and (max-width: 1024px) {
  /* 拡大図 */
  .modal-enlarge .more {
    width: 30px;
    height: 30px;
    top: 5px;
    right: 5px;
  }
  .modal-enlarge .modal-container {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  .modal-container {
    border-radius: 5px;
    padding: 15px;
  }
  .modal-close {
    font-size: 20px;
  }
  .modal-close img {
    width: 20px;
  }
  /* 拡大図 */
  .modal-enlarge {
    width: 100%;
  }
  .modal-enlarge .modal-container {
    overflow: hidden;
  }
  .modal-enlarge .modal-image-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .modal-enlarge .modal-image-wrap img {
    max-width: none;
  }
  .modal-enlarge .modal-close {
    z-index: 9999;
  }
}
@media screen and (max-width: 480px) {
  .modal-container {
    padding: 10px;
  }
  .modal-close {
    top: 10px;
    right: 10px;
    font-size: 15px;
  }
  .modal-close img {
    width: 15px;
  }
}
/* ------------------------------------- 
  page
------------------------------------- */
.page {
  position: relative;
  margin-bottom: 160px;
  padding: 60px 0 0;
}
.page::after {
  content: "";
  position: absolute;
  top: 0;
  background-color: #DFEBEA;
  width: 100%;
  max-height: 615px;
  height: 62vh;
  z-index: -2;
}
.page .wrap-overview {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.page .wrap-overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  background-size: 100%;
  max-width: 1440px;
  width: 95%;
  height: 100%;
  min-height: 500px;
  z-index: -1;
}
.page .main-title {
  margin-bottom: 90px;
}
.page .main-title h2 {
  color: #01506E;
  line-height: 1em;
  letter-spacing: 0.2rem;
}
.page .main-title h2 span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #73C2BA;
}
.page section {
  box-sizing: border-box;
}
.page .section-common {
  max-width: 1152px;
  width: 90%;
  margin: 0 auto;
  padding-top: 100px;
  box-sizing: border-box;
}
.page h3.page-h3 {
  position: relative;
  padding-bottom: 30px;
}
.page h3.page-h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: #73C2BA;
  background-size: 100%;
  width: 40px;
  height: 2px;
}
.page p, .page dl, .page dt, .page li, .page th, .page td, .page a {
  font-size: 1.25rem;
  line-height: 1.8em;
}
@media screen and (max-width: 1280px) {
  .page::after {
    height: 40vh;
  }
  .page .wrap-overview::before {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .page {
    margin-bottom: 120px;
    padding-top: 50px;
  }
  .page .main-title {
    margin-bottom: 70px;
  }
  .page .main-title h2 span {
    font-size: 1.125rem;
  }
  .page .section-common {
    padding-top: 70px;
  }
  .page p, .page dl, .page dt, .page li, .page th, .page td, .page a {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .page {
    margin-bottom: 90px;
    padding-top: 40px;
  }
  .page .main-title {
    margin-bottom: 50px;
  }
  .page .main-title h2 {
    line-height: 1.4em;
    letter-spacing: 0.1rem;
  }
  .page .main-title h2 span {
    font-size: 1rem;
  }
  .page .section-common {
    padding-top: 50px;
  }
  .page h3.page-h3 {
    padding-bottom: 20px;
  }
  .page p, .page dl, .page dt, .page li, .page th, .page td, .page a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .page .main-title h2 span {
    font-size: 0.875rem;
  }
  .page p, .page dl, .page dt, .page li, .page th, .page td, .page a {
    font-size: 0.875rem;
  }
}

/* ------------------------------------- 
  page-mv pankuzu
------------------------------------- */
.page-mv {
  position: relative;
  width: 100%;
  margin-right: 0;
  margin-left: auto;
  padding-top: 130px;
}
.page-mv .mv-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1702px;
  width: 88.7%;
  padding-top: 130px;
}
.page-mv .mv-title h1 {
  text-align: left;
  line-height: 1.4em;
}
.page-mv .mv-title h1 span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0;
  color: #73C2BA;
}
.page-mv .mv-img {
  width: 63%;
  max-height: 328px;
  margin-left: auto;
  overflow: hidden;
}
.page-mv .mv-img img {
  object-fit: cover;
}

.pankuzu {
  max-width: 1704px;
  width: 88.7%;
  margin: 0 auto;
  padding: 10px 0 40px;
}
.pankuzu p, .pankuzu p a {
  color: #01506E;
}
.pankuzu p a {
  text-decoration: underline;
}
.pankuzu p a:hover {
  text-decoration: none;
}

@media screen and (max-width: 1920px) {
  .page-mv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1812px;
    width: 94.3%;
  }
  .page-mv .mv-title {
    position: static;
    transform: none;
    width: auto;
    padding-top: 0;
  }
  .page-mv .mv-img {
    width: 75.8%;
  }
}
@media screen and (max-width: 1280px) {
  .page-mv {
    padding-top: 130px;
  }
  .page-mv .mv-title h1 span {
    font-size: 1rem;
  }
  .page-mv .mv-img {
    width: 70%;
  }
}
@media screen and (max-width: 1024px) {
  .page-mv {
    padding-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .page-mv .mv-title h1 span {
    font-size: 0.875rem;
  }
  .page-mv .mv-img {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .page-mv {
    flex-direction: column-reverse;
    border-bottom: 1px solid #73C2BA;
    width: 100%;
  }
  .page-mv .mv-title {
    width: 90%;
    margin: 30px auto;
  }
  .page-mv .mv-title h1 {
    text-align: center;
    line-height: 1.6em;
  }
  .page-mv .mv-img {
    max-width: 100%;
    width: 100%;
  }
  .pankuzu {
    width: 90%;
    padding: 10px 0 30px;
  }
}
/* ------------------------------------- 
  nav/ page-menu
------------------------------------- */
.page-menu {
  width: 90%;
  margin: 0 auto 50px;
}
.page-menu ul {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 50px;
  flex-wrap: nowrap;
  height: auto;
}
.page-menu li {
  display: flex;
  flex-direction: column;
  width: 252px;
}
.page-menu li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  border-bottom: 1px solid #707070;
  width: 100%;
  height: 100%;
  margin-left: 0;
  padding: 15px 25px 15px 0;
  font-size: clamp(12px, 10.4px + 0.5vw, 20px);
  line-height: 1.3em;
  text-align: left;
  letter-spacing: 0.1rem;
}
.page-menu li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  transition: all 0.3s;
  border-width: 10px calc(12px / 2) 0 calc(12px / 2);
  border-color: #73C2BA transparent transparent transparent;
}
.page-menu li a:hover::after {
  transform: translateY(calc(-50% + 5px));
}
@media screen and (max-width: 1280px) {
  .page-menu ul {
    gap: 30px;
  }
  .page-menu li {
    width: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .page-menu ul {
    flex-direction: column;
    gap: 0px;
  }
  .page-menu li {
    width: 100%;
  }
  .page-menu li a {
    align-items: flex-start;
    border-bottom: none;
    border-top: 1px solid #E3E3EC;
    background: #73C2BA;
    color: #FFFFFF;
    padding: 10px 20px;
  }
  .page-menu li a::after {
    right: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    transition: all 0.3s;
    border-width: calc(12px / 2) 0 calc(12px / 2) 10px;
    border-color: transparent transparent transparent #FFFFFF;
  }
  .page-menu li a:hover::after {
    transform: translateY(-50%);
  }
}

@media screen and (min-width: 1025px) {
  .drop-menu_title {
    display: none !important;
  }
  .drop-menu_list {
    position: static !important;
  }
}
@media screen and (max-width: 1024px) {
  .page-menu {
    position: relative;
    z-index: 1;
  }
  .drop-menu_title {
    display: block;
    position: relative;
    z-index: 1;
    background: #E3E3EC;
    max-width: 600px;
    width: 90%;
    height: 100%;
    margin: 0 auto;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    color: #01506E;
    box-sizing: border-box;
  }
  .drop-menu_title::after {
    content: "▼";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
    font-size: 0.75rem;
    color: #73C2BA;
  }
  .drop-menu_title.active::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .drop-menu_list {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 600px;
    width: 90%;
    margin: 0 auto;
  }
}
/* ------------------------------------- 
  link_list-cement
------------------------------------- */
.page_link_list-cement {
  background: #FFFFFF;
  width: 100%;
  margin-top: 200px;
  padding-top: 150px;
}
.page_link_list-cement .title {
  margin-bottom: 60px;
}
.page_link_list-cement .title h2 {
  font-family: "Roboto", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.8em;
  font-style: italic;
}
.page_link_list-cement .title h2 span {
  font-family: "Noto Sans JP", "Yu Gothic", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  font-style: normal;
}
.page_link_list-cement .link_list-cement ul li {
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 1024px) {
  .page_link_list-cement {
    margin-top: 150px;
    padding-top: 100px;
  }
  .page_link_list-cement .title h2 {
    font-size: 3.75rem;
  }
  .page_link_list-cement .title h2 span {
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 768px) {
  .page_link_list-cement {
    margin-top: 100px;
    padding-top: 70px;
  }
  .page_link_list-cement .title h2 {
    font-size: 2.5rem;
  }
  .page_link_list-cement .title h2 span {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .page_link_list-cement {
    margin-top: 70px;
    padding-top: 50px;
  }
  .page_link_list-cement .title {
    margin-bottom: 30px;
  }
  .page_link_list-cement .title h2 {
    font-size: 1.875rem;
    line-height: 1.2em;
  }
  .page_link_list-cement .title h2 span {
    font-size: 1.125rem;
  }
  .page_link_list-cement .title .read {
    font-size: 0.875rem;
  }
}

/* ------------------------------------- 
  not-404
------------------------------------- */
.not-404 .wrap-overview {
  min-height: 500px;
}

/* ------------------------------------- 
  top common
------------------------------------- */
.top, .top-recruit {
  position: relative;
}
.top .title-common, .top-recruit .title-common {
  margin-bottom: 30px;
}
.top h2, .top-recruit h2 {
  font-family: "Roboto", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.8em;
  font-style: italic;
}
.top h2 span, .top-recruit h2 span {
  font-family: "Noto Sans JP", "Yu Gothic", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  font-style: normal;
}
.top .read, .top-recruit .read {
  max-width: 750px;
  width: 80%;
  margin: 30px auto 0;
  font-size: 1.125rem;
  line-height: 2.3em;
}
.top section, .top-recruit section {
  width: 100%;
  margin: 0 auto;
}
.top section .wrap, .top-recruit section .wrap {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .top h2, .top-recruit h2 {
    font-size: 3.75rem;
  }
  .top h2 span, .top-recruit h2 span {
    font-size: 1.5625rem;
  }
  .top .read, .top-recruit .read {
    font-size: 1rem;
    line-height: 2em;
  }
}
@media screen and (max-width: 768px) {
  .top h2, .top-recruit h2 {
    font-size: 2.5rem;
  }
  .top h2 span, .top-recruit h2 span {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .top h2, .top-recruit h2 {
    font-size: 1.875rem;
    line-height: 1.3em;
  }
  .top h2 span, .top-recruit h2 span {
    font-size: 1.125rem;
  }
  .top .read, .top-recruit .read {
    font-size: 0.875rem;
  }
}

/* ------------------------------------- 
  mv
------------------------------------- */
.mv {
  position: relative;
  padding-top: 130px;
}
.mv h1 {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  max-width: 830px;
  width: 43.2%;
}
@media screen and (max-width: 1024px) {
  .mv {
    padding-top: 50px;
  }
}
@media screen and (max-width: 960px) {
  .mv h1 {
    top: 55%;
    transform: translateY(-45%);
  }
}
@media screen and (max-width: 480px) {
  .mv h1 {
    top: 60%;
    transform: translateY(-40%);
  }
}

/* ------------------------------------- 
  top-information
------------------------------------- */
.top-information {
  overflow: hidden;
  position: absolute;
  top: -120px;
  left: 0;
  z-index: 1;
  padding: 50px 0;
}
.top-information::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -5%;
  transform: skewX(-25deg) translateX(-70px);
  background: #FFFFFF;
  width: 80%;
  height: 100%;
}
.top-information .wrap {
  max-width: 1440px;
}

.top-information .title,
.top-information .list {
  max-width: 967px;
  width: 65%;
}

.top-information .title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #707070;
  padding-bottom: 10px;
}
.top-information .title h2 {
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "Yu Gothic", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-style: normal;
  line-height: 1.5em;
  text-align: left;
}
.top-information .title h2 span {
  font-size: 1rem;
  color: #B873C2;
}
.top-information .title a {
  position: relative;
  display: block;
  padding-left: 20px;
}
.top-information .title a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  transition: all 0.3s;
  border-width: calc(10px / 2) 0 calc(10px / 2) 8px;
  border-color: transparent transparent transparent #000000;
}

.top-information .list {
  margin-top: 30px;
}
.top-information .list ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}
.top-information .list ul li:last-child {
  margin-bottom: 0;
}
.top-information .list ul li .date {
  min-width: 90px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  margin-right: 20px;
  padding-top: 2px;
}
.top-information .list ul li .tag {
  width: 200px;
  color: #FFFFFF;
  line-height: 30px;
  font-size: 0.875rem;
}
.top-information .list ul li a {
  max-width: 667px;
  width: 69%;
  margin-left: 20px;
  line-height: 1.6em;
}
.top-information .list ul li a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1280px) {
  .top-information {
    top: -100px;
    padding: 30px 0;
  }
  .top-information::before {
    width: 90%;
  }
  .top-information .title,
  .top-information .list {
    width: 75%;
  }
  .top-information .title h2 {
    font-size: 1.125rem;
  }
  .top-information .title h2 span {
    font-size: 1rem;
  }
  .top-information .list {
    margin-top: 20px;
  }
  .top-information .list ul li {
    margin-bottom: 5px;
  }
  .top-information .list ul li .date {
    min-width: 80px;
    margin-right: 10px;
    font-size: 0.875rem;
  }
  .top-information .list ul li .tag {
    width: 180px;
    line-height: 25px;
    font-size: 0.75rem;
  }
  .top-information .list ul li a {
    margin-top: 10px;
  }
}
@media screen and (max-width: 960px) {
  .top-information {
    position: static;
    background: #FFFFFF;
    top: 0;
    padding: 30px 0;
  }
  .top-information::before {
    background: none;
    height: auto;
  }
  .top-information .title,
  .top-information .list {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .top-information .title {
    padding-bottom: 5px;
  }
  .top-information .title h2 {
    font-size: 0.875rem;
    line-height: 1.2em;
  }
  .top-information .title h2 span {
    font-size: 0.75rem;
  }
  .top-information {
    padding: 15px 0;
  }
  .top-information .list {
    margin-top: 10px;
  }
  .top-information .list ul li {
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  .top-information .list ul li .date {
    font-size: 0.75rem;
  }
  .top-information .list ul li .tag {
    line-height: 20px;
  }
  .top-information .list ul li a {
    display: block;
    width: 100%;
    margin: 0;
    text-decoration: underline;
  }
}
/* ------------------------------------- 
  top-about
------------------------------------- */
.top-about {
  position: relative;
  z-index: 0;
  padding: 300px 0 150px;
}
.top-about::before {
  content: "";
  position: absolute;
  top: 0;
  transform: skewY(-5deg);
  background: #01506E;
  width: 100%;
  height: 86%;
  z-index: -2;
}
.top-about h2, .top-about .read {
  color: #FFFFFF;
}
.top-about_bg-img {
  position: absolute;
  top: 20%;
  left: -5%;
  z-index: -1;
  max-width: 600px;
  width: 31.25%;
  opacity: 0.2;
}
@media screen and (max-width: 1024px) {
  .top-about {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 960px) {
  .top-about {
    overflow: hidden;
    padding-top: 100px;
  }
  .top-about::before {
    top: -50px;
    height: 90%;
  }
}
@media screen and (max-width: 768px) {
  .top-about {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 480px) {
  .top-about {
    padding: 70px 0;
  }
}

/* ------------------------------------- 
  top-cb_wrap company/bussiness 共通css
------------------------------------- */
.top-cb_wrap {
  position: relative;
  padding-bottom: 150px;
}
.top-cb_wrap::before {
  content: "";
  position: absolute;
  top: -250px;
  z-index: -2;
  background: url(../images/top/company_bg.jpg) no-repeat;
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: calc(100% + 250px);
}
.top-cb_wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  z-index: -1;
  background: url(../images/top/company_bg2.png) no-repeat;
  background-size: 100%;
  background-position: bottom center;
  width: 100%;
  height: 100%;
}
.top-cb_wrap section {
  margin-bottom: 150px;
}
.top-cb_wrap section:last-child {
  margin-bottom: 0;
}
.top-cb_wrap .link_list ul li a {
  background: #000000;
}
.top-cb_wrap .link_list ul li a p {
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .top-cb_wrap {
    padding-bottom: 120px;
  }
  .top-cb_wrap section {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 480px) {
  .top-cb_wrap {
    padding-bottom: 100px;
  }
  .top-cb_wrap section {
    margin-bottom: 100px;
  }
}

/* ------------------------------------- 
  top-bussiness
------------------------------------- */
.top-bussiness .button {
  background: #FFFFFF;
  border: 1px solid #01506E;
  max-width: 266px;
  margin-top: 20px;
  line-height: 60px;
}
.top-bussiness .button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  transition: all 0.3s;
  border-width: calc(12px / 2) 0 calc(12px / 2) 10px;
  border-color: transparent transparent transparent #01506E;
}
.top-bussiness .button:hover {
  background: #01506E;
  color: #FFFFFF;
}
.top-bussiness .button:hover::after {
  border-left-color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .top-bussiness .button {
    line-height: 50px;
  }
}

/* ------------------------------------- 
  top-sdgs
------------------------------------- */
.top-sdgs {
  padding: 150px 0;
}
.top-sdgs a {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: url(../images/top/sdgs_btn-bg.jpg) no-repeat;
  background-position: center, center;
  background-size: cover;
  max-width: 700px;
  width: 50%;
  height: 200px;
  margin: 30px auto 0;
  padding-bottom: 25px;
}
.top-sdgs a .button {
  background: #FFFFFF;
  max-width: 300px;
  width: 50%;
  font-size: 1.125rem;
  color: #002A81;
  line-height: 60px;
  transition: all 0.3s;
}
.top-sdgs a .button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  transition: all 0.3s;
  border-width: calc(12px / 2) 0 calc(12px / 2) 10px;
  border-color: transparent transparent transparent #002A81;
}
.top-sdgs a:hover .button {
  opacity: 0.7;
}
@media screen and (max-width: 1024px) {
  .top-sdgs {
    padding: 100px 0;
  }
}
@media screen and (max-width: 768px) {
  .top-sdgs {
    padding: 70px 0 100px;
  }
  .top-sdgs a {
    width: 60%;
    height: 120px;
    padding-bottom: 15px;
  }
  .top-sdgs a .button {
    width: 60%;
    font-size: 1rem;
    line-height: 40px;
  }
}
@media screen and (max-width: 480px) {
  .top-sdgs a {
    width: 70%;
    margin-top: 20px;
  }
  .top-sdgs a .button {
    width: 70%;
    font-size: 0.875rem;
  }
  .top-sdgs a .button::after {
    right: 10px;
  }
}

/* ------------------------------------- 
  top-recruit
------------------------------------- */
.top-recruit {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 50px;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto -120px;
  padding-top: 150px;
  z-index: 1;
}
.top-recruit .wrap {
  max-width: 750px;
  width: 39%;
  padding-left: 5%;
  box-sizing: content-box;
}
.top-recruit .title-common h2 {
  text-align: left;
}
.top-recruit .detail h3 {
  margin-top: 40px;
  font-size: 1.875rem;
  font-weight: 700;
}
.top-recruit .detail p {
  margin-top: 20px;
  font-size: 1.125rem;
  line-height: 2em;
}
.top-recruit .detail .button {
  background: #B873C2;
  border: 1px solid #B873C2;
  max-width: 600px;
  line-height: 80px;
  margin-top: 50px;
  margin-left: 0;
  font-size: 1.5rem;
  color: #FFFFFF;
}
.top-recruit .detail .button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  transition: all 0.3s;
  border-width: calc(12px / 2) 0 calc(12px / 2) 10px;
  border-color: transparent transparent transparent #FFFFFF;
}
.top-recruit .detail .button:hover {
  background: #FFFFFF;
  color: #B873C2;
}
.top-recruit .detail .button:hover::after {
  border-color: transparent transparent transparent #B873C2;
}
.top-recruit_img {
  max-width: 730px;
}
@media screen and (max-width: 1280px) {
  .top-recruit {
    align-items: flex-end;
  }
  .top-recruit_img {
    width: 50%;
  }
}
@media screen and (max-width: 1024px) {
  .top-recruit {
    display: block;
    margin-bottom: 0;
  }
  .top-recruit .wrap {
    max-width: 100%;
    width: 90%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
  }
  .top-recruit .detail h3 {
    font-size: 1.5625rem;
  }
  .top-recruit .detail p {
    max-width: 600px;
    font-size: 1rem;
  }
  .top-recruit .detail .button {
    max-width: 500px;
    line-height: 60px;
    margin: 50px auto 0;
    font-size: 1.25rem;
  }
  .top-recruit_img {
    position: absolute;
    top: -10%;
    right: 0;
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .top-recruit .detail h3 {
    font-size: 1.25rem;
  }
  .top-recruit .detail p {
    font-size: 0.875rem;
  }
  .top-recruit .detail .button {
    max-width: 350px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .top-recruit {
    padding-top: 70%;
  }
  .top-recruit .title-common h2 {
    text-align: center;
  }
  .top-recruit .detail {
    width: 90%;
    margin: 0 auto;
  }
  .top-recruit .detail .button {
    max-width: 300px;
  }
  .top-recruit_img {
    max-width: 480px;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ------------------------------------- 
  page-company
  companyページ　共通レイアウト
------------------------------------- */
.page-company::after {
  max-height: 815px;
  height: 75vh;
}
.page-company h3 {
  font-weight: 600;
}

/* ------------------------------------- 
  company-message
------------------------------------- */
.company-message::after {
  max-height: 615px;
  height: 57vh;
}
.company-message .wrap {
  position: relative;
  width: 100%;
}
.company-message .wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #FFFFFF;
  background-size: 100%;
  width: 73.5%;
  height: 100%;
  z-index: -1;
}
.company-message .section-common {
  position: relative;
  z-index: 0;
  max-width: 100%;
  width: 80%;
  margin: 0 0 0 auto;
}
.company-message .section-common h3 {
  margin-bottom: 50px;
}
.company-message .section-common .contents {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.company-message .section-common .image {
  width: 42.4%;
}
.company-message .section-common .image p {
  margin-top: 30px;
  font-family: "Yu Mincho", "Noto Serif JP", serif;
  font-size: 1.625rem;
}
.company-message .section-common .image p span {
  font-size: 1.375rem;
}
.company-message .section-common .text-box {
  width: 53.6%;
}
.company-message .section-common .text-box p {
  max-width: 824px;
  padding-bottom: 30px;
}
.company-message .section-common .text-box p:last-child {
  padding-bottom: 0;
}
@media screen and (max-width: 1280px) {
  .company-message .section-common {
    width: 90%;
  }
}
@media screen and (max-width: 1024px) {
  .company-message .section-common .image p {
    margin-top: 10px;
    font-size: 1.375rem;
  }
  .company-message .section-common .image p span {
    font-size: 1.125rem;
  }
  .company-message .section-common .text-box p {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 960px) {
  .company-message .wrap::before {
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  .company-message .section-common {
    max-width: 768px;
    margin: 0 auto;
  }
  .company-message .section-common .contents {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .company-message .section-common .image {
    max-width: 652px;
    width: 60%;
    margin: 0 auto;
  }
  .company-message .section-common .image p {
    text-align: center;
  }
  .company-message .section-common .text-box {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .company-message .section-common .image p {
    font-size: 1rem;
  }
  .company-message .section-common .image p span {
    font-size: 0.875rem;
  }
}

/* ------------------------------------- 
  company-overview
------------------------------------- */
.company-overview .section-common {
  max-width: 1152px;
  width: 90%;
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 150px;
}
.company-overview .section-common:last-child {
  padding-bottom: 0;
}
.company-overview .wrap {
  position: relative;
  width: 100%;
  z-index: 0;
}
.company-overview .wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: #FFFFFF;
  background-size: 100%;
  width: 50%;
  height: 60vh;
  z-index: -1;
}
.company-overview__profile {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.company-overview__profile h3 {
  width: 194px;
  padding-top: 50px;
}
.company-overview__profile .contents {
  background: #FFFFFF;
  width: calc(100% - 194px);
  padding: 50px 0 0 70px;
}
.company-overview__profile dl {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}
.company-overview__profile dt, .company-overview__profile dd {
  padding: 20px 0;
}
.company-overview__profile dt.first, .company-overview__profile dd.first {
  padding-top: 0;
}
.company-overview__profile dt {
  border-bottom: 2px solid #73C2BA;
  width: 150px;
}
.company-overview__profile dd {
  border-bottom: 1px solid #CCCCCC;
  width: calc(100% - 150px);
  padding-left: 30px;
}
.company-overview__organization .contents {
  width: 100%;
  margin: 0 auto;
}
.company-overview__afficom .link_list {
  margin: 60px auto 0;
}
.company-overview__afficom .link_list_footer {
  gap: 30px;
}
.company-overview__afficom .link_list_footer li {
  max-width: 360px;
  width: 40%;
}
.company-overview__pamphlet {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #73C2BA;
  max-width: 1152px;
  width: 80%;
  margin: 0 auto 120px;
  padding: 25px;
}
.company-overview__pamphlet img.logo {
  max-width: 362px;
  width: 32.8%;
  margin-left: 6%;
}
.company-overview__pamphlet a {
  position: relative;
  display: block;
  border: 1px solid #FFFFFF;
  border-radius: 10px;
  max-width: 416px;
  width: 37.7%;
  padding: 20px;
  color: #FFFFFF;
  text-align: center;
  font-size: 1.5rem;
}
.company-overview__pamphlet a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  transition: all 0.3s;
  border-width: calc(12px / 2) 0 calc(12px / 2) 10px;
  border-color: transparent transparent transparent #FFFFFF;
}
.company-overview__pamphlet a:hover::after {
  right: 20px;
}
@media screen and (max-width: 1024px) {
  .company-overview .section-common {
    padding-bottom: 100px;
  }
  .company-overview__profile h3 {
    padding-top: 40px;
  }
  .company-overview__profile .contents {
    padding: 40px 0 0 50px;
  }
  .company-overview__profile dt, .company-overview__profile dd {
    padding: 15px 0;
  }
  .company-overview__profile dd {
    padding-left: 20px;
  }
  .company-overview__afficom .link_list {
    margin-top: 50px;
  }
  .company-overview__pamphlet a {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 960px) {
  .company-overview__afficom .link_list_footer li {
    max-width: 250px;
  }
  .company-overview__pamphlet {
    flex-direction: column;
    gap: 20px;
    width: 80%;
    padding: 30px;
  }
  .company-overview__pamphlet img.logo {
    width: 90%;
    margin: 0 auto;
  }
  .company-overview__pamphlet a {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .company-overview .section-common {
    padding-bottom: 70px;
  }
  .company-overview .wrap::after {
    width: 100%;
  }
  .company-overview__profile {
    flex-direction: column;
  }
  .company-overview__profile h3 {
    width: 100%;
    padding-top: 30px;
  }
  .company-overview__profile .contents {
    width: 100%;
    padding-top: 30px;
    padding-left: 0;
  }
  .company-overview__profile dt, .company-overview__profile dd {
    padding: 10px 0;
  }
  .company-overview__profile dt {
    width: 100px;
  }
  .company-overview__profile dd {
    width: calc(100% - 100px);
    padding-left: 20px;
  }
  .company-overview__organization .contents .modal-enlarge {
    margin-top: 50px;
  }
  .company-overview__organization .contents .modal-enlarge .more {
    top: 0;
    right: 0;
  }
  .company-overview__organization .contents .modal-enlarge .modal-container {
    padding: 30px 15px 15px;
  }
  .company-overview__organization .contents .modal-enlarge .modal-image-wrap img {
    width: 180%;
  }
  .company-overview__afficom .link_list {
    margin-top: 30px;
  }
  .company-overview__afficom .link_list_footer {
    gap: 20px;
  }
  .company-overview__afficom .link_list_footer li {
    width: 45%;
  }
}
@media screen and (max-width: 480px) {
  .company-overview__afficom .link_list_footer {
    gap: 10px;
  }
  .company-overview__afficom .link_list_footer li {
    width: 48%;
  }
}

/* ------------------------------------- 
  company-history
------------------------------------- */
.company-history .wrap {
  position: relative;
  width: 100%;
}
.company-history .wrap::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: #FFFFFF;
  background-size: 100%;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.company-history .section-common {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  max-width: 1440px;
  margin: 0 auto;
}
.company-history__detail ul.list {
  position: relative;
  width: 100%;
}
.company-history__detail ul.list::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 12px;
  background: #707070;
  width: 1px;
  height: 100%;
}
.company-history__detail ul.list li {
  position: relative;
  margin-bottom: 60px;
}
.company-history__detail ul.list li:last-child {
  min-height: auto;
  margin-bottom: 0;
}
.company-history__detail ul.list li .text {
  width: 52%;
}
.company-history__detail ul.list li h3 {
  position: relative;
  color: #B873C2;
  font-size: 2rem;
  padding-left: 50px;
}
.company-history__detail ul.list li h3 span {
  font-size: 1.5rem;
}
.company-history__detail ul.list li h3::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #FFFFFF;
  border: 3px solid #B873C2;
  border-radius: 100%;
  width: 24px;
  height: 24px;
  box-sizing: border-box;
}
.company-history__detail ul.list li ul {
  list-style: disc;
  margin-top: 10px;
  margin-left: 100px;
}
.company-history__detail ul.list li ul li {
  display: list-item;
  margin-bottom: 10px;
  color: #01506E;
  font-weight: 600;
  line-height: 1.5em;
}
.company-history__detail ul.list li ul li:last-child {
  margin-bottom: 0;
}
.company-history__detail ul.list li .image {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 300px;
  width: 20.8%;
}
.company-history__detail ul.list li .image-l {
  right: 22.9%;
}
@media screen and (max-width: 1024px) {
  .company-history__detail ul.list li {
    margin-bottom: 40px;
  }
  .company-history__detail ul.list li h3 {
    padding-left: 40px;
    font-size: 1.5625rem;
  }
  .company-history__detail ul.list li h3 span {
    font-size: 1.25rem;
  }
  .company-history__detail ul.list li ul {
    margin-left: 80px;
  }
}
@media screen and (max-width: 768px) {
  .company-history__detail ul.list::before {
    left: 9px;
  }
  .company-history__detail ul.list li .text {
    width: 100%;
  }
  .company-history__detail ul.list li h3 {
    padding-left: 30px;
    font-size: 1.25rem;
  }
  .company-history__detail ul.list li h3 span {
    font-size: 1rem;
  }
  .company-history__detail ul.list li h3::after {
    border-width: 2px;
    width: 18px;
    height: 18px;
  }
  .company-history__detail ul.list li ul {
    margin-top: 5px;
    margin-left: 60px;
  }
  .company-history__detail ul.list li ul li {
    margin-bottom: 5px;
  }
  .company-history__detail ul.list li .image {
    position: static;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 15px;
    margin-left: 40px;
    max-width: 600px;
    width: 90%;
  }
  .company-history__detail ul.list li .image img {
    width: 50%;
  }
}

/* ------------------------------------- 
  company-access
------------------------------------- */
.company-access .wrap {
  background: #FFFFFF;
  width: 100%;
}
.company-access .section-common h3 {
  border-bottom: 1px solid #01506E;
  padding-bottom: 10px;
  color: #01506E;
  font-size: 1.375rem;
}
.company-access .section-common .box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  margin-top: 65px;
}
.company-access .section-common .box .text p {
  margin-top: 30px;
}
.company-access .section-common .box .text p span {
  display: block;
  background: #01506E;
  border-radius: 100px;
  max-width: 233px;
  margin-bottom: 10px;
  text-align: center;
  color: #FFFFFF;
  font-weight: 700;
}
.company-access .section-common .box .text p:first-child {
  margin-top: 0;
}
.company-access .section-common .box .image {
  max-width: 500px;
  width: 43.4%;
}
.company-access .section-common .map {
  height: 400px;
  margin-top: 20px;
  overflow: hidden;
}
.company-access .section-common .map iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .company-access .section-common h3 {
    font-size: 1.125rem;
  }
  .company-access .section-common .box {
    gap: 30px;
    margin-top: 40px;
  }
  .company-access .section-common .map {
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .company-access .section-common h3 {
    font-size: 1rem;
  }
  .company-access .section-common .box {
    flex-direction: column-reverse;
    gap: 20px;
    margin-top: 30px;
  }
  .company-access .section-common .box .image {
    width: 60%;
    margin: 0 auto;
  }
  .company-access .section-common .box .text {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }
  .company-access .section-common .map {
    max-width: 400px;
    height: 250px;
    margin: 30px auto 0;
  }
}

/* ------------------------------------- 
  page-business
  business　共通レイアウト
------------------------------------- */
.page-business__overview {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 50px;
  max-width: 1920px;
  margin: 0 auto;
  padding-top: 100px;
}
.page-business__overview .text {
  padding-left: 5%;
}
.page-business__overview .text h3, .page-business__overview .text p {
  right: 0;
  max-width: 526px;
  margin-left: auto;
}
.page-business__overview .text h3 {
  color: #01506E;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.8em;
}
.page-business__overview .text p {
  margin-top: 40px;
}
.page-business__overview .image {
  right: 0;
  max-width: 960px;
  width: 50%;
}
.page-business__introduction .introduction-mv {
  max-width: 1152px;
  width: 90%;
  margin: 65px auto 0;
}
.page-business__introduction .introduction-mv p {
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.375rem;
}
.page-business__introduction .introduction-mv .image {
  width: 100%;
  margin: 0 auto;
}
.page-business__introduction .contents {
  margin: 120px auto 0;
}
.page-business__introduction .contents h4 {
  border-bottom: 1px solid #01506E;
  margin-bottom: 50px;
  padding-bottom: 15px;
  color: #01506E;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
}
.page-business__introduction .contents p.lead {
  margin-bottom: 50px;
}
.page-business__introduction .contents-first {
  margin-top: 65px;
}
@media screen and (max-width: 1366px) {
  .page-business__overview {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 1280px) {
  .page-business .wrap::before {
    width: 100%;
  }
  .page-business__overview {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .page-business__overview {
    padding-top: 70px;
  }
  .page-business__overview .text h3 {
    font-size: 1.5625rem;
  }
  .page-business__overview .text p {
    margin-top: 20px;
  }
  .page-business__introduction .introduction-mv {
    margin-top: 40px;
  }
  .page-business__introduction .introduction-mv p {
    font-size: 1.25rem;
  }
  .page-business__introduction .contents {
    margin-top: 100px;
  }
  .page-business__introduction .contents h4 {
    font-size: 1.25rem;
    margin-bottom: 40px;
  }
  .page-business__introduction .contents p.lead {
    margin-bottom: 40px;
  }
  .page-business__introduction .contents p {
    font-size: 1rem;
  }
  .page-business__introduction .contents-first {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .page-business__overview {
    flex-direction: column-reverse;
    align-items: center;
    gap: 30px;
    padding-top: 50px;
    padding-bottom: 0px;
  }
  .page-business__overview .text {
    padding-left: 0;
    width: 90%;
  }
  .page-business__overview .text h3, .page-business__overview .text p {
    position: static;
    width: 100%;
    margin: 0 auto;
  }
  .page-business__overview .text h3 {
    font-size: 1.375rem;
  }
  .page-business__overview .text p {
    margin-top: 20px;
  }
  .page-business__overview .image {
    width: 90%;
    height: 30vh;
    max-height: 180px;
  }
  .page-business__overview .image img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  .page-business__introduction .introduction-mv p {
    margin-bottom: 10px;
    font-size: 1.125rem;
  }
  .page-business__introduction .contents h4 {
    margin-bottom: 30px;
    font-size: 1.125rem;
  }
  .page-business__introduction .contents p.lead {
    margin-bottom: 30px;
  }
  .page-business__introduction .contents p {
    font-size: 0.875rem;
    line-height: 1.7em;
  }
}
@media screen and (max-width: 480px) {
  .page-business__overview .text h3 {
    font-size: 1.25rem;
  }
  .page-business__introduction .introduction-mv p {
    font-size: 1rem;
  }
  .page-business__introduction .contents {
    margin-top: 70px;
  }
  .page-business__introduction .contents h4 {
    text-align: center;
  }
  .page-business__introduction .contents p.lead {
    width: 90%;
    margin: 0 auto 30px;
  }
  .page-business__introduction .contents-first {
    margin-top: 30px;
  }
}

/* ------------------------------------- 
  page-business__introduction
  list-type　個別指定
------------------------------------- */
.page-business__introduction .list_type-grid h5,
.page-business__introduction .list_type-table01 h5,
.page-business__introduction .list_type-table02 h5 {
  border-bottom: 1px solid #01506E;
  padding-bottom: 15px;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
}
.page-business__introduction .list_type-grid h5 span,
.page-business__introduction .list_type-table01 h5 span,
.page-business__introduction .list_type-table02 h5 span {
  font-size: 1.5625rem;
}
.page-business__introduction .list_type-grid p.title-sub,
.page-business__introduction .list_type-table01 p.title-sub,
.page-business__introduction .list_type-table02 p.title-sub {
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: 15px;
}
.page-business__introduction .list_type-grid {
  display: grid;
  justify-content: space-between;
  align-items: flex-start;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px 100px;
}
.page-business__introduction .list_type-grid li {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  height: 100%;
}
.page-business__introduction .list_type-grid p {
  width: 100%;
  margin: 10px auto 15px;
}
.page-business__introduction .list_type-grid p.title-sub {
  margin-bottom: 0;
}
.page-business__introduction .list_type-grid table {
  border: 1px solid #01506E;
  width: 100%;
  min-height: 81px;
  margin-top: auto;
}
.page-business__introduction .list_type-grid table th, .page-business__introduction .list_type-grid table td {
  padding: 10px 15px;
  color: #01506E;
  line-height: 1.5em;
}
.page-business__introduction .list_type-grid table th {
  border-right: 1px solid #01506E;
  text-align: center;
  width: 120px;
  vertical-align: middle;
}
.page-business__introduction .list_type-grid table td {
  width: calc(100% - 120px);
}
.page-business__introduction .list_type-table01 li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 100px;
}
.page-business__introduction .list_type-table01 li:last-child {
  margin-bottom: 0;
}
.page-business__introduction .list_type-table01 li .image {
  max-width: 432px;
  width: 37.5%;
  margin-top: 49px;
}
.page-business__introduction .list_type-table01 li .image p {
  margin-top: 10px;
  text-align: center;
  font-size: 1.125rem;
}
.page-business__introduction .list_type-table01 li .text {
  max-width: 646px;
  width: 56%;
}
.page-business__introduction .list_type-table01 li p {
  margin-top: 30px;
  font-size: 1.125rem;
}
.page-business__introduction .list_type-table02 li {
  margin-bottom: 100px;
}
.page-business__introduction .list_type-table02 li:last-child {
  margin-bottom: 0;
}
.page-business__introduction .list_type-table02 li .box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 40px;
}
.page-business__introduction .list_type-table02 li .box p {
  max-width: 582px;
  width: 50.5%;
}
.page-business__introduction .list_type-table02 li .box img {
  max-width: 525px;
  width: 45.5%;
}
.page-business__introduction .list_type-table02 li .table_dl dd p {
  margin-bottom: 40px;
}
.page-business__introduction .list_type-table02 li .table_dl dd p:last-child {
  margin-bottom: 0;
}
.page-business__introduction .list_type-table02 li .table_dl dd p span {
  color: #B873C2;
}
.page-business__introduction .table_dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px;
  background: #DFEBEA;
  border-radius: 10px;
  margin-top: 40px;
  padding: 30px;
}
.page-business__introduction .table_dl dt {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-left: 3px solid #B873C2;
  width: 200px;
  padding-left: 20px;
  font-size: 1.375rem;
  font-weight: 600;
  text-align: left;
}
.page-business__introduction .table_dl dd .table_dl-list {
  list-style-type: disc;
}
.page-business__introduction .table_dl dd .table_dl-list li {
  display: list-item;
  margin-left: 20px;
  margin-bottom: 0;
  font-size: 1.125rem;
}
.page-business__introduction .table_dl .table_dl-sub {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.page-business__introduction .table_dl .table_dl-sub dt {
  padding-left: 0;
  border: none;
  font-size: 1.25rem;
}
@media screen and (max-width: 1024px) {
  .page-business__introduction .list_type-grid h5,
  .page-business__introduction .list_type-table01 h5,
  .page-business__introduction .list_type-table02 h5 {
    font-size: 1.5625rem;
  }
  .page-business__introduction .list_type-grid h5 span,
  .page-business__introduction .list_type-table01 h5 span,
  .page-business__introduction .list_type-table02 h5 span {
    font-size: 1.25rem;
  }
  .page-business__introduction .list_type-grid p.title-sub,
  .page-business__introduction .list_type-table01 p.title-sub,
  .page-business__introduction .list_type-table02 p.title-sub {
    margin-top: 10px;
    font-size: 1.125rem;
  }
  .page-business__introduction .list_type-grid {
    gap: 50px 70px;
  }
  .page-business__introduction .list_type-grid p {
    margin: 5px auto 15px;
  }
  .page-business__introduction .list_type-grid table {
    min-height: 70px;
  }
  .page-business__introduction .list_type-grid table th, .page-business__introduction .list_type-grid table td {
    font-size: 1rem;
  }
  .page-business__introduction .list_type-table01 {
    gap: 40px;
  }
  .page-business__introduction .list_type-table01 li {
    margin-bottom: 70px;
  }
  .page-business__introduction .list_type-table01 li .image {
    margin-top: 47px;
  }
  .page-business__introduction .list_type-table01 li p {
    margin-top: 20px;
    font-size: 1rem;
  }
  .page-business__introduction .list_type-table02 li {
    margin-bottom: 70px;
  }
  .page-business__introduction .list_type-table02 li .box {
    margin-top: 30px;
  }
  .page-business__introduction .list_type-table02 li .table_dl dd p {
    margin-bottom: 25px;
  }
  .page-business__introduction .table_dl {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }
  .page-business__introduction .table_dl dt {
    width: 100%;
    font-size: 1.125rem;
  }
  .page-business__introduction .table_dl dd .table_dl-list li {
    font-size: 1rem;
  }
  .page-business__introduction .table_dl .table_dl-sub dt {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .page-business__introduction .list_type-grid h5,
  .page-business__introduction .list_type-table01 h5,
  .page-business__introduction .list_type-table02 h5 {
    font-size: 1.125rem;
    padding-bottom: 10px;
  }
  .page-business__introduction .list_type-grid h5 span,
  .page-business__introduction .list_type-table01 h5 span,
  .page-business__introduction .list_type-table02 h5 span {
    font-size: 1rem;
  }
  .page-business__introduction .list_type-grid p.title-sub,
  .page-business__introduction .list_type-table01 p.title-sub,
  .page-business__introduction .list_type-table02 p.title-sub {
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.5em;
  }
  .page-business__introduction .list_type-grid {
    gap: 50px;
  }
  .page-business__introduction .list_type-grid p {
    margin: 5px auto 10px;
  }
  .page-business__introduction .list_type-grid table {
    min-height: 90px;
  }
  .page-business__introduction .list_type-grid table th, .page-business__introduction .list_type-grid table td {
    width: 100%;
    padding: 5px 10px;
    font-size: 0.875rem;
    line-height: 1.3em;
  }
  .page-business__introduction .list_type-grid table th {
    display: block;
    border-right: none;
    border-bottom: 1px solid #01506E;
  }
  .page-business__introduction .list_type-grid table td {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 58px;
  }
  .page-business__introduction .list_type-table01 li {
    margin-bottom: 50px;
    gap: 30px;
  }
  .page-business__introduction .list_type-table01 li .image {
    margin-top: 38px;
  }
  .page-business__introduction .list_type-table01 li .image p {
    margin-top: 5px;
    font-size: 0.875rem;
    line-height: 1.5em;
  }
  .page-business__introduction .list_type-table01 li p {
    margin-top: 15px;
  }
  .page-business__introduction .list_type-table02 li {
    margin-bottom: 50px;
  }
  .page-business__introduction .list_type-table02 li .box {
    margin-top: 20px;
  }
  .page-business__introduction .list_type-table02 li .table_dl dd p {
    margin-bottom: 20px;
  }
  .page-business__introduction .table_dl {
    margin-top: 20px;
  }
  .page-business__introduction .table_dl dt {
    font-size: 1rem;
  }
  .page-business__introduction .table_dl dd .table_dl-list li {
    font-size: 0.875rem;
  }
  .page-business__introduction .table_dl .table_dl-sub dt {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .page-business__introduction .list_type-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 35px;
  }
  .page-business__introduction .list_type-grid table {
    width: 90%;
    min-height: auto;
    margin: 0 auto;
  }
  .page-business__introduction .list_type-grid table td {
    display: block;
    min-height: auto;
  }
  .page-business__introduction .list_type-table01 li {
    flex-direction: column;
    gap: 20px;
  }
  .page-business__introduction .list_type-table01 li .image {
    width: 70%;
    margin: 0 auto;
  }
  .page-business__introduction .list_type-table01 li .text {
    width: 100%;
  }
  .page-business__introduction .list_type-table01 li p {
    margin-top: 15px;
  }
  .page-business__introduction .list_type-table02 li .box {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .page-business__introduction .list_type-table02 li .box p {
    width: 100%;
  }
  .page-business__introduction .list_type-table02 li .box img {
    width: 50%;
    margin: 0 auto;
  }
  .page-business__introduction .table_dl {
    padding: 20px 25px;
  }
  .page-business__introduction .table_dl .table_dl-sub {
    padding-left: 0px;
  }
  .page-business__introduction .table_dl .table_dl-sub dt {
    font-size: 0.875rem;
  }
}

/* ------------------------------------- 
  page-business__contact
------------------------------------- */
.page-business__contact {
  background: #FAECFC;
  max-width: 1152px;
  width: 90%;
  margin: 190px auto 0;
  padding: 50px;
}
.page-business__contact p {
  text-align: center;
  font-weight: 600;
}
.page-business__contact .page-business__button {
  max-width: 540px;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .page-business__contact {
    margin-top: 150px;
  }
}
@media screen and (max-width: 768px) {
  .page-business__contact {
    margin-top: 100px;
    padding: 30px;
  }
  .page-business__contact .page-business__button {
    margin-top: 20px;
  }
}

/* ------------------------------------- 
  page-business__button
------------------------------------- */
.page-business .page-business__button {
  display: block;
  position: relative;
  border: 1px solid #B873C2;
  background: #B873C2;
  width: 100%;
  color: #FFFFFF;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 80px;
}
.page-business .page-business__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  transition: all 0.3s;
  border-width: calc(12px / 2) 0 calc(12px / 2) 10px;
  border-color: transparent transparent transparent #FFFFFF;
}
.page-business .page-business__button:hover {
  background: #FFFFFF;
  color: #B873C2;
}
.page-business .page-business__button:hover::after {
  border-color: transparent transparent transparent #B873C2;
}
@media screen and (max-width: 1024px) {
  .page-business .page-business__button {
    font-size: 1.375rem;
    line-height: 60px;
  }
}
@media screen and (max-width: 768px) {
  .page-business .page-business__button {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .page-business .page-business__button {
    line-height: 50px;
  }
}

/* ------------------------------------- 
  business-cement ページ個別指定
------------------------------------- */
.page-business .business-cement__introduction .introduction-mv {
  width: 100%;
}
.page-business .business-cement__introduction .introduction-mv .image {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-business .business-cement__introduction .introduction-mv .image img {
  max-width: 570px;
  width: 49.4%;
}
.page-business .business-cement__introduction .geoset-mv {
  max-width: 1152px;
  width: 90%;
  margin: 0 auto 60px;
}
.page-business .business-cement__introduction .geoset-mv p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.375rem;
}
.page-business .business-cement__introduction .geoset-mv .image {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 970px;
  width: 100%;
  margin: 0 auto;
}
.page-business .business-cement__introduction .geoset-mv .image img {
  max-width: 450px;
  width: 46.3%;
}
@media screen and (max-width: 1280px) {
  .page-business .business-cement__introduction .geoset-mv img {
    width: 70%;
  }
}
@media screen and (max-width: 1024px) {
  .page-business .business-cement__introduction .geoset-mv p {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .page-business .business-cement__introduction .geoset-mv {
    margin-bottom: 30px;
  }
  .page-business .business-cement__introduction .geoset-mv p {
    margin-bottom: 10px;
    font-size: 1.125rem;
  }
  .page-business .business-cement__introduction .geoset-mv img {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .page-business .business-cement__introduction .geoset-mv p {
    font-size: 1rem;
  }
  .page-business .business-cement__introduction .geoset-mv img {
    width: 70%;
  }
}

/* ------------------------------------- 
  business-limestone ページ個別指定
------------------------------------- */
.page-business .business-limestone__introduction .introduction-mv .image {
  max-width: 960px;
  width: 100%;
}
@media screen and (max-width: 1366px) {
  .page-business .business-limestone__introduction .introduction-mv .image {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .page-business .business-limestone__introduction .introduction-mv .image {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .page-business .business-limestone__introduction .introduction-mv .image {
    width: 90%;
  }
}

/* ------------------------------------- 
  business-recycle ページ個別指定
------------------------------------- */
/* ------------------------------------- 
  business-pg ページ個別指定
------------------------------------- */
.page-business .business-pg__introduction .biomass p {
  margin-bottom: 0 !important;
}
.page-business .business-pg__introduction .biomass__facility dt {
  padding-left: 20px;
  width: 160px;
}
.page-business .business-pg__introduction .biomass__facility dd {
  width: calc(100% - 160px);
}
.page-business .business-pg__introduction .biomass__composition dt {
  width: 120px;
}
.page-business .business-pg__introduction .biomass__composition dd {
  width: calc(100% - 120px);
}
@media screen and (max-width: 1024px) {
  .page-business .business-pg__introduction .biomass__facility dt {
    width: 145px;
  }
  .page-business .business-pg__introduction .biomass__facility dd {
    width: calc(100% - 145px);
  }
  .page-business .business-pg__introduction .biomass__composition dt {
    width: 105px;
  }
  .page-business .business-pg__introduction .biomass__composition dd {
    width: calc(100% - 105px);
  }
}
@media screen and (max-width: 768px) {
  .page-business .business-pg__introduction .biomass__facility dt {
    padding-left: 15px;
    width: 130px;
  }
  .page-business .business-pg__introduction .biomass__facility dd {
    width: calc(100% - 130px);
  }
  .page-business .business-pg__introduction .biomass__composition dt {
    width: 95px;
  }
  .page-business .business-pg__introduction .biomass__composition dd {
    width: calc(100% - 95px);
  }
}
@media screen and (max-width: 480px) {
  .page-business .business-pg__introduction .biomass__facility dt {
    padding-left: 0;
    width: 100px;
  }
  .page-business .business-pg__introduction .biomass__facility dd {
    width: calc(100% - 100px);
  }
  .page-business .business-pg__introduction .biomass__composition dt {
    width: 80px;
  }
  .page-business .business-pg__introduction .biomass__composition dd {
    width: calc(100% - 80px);
  }
}

/* ------------------------------------- 
  page-menu_sustainability
------------------------------------- */
.page-menu_sustainability ul {
  gap: 40px;
  width: 90%;
  margin: 0 auto;
}
.page-menu_sustainability li {
  width: 210px;
}
@media screen and (max-width: 1280px) {
  .page-menu_sustainability ul {
    gap: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .page-menu_sustainability ul {
    gap: 0;
    width: 100%;
  }
  .page-menu_sustainability li {
    width: 100%;
  }
}

/* ------------------------------------- 
  page-sustainability
  sustainability　共通レイアウト
------------------------------------- */
.page-sustainability .contents {
  margin-top: 60px;
}
.page-sustainability__overview {
  position: relative;
  max-width: 1920px;
  width: 100%;
  margin: 100px auto 0;
  padding-bottom: 10.5%;
}
.page-sustainability__overview .text {
  max-width: 1152px;
  width: 90%;
  margin: 0 auto;
}
.page-sustainability__overview .text h3, .page-sustainability__overview .text p {
  max-width: 762px;
  width: 66.1%;
  margin-right: auto;
}
.page-sustainability__overview .text P {
  margin-top: 60px;
}
.page-sustainability__overview .text .image {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 720px;
  width: 39.7%;
}
.page-sustainability__section h3 {
  padding-bottom: 10px;
  font-size: 1.375rem;
  color: #01506E;
  border-bottom: 1px solid #01506E;
}
.page-sustainability__section .box-green {
  background: #E3EFEE;
  border-radius: 10px;
  padding: 50px 50px 70px 50px;
}
.page-sustainability__section .box-green .lead {
  max-width: 984px;
  width: 95%;
  margin: 20px auto 70px;
}
.page-sustainability__section .box-green .contents {
  width: 95%;
  margin-top: 40px;
  margin-bottom: 60px;
}
.page-sustainability__section .box-green .contents:last-child {
  margin-bottom: 0;
}
.page-sustainability__section .contents {
  max-width: 1000px;
  width: 86.8%;
  margin-left: auto;
}
.page-sustainability__section .contents p, .page-sustainability__section .contents ul, .page-sustainability__section .contents ol, .page-sustainability__section .contents div {
  margin-bottom: 50px;
}
.page-sustainability__section .contents p:last-child, .page-sustainability__section .contents ul:last-child, .page-sustainability__section .contents ol:last-child, .page-sustainability__section .contents div:last-child {
  margin-bottom: 0;
}
.page-sustainability__section .contents ul li, .page-sustainability__section .contents ol li {
  line-height: 1.6em;
  margin-bottom: 7px;
  margin-left: 20px;
  padding-left: 20px;
}
.page-sustainability__section .contents ul li:last-child, .page-sustainability__section .contents ol li:last-child {
  margin-bottom: 0;
}
.page-sustainability__section .contents ul {
  list-style-type: disc;
}
.page-sustainability__section .end-image {
  max-width: 720px;
  width: 70%;
  margin: 100px auto 0;
}
.page-sustainability__section .end-image p {
  margin-top: 5px;
  text-align: center;
  font-size: 1.125rem;
}
@media screen and (max-width: 1920px) {
  .page-sustainability__overview .text h3, .page-sustainability__overview .text p {
    width: 60%;
  }
}
@media screen and (max-width: 1024px) {
  .page-sustainability__overview .text h3, .page-sustainability__overview .text p {
    width: 55%;
  }
  .page-sustainability__section h3 {
    font-size: 1.25rem;
  }
  .page-sustainability__section .box-green {
    padding: 40px 40px 60px 40px;
  }
  .page-sustainability__section .box-green .lead {
    margin-bottom: 60px;
  }
  .page-sustainability__section .contents p, .page-sustainability__section .contents ul, .page-sustainability__section .contents ol, .page-sustainability__section .contents div {
    margin-bottom: 40px;
  }
  .page-sustainability__section .end-image {
    margin-top: 70px;
  }
}
@media screen and (max-width: 768px) {
  .page-sustainability .contents {
    margin-top: 30px;
  }
  .page-sustainability__overview {
    margin-top: 70px;
  }
  .page-sustainability__overview .text .image {
    position: static;
    max-width: 450px;
    width: 60%;
    margin: 40px auto 0;
  }
  .page-sustainability__overview .text h3 {
    width: 100%;
  }
  .page-sustainability__overview .text p {
    max-width: 500px;
    width: 100%;
    margin: 20px auto 0;
  }
  .page-sustainability__section h3 {
    font-size: 1.125rem;
  }
  .page-sustainability__section .box-green {
    padding: 30px 30px 40px 30px;
  }
  .page-sustainability__section .box-green .lead {
    margin-bottom: 40px;
  }
  .page-sustainability__section .box-green .contents {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .page-sustainability__section .contents {
    width: 95%;
  }
  .page-sustainability__section .contents p, .page-sustainability__section .contents ul, .page-sustainability__section .contents ol, .page-sustainability__section .contents div {
    margin-bottom: 30px;
  }
  .page-sustainability__section .contents ul li, .page-sustainability__section .contents ol li {
    padding-left: 5px;
  }
  .page-sustainability__section .end-image {
    width: 80%;
    margin-top: 50px;
  }
  .page-sustainability .end-image p {
    font-size: 0.875rem;
    line-height: 1.5em;
  }
}
@media screen and (max-width: 480px) {
  .page-sustainability .contents {
    margin-top: 25px;
  }
  .page-sustainability__overview {
    margin-top: 50px;
  }
  .page-sustainability__overview .text .image {
    margin-top: 25px;
    width: 70%;
  }
  .page-sustainability__section h3 {
    font-size: 1rem;
  }
  .page-sustainability__section .box-green {
    padding: 20px 20px 30px 20px;
  }
  .page-sustainability__section .box-green .lead {
    margin: 10px auto 30px;
  }
  .page-sustainability__section .box-green .contents {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .page-sustainability__section .contents {
    width: 100%;
  }
  .page-sustainability__section .contents p, .page-sustainability__section .contents ul, .page-sustainability__section .contents ol, .page-sustainability__section .contents div {
    margin-bottom: 20px;
  }
  .page-sustainability__section .end-image {
    width: 90%;
    margin-top: 30px;
  }
  .page-sustainability .end-image p {
    font-size: 0.75rem;
  }
}

/* ------------------------------------- 
  sustainability-index
------------------------------------- */
.sustainability-index {
  padding-top: 0;
}
.sustainability-index::after {
  background: transparent;
}
.sustainability-index__overview h3 {
  width: 90%;
  margin: 0 auto 70px;
  font-family: "Yu Mincho", "Noto Serif JP", serif;
  font-size: 2.75rem;
  letter-spacing: 0.1rem;
  text-align: center;
  font-weight: 700;
}
.sustainability-index__overview p.lead {
  max-width: 935px;
  width: 90%;
  margin: 0 auto;
}
.sustainability-index__detail {
  position: relative;
  margin-top: 90px;
  overflow: hidden;
}
.sustainability-index__detail .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  max-width: 1680px;
  width: 87.5%;
}
.sustainability-index__detail .wrap {
  background: #FFFFFF;
  max-width: 1440px;
  width: 90%;
  margin: 25% auto 0;
}
.sustainability-index__detail .contents {
  max-width: 1152px;
  width: 90%;
  margin: 0 auto;
  padding: 65px 0 0;
}
.sustainability-index__detail .lead {
  margin: 50px auto;
}
.sustainability-index__detail .menu-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.sustainability-index__detail .menu-list li {
  max-width: 370px;
  width: 32%;
  height: 240px;
}
.sustainability-index__detail .menu-list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #73C2BA, #51BC94);
  width: 100%;
  height: 100%;
}
.sustainability-index__detail .menu-list li a p {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #FFFFFF;
  max-width: 300px;
  width: 81%;
  min-height: 60px;
  margin: 0 auto;
  padding: 10px 25px 10px;
  text-align: center;
  transition: all 0.3s;
}
.sustainability-index__detail .menu-list li a p::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  transition: all 0.3s;
  border-width: calc(12px / 2) 0 calc(12px / 2) 10px;
  border-color: transparent transparent transparent #FFFFFF;
}
.sustainability-index__detail .menu-list li a:hover p {
  color: #FFFFFF;
}
@media screen and (max-width: 1280px) {
  .sustainability-index__detail .bg {
    display: block;
    position: static;
    max-width: 1152px;
    width: 90%;
    margin: 0 auto;
  }
  .sustainability-index__detail .wrap {
    width: 100%;
    margin-top: 0;
  }
  .sustainability-index__detail .menu-list li {
    width: 30%;
  }
}
@media screen and (max-width: 1024px) {
  .sustainability-index__overview h3 {
    margin-bottom: 50px;
    font-size: 2.1875rem;
  }
  .sustainability-index__detail {
    margin-top: 50px;
  }
  .sustainability-index__detail .contents {
    padding-top: 50px;
  }
  .sustainability-index__detail .lead {
    margin: 40px auto;
  }
  .sustainability-index__detail .menu-list li {
    height: 180px;
  }
  .sustainability-index__detail .menu-list li a p::after {
    right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .sustainability-index__overview h3 {
    margin-bottom: 30px;
    font-size: 1.5625rem;
  }
  .sustainability-index__detail {
    margin-top: 30px;
  }
  .sustainability-index__detail .contents {
    padding-top: 30px;
  }
  .sustainability-index__detail .lead {
    margin: 30px auto;
  }
  .sustainability-index__detail .menu-list {
    gap: 10px;
  }
  .sustainability-index__detail .menu-list li {
    width: 47%;
  }
  .sustainability-index__detail .menu-list li a p {
    min-height: 50px;
  }
  .sustainability-index__detail .menu-list li a:hover p {
    color: #000000;
  }
}
@media screen and (max-width: 480px) {
  .sustainability-index__overview h3 {
    font-size: 1.375rem;
    line-height: 1.8em;
  }
  .sustainability-index__detail .menu-list {
    gap: 5px;
  }
  .sustainability-index__detail .menu-list li {
    height: 100px;
  }
  .sustainability-index__detail .menu-list li a p {
    width: 85%;
    min-height: 40px;
    padding: 5px 10px 5px 5px;
    font-size: 0.75rem;
    line-height: 1.5em;
  }
  .sustainability-index__detail .menu-list li a p::after {
    right: 5px;
    width: 0;
    height: 0;
    border-style: solid;
    transition: all 0.3s;
    border-width: calc(10px / 2) 0 calc(10px / 2) 8px;
    border-color: transparent transparent transparent #FFFFFF;
  }
}

/* ------------------------------------- 
  sustainability-community
------------------------------------- */
.sustainability-community__csr p.copy {
  margin-bottom: 30px;
  font-family: "Yu Mincho", "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 2.75rem;
}
.sustainability-community__csr .overview-mv {
  width: 100%;
  margin-top: 50px;
}
.sustainability-community__csr .detail {
  margin-top: 50px;
}
.sustainability-community__csr .detail h4 {
  margin-bottom: 30px;
  font-size: 2.25rem;
  font-weight: 600;
  color: #01506E;
  line-height: 1.3em;
}
.sustainability-community__csr .box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}
.sustainability-community__csr .box:last-child {
  margin-bottom: 0;
}
.sustainability-community__csr .box .image {
  max-width: 404px;
  width: 35%;
}
.sustainability-community__csr .box .text {
  max-width: 713px;
  width: 62%;
}
.sustainability-community__csr .box .text p {
  font-weight: 700;
}
.sustainability-community__csr .box .text ul {
  list-style-type: disc;
  margin-left: 25px;
}
.sustainability-community__csr .box .text ul li {
  line-height: 1.7em;
  margin-bottom: 5px;
}
.sustainability-community__csr .box .text ul li:last-child {
  margin-bottom: 0;
}

.sustainability-community__itoigawa {
  margin-top: 150px;
  width: 100%;
}
.sustainability-community__itoigawa .page-h3 {
  font-family: "Yu Mincho", "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 2.75rem;
  letter-spacing: 0.2rem;
  text-align: center;
  color: #01506E;
}
.sustainability-community__itoigawa .page-h3::after {
  left: 50% !important;
  transform: translateX(-50%);
}
.sustainability-community__itoigawa ul.itoigawa-list {
  display: grid;
  justify-content: space-between;
  align-items: flex-start;
  grid-template-columns: repeat(3, 1fr);
  gap: 5%;
  max-width: 1770px;
  width: 90%;
  margin: 90px auto 0;
}
.sustainability-community__itoigawa ul.itoigawa-list li h4 {
  margin: 30px auto 40px;
  font-family: "Yu Mincho", "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 2.25rem;
  text-align: center;
  line-height: 1.6em;
  letter-spacing: 0.1rem;
}
.sustainability-community__itoigawa ul.itoigawa-list li.partner h4 {
  color: #DFB5BC;
}
.sustainability-community__itoigawa ul.itoigawa-list li.life h4 {
  color: #73C2BA;
}
.sustainability-community__itoigawa ul.itoigawa-list li.geopark h4 {
  color: #CBB989;
}
.sustainability-community__itoigawa .itoigawa-more {
  position: relative;
  width: 100%;
}
.sustainability-community__itoigawa .itoigawa-more .box {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  border: 1px solid #73C2BA;
  max-width: 970px;
  width: 80%;
  padding: 50px;
}
.sustainability-community__itoigawa .itoigawa-more .box h4 {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  color: #73C2BA;
}
.sustainability-community__itoigawa .itoigawa-more .box ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}
.sustainability-community__itoigawa .itoigawa-more .box ul li::after {
  content: "／";
  color: #000000;
  padding-left: 15px;
}
.sustainability-community__itoigawa .itoigawa-more .box ul li:last-child::after {
  content: "";
  padding-left: 0;
}
.sustainability-community__itoigawa .itoigawa-more .box ul li a {
  color: #01506E;
}
.sustainability-community__itoigawa .itoigawa-more .box ul li a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .sustainability-community__csr p.copy {
    font-size: 2.1875rem;
  }
  .sustainability-community__csr .detail h4 {
    font-size: 1.875rem;
  }
  .sustainability-community__itoigawa {
    margin-top: 100px;
  }
  .sustainability-community__itoigawa .page-h3 {
    font-size: 2.1875rem;
  }
  .sustainability-community__itoigawa ul.itoigawa-list {
    margin-top: 60px;
  }
  .sustainability-community__itoigawa ul.itoigawa-list li h4 {
    font-size: 1.6875rem;
    margin-bottom: 30px;
  }
  .sustainability-community__itoigawa .itoigawa-more .box h4 {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .sustainability-community__csr p.copy {
    margin-bottom: 10px;
    font-size: 1.875rem;
  }
  .sustainability-community__csr .overview-mv {
    margin-top: 30px;
  }
  .sustainability-community__csr .detail {
    margin-top: 40px;
  }
  .sustainability-community__csr .detail h4 {
    margin-bottom: 20px;
    font-size: 1.5625rem;
    text-align: center;
  }
  .sustainability-community__csr .box {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
  }
  .sustainability-community__csr .box .image {
    max-width: 450px;
    width: 60%;
    margin: 0 auto;
  }
  .sustainability-community__csr .box .text {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }
  .sustainability-community__itoigawa {
    margin-top: 70px;
  }
  .sustainability-community__itoigawa .page-h3 {
    font-size: 1.875rem;
  }
  .sustainability-community__itoigawa ul.itoigawa-list {
    margin-top: 40px;
  }
  .sustainability-community__itoigawa ul.itoigawa-list li h4 {
    font-size: 1.375rem;
    margin-bottom: 20px;
  }
  .sustainability-community__itoigawa .itoigawa-more .box h4 {
    font-size: 1.125rem;
  }
  .sustainability-community__itoigawa .itoigawa-more .box {
    padding: 30px;
  }
  .sustainability-community__itoigawa .itoigawa-more .box ul {
    margin-top: 20px;
  }
  .sustainability-community__itoigawa .itoigawa-more .image {
    height: 30vh;
    min-height: 300px;
    max-height: 400px;
  }
  .sustainability-community__itoigawa .itoigawa-more .image img {
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 480px) {
  .sustainability-community__csr p.copy {
    font-size: 1.5625rem;
  }
  .sustainability-community__csr .overview-mv {
    margin-top: 20px;
  }
  .sustainability-community__csr .detail h4 {
    font-size: 1.125rem;
  }
  .sustainability-community__csr .box .image {
    width: 70%;
  }
  .sustainability-community__itoigawa {
    margin-top: 50px;
  }
  .sustainability-community__itoigawa .page-h3 {
    font-size: 1.5625rem;
  }
  .sustainability-community__itoigawa ul.itoigawa-list {
    justify-content: center;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
    margin-top: 25px;
  }
  .sustainability-community__itoigawa ul.itoigawa-list li img {
    display: block;
    max-width: 120px;
    margin: 0 auto;
  }
  .sustainability-community__itoigawa ul.itoigawa-list li h4 {
    margin: 15px auto 10px;
  }
  .sustainability-community__itoigawa .itoigawa-more .box {
    width: 90%;
    padding: 20px;
  }
  .sustainability-community__itoigawa .itoigawa-more .box ul {
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
  }
  .sustainability-community__itoigawa .itoigawa-more .box ul li {
    width: 90%;
  }
  .sustainability-community__itoigawa .itoigawa-more .box ul li::after {
    content: "";
    padding-left: 0;
  }
  .sustainability-community__itoigawa .itoigawa-more .box ul li a {
    position: relative;
    display: block;
    background: #FFFFFF;
    border: 1px solid #73C2BA;
    padding: 3px 10px;
    color: #73C2BA;
  }
  .sustainability-community__itoigawa .itoigawa-more .box ul li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    transition: all 0.3s;
    border-width: calc(10px / 2) 0 calc(10px / 2) 8px;
    border-color: transparent transparent transparent #73C2BA;
  }
}
/* ------------------------------------- 
  sustainability-management
------------------------------------- */
.sustainability-management ol.management-list_ol {
  margin-left: 20px;
}
.sustainability-management ol.management-list_ol li {
  padding-left: 20px;
}
.sustainability-management .partnership dt {
  margin-bottom: 20px;
  font-weight: 700;
}
.sustainability-management .partnership dd {
  margin-bottom: 40px;
}
.sustainability-management .partnership dd:last-child {
  margin-bottom: 0;
}
.sustainability-management .partnership .lt_circle {
  margin-left: 10px;
}
.sustainability-management .partnership .lt_number-maru {
  margin-top: 20px;
}
.sustainability-management .partnership .lt_number-maru li {
  margin-left: 0;
  padding-left: 50px;
}
@media screen and (max-width: 1024px) {
  .sustainability-management ol.management-list_ol li {
    padding-left: 10px;
  }
  .sustainability-management .partnership dt {
    margin-bottom: 10px;
  }
  .sustainability-management .partnership dd {
    margin-bottom: 30px;
  }
  .sustainability-management .partnership .lt_number-maru {
    margin-top: 10px;
  }
  .sustainability-management .partnership .lt_number-maru li {
    padding-left: 40px;
  }
}
@media screen and (max-width: 480px) {
  .sustainability-management ol.management-list_ol li {
    padding-left: 5px;
  }
  .sustainability-management .partnership .lt_number-maru li {
    padding-left: 25px;
  }
}

/* ------------------------------------- 
  sustainability-safety
------------------------------------- */
.sustainability-safety__detail .slogan p span {
  display: block;
  text-indent: 5em;
}
.sustainability-safety__detail ol.lt_number-par li {
  padding-left: 0;
  margin-left: 0;
}
@media screen and (max-width: 1536px) {
  .sustainability-safety__detail {
    padding-top: 50px !important;
  }
}
@media screen and (max-width: 768px) {
  .sustainability-safety__detail .slogan p span {
    text-indent: 3em;
  }
  .sustainability-safety__detail li {
    padding-left: 10px;
  }
}
@media screen and (max-width: 480px) {
  .sustainability-safety__detail .slogan p span {
    display: inline;
    text-indent: 0;
  }
  .sustainability-safety__detail li {
    padding-left: 0;
  }
}

/* ------------------------------------- 
  sustainability-environmental
------------------------------------- */
/* ------------------------------------- 
  sustainability-quality
------------------------------------- */
.sustainability-quality .page-sustainability__section .lead {
  margin-bottom: 40px;
}
.sustainability-quality .page-sustainability__section .contents {
  max-width: 984px;
  width: 95%;
  margin: 0 auto;
}
.sustainability-quality .page-sustainability__section .end-image .badge {
  display: block;
  max-width: 369px;
  width: 70%;
  margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
  .sustainability-quality .page-sustainability__section .lead {
    margin: 10px auto 30px;
  }
  .sustainability-quality .page-sustainability__section .end-image .badge {
    margin-top: 30px;
  }
}
@media screen and (max-width: 480px) {
  .sustainability-quality .page-sustainability__section .lead {
    margin-bottom: 20px;
  }
}

/* ------------------------------------- 
  contact-index
------------------------------------- */
.contact-index .lead {
  margin-top: 40px;
}
.contact-index .contents {
  margin: 40px auto;
}
.contact-index .contents:last-child {
  margin-bottom: 0;
}
.contact-index .contents h4 {
  border-bottom: 1px solid #01506E;
  margin-bottom: 35px;
  padding-bottom: 10px;
  font-size: 1.375rem;
  font-weight: 600;
  color: #01506E;
}
.contact-index .contents h5 {
  font-size: 1.375rem;
  font-weight: 600;
}
.contact-index .contents table {
  margin-top: 10px;
  width: 100%;
}
.contact-index .contents table tr {
  border-top: 1px solid #CCCCCC;
}
.contact-index .contents table tr:last-child {
  border-bottom: 1px solid #CCCCCC;
}
.contact-index .contents table th, .contact-index .contents table td {
  padding: 15px 0;
  vertical-align: text-top;
}
.contact-index .contents table th {
  padding-right: 20px;
}
.contact-index .contents table td {
  width: 200px;
}
.contact-index .contents table .indent {
  display: inline-block;
  text-indent: 40px;
}
.contact-index .contents table .button-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.contact-index .contents table .button-wrap p {
  width: calc(100% - 340px);
}
.contact-index .contents table .button-wrap .button {
  position: relative;
  border: 1px solid #B873C2;
  background: #B873C2;
  width: 340px;
  line-height: 60px;
  color: #FFFFFF;
  font-weight: 600;
}
.contact-index .contents table .button-wrap .button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  transition: all 0.3s;
  border-width: calc(12px / 2) 0 calc(12px / 2) 10px;
  border-color: transparent transparent transparent #FFFFFF;
}
.contact-index .contents table .button-wrap .button:hover {
  background: #FFFFFF;
  color: #B873C2;
}
.contact-index .contents table .button-wrap .button:hover::after {
  border-color: transparent transparent transparent #B873C2;
}
@media screen and (max-width: 1024px) {
  .contact-index .contents h4, .contact-index .contents h5 {
    font-size: 1.25rem;
  }
  .contact-index .contents table td {
    width: 170px;
  }
  .contact-index .contents table .button-wrap p {
    width: calc(100% - 300px);
  }
  .contact-index .contents table .button-wrap .button {
    width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .contact-index .lead {
    margin-top: 30px;
  }
  .contact-index .contents {
    margin: 30px auto;
  }
  .contact-index .contents h4, .contact-index .contents h5 {
    font-size: 1.125rem;
  }
  .contact-index .contents h4 {
    margin-bottom: 20px;
  }
  .contact-index .contents table th, .contact-index .contents table td {
    display: block;
    width: 100%;
  }
  .contact-index .contents table th {
    padding: 10px 0 0 0;
  }
  .contact-index .contents table td {
    padding: 5px 0 10px;
  }
  .contact-index .contents table .indent {
    text-indent: 0;
  }
  .contact-index .contents table .button-wrap {
    padding: 0 10px 10px 10px;
    flex-direction: column;
  }
  .contact-index .contents table .button-wrap p {
    width: 100%;
  }
  .contact-index .contents table .button-wrap .button {
    max-width: 450px;
    width: 90%;
    line-height: 50px;
  }
}

/* ------------------------------------- 
  contact-mailform / contact-confirm
  ※formのcssは_form_scss
------------------------------------- */
.contact-mailform__overview a, .contact-confirm__overview a {
  color: #01506E;
  text-decoration: underline;
}
.contact-mailform__overview a:hover, .contact-confirm__overview a:hover {
  text-decoration: none;
}
.contact-mailform table.form, .contact-confirm table.form {
  width: 100%;
}
.contact-mailform table.form th, .contact-confirm table.form th {
  position: relative;
  border-top: 1px solid #01506E;
  border-bottom: 1px solid #01506E;
  width: 320px;
  padding: 20px 0;
  color: #01506E;
  font-weight: 600;
}
.contact-mailform table.form th.textarea, .contact-confirm table.form th.textarea {
  vertical-align: text-top;
}
.contact-mailform table.form td, .contact-confirm table.form td {
  border-top: 1px solid #DFEBEA;
  border-bottom: 1px solid #DFEBEA;
  width: calc(100% - 320px);
  padding: 15px 0 15px 40px;
}
.contact-mailform .hissu, .contact-confirm .hissu {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #D20C42;
  border-radius: 5px;
  width: 60px;
  font-size: 1rem;
  line-height: 25px;
  text-align: center;
  color: #FFFFFF;
}
.contact-mailform .textarea .hissu, .contact-confirm .textarea .hissu {
  top: 40px;
}
@media screen and (max-width: 1024px) {
  .contact-mailform .hissu, .contact-confirm .hissu {
    font-size: 0.875rem;
    width: 50px;
    line-height: 22px;
  }
  .contact-mailform .textarea .hissu, .contact-confirm .textarea .hissu {
    top: 37px;
  }
}
@media screen and (max-width: 768px) {
  .contact-mailform table.form th, .contact-mailform table.form td, .contact-confirm table.form th, .contact-confirm table.form td {
    display: block;
    width: 100%;
  }
  .contact-mailform table.form th, .contact-confirm table.form th {
    border-bottom: transparent;
    padding: 20px 0;
  }
  .contact-mailform table.form td, .contact-confirm table.form td {
    border: transparent;
    padding: 0 0 20px 0;
  }
  .contact-mailform table.form tr:last-child td, .contact-confirm table.form tr:last-child td {
    border-bottom: 1px solid #01506E;
  }
  .contact-mailform .textarea .hissu, .contact-confirm .textarea .hissu {
    top: 50%;
  }
}

.contact-confirm .contact-mailform__detail {
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .contact-confirm .contact-mailform__detail {
    padding-top: 30px;
  }
}

/* ------------------------------------- 
  contact-thanks
------------------------------------- */
.contact-thanks__overview {
  min-height: 500px;
}
.contact-thanks__overview h3 {
  text-align: center;
  color: #01506E;
  font-size: 1.5625rem;
  font-weight: 600;
}
.contact-thanks__overview p {
  margin-top: 50px;
  text-align: center;
}
.contact-thanks .button {
  background: #73C2BA;
  border: 1px solid #73C2BA;
  max-width: 266px;
  margin-top: 50px;
  line-height: 60px;
  color: #FFFFFF;
}
.contact-thanks .button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  transition: all 0.3s;
  border-width: calc(12px / 2) 0 calc(12px / 2) 10px;
  border-color: transparent transparent transparent #FFFFFF;
}
.contact-thanks .button:hover {
  background: #FFFFFF;
  color: #73C2BA;
}
.contact-thanks .button:hover::after {
  border-left-color: #73C2BA;
}
@media screen and (max-width: 1024px) {
  .contact-thanks__overview h3 {
    font-size: 1.4375rem;
  }
}
@media screen and (max-width: 768px) {
  .contact-thanks__overview {
    min-height: 300px;
  }
  .contact-thanks__overview h3 {
    font-size: 1.25rem;
  }
  .contact-thanks__overview p {
    margin-top: 30px;
  }
  .contact-thanks .button {
    line-height: 50px;
  }
}

/* ------------------------------------- 
  page-privacypolicy
  privacypolicy　共通レイアウト
------------------------------------- */
.page-privacypolicy .lead, .page-privacypolicy .contents {
  margin-top: 60px;
}
.page-privacypolicy__section h3 {
  padding-bottom: 10px;
  font-size: 1.375rem;
  color: #01506E;
  border-bottom: 1px solid #01506E;
}
.page-privacypolicy__section .box {
  background: #E3EFEE;
  border-radius: 10px;
  padding: 50px;
}
.page-privacypolicy__section .contents {
  max-width: 1000px;
  width: 86.8%;
  margin-left: auto;
}
.page-privacypolicy__section .contents p, .page-privacypolicy__section .contents ul, .page-privacypolicy__section .contents ol, .page-privacypolicy__section .contents div {
  margin-bottom: 50px;
}
.page-privacypolicy__section .contents p:last-child, .page-privacypolicy__section .contents ul:last-child, .page-privacypolicy__section .contents ol:last-child, .page-privacypolicy__section .contents div:last-child {
  margin-bottom: 0;
}
.page-privacypolicy__section .contents ul li, .page-privacypolicy__section .contents ol li {
  margin-left: 25px;
  line-height: 1.6em;
  margin-bottom: 7px;
}
.page-privacypolicy__section .contents ul li:last-child, .page-privacypolicy__section .contents ol li:last-child {
  margin-bottom: 0;
}
.page-privacypolicy__section .contents ul {
  list-style-type: disc;
  margin-left: 20px;
}
@media screen and (max-width: 1024px) {
  .page-privacypolicy__section h3 {
    font-size: 1.25rem;
  }
  .page-privacypolicy__section .box {
    padding: 40px;
  }
  .page-privacypolicy__section .contents p, .page-privacypolicy__section .contents ul, .page-privacypolicy__section .contents ol, .page-privacypolicy__section .contents div {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .page-privacypolicy .contents {
    margin-top: 30px;
  }
  .page-privacypolicy__section h3 {
    font-size: 1.125rem;
  }
  .page-privacypolicy__section .box {
    padding: 30px;
  }
  .page-privacypolicy__section .contents {
    width: 95%;
  }
  .page-privacypolicy__section .contents p, .page-privacypolicy__section .contents ul, .page-privacypolicy__section .contents ol, .page-privacypolicy__section .contents div {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .page-privacypolicy .lead, .page-privacypolicy .contents {
    margin-top: 25px;
  }
  .page-privacypolicy__section h3 {
    font-size: 1rem;
  }
  .page-privacypolicy__section .box {
    padding: 20px;
  }
  .page-privacypolicy__section .contents {
    width: 100%;
  }
  .page-privacypolicy__section .contents p, .page-privacypolicy__section .contents ul, .page-privacypolicy__section .contents ol, .page-privacypolicy__section .contents div {
    margin-bottom: 20px;
  }
}

/* ------------------------------------- 
  privacypolicy__disclosure
------------------------------------- */
.privacypolicy__disclosure .contents p {
  margin-bottom: 10px;
}

/* ------------------------------------- 
  privacypolicy__web
------------------------------------- */
.privacypolicy__web .contents dl dt {
  margin-bottom: 15px;
  color: #01506E;
  font-weight: 600;
  font-size: 1.375rem;
}
.privacypolicy__web .contents dl dd {
  margin-bottom: 50px;
}
.privacypolicy__web .contents dl dd:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .privacypolicy__web .contents dl dt {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .privacypolicy__web .contents dl dt {
    margin-bottom: 10px;
    font-size: 1.125rem;
  }
  .privacypolicy__web .contents dl dd {
    margin-bottom: 30px;
  }
}

/* ------------------------------------- 
  page-information
  information　共通レイアウト
------------------------------------- */
.archive-month {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3.4%;
  max-width: 1460px;
  width: 90%;
  margin: 30px auto 50px;
}
.archive-month h2 {
  color: #01506E;
}
.archive-month h2, .archive-month p {
  font-size: 1.125rem;
}
.archive-month p {
  word-break: keep-all;
}
.archive-month a {
  text-decoration: underline;
}
.archive-month a:hover {
  text-decoration: none;
}

.page-menu_information {
  margin-bottom: 0px;
}

.page-information__section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-top: 80px !important;
}
.page-information__section .wrap {
  width: 100%;
}
.page-information .information__date {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
}
.page-information .information__date p {
  font-weight: 600;
}
.page-information .information__date .tag {
  width: 250px;
  font-size: 1rem;
  line-height: 30px;
}

@media screen and (max-width: 1024px) {
  .archive-month {
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    max-width: 600px;
    width: 80%;
    margin-top: 20px;
  }
  .archive-month h2 {
    font-size: 1rem;
    margin-bottom: 5px;
  }
  .archive-month p {
    font-size: 0.875rem;
    line-height: 1.6em;
    word-break: keep-all;
  }
  .page-information__section {
    padding-top: 60px !important;
  }
  .page-information .information__date {
    gap: 30px;
  }
  .page-information .information__date .tag {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  .archive-month {
    margin-top: 10px;
  }
  .archive-month h2 {
    margin-bottom: 0px;
  }
  .page-information__section {
    flex-direction: column;
    gap: 70px;
  }
  .page-information .information__date .tag {
    width: 190px;
    font-size: 0.75rem;
    line-height: 20px;
  }
}
@media screen and (max-width: 480px) {
  .archive-month h2 {
    font-size: 0.875rem;
  }
  .archive-month p {
    font-size: 0.75rem;
  }
  .page-information .information__date {
    gap: 20px;
  }
}
/* ------------------------------------- 
  information__list
------------------------------------- */
.information__list {
  margin-top: 40px;
}
.information__list li {
  border-top: 1px solid #CCCCCC;
}
.information__list li:last-child {
  border-bottom: 1px solid #CCCCCC;
}
.information__list li a {
  position: relative;
  display: block;
  padding: 40px 0;
}
.information__list li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  transition: all 0.3s;
  border-width: calc(12px / 2) 0 calc(12px / 2) 10px;
  border-color: transparent transparent transparent #CCCCCC;
}
.information__list li a:hover .title {
  text-decoration: underline;
}
.information__list li a:hover::after {
  right: 10px;
}
.information__list .title {
  margin-top: 25px;
  margin-left: 30px;
}

.pagination-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: 65px;
}
.pagination-list .box {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #707070;
  width: 43px;
  height: 43px;
}
.pagination-list .box.active {
  background: #CCCCCC;
}
.pagination-list .box:hover {
  background: #CCCCCC;
}

@media screen and (max-width: 1024px) {
  .information__list li a {
    padding: 30px 0;
  }
  .pagination-list {
    margin-top: 50px;
  }
  .pagination-list .box {
    width: 35px;
    height: 35px;
  }
}
@media screen and (max-width: 768px) {
  .information__list {
    margin-top: 0px;
  }
  .information__list li a {
    padding: 20px 0;
  }
  .information__list li a::after {
    right: 10px;
  }
  .information__list li a:hover .title {
    text-decoration: none;
  }
  .information__list .title {
    margin-top: 15px;
    margin-left: 0;
    padding-right: 40px;
  }
  .pagination-list {
    margin-top: 30px;
  }
}
@media screen and (max-width: 480px) {
  .information__list li a {
    padding: 15px 0;
  }
  .information__list li a::after {
    right: 5px;
  }
  .information__list li a:hover::after {
    right: 5px;
  }
  .information__list .title {
    margin-top: 5px;
    padding-right: 30px;
  }
}
/* ------------------------------------- 
  information__detail
------------------------------------- */
.information__detail .title {
  background: #DFEBEA;
  margin-top: 20px;
  padding: 20px;
  font-size: 1.5rem;
  line-height: 1.5em;
}
.information__detail .contents {
  min-height: 400px;
  margin-top: 60px;
}
.information__detail .contents p {
  margin-bottom: 25px;
}
.information__detail .contents p:last-child {
  margin-bottom: 0;
}
.information__detail .contents a {
  text-decoration: underline;
  color: #01506E;
}
.information__detail .contents a:hover {
  text-decoration: none;
}

.pagination-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  max-width: 887px;
  margin: 70px auto 0;
}
.pagination-detail div {
  width: 33.3%;
}
.pagination-detail div a {
  display: block;
  padding: 15px;
}
.pagination-detail div a:hover {
  text-decoration: underline;
}
.pagination-detail .next a, .pagination-detail .prev a {
  position: relative;
}
.pagination-detail .next a::after, .pagination-detail .prev a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.pagination-detail .next a {
  padding-left: 40px;
  text-align: left;
}
.pagination-detail .next a::after {
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  transition: all 0.3s;
  border-width: calc(12px / 2) 10px calc(12px / 2) 0;
  border-color: transparent #CCCCCC transparent transparent;
}
.pagination-detail .prev a {
  padding-right: 40px;
  text-align: right;
}
.pagination-detail .prev a::after {
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  transition: all 0.3s;
  border-width: calc(12px / 2) 0 calc(12px / 2) 10px;
  border-color: transparent transparent transparent #CCCCCC;
}
.pagination-detail .list a {
  border-left: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .information__detail .title {
    font-size: 1.25rem;
  }
  .information__detail .contents {
    margin-top: 40px;
  }
  .pagination-detail div a {
    padding: 5px;
  }
}
@media screen and (max-width: 768px) {
  .information__detail .title {
    padding: 10px;
    font-size: 1.125rem;
  }
  .information__detail .contents {
    min-height: 300px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 480px) {
  .information__detail .title {
    font-size: 1rem;
  }
  .information__detail .contents {
    min-height: auto;
  }
  .information__detail .contents p {
    margin-bottom: 15px;
  }
}
/* ------------------------------------- 
  cement-what common
  cement-whatページ　共通レイアウト
------------------------------------- */
.cement-what {
  padding-top: 0;
}
.cement-what::after {
  background: #FFFFFF;
}

/* ------------------------------------- 
  cement-what__overview
------------------------------------- */
.cement-what__overview {
  position: relative;
  background: url(../images/cement/what_overview_bg.jpg) no-repeat;
  background-size: cover;
  padding: 100px 0 10%;
}
.cement-what__overview::before {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%);
  width: 100%;
  height: 100%;
}
.cement-what__overview .main-title h2 {
  position: relative;
  padding-bottom: 30px;
  font-size: 2.75rem;
  color: #01506E;
  letter-spacing: 0.4rem;
}
.cement-what__overview .main-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background: #73C2BA;
  width: 120px;
  height: 1px;
}
.cement-what__overview .lead {
  position: relative;
  background: #FFFFFF;
  max-width: 1152px;
  width: 70%;
  margin: 130px auto 150px;
  padding: 50px 0;
}
.cement-what__overview .lead p {
  max-width: 940px;
  width: 90%;
  margin: 0 auto 40px;
  color: #002A81;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 2em;
}
.cement-what__overview .lead p:last-child {
  margin-bottom: 0;
}
.cement-what__overview .concrete {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 765px;
  width: 39.84%;
  max-height: 505px;
  margin: 0 auto;
}
.cement-what__overview .concrete::after {
  content: "";
  position: absolute;
  top: 96%;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  width: 2px;
  height: 50%;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .cement-what__overview {
    padding-top: 70px;
  }
  .cement-what__overview .main-title h2 {
    font-size: 2.1875rem;
  }
  .cement-what__overview .lead {
    margin: 100px auto;
    padding: 50px;
  }
  .cement-what__overview .lead p {
    width: 100%;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8em;
  }
  .cement-what__overview .concrete {
    width: 50%;
  }
  .cement-what__overview .concrete::after {
    width: 1px;
    height: 40%;
  }
}
@media screen and (max-width: 768px) {
  .cement-what__overview {
    padding-top: 50px;
  }
  .cement-what__overview .main-title h2 {
    padding-bottom: 20px;
    font-size: 1.5625rem;
    letter-spacing: 0.2rem;
  }
  .cement-what__overview .main-title h2::after {
    width: 100px;
  }
  .cement-what__overview .lead {
    margin: 70px auto;
    padding: 40px;
  }
  .cement-what__overview .lead p {
    font-size: 0.875rem;
  }
  .cement-what__overview .concrete {
    width: 60%;
  }
  .cement-what__overview .concrete::after {
    height: 35%;
  }
}
@media screen and (max-width: 480px) {
  .cement-what__overview {
    padding-top: 30px;
  }
  .cement-what__overview .main-title h2 {
    padding-bottom: 10px;
    font-size: 1.25rem;
  }
  .cement-what__overview .main-title h2::after {
    width: 70px;
  }
  .cement-what__overview .lead {
    width: 80%;
    margin: 40px auto 50px;
    padding: 30px;
  }
  .cement-what__overview .concrete {
    width: 80%;
  }
  .cement-what__overview .concrete::after {
    height: 29%;
  }
}

/* ------------------------------------- 
  cement-what__city
------------------------------------- */
.cement-what__city .city-detail {
  position: relative;
}
.cement-what__city .city-detail__icon {
  position: absolute;
  z-index: 2;
  max-width: 270px;
  width: 14%;
}
.cement-what__city .city-detail__icon button {
  cursor: pointer;
  display: block;
  appearance: none;
  background: transparent;
  border: none;
  transition: all 0.3s;
}
.cement-what__city .city-detail__icon button:hover {
  margin-top: -5px;
}
.cement-what__city .city-detail .icon-dam {
  top: 6%;
  left: 13%;
}
.cement-what__city .city-detail .icon-bridge {
  top: 45%;
  left: 13%;
}
.cement-what__city .city-detail .icon-building {
  top: 35%;
  left: 49.8%;
}
.cement-what__city .city-detail .icon-rail {
  top: 21%;
  left: 78%;
}
.cement-what__city .city-detail .icon-house {
  top: 60.5%;
  left: 74.2%;
}
.cement-what__city .city-detail .line {
  position: absolute;
  top: 0;
}
.cement-what__city .modal-container {
  max-width: 750px;
  width: 90%;
}
.cement-what__city .modal-container h4 {
  margin-bottom: 30px;
  text-align: center;
  color: #002A81;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
.cement-what__city .what_city__slider {
  position: relative;
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
}
.cement-what__city .what_city__slider div.slick-list {
  position: relative;
  z-index: 1;
}
.cement-what__city .what_city__slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.cement-what__city .what_city__slider .slick-arrow:first-child {
  left: -40px;
}
.cement-what__city .what_city__slider .slick-arrow:last-child {
  right: -40px;
}
.cement-what__city .what_city__slider .next-arrow, .cement-what__city .what_city__slider .prev-arrow {
  position: relative;
  display: inline-block;
  width: 28.9px;
  height: 55.7px;
  cursor: pointer;
}
.cement-what__city .what_city__slider .next-arrow::before, .cement-what__city .what_city__slider .next-arrow::after, .cement-what__city .what_city__slider .prev-arrow::before, .cement-what__city .what_city__slider .prev-arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  width: 40px;
  height: 2px;
  border-radius: 9999px;
  background-color: #000000;
  transition: all 0.3s;
}
.cement-what__city .what_city__slider .next-arrow::before, .cement-what__city .what_city__slider .prev-arrow::before {
  transform: rotate(45deg);
}
.cement-what__city .what_city__slider .next-arrow::after, .cement-what__city .what_city__slider .prev-arrow::after {
  transform: rotate(-45deg);
}
.cement-what__city .what_city__slider .next-arrow::before, .cement-what__city .what_city__slider .next-arrow::after {
  right: 0;
  transform-origin: calc(100% - 1px) 50%;
}
.cement-what__city .what_city__slider .next-arrow:hover::before, .cement-what__city .what_city__slider .next-arrow:hover::after {
  right: -5px;
}
.cement-what__city .what_city__slider .prev-arrow::before, .cement-what__city .what_city__slider .prev-arrow::after {
  left: 0;
  transform-origin: 1px 50%;
}
.cement-what__city .what_city__slider .prev-arrow:hover::before, .cement-what__city .what_city__slider .prev-arrow:hover::after {
  left: -5px;
}
.cement-what__city .what_city__slider button {
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background: none;
}
.cement-what__city .city_lead {
  background: #002A81;
  padding: 40px 0;
}
.cement-what__city .city_lead .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  max-width: 1720px;
  width: 90%;
  margin: 0 auto;
}
.cement-what__city .city_lead h3, .cement-what__city .city_lead p, .cement-what__city .city_lead a {
  color: #FFFFFF;
}
.cement-what__city .city_lead .text {
  width: 69%;
}
.cement-what__city .city_lead .text h3 {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
.cement-what__city .city_lead .text p {
  max-width: 650px;
  margin-top: 20px;
  line-height: 2em;
}
.cement-what__city .city_lead .button {
  position: relative;
  border: 1px solid #FFFFFF;
  max-width: 480px;
  width: 30%;
  line-height: 80px;
  font-size: clamp(16px, 13.6px + 0.75vw, 28px);
  font-weight: 600;
}
.cement-what__city .city_lead .button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  transition: all 0.3s;
  border-width: calc(12px / 2) 0 calc(12px / 2) 10px;
  border-color: transparent transparent transparent #FFFFFF;
}
.cement-what__city .city_lead .button:hover {
  background: #FFFFFF;
  color: #002A81;
}
.cement-what__city .city_lead .button:hover::after {
  border-color: transparent transparent transparent #002A81;
}
@media screen and (max-width: 1280px) {
  .cement-what__city .city_lead .text {
    width: 60%;
  }
  .cement-what__city .city_lead .button {
    width: 40%;
  }
}
@media screen and (max-width: 1024px) {
  .cement-what__city .modal-container h4 {
    font-size: 1.4375rem;
    margin-bottom: 20px;
  }
  .cement-what__city .what_city__slider {
    max-width: 550px;
  }
  .cement-what__city .city_lead .wrap {
    flex-direction: column;
    gap: 30px;
    max-width: 600px;
  }
  .cement-what__city .city_lead .text {
    width: 100%;
  }
  .cement-what__city .city_lead .text h3 {
    font-size: 1.5625rem;
    text-align: center;
  }
  .cement-what__city .city_lead .text P {
    width: 100%;
  }
  .cement-what__city .city_lead .button {
    max-width: 400px;
    width: 80%;
    line-height: 60px;
  }
}
@media screen and (max-width: 768px) {
  .cement-what__city .city-detail__icon {
    width: 17%;
  }
  .cement-what__city .city-detail .modal-container {
    width: 90%;
  }
  .cement-what__city .modal-container {
    padding-bottom: 20px;
  }
  .cement-what__city .modal-container h4 {
    margin-bottom: 10px;
    font-size: 1.25rem;
  }
  .cement-what__city .what_city__slider .next-arrow, .cement-what__city .what_city__slider .prev-arrow {
    width: 23px;
    height: 42px;
  }
  .cement-what__city .what_city__slider .next-arrow::before, .cement-what__city .what_city__slider .next-arrow::after, .cement-what__city .what_city__slider .prev-arrow::before, .cement-what__city .what_city__slider .prev-arrow::after {
    width: 30px;
  }
  .cement-what__city .what_city__slider .next-arrow:hover::before, .cement-what__city .what_city__slider .next-arrow:hover::after {
    right: 0;
  }
  .cement-what__city .what_city__slider .prev-arrow:hover::before, .cement-what__city .what_city__slider .prev-arrow:hover::after {
    left: 0;
  }
  .cement-what__city .city_lead {
    padding: 30px 0;
  }
  .cement-what__city .city_lead .wrap {
    gap: 20px;
  }
  .cement-what__city .city_lead .text {
    width: 100%;
  }
  .cement-what__city .city_lead .text h3 {
    font-size: 1.4375rem;
    text-align: center;
  }
  .cement-what__city .city_lead .text p {
    margin-top: 10px;
  }
  .cement-what__city .city_lead .button {
    max-width: 350px;
    font-size: 1rem;
    line-height: 50px;
  }
}
@media screen and (max-width: 480px) {
  .cement-what__city .city-detail__icon {
    width: 22%;
  }
  .cement-what__city .city-detail .icon-dam {
    top: 5%;
    left: 10%;
  }
  .cement-what__city .city-detail .icon-bridge {
    top: 40%;
    left: 10%;
  }
  .cement-what__city .city-detail .icon-building {
    top: 30%;
    left: 45.5%;
  }
  .cement-what__city .city-detail .icon-rail {
    top: 18%;
    left: 75%;
  }
  .cement-what__city .city-detail .icon-house {
    top: 55%;
    left: 70%;
  }
  .cement-what__city .modal-container {
    width: 95%;
    padding: 10px 15px 15px 15px;
  }
  .cement-what__city .modal-container h4 {
    margin-bottom: 5px;
    font-size: 1rem;
  }
  .cement-what__city .what_city__slider .slick-arrow:first-child {
    left: -10px;
  }
  .cement-what__city .what_city__slider .slick-arrow:last-child {
    right: -10px;
  }
  .cement-what__city .what_city__slider .next-arrow, .cement-what__city .what_city__slider .prev-arrow {
    width: 30px;
    height: 25px;
  }
  .cement-what__city .what_city__slider .next-arrow::before, .cement-what__city .what_city__slider .next-arrow::after, .cement-what__city .what_city__slider .prev-arrow::before, .cement-what__city .what_city__slider .prev-arrow::after {
    width: 20px;
    height: 1px;
  }
  .cement-what__city .city_lead .text h3 {
    font-size: 1.25rem;
  }
}

/* ------------------------------------- 
  cement-made common
  cement-madeページ　共通レイアウト
------------------------------------- */
.cement-made::after {
  max-height: 100%;
  height: 100%;
}
.cement-made__common {
  position: relative;
  background: #FFFFFF;
  max-width: 1440px;
  width: 90%;
  margin: 0 auto;
  padding: 40px;
}
.cement-made__common .num {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #B873C2;
  width: 80px;
  height: 80px;
  color: #FFFFFF;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-size: 2.5rem;
  font-weight: 600;
}
.cement-made .arrow {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  transition: all 0.3s;
  border-width: 27px calc(31px / 2) 0 calc(31px / 2);
  border-color: #FFFFFF transparent transparent transparent;
  margin: 30px auto;
}
.cement-made .overview {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
}
.cement-made .overview .image {
  max-width: 404px;
  width: 30%;
}
.cement-made .overview .text {
  max-width: 920px;
  width: 67.6%;
}
.cement-made .overview .text h3 {
  color: #01506E;
  font-weight: 700;
}
.cement-made .overview .text h3 span {
  font-size: 1.25rem;
}
.cement-made .overview .text .box {
  margin-top: 30px;
}
.cement-made .detail {
  border-top: 1px solid #707070;
  margin-top: 40px;
  padding-top: 40px;
}
.cement-made .detail h4 {
  margin-bottom: 40px;
  font-size: 1.875rem;
  font-weight: 600;
  text-align: center;
}
.cement-made .detail .lead {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto 60px;
}
.cement-made .detail .modal-enlarge {
  max-width: 1120px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .cement-made__common {
    padding: 30px;
  }
  .cement-made__common .num {
    width: 60px;
    height: 60px;
    font-size: 1.875rem;
  }
  .cement-made .overview .text .box {
    margin-top: 20px;
  }
  .cement-made .detail {
    margin-top: 30px;
    padding-top: 30px;
  }
  .cement-made .detail h4 {
    margin-bottom: 30px;
    font-size: 1.5625rem;
  }
  .cement-made .detail .lead {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .cement-made__common .num {
    width: 50px;
    height: 50px;
    font-size: 1.5625rem;
  }
  .cement-made .arrow {
    border-width: 20px 12.5px 0 12.5px;
    margin: 20px auto;
  }
  .cement-made .overview {
    flex-direction: column;
    gap: 20px;
  }
  .cement-made .overview .image, .cement-made .overview .text {
    margin: 0 auto;
  }
  .cement-made .overview .image {
    width: 60%;
  }
  .cement-made .overview .text {
    width: 100%;
  }
  .cement-made .overview .text h3 {
    text-align: center;
  }
  .cement-made .overview .text h3 span {
    display: block;
    font-size: 1rem;
  }
  .cement-made .overview .text .box {
    margin-top: 20px;
  }
  .cement-made .detail h4 {
    font-size: 1.375rem;
  }
  .cement-made .detail .lead {
    width: 100%;
    margin-bottom: 30px;
  }
  .cement-made .detail .modal-enlarge {
    width: 100%;
  }
  .cement-made .detail .modal-enlarge .modal-image-wrap img {
    width: 250%;
  }
}
@media screen and (max-width: 480px) {
  .cement-made__common .num {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  .cement-made .overview .image {
    width: 80%;
  }
  .cement-made .overview .text h3 {
    line-height: 1.2em;
  }
  .cement-made .overview .text h3 span {
    font-size: 0.875rem;
  }
  .cement-made .overview .text .box {
    margin-top: 10px;
  }
  .cement-made .detail {
    margin-top: 20px;
    padding-top: 20px;
  }
  .cement-made .detail h4 {
    margin-bottom: 15px;
    font-size: 1.125rem;
  }
  .cement-made .detail .lead {
    margin-bottom: 20px;
  }
}

/* ------------------------------------- 
  cement-made__production
------------------------------------- */
.cement-made__production .process {
  margin-top: 30px;
}
.cement-made__production .process li {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 105px;
}
.cement-made__production .process li::after {
  content: "";
  position: absolute;
  left: 15%;
  bottom: 39px;
  width: 0;
  height: 0;
  border-style: solid;
  transition: all 0.3s;
  border-width: 27px calc(31px / 2) 0 calc(31px / 2);
  border-color: #B873C2 transparent transparent transparent;
}
.cement-made__production .process li:last-child {
  padding-bottom: 0;
}
.cement-made__production .process li:last-child::after {
  border: none;
}
.cement-made__production .process li .image {
  max-width: 440px;
  width: 32.3%;
}
.cement-made__production .process li dl {
  max-width: 880px;
  width: 64.7%;
}
.cement-made__production .process li dt {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.cement-made__production .process li dt .process-num {
  padding-top: 10px;
  color: #B873C2;
  font-size: 3rem;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 700;
  line-height: 1em;
}
.cement-made__production .process li dt h5 {
  border-left: 1px solid #B873C2;
  margin-left: 20px;
  padding: 10px 0 10px 25px;
  font-size: 1.5625rem;
  font-weight: 600;
  line-height: 1.4em;
}
.cement-made__production .process li dt h5 span {
  display: block;
  font-size: 1.25rem;
}
.cement-made__production .process li dd {
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .cement-made__production .process li {
    gap: 30px;
  }
  .cement-made__production .process li dt .process-num {
    font-size: 2.375rem;
  }
  .cement-made__production .process li dt h5 {
    font-size: 1.375rem;
  }
  .cement-made__production .process li dt h5 span {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .cement-made__production .process li {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 70px;
  }
  .cement-made__production .process li::after {
    left: 50%;
    bottom: 23px;
    transform: translateX(-50%);
    border-width: 20px 12.5px 0 12.5px;
  }
  .cement-made__production .process li .image, .cement-made__production .process li dl {
    margin: 0 auto;
  }
  .cement-made__production .process li .image {
    width: 60%;
  }
  .cement-made__production .process li dl {
    width: 100%;
  }
  .cement-made__production .process li dt {
    gap: 0;
  }
  .cement-made__production .process li dt .process-num {
    font-size: 1.875rem;
  }
  .cement-made__production .process li dt h5 {
    padding: 5px 0 5px 20px;
    font-size: 1.375rem;
  }
  .cement-made__production .process li dt h5 span {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  .cement-made__production .process li {
    gap: 15px;
    padding-bottom: 50px;
  }
  .cement-made__production .process li::after {
    bottom: 15px;
  }
  .cement-made__production .process li .image {
    width: 80%;
  }
  .cement-made__production .process li dt .process-num {
    font-size: 1.5625rem;
  }
  .cement-made__production .process li dt h5 {
    margin-left: 15px;
    padding-left: 15px;
    font-size: 1.125rem;
  }
  .cement-made__production .process li dd {
    margin-top: 10px;
  }
}

/* ------------------------------------- 
  cement-eco common
  cement-ecoページ　共通レイアウト
------------------------------------- */
.cement-eco::after {
  background: transparent;
}
.cement-eco {
  padding-top: 100px;
}
.cement-eco .main-title {
  width: 90%;
  margin: 0 auto 70px;
}
.cement-eco .main-title h2 {
  position: relative;
  padding-bottom: 30px;
  font-size: 2.75rem;
  color: #01506E;
  letter-spacing: 0.1rem;
  line-height: 1.3em;
}
.cement-eco .main-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background: #73C2BA;
  width: 120px;
  height: 1px;
}
.cement-eco .main-title .lead {
  max-width: 1000px;
  width: 80%;
  margin: 50px auto;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .cement-eco {
    padding-top: 50px;
  }
  .cement-eco .main-title {
    margin-bottom: 50px;
  }
  .cement-eco .main-title h2 {
    font-size: 2.1875rem;
  }
  .cement-eco .main-title .lead {
    width: 100%;
    margin: 30px auto;
  }
}
@media screen and (max-width: 768px) {
  .cement-eco {
    padding-top: 20px;
  }
  .cement-eco .main-title {
    margin-bottom: 30px;
  }
  .cement-eco .main-title h2 {
    padding-bottom: 15px;
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 480px) {
  .cement-eco .main-title h2 {
    font-size: 1.25rem;
    line-height: 1.5em;
  }
  .cement-eco .main-title .lead {
    margin-top: 15px;
  }
}

/* ------------------------------------- 
  cement-eco__overview
------------------------------------- */
.cement-eco__overview .lead {
  max-width: 1000px;
  width: 80%;
  margin: 0 auto 100px;
  font-size: 1.5rem;
}
.cement-eco__overview .main-title {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: 0;
}
.cement-eco__overview .main-title img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 87.5%;
}
.cement-eco__overview .main-title .text {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  width: 65.8%;
  margin-top: 22%;
  padding: 70px 70px 0 70px;
}
.cement-eco__overview .main-title .text h2, .cement-eco__overview .main-title .text p {
  max-width: 810px;
  width: 100%;
}
.cement-eco__overview .main-title .text h2 {
  padding-bottom: 0;
  font-size: 2.25rem;
  text-align: left;
}
.cement-eco__overview .main-title .text h2::after {
  background: none;
}
.cement-eco__overview .main-title .text p {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .cement-eco__overview .lead {
    width: 90%;
    margin-bottom: 70px;
    font-size: 1.25rem;
  }
  .cement-eco__overview .main-title {
    position: relative;
    display: block;
    width: 90%;
    margin: 0 auto;
  }
  .cement-eco__overview .main-title img {
    position: static;
    width: 100%;
    max-height: 300px;
    object-fit: cover;
  }
  .cement-eco__overview .main-title .text {
    position: static;
    width: 100%;
    margin: 50px auto 0;
    padding: 0;
  }
  .cement-eco__overview .main-title .text h2, .cement-eco__overview .main-title .text p {
    max-width: 100%;
    width: 100%;
  }
  .cement-eco__overview .main-title .text h2 {
    font-size: 1.875rem;
  }
  .cement-eco__overview .main-title .text p {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .cement-eco__overview .lead {
    margin-bottom: 50px;
    font-size: 1.125rem;
  }
  .cement-eco__overview .main-title .text {
    margin-top: 30px;
  }
  .cement-eco__overview .main-title .text h2 {
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 480px) {
  .cement-eco__overview .lead {
    font-size: 1rem;
  }
  .cement-eco__overview .main-title .text h2 {
    font-size: 1.25rem;
  }
}

/* ------------------------------------- 
  cement-eco__process
------------------------------------- */
.cement-eco__process ul.step {
  display: grid;
  justify-content: center;
  align-items: flex-start;
  grid-template-columns: repeat(3, 1fr);
  max-width: 864px;
  width: 100%;
  margin: 0 auto;
}
.cement-eco__process ul.step li {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cement-eco__process ul.step li .step__title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding: 15px 20px;
}
.cement-eco__process ul.step li .step__title .num {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
  border-radius: 100%;
  width: 37px;
  height: 37px;
  font-weight: 600;
  line-height: 0.1em;
}
.cement-eco__process ul.step li .step__detail {
  padding: 20px 30px 30px 30px;
}
.cement-eco__process ul.step li .step__detail .title {
  font-size: 1rem;
  font-weight: 600;
}
.cement-eco__process ul.step li .step__detail .list {
  margin-top: 10px;
}
.cement-eco__process ul.step li .step__detail .list ul {
  list-style-type: disc;
  margin-left: 17px;
}
.cement-eco__process ul.step li .step__detail .list li {
  display: list-item;
  line-height: 1.5em;
  margin-bottom: 5px;
}
.cement-eco__process ul.step li .step__detail .list li:last-child {
  margin-bottom: 0;
}
.cement-eco__process ul.step li .step__detail .list ul li, .cement-eco__process ul.step li .step__detail .list p {
  font-size: 0.875rem;
}
.cement-eco__process ul.step li .step__caption {
  background: #FFFFFF;
  min-height: 167px;
  margin-top: auto;
  padding: 20px;
}
.cement-eco__process ul.step li .step__caption p {
  font-size: 0.875rem;
}
.cement-eco__process ul.step li .step__caption dl {
  background: #EFF2F4;
  border-radius: 5px;
  margin-top: 10px;
  padding: 10px 20px;
}
.cement-eco__process ul.step li .step__caption dl dt, .cement-eco__process ul.step li .step__caption dl dd p {
  font-size: 0.875rem;
}
.cement-eco__process ul.step li .step__caption dl dt {
  font-weight: 700;
}
.cement-eco__process ul.step li .step__caption dl dd p {
  position: relative;
  padding-left: 15px;
  line-height: 1.5em;
}
.cement-eco__process ul.step li .step__caption dl dd p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  transition: all 0.3s;
  border-width: calc(11px / 2) 0 calc(11px / 2) 7px;
  border-color: transparent transparent transparent #000000;
}
.cement-eco__process ul.step li.step1 {
  background: #EFF2F4;
}
.cement-eco__process ul.step li.step1 .step__title {
  background: #DFE6EA;
}
.cement-eco__process ul.step li.step2 {
  background: #E4EBEE;
}
.cement-eco__process ul.step li.step2 .step__title {
  background: #C9D7DE;
}
.cement-eco__process ul.step li.step3 {
  background: #D9E3E8;
}
.cement-eco__process ul.step li.step3 .step__title {
  background: #B3C7D2;
}
.cement-eco__process ul.step li.step4 {
  background: #F1F5F7;
}
.cement-eco__process ul.step li.step4 .step__title {
  background: #8AAABA;
}
.cement-eco__process ul.step li.step4 .step__detail img {
  max-width: 100px;
  width: 37%;
  margin-top: 15px;
}
.cement-eco__process .modal-enlarge {
  margin-top: 50px;
}
@media screen and (max-width: 960px) {
  .cement-eco__process ul.step li .step__title {
    gap: 10px;
    padding: 10px 15px;
  }
}
@media screen and (max-width: 768px) {
  .cement-eco__process ul.step {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
  .cement-eco__process ul.step li .step__title .num {
    width: 30px;
    height: 30px;
  }
  .cement-eco__process ul.step li .step__detail .title {
    font-size: 0.875rem;
  }
  .cement-eco__process ul.step li .step__detail .list ul li, .cement-eco__process ul.step li .step__detail .list p {
    font-size: 0.75rem;
  }
  .cement-eco__process ul.step li .step__caption {
    min-height: auto;
    padding: 10px;
  }
  .cement-eco__process ul.step li .step__caption p {
    font-size: 0.75rem;
  }
  .cement-eco__process ul.step li .step__caption dl dt, .cement-eco__process ul.step li .step__caption dl dd p {
    font-size: 0.75rem;
  }
  .cement-eco__process .modal-enlarge {
    margin-top: 50px;
  }
  .cement-eco__process .modal-enlarge .modal-container {
    padding: 30px 15px 15px;
  }
  .cement-eco__process .modal-enlarge .modal-image-wrap img {
    width: 180%;
  }
}
@media screen and (max-width: 480px) {
  .cement-eco__process ul.step li .step__detail {
    padding: 10px 20px 20px 20px;
  }
  .cement-eco__process ul.step li .step__detail .list {
    margin-top: 5px;
  }
  .cement-eco__process ul.step li.step4 .step__detail img {
    margin-top: 10px;
  }
}

/* ------------------------------------- 
  cement-eco__utilization
------------------------------------- */
.cement-eco__utilization p.lead {
  margin-top: 70px;
}
.cement-eco__utilization .graph-list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
}
.cement-eco__utilization .graph-list h4 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  color: #01506E;
}
.cement-eco__utilization .graph-list img {
  border: 1px solid #D8D8D8;
}
.cement-eco__utilization .graph-list p {
  margin-top: 10px;
  font-size: 1rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .cement-eco__utilization p.lead {
    margin-top: 40px;
  }
  .cement-eco__utilization .graph-list {
    gap: 30px;
  }
  .cement-eco__utilization .graph-list h4 {
    font-size: 1.25rem;
  }
  .cement-eco__utilization .graph-list p {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  .cement-eco__utilization p.lead {
    margin-top: 20px;
  }
  .cement-eco__utilization .graph-list {
    gap: 10px;
  }
  .cement-eco__utilization .graph-list h4 {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 480px) {
  .cement-eco__utilization .graph-list {
    flex-direction: column;
    gap: 30px;
  }
  .cement-eco__utilization .graph-list img {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
  .cement-eco__utilization .graph-list p {
    font-size: 0.75rem;
  }
}

/* ------------------------------------- 
  cement-advantage common
  cement-advantageページ　共通レイアウト
------------------------------------- */
.cement-advantage {
  padding: 100px 0 200px;
}
.cement-advantage::after {
  background: transparent;
}
.cement-advantage section {
  margin-bottom: 100px;
}
.cement-advantage section:last-child {
  margin-bottom: 0;
}
.cement-advantage .main-title {
  width: 90%;
  margin: 0 auto 70px;
}
.cement-advantage .main-title h2 {
  position: relative;
  padding-bottom: 30px;
  font-size: 2.75rem;
  color: #01506E;
  letter-spacing: 0.1rem;
  line-height: 1.3em;
}
.cement-advantage .main-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background: #73C2BA;
  width: 120px;
  height: 1px;
}
.cement-advantage .lead {
  max-width: 1000px;
  width: 80%;
  margin: 0 auto 50px;
}
.cement-advantage .contents {
  max-width: 1152px;
  width: 90%;
  margin: 0 auto;
}
.cement-advantage .image-list div p {
  margin-top: 5px;
  text-align: center;
  font-size: 1.125rem;
}
@media screen and (max-width: 1024px) {
  .cement-advantage {
    padding: 70px 0 150px;
  }
  .cement-advantage section {
    margin-bottom: 70px;
  }
  .cement-advantage .main-title {
    margin-bottom: 50px;
  }
  .cement-advantage .main-title h2 {
    font-size: 2.1875rem;
  }
  .cement-advantage .lead {
    margin-bottom: 30px;
  }
  .cement-advantage .image-list div p {
    line-height: 1.3em;
  }
}
@media screen and (max-width: 768px) {
  .cement-advantage {
    padding: 20px 0 100px;
  }
  .cement-advantage .main-title {
    margin-bottom: 30px;
  }
  .cement-advantage .main-title h2 {
    padding-bottom: 15px;
    font-size: 1.5625rem;
  }
  .cement-advantage .image-list div p {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  .cement-advantage section {
    margin-bottom: 50px;
  }
  .cement-advantage .main-title h2 {
    font-size: 1.25rem;
    line-height: 1.5em;
  }
}

/* ------------------------------------- 
  cement-advantage__system
------------------------------------- */
.cement-advantage__system .contents {
  position: relative;
}
.cement-advantage__system .link {
  position: absolute;
}
.cement-advantage__system .link::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  background-size: 100%;
  width: 2px;
  height: 100%;
}
.cement-advantage__system .link button {
  position: relative;
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  margin: 0;
  z-index: 1;
}
.cement-advantage__system .link button img {
  display: block;
}
.cement-advantage__system .bc {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  top: 33%;
  left: 30%;
  max-width: 190px;
  width: 16.5%;
  max-height: 103px;
  height: 13.4%;
}
.cement-advantage__system .bc::after {
  top: 0;
  left: 65%;
  transform: translateX(-35%);
}
.cement-advantage__system .bc_mach {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  top: 58.5%;
  left: 40%;
  max-width: 254px;
  width: 22%;
  max-height: 95px;
  height: 12.3%;
}
.cement-advantage__system .bc_mach::after {
  bottom: 0;
}
.cement-advantage__system .modal-container {
  max-width: 700px;
  width: 90%;
}
.cement-advantage__system .modal-container h3 {
  padding-bottom: 10px;
  text-align: center;
  font-size: 1.25rem;
}
.cement-advantage__system .ex {
  max-width: 1152px;
  width: 90%;
  margin: 10px auto 0;
}
.cement-advantage__system .ex p {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.cement-advantage__system .ex p img {
  max-width: 30px;
  margin-right: 5px;
}
.cement-advantage__system .ex p.switch {
  display: none;
}
@media screen and (max-width: 1024px) {
  .cement-advantage__system .modal-container h3 {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .cement-advantage__system .contents {
    width: 677px;
    padding: 0 15px;
    box-sizing: content-box;
  }
  .cement-advantage__system .ex p {
    justify-content: center;
    text-align: center;
  }
  .cement-advantage__system .modal-container h3 {
    padding-bottom: 0px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 680px) {
  .cement-advantage__system .ex p.switch {
    display: block;
  }
}

/* ------------------------------------- 
  cement-advantage__resource
------------------------------------- */
.cement-advantage__resource .contents {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1px;
}
.cement-advantage__resource .contents div {
  max-width: 576px;
  width: 50%;
}

/* ------------------------------------- 
  cement-advantage__energy
------------------------------------- */
/* ------------------------------------- 
  cement-advantage__port
------------------------------------- */
.cement-advantage__port .contents {
  display: grid;
  justify-content: center;
  align-items: flex-start;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 1px;
}

/* ------------------------------------- 
  cement-data common
  cement-dataページ　共通レイアウト
------------------------------------- */
.cement-data::after {
  max-height: 100%;
  height: 100%;
}
.cement-data__common {
  margin-bottom: 120px;
}

.cement-data__common .cement-data_detail {
  position: relative;
  border: 1px solid #01506E;
  background: #FFFFFF;
  max-width: 1440px;
  width: 90%;
  margin: 0 auto;
  column-count: 2;
  column-gap: 0;
}
.cement-data__common .cement-data_detail::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #01506E;
  width: 1px;
  height: 100%;
}
.cement-data__common .cement-data_detail .box {
  border-bottom: 1px solid #01506E;
  padding: 40px;
  break-inside: avoid;
  display: inline-block;
  width: 100%;
}
.cement-data__common .cement-data_detail .box h3 {
  background: #DFEBEA;
  border-radius: 100px;
  max-width: 260px;
  width: 100%;
  margin: 0 auto;
  padding: 1px 5px;
  font-size: clamp(12px, 10.4px + 0.5vw, 20px);
  font-weight: normal;
  color: #01506E;
  text-align: center;
}
.cement-data__common .cement-data_detail .box .data {
  margin-top: 30px;
  color: #01506E;
  font-weight: 700;
  font-size: clamp(14px, 12px + 0.625vw, 24px);
  line-height: 2.5em;
  text-align: center;
}
.cement-data__common .cement-data_detail .box .data span {
  display: inline-block;
  margin-right: 5px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  font-size: clamp(20px, 8px + 3.75vw, 80px);
}
.cement-data__common .cement-data_detail .box .sub {
  text-align: center;
}
.cement-data__common .cement-data_detail .box .lead {
  margin-top: 30px;
  font-size: 1.125rem;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .cement-data__common {
    margin-bottom: 100px;
  }
  .cement-data__common .cement-data_detail .box .lead {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .cement-data__common {
    margin-bottom: 70px;
  }
  .cement-data__common .cement-data_detail {
    column-count: 1;
  }
  .cement-data__common .cement-data_detail::after {
    background: transparent;
  }
  .cement-data__common .cement-data_detail .box {
    padding: 40px 25px;
  }
  .cement-data__common .cement-data_detail .box .data {
    margin-top: 20px;
    font-size: 1.875rem;
  }
  .cement-data__common .cement-data_detail .box .data span {
    font-size: 3.75rem;
  }
  .cement-data__common .cement-data_detail .box .lead {
    max-width: 400px;
    margin: 15px auto 0;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  .cement-data__common .cement-data_detail .box .data {
    font-size: 1.25rem;
  }
  .cement-data__common .cement-data_detail .box .data span {
    font-size: 2.5rem;
  }
  .cement-data__common .cement-data_detail .box .lead {
    font-size: 0.75rem;
  }
}
/* ------------------------------------- 
  cement-data__company
------------------------------------- */
.cement-data__company .cement-data_detail .box-founding .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.cement-data__company .cement-data_detail .box-founding .wrap img {
  max-width: 275px;
  width: 43%;
}
.cement-data__company .cement-data_detail .box-founding .wrap .text {
  width: 44.5%;
}
.cement-data__company .cement-data_detail .box-sales .wrap, .cement-data__company .cement-data_detail .box-electric .wrap {
  position: relative;
}
.cement-data__company .cement-data_detail .box-sales .wrap img, .cement-data__company .cement-data_detail .box-electric .wrap img {
  position: absolute;
  left: 10%;
  bottom: 0;
  max-width: 86px;
  width: 13.5%;
}
.cement-data__company .cement-data_detail .box-sales .wrap .text, .cement-data__company .cement-data_detail .box-electric .wrap .text {
  margin: 0 auto;
}
.cement-data__company .cement-data_detail .box-sales .wrap img {
  padding-bottom: 30px;
}
.cement-data__company .cement-data_detail .box-electric .wrap img {
  padding-bottom: 10px;
}
.cement-data__company .cement-data_detail .box-recycling {
  border-bottom: transparent;
}
.cement-data__company .cement-data_detail .box-recycling .wrap-1, .cement-data__company .cement-data_detail .box-recycling .wrap-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cement-data__company .cement-data_detail .box-recycling .wrap-1 h3, .cement-data__company .cement-data_detail .box-recycling .wrap-2 h3 {
  width: 40.6%;
  font-size: clamp(12px, 11.2px + 0.25vw, 16px);
}
.cement-data__company .cement-data_detail .box-recycling .wrap-2 {
  margin-top: 30px;
}
.cement-data__company .cement-data_detail .box-recycling .wrap-2 h3 {
  line-height: 1.5em;
}
.cement-data__company .cement-data_detail .box-recycling p.data {
  width: 55%;
  margin-top: 0;
  text-align: right;
}
.cement-data__company .cement-data_detail .box-recycling .wrap-lead {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 5%;
}
.cement-data__company .cement-data_detail .box-recycling .wrap-lead img {
  max-width: 265px;
  width: 41.5%;
}
.cement-data__company .cement-data_detail .box-recycling .wrap-lead .lead {
  margin-top: 0;
}
.cement-data__company .cement-data_detail .box-production ul {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  margin-top: 20px;
}
.cement-data__company .cement-data_detail .box-production ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.cement-data__company .cement-data_detail .box-production ul li .data {
  margin-top: 0;
}
.cement-data__company .cement-data_detail .box-production ul li img {
  max-width: 110px;
  width: 70%;
}
.cement-data__company .cement-data_detail .box-pg .lead {
  margin-top: 10px;
}
.cement-data__company .cement-data_detail .box-pg img {
  display: block;
  max-width: 540px;
  width: 84.3%;
  margin: 30px auto;
}
.cement-data__company .cement-data_detail .box-conveyor {
  border-bottom: transparent;
}
.cement-data__company .cement-data_detail .box-conveyor .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.cement-data__company .cement-data_detail .box-conveyor .wrap .text {
  width: 54.8%;
}
.cement-data__company .cement-data_detail .box-conveyor .wrap .text p.data {
  line-height: 1.8em;
}
.cement-data__company .cement-data_detail .box-conveyor .wrap img {
  max-width: 260px;
  width: 40.5%;
}
@media screen and (max-width: 1280px) {
  .cement-data__company .cement-data_detail .box-founding .wrap img {
    width: 40%;
  }
  .cement-data__company .cement-data_detail .box-founding .wrap .text {
    width: 55%;
  }
  .cement-data__company .cement-data_detail .box-sales .wrap img, .cement-data__company .cement-data_detail .box-electric .wrap img {
    width: 17%;
  }
  .cement-data__company .cement-data_detail .box-recycling .wrap-1, .cement-data__company .cement-data_detail .box-recycling .wrap-2 {
    flex-direction: column;
  }
  .cement-data__company .cement-data_detail .box-recycling .wrap-1 h3, .cement-data__company .cement-data_detail .box-recycling .wrap-1 .data, .cement-data__company .cement-data_detail .box-recycling .wrap-2 h3, .cement-data__company .cement-data_detail .box-recycling .wrap-2 .data {
    width: 100%;
  }
  .cement-data__company .cement-data_detail .box-recycling p.data {
    margin-top: 20px;
    text-align: center;
  }
  .cement-data__company .cement-data_detail .box-conveyor .wrap {
    flex-direction: column;
    gap: 30px;
  }
  .cement-data__company .cement-data_detail .box-conveyor .wrap .text {
    width: 100%;
  }
  .cement-data__company .cement-data_detail .box-conveyor .wrap img {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .cement-data__company .cement-data_detail .box-founding .wrap {
    flex-direction: column-reverse;
    gap: 10px;
  }
  .cement-data__company .cement-data_detail .box-founding .wrap img {
    width: 60%;
  }
  .cement-data__company .cement-data_detail .box-founding .wrap .text {
    width: 100%;
  }
  .cement-data__company .cement-data_detail .box-recycling {
    border-bottom: 1px solid #01506E;
  }
  .cement-data__company .cement-data_detail .box-recycling p.data {
    width: 100%;
  }
  .cement-data__company .cement-data_detail .box-recycling .wrap-lead {
    flex-direction: column;
    gap: 20px;
  }
  .cement-data__company .cement-data_detail .box-recycling .wrap-lead img {
    width: 60%;
  }
  .cement-data__company .cement-data_detail .box-production ul {
    flex-direction: column;
    gap: 30px;
  }
  .cement-data__company .cement-data_detail .box-production ul li {
    flex-direction: row;
    gap: 30px;
    width: 100%;
  }
  .cement-data__company .cement-data_detail .box-production ul li .data {
    text-align: left;
    line-height: 2em;
  }
  .cement-data__company .cement-data_detail .box-production ul li img {
    max-width: 80px;
    width: 30%;
  }
  .cement-data__company .cement-data_detail .box-pg img {
    width: 100%;
  }
}

/* ------------------------------------- 
  cement-data__staff
------------------------------------- */
.cement-data__staff .cement-data_detail {
  margin-bottom: 0;
}
.cement-data__staff .cement-data_detail .box-employee .wrap {
  position: relative;
}
.cement-data__staff .cement-data_detail .box-employee .wrap img {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  max-width: 124px;
  width: 19.5%;
}
.cement-data__staff .cement-data_detail .box-employee .wrap .text p.lead {
  margin-top: 0;
}
.cement-data__staff .cement-data_detail .box-job img {
  display: block;
  max-width: 512px;
  width: 80%;
  margin: 60px auto 0;
}
.cement-data__staff .cement-data_detail .box-holiday {
  border-bottom: transparent;
  min-height: 340px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cement-data__staff .cement-data_detail .box-holiday .wrap {
  width: 100%;
}
.cement-data__staff .cement-data_detail .box-holiday p.lead {
  margin-top: 0;
}
.cement-data__staff .cement-data_detail .box-age ul {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
}
.cement-data__staff .cement-data_detail .box-age ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 46%;
}
.cement-data__staff .cement-data_detail .box-age ul .averages img {
  max-width: 189px;
  margin-top: auto;
}
.cement-data__staff .cement-data_detail .box-age ul .ratios img {
  max-width: 259px;
  margin-top: 20px;
}
.cement-data__staff .cement-data_detail .box-gender img {
  display: block;
  max-width: 284px;
  width: 70%;
  margin: 30px auto 0;
}
.cement-data__staff .cement-data_detail .box-work {
  border-bottom: transparent;
}
.cement-data__staff .cement-data_detail .box-work ul {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}
.cement-data__staff .cement-data_detail .box-work ul li {
  width: 46%;
}
.cement-data__staff .cement-data_detail .box-work ul p.lead {
  margin-top: 0;
}
@media screen and (max-width: 1024px) {
  .cement-data__staff .cement-data_detail .box-employee .wrap img {
    top: 60%;
    transform: translateY(-40%);
  }
  .cement-data__staff .cement-data_detail .box-age .averages img {
    width: 80%;
    margin-top: 10px;
  }
  .cement-data__staff .cement-data_detail .box-age .ratios img {
    margin-top: 10px;
  }
  .cement-data__staff .cement-data_detail .box-work ul {
    flex-direction: column;
  }
  .cement-data__staff .cement-data_detail .box-work ul li {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .cement-data__staff .cement-data_detail .box-employee .wrap img {
    left: 10px;
  }
  .cement-data__staff .cement-data_detail .box-job img {
    width: 100%;
    margin-top: 30px;
  }
  .cement-data__staff .cement-data_detail .box-holiday {
    border-bottom: 1px solid #01506E;
    min-height: auto;
  }
  .cement-data__staff .cement-data_detail .box-age ul {
    flex-direction: column;
  }
  .cement-data__staff .cement-data_detail .box-age ul li {
    width: 100%;
  }
  .cement-data__staff .cement-data_detail .box-age ul .averages img {
    width: 50%;
    margin-top: 20px;
  }
  .cement-data__staff .cement-data_detail .box-age ul .ratios img {
    width: 60%;
  }
}/*# sourceMappingURL=common_style.css.map */